diff --git a/demos/lec22.zip b/demos/lec22.zip new file mode 100644 index 0000000..ffc57dc Binary files /dev/null and b/demos/lec22.zip differ diff --git a/demos/lec22/lec22.ipynb b/demos/lec22/lec22.ipynb new file mode 100644 index 0000000..d8b0e23 --- /dev/null +++ b/demos/lec22/lec22.ipynb @@ -0,0 +1,155 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "from datascience import *\n", + "import numpy as np\n", + "\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plots\n", + "plots.style.use('fivethirtyeight')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Lecture 22" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Python " + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# write the sum_up_to(k) function - can use a for loop\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# write the sum_up_to(k) function - without a for loop\n", + "\n", + "\n", + "\n", + "\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Tables" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Year Type Year Organization Group Code Organization Group Department Code Department Union Code Union Job Family Code Job Family Job Code Job Employee Identifier Salaries Overtime Other Salaries Total Salary Retirement Health/Dental Other Benefits Total Benefits Total Compensation
Calendar 2015 2 Public Works, Transportation & Commerce WTR PUC Water Department 21 Prof & Tech Engineers - Miscellaneous, Local 21 2400 Lab, Pharmacy & Med Techs 2481 Water Qualitytech I/II 21538 82146 0 0 82146 16942.2 12340.9 6337.73 35620.8 117767
Calendar 2015 2 Public Works, Transportation & Commerce DPW General Services Agency - Public Works 12 Carpet, Linoleum and Soft Tile Workers, Local 12 7300 Journeyman Trade 7393 Soft Floor Coverer 5459 32165.8 973.19 848.96 33987.9 0 4587.51 2634.42 7221.93 41209.8
\n", + "

... (42987 rows omitted)

" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# load data on SF employees\n", + "sf = Table.read_table('san_francisco_2015.csv')\n", + "sf.show(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# What is the Mayor's total compensation? \n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# what proportion of people are making more than $100,000?\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/demos/lec22/lec22_sol.ipynb b/demos/lec22/lec22_sol.ipynb new file mode 100644 index 0000000..4da0bb5 --- /dev/null +++ b/demos/lec22/lec22_sol.ipynb @@ -0,0 +1,199 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "from datascience import *\n", + "import numpy as np\n", + "\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plots\n", + "plots.style.use('fivethirtyeight')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Lecture 22" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Python " + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "55" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def sum_up_to(k):\n", + " if k < 0:\n", + " return \"invalid input fool\"\n", + " \n", + " total = 0\n", + " for i in np.arange(k + 1):\n", + " total = total + i\n", + " return total\n", + "\n", + "\n", + "sum_up_to(10)\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "55" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def sum_up_to2(k):\n", + " if k < 0:\n", + " return \"invalid input fool\"\n", + " \n", + " return np.sum(np.arange(k + 1))\n", + "\n", + "\n", + "sum_up_to2(10)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Tables" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Year Type Year Organization Group Code Organization Group Department Code Department Union Code Union Job Family Code Job Family Job Code Job Employee Identifier Salaries Overtime Other Salaries Total Salary Retirement Health/Dental Other Benefits Total Benefits Total Compensation
Calendar 2015 2 Public Works, Transportation & Commerce WTR PUC Water Department 21 Prof & Tech Engineers - Miscellaneous, Local 21 2400 Lab, Pharmacy & Med Techs 2481 Water Qualitytech I/II 21538 82146 0 0 82146 16942.2 12340.9 6337.73 35620.8 117767
Calendar 2015 2 Public Works, Transportation & Commerce DPW General Services Agency - Public Works 12 Carpet, Linoleum and Soft Tile Workers, Local 12 7300 Journeyman Trade 7393 Soft Floor Coverer 5459 32165.8 973.19 848.96 33987.9 0 4587.51 2634.42 7221.93 41209.8
\n", + "

... (42987 rows omitted)

" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sf = Table.read_table('san_francisco_2015.csv')\n", + "sf.show(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "379798.03" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# What is the Mayor's total compensation? \n", + "sf.where('Job', 'Mayor').select(\"Total Compensation\") # in a Table\n", + "sf.where('Job', 'Mayor').column(\"Total Compensation\").item(0) # as a number" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.4875898485659122" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# what proportion of people are making more than $100,000?\n", + "sf.where('Total Compensation', are.above(100000)).num_rows/sf.num_rows" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/demos/lec22/san_francisco_2015.csv b/demos/lec22/san_francisco_2015.csv new file mode 100644 index 0000000..70b40b5 --- /dev/null +++ b/demos/lec22/san_francisco_2015.csv @@ -0,0 +1,42990 @@ +Year Type,Year,Organization Group Code,Organization Group,Department Code,Department,Union Code,Union,Job Family Code,Job Family,Job Code,Job,Employee Identifier,Salaries,Overtime,Other Salaries,Total Salary,Retirement,Health/Dental,Other Benefits,Total Benefits,Total Compensation +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,21538,82146.04,0.0,0.0,82146.04,16942.21,12340.88,6337.73,35620.82,117766.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,12.0,"Carpet, Linoleum and Soft Tile Workers, Local 12",7300,Journeyman Trade,7393,Soft Floor Coverer,5459,32165.75,973.19,848.96,33987.9,0.0,4587.51,2634.42,7221.93,41209.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,41541,71311.0,5757.98,0.0,77068.98,14697.59,12424.5,6370.06,33492.15,110561.13 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2620,Food Service Mgr Administrator,26718,28430.25,0.0,763.07,29193.32,0.0,4223.14,5208.51,9431.65,38624.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,45810,7948.75,0.0,0.0,7948.75,0.0,2873.17,616.24,3489.41,11438.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,32906,2235.0,0.0,0.0,2235.0,490.36,286.72,176.57,953.65,3188.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,7506,187247.0,0.0,11704.06,198951.06,37683.66,12424.5,11221.73,61329.89,260280.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36773,66988.54,3512.88,2770.39,73271.81,19127.22,13202.95,5455.1,37785.27,111057.08 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),12963,135189.6,0.0,1562.5,136752.1,27501.81,12424.5,10102.97,50029.28,186781.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,35179,70474.77,147.28,1647.24,72269.29,14650.28,10696.9,5993.11,31340.29,103609.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53091,68628.37,8704.5,1000.53,78333.4,19057.68,13524.07,5855.26,38437.01,116770.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40460,1379.83,0.0,25.39,1405.22,0.0,579.41,109.07,688.48,2093.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25949,48866.81,12886.82,3605.38,65359.01,11052.77,6212.25,1084.14,18349.16,83708.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,38657,27232.0,60.22,1985.0,29277.22,5346.41,4396.37,2390.32,12133.1,41410.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,48759,84644.03,30.32,4916.04,89590.39,17556.46,12424.5,7321.24,37302.2,126892.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",674,94388.0,6680.29,2259.93,103328.22,19922.07,12424.49,8450.2,40796.76,144124.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,4502,176158.0,0.0,250.0,176408.0,35449.75,12424.5,10629.43,58503.68,234911.68 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,11394,95504.51,0.0,1420.0,96924.51,19965.29,11182.06,7466.25,38613.6,135538.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,44879,39852.94,0.0,1120.0,40972.94,8332.7,8081.24,3398.16,19812.1,60785.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,1557,53331.51,10438.71,6527.75,70297.97,13074.64,12424.55,5629.65,31128.84,101426.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,20794,84644.02,34057.28,6303.03,125004.33,17731.34,12424.5,9797.71,39953.55,164957.88 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,3546,14738.01,0.0,745.08,15483.09,0.0,3305.04,1200.92,4505.96,19989.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,5491,62187.0,12823.62,8298.3,83308.92,13636.57,12424.5,6828.43,32889.5,116198.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24292,2725.63,0.0,1.96,2727.59,0.0,1329.06,211.55,1540.61,4268.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,51253,4643.71,0.0,3.58,4647.29,0.0,2171.3,360.57,2531.87,7179.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,15387,103019.0,0.0,0.0,103019.0,21209.49,12424.52,8205.42,41839.43,144858.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46922,1294.85,0.0,855.98,2150.83,305.72,561.49,180.91,1048.12,3198.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5362,66642.96,16791.64,1705.69,85140.29,18726.69,13137.48,6646.83,38511.0,123651.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,8193,14297.26,881.02,913.3,16091.58,3344.81,3324.15,1278.55,7947.51,24039.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,5871,70245.0,27047.36,3446.14,100738.5,14606.45,12424.5,8066.59,35097.54,135836.04 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,40927,147475.56,0.0,2237.42,149712.98,30064.17,10507.07,10256.56,50827.8,200540.78 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,50025,83495.48,0.0,0.0,83495.48,5308.31,9821.63,6672.48,21802.42,105297.9 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,44907,86021.98,0.0,3607.93,89629.91,17901.33,12104.52,7377.78,37383.63,127013.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),18409,23262.81,780.3,708.79,24751.9,4210.27,1911.46,416.81,6538.54,31290.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18060,113233.59,9825.08,18621.53,141680.2,25036.02,15196.12,2359.15,42591.29,184271.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9126,Transit Traffic Checker,1519,68700.6,4013.87,1690.82,74405.29,14521.67,12328.92,5899.61,32750.2,107155.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,51517,2490.69,0.0,0.0,2490.69,0.0,896.0,203.93,1099.93,3590.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3246,66797.96,4622.46,1607.01,73027.43,15591.7,13166.51,5360.93,34119.14,107146.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34050,22932.6,0.0,0.0,22932.6,5031.41,3536.21,1737.3,10304.92,33237.52 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,40336,109699.6,9931.24,13045.27,132676.11,22605.99,12424.5,9959.41,44989.9,177666.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4655,92.44,0.0,0.0,92.44,0.0,29.87,7.32,37.19,129.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8779,68428.9,22375.32,6143.43,96947.65,20390.86,13482.68,7178.46,41052.0,137999.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,36636,11664.2,0.0,1157.02,12821.22,2695.01,3058.33,1025.14,6778.48,19599.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,11710,72109.2,0.0,0.0,72109.2,14851.32,12424.5,5802.75,33078.57,105187.77 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8600,Emergency Services Assistant,26974,1039.5,0.0,0.0,1039.5,0.0,238.93,80.74,319.67,1359.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,52570,117140.93,25979.3,18603.95,161724.18,23164.17,12424.5,2701.77,38290.44,200014.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,26726,48966.99,3117.74,822.71,52907.44,11883.03,12245.3,4329.41,28457.74,81365.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,519,53973.01,3294.49,624.0,57891.5,13095.25,12424.5,4736.08,30255.83,88147.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5320,Illustrator And Art Designer,16998,30075.4,0.0,0.0,30075.4,5597.05,4444.15,2451.12,12492.32,42567.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,25886,14987.22,0.0,0.0,14987.22,3295.69,4462.07,1161.22,8918.98,23906.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,26220,119066.0,16110.78,20510.3,155687.08,33752.13,12424.5,2653.62,48830.25,204517.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52876,8194.64,0.0,13.61,8208.25,0.0,2714.38,636.75,3351.13,11559.38 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,8405,46717.78,0.0,1000.0,47717.78,9825.59,6182.37,3642.23,19650.19,67367.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,11910,17773.0,0.0,0.0,17773.0,3986.5,3345.06,1452.6,8784.16,26557.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14404,13725.0,0.0,918.9,14643.9,0.0,1098.49,1135.2,2233.69,16877.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,3926,83132.38,0.0,0.0,83132.38,17123.45,12339.85,6514.97,35978.27,119110.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42681,2805.25,0.0,0.0,2805.25,0.0,1367.89,217.51,1585.4,4390.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,32452,26751.8,0.0,642.58,27394.38,6000.44,3133.0,2066.89,11200.33,38594.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,48572,68571.01,0.0,1991.25,70562.26,14142.77,12424.5,5552.01,32119.28,102681.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,7843,95816.0,0.0,0.0,95816.0,19274.89,10990.9,7504.79,37770.58,133586.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11759,100112.94,3422.84,10370.22,113906.0,20795.02,12424.5,1854.05,35073.57,148979.57 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,18644,87117.8,0.0,4334.21,91452.01,18893.64,12424.5,7363.81,38681.95,130133.96 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,1716,12468.03,0.0,0.0,12468.03,0.0,4632.31,966.7,5599.01,18067.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,18324,56873.0,4058.93,0.0,60931.93,12703.28,12424.5,4940.86,30068.64,91000.57 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,21895,81116.01,0.0,0.0,81116.01,16718.52,12424.5,6661.66,35804.68,116920.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26978,130301.42,256.46,29186.29,159744.17,30065.21,10863.38,9962.84,50891.43,210635.6 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26118,2604.7,0.0,5317.31,7922.01,649.38,334.51,121.77,1105.66,9027.67 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,17450,31869.26,0.0,0.0,31869.26,0.0,4082.76,2471.66,6554.42,38423.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,20036,70245.0,405.15,2938.9,73589.05,14606.45,12424.5,6026.19,33057.14,106646.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4855,77071.02,0.0,624.0,77695.02,16013.39,12424.5,6442.27,34880.16,112575.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,6068,97764.62,2490.17,9932.15,110186.94,26194.68,12424.5,1864.55,40483.73,150670.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,50673,112266.93,19870.69,11541.8,143679.42,23369.64,15065.79,2437.48,40872.91,184552.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,29273,79551.0,0.0,2960.4,82511.4,16524.65,12424.5,6769.76,35718.91,118230.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,34192,8629.69,0.0,0.0,8629.69,0.0,2717.86,668.97,3386.83,12016.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,44105,129604.97,58685.67,16200.57,204491.21,28683.63,15052.76,3433.65,47170.04,251661.25 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),37434,85035.59,35543.72,4865.52,125444.83,18374.88,12424.51,2095.98,32895.37,158340.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,12652,70245.0,12057.18,10693.67,92995.85,15828.85,12424.5,7605.6,35858.95,128854.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,33288,26091.21,0.0,0.0,26091.21,5737.44,5877.76,2073.52,13688.72,39779.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,22854,15720.0,0.0,4180.36,19900.36,4143.31,3822.92,1614.88,9581.11,29481.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,10148,81954.3,20768.75,3746.59,106469.64,17523.1,12424.5,8614.06,38561.66,145031.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,171,116976.03,0.0,0.0,116976.03,23541.49,12424.5,9491.81,45457.8,162433.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34962,70909.42,0.0,250.0,71159.42,13075.41,6089.2,5553.54,24718.15,95877.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,51277,132861.69,0.0,0.0,132861.69,26694.02,12424.5,27439.78,66558.3,199419.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18463,9835.18,0.0,299.81,10134.99,1995.25,764.65,540.17,3300.07,13435.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,27673,67261.0,0.0,0.0,67261.0,13862.82,12424.5,5289.05,31576.37,98837.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,33020,43415.22,1322.37,6129.44,50867.03,11370.99,12329.52,4110.1,27810.61,78677.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,3758,63857.83,0.0,410.63,64268.46,13174.63,12446.91,5047.28,30668.82,94937.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,18330,77309.2,8367.98,9813.29,95490.47,17370.15,12567.87,7576.83,37514.85,133005.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",32793,20521.56,0.0,0.0,20521.56,0.0,4886.17,1616.34,6502.51,27024.07 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,11393,36731.49,0.0,63.53,36795.02,8803.96,9085.42,2256.68,20146.06,56941.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,39612,20294.22,0.0,1584.12,21878.34,4813.88,4076.61,1834.1,10724.59,32602.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,18436,59569.03,3452.07,3111.03,66132.13,11661.01,6690.11,5288.53,23639.65,89771.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,33009,66567.79,743.18,10448.28,77759.25,15015.41,11771.02,6400.72,33187.15,110946.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19403,56531.0,0.0,4623.95,61154.95,12602.97,12424.5,4801.9,29829.37,90984.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,7733,82204.02,0.0,0.0,82204.02,16988.56,12424.5,6615.17,36028.23,118232.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,36797,53930.03,0.0,621.75,54551.78,12199.63,12379.7,4522.01,29101.34,83653.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,16060,56303.97,5052.19,2291.0,63647.16,11666.31,11612.85,5103.37,28382.53,92029.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44841,23656.42,2814.26,970.11,27440.79,6074.59,7349.69,2092.5,15516.78,42957.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15499,18102.93,1691.77,710.15,20504.85,5214.16,5714.44,1521.74,12450.34,32955.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,41094,97669.1,0.0,0.0,97669.1,20130.42,12424.5,7989.43,40544.35,138213.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,2243,86032.01,0.0,0.0,86032.01,17528.65,10990.9,6559.45,35079.0,121111.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,47411,59616.23,155.14,4568.52,64339.89,13016.0,12055.77,5309.11,30380.88,94720.77 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8193,Chief Atty1 (Civil & Criminal),38925,220560.03,0.0,1500.0,222060.03,44688.27,12424.5,11537.53,68650.3,290710.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,7425,32396.54,0.0,2226.3,34622.84,8327.4,9228.36,2768.39,20324.15,54946.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,23681,62187.0,3824.65,3257.41,69269.06,13499.27,12424.5,5717.86,31641.63,100910.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,1942,80357.0,2476.8,0.0,82833.8,16562.14,12424.5,6842.98,35829.62,118663.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2409,119463.83,0.0,5044.12,124507.95,22812.68,12424.5,947.48,36184.66,160692.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",12836,15672.0,0.0,940.32,16612.32,2932.08,1433.6,283.65,4649.33,21261.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,23738,93281.03,0.0,2024.0,95305.03,19642.61,12424.5,7832.9,39900.01,135205.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34701,91751.55,14731.94,4188.93,110672.42,18702.3,9557.31,1842.38,30101.99,140774.41 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,12993,75259.46,0.0,1440.65,76700.11,15513.69,12424.5,6082.0,34020.19,110720.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18480,43176.49,0.0,0.0,43176.49,0.0,0.0,3415.36,3415.36,46591.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17781,429.77,0.0,12.42,442.19,0.0,107.52,34.29,141.81,584.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,38306,106605.02,0.0,0.0,106605.02,21971.81,12424.5,8761.54,43157.85,149762.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,29924,138629.31,19200.84,6909.51,164739.66,27962.33,12424.5,2807.79,43194.62,207934.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,51359,41502.39,108.17,402.81,42013.37,10059.68,9870.32,3402.66,23332.66,65346.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26704,22155.24,0.0,499.88,22655.12,0.0,5913.59,1756.64,7670.23,30325.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,6733,13102.1,457.05,344.0,13903.15,0.0,2054.82,1076.37,3131.19,17034.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,39982,102333.49,3986.38,10634.41,116954.28,22874.84,11939.7,9363.19,44177.73,161132.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,10459,98719.24,0.0,0.0,98719.24,20339.61,12376.71,8045.04,40761.36,139480.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,9014,61481.08,1334.12,1458.25,64273.45,12559.68,10866.96,5045.41,28472.05,92745.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2485,Supv Biologist,10770,123918.77,0.0,0.0,123918.77,24909.5,12424.5,9893.0,47227.0,171145.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,6841,6776.22,0.0,8.33,6784.55,0.0,1998.08,659.37,2657.45,9442.0 +Calendar,2015,1,Public Protection,POL,Police,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8126,"Sr Investigator, OCC",13891,102561.04,0.0,0.0,102561.04,21138.64,12424.5,8457.66,42020.8,144581.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7484,Sr Power Generation Tech,1354,108578.41,18173.78,8148.7,134900.89,22744.81,12054.15,10043.98,44842.94,179743.83 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,7048,106823.26,0.0,0.0,106823.26,21498.49,11179.06,8810.97,41488.52,148311.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,39031,30342.0,0.0,0.0,30342.0,5906.07,6690.12,2462.25,15058.44,45400.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,48840,11293.34,9.64,857.92,12160.9,0.0,3471.46,943.03,4414.49,16575.39 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,36564,27241.0,0.0,0.0,27241.0,0.0,3822.92,2182.42,6005.34,33246.34 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),24717,184289.02,0.0,5185.78,189474.8,38130.64,12424.5,11150.89,61706.03,251180.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,38805,76144.71,0.0,0.0,76144.71,15697.55,12424.5,6124.53,34246.58,110391.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,49713,38171.0,558.33,2531.32,41260.65,7299.18,5734.39,3197.63,16231.2,57491.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,42758,8455.86,0.0,61.31,8517.17,0.0,3064.31,660.14,3724.45,12241.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,6394,113369.08,6888.82,10213.93,130471.83,24041.35,12424.46,9922.32,46388.13,176859.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",23962,150233.99,36019.13,30336.6,216589.72,34341.13,15196.12,3648.35,53185.6,269775.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,50113,101398.62,4781.76,11466.98,117647.36,21226.0,11127.87,1959.87,34313.74,151961.1 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,14819,15097.0,1483.83,3000.0,19580.83,2809.53,2962.77,1592.06,7364.36,26945.19 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,20566,30224.4,0.0,0.0,30224.4,0.0,0.0,2656.94,2656.94,32881.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,8204,56499.94,6232.61,7918.55,70651.1,12844.92,12417.63,5795.57,31058.12,101709.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,17828,56531.0,0.0,7518.55,64049.55,12725.28,12424.5,4983.15,30132.93,94182.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10553,21045.96,4158.13,228.48,25432.57,5151.05,6521.67,1841.63,13514.35,38946.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,20676,0.0,0.0,8415.1,8415.1,0.0,68.5,643.76,712.26,9127.36 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,1666,85032.51,0.0,10062.38,95094.89,17952.62,8362.67,12950.81,39266.1,134360.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50426,119455.81,22242.26,4429.91,146127.98,23662.77,12424.5,2443.44,38530.71,184658.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,5361,79717.06,1719.56,2529.5,83966.12,16974.45,12423.73,6480.17,35878.35,119844.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,35792,113192.14,16169.57,11776.84,141138.55,23448.54,12418.94,2365.99,38233.47,179372.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,38865,100092.5,0.0,0.0,100092.5,20143.9,10524.98,8043.25,38712.13,138804.63 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,50492,112209.05,0.0,0.0,112209.05,22582.31,12424.5,8780.89,43787.7,155996.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12081,119467.44,48626.4,13815.38,181909.22,23621.01,12424.5,3056.12,39101.63,221010.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,37483,115809.1,413.77,1171.19,117394.06,21630.6,7685.69,9455.64,38771.93,156165.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37715,1196.0,0.0,28.8,1224.8,0.0,446.51,95.06,541.57,1766.37 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,911,57313.08,0.0,3000.0,60313.08,12162.33,8064.75,5133.36,25360.44,85673.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29553,97764.81,1339.11,8773.45,107877.37,25912.37,12424.5,1836.21,40173.08,148050.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,6852,25914.4,0.0,0.0,25914.4,5812.62,5256.52,2166.74,13235.88,39150.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,43706,21385.59,0.0,176.85,21562.44,4763.35,3521.52,1821.35,10106.22,31668.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,34505,5626.01,0.0,0.0,5626.01,1261.92,955.72,459.41,2677.05,8303.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,1015,112209.02,0.0,0.0,112209.02,22582.31,12424.5,9230.47,44237.28,156446.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,51184,55902.6,1742.58,0.0,57645.18,11728.83,10513.04,4657.48,26899.35,84544.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,9948,2835.0,267.28,14336.17,17438.45,641.27,477.86,1340.98,2460.11,19898.56 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,29573,78651.32,0.0,700.46,79351.78,16349.25,12376.71,6328.89,35054.85,114406.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,13285,118104.02,0.0,0.0,118104.02,23768.42,12424.5,9365.21,45558.13,163662.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,33320,14287.41,0.0,129.62,14417.03,0.0,4217.16,1117.62,5334.78,19751.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43993,4389.91,0.0,77.36,4467.27,0.0,1665.54,346.73,2012.27,6479.54 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",30933,150.0,0.0,0.0,150.0,0.0,35.84,11.61,47.45,197.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,18217,58859.54,457.42,5687.86,65004.82,12519.34,9628.57,5352.74,27500.65,92505.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,7932,117507.87,133.54,1793.96,119435.37,23959.46,12423.55,9762.25,46145.26,165580.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43349,97715.11,10629.49,8472.28,116816.88,25829.87,12417.81,1958.93,40206.61,157023.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5104,10313.91,0.0,0.0,10313.91,1979.51,4472.46,808.2,7260.17,17574.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24026,29476.39,0.0,2746.63,32223.02,910.07,0.0,1214.88,2124.95,34347.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,26333,79722.02,0.0,2219.75,81941.77,16890.21,12424.5,6706.72,36021.43,117963.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12263,75196.66,22998.41,0.0,98195.07,15464.25,12364.88,7650.1,35479.23,133674.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,28821,19893.2,0.0,0.0,19893.2,0.0,3536.21,1541.93,5078.14,24971.34 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,52087,11722.15,0.0,0.0,11722.15,0.0,2676.05,908.6,3584.65,15306.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,43549,61428.0,0.0,2124.0,63552.0,13056.41,12424.5,5246.59,30727.5,94279.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44586,3491.33,0.0,250.0,3741.33,897.62,68.5,276.51,1242.63,4983.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,46946,61735.03,196.89,624.0,62555.92,12852.62,12424.5,5180.22,30457.34,93013.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15051,43464.88,0.0,411.82,43876.7,5618.16,3285.09,2841.97,11745.22,55621.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,8408,42973.39,0.0,1296.6,44269.99,9144.75,9468.78,3386.82,22000.35,66270.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52029,66838.57,23266.63,4786.89,94892.09,19636.97,13170.63,7206.29,40013.89,134905.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,45743,40520.1,0.0,0.0,40520.1,7417.21,5758.3,3190.96,16366.47,56886.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4440,65307.42,23378.86,633.3,89319.58,18042.82,12868.32,6975.85,37886.99,127206.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42463,63646.09,14251.82,1588.77,79486.68,17807.42,12540.08,5988.11,36335.61,115822.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44261,710.5,0.0,0.0,710.5,0.0,346.45,55.07,401.52,1112.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34140,2023.0,0.0,0.0,2023.0,444.86,477.86,157.02,1079.74,3102.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,39480,85426.67,2989.51,7819.24,96235.42,17570.62,9079.44,1598.36,28248.42,124483.84 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,45576,16857.42,0.0,0.0,16857.42,0.0,6260.04,1307.25,7567.29,24424.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",1268,106090.05,3496.71,10722.66,120309.42,23684.58,12424.5,9778.22,45887.3,166196.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1136,56531.0,0.0,5710.57,62241.57,12406.56,12424.5,5087.89,29918.95,92160.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,17024,71400.51,0.0,0.0,71400.51,14685.85,12424.5,5628.77,32739.12,104139.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,5054,66102.0,19363.04,3015.73,88480.77,13946.48,12424.5,7239.03,33610.01,122090.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31890,112877.58,2987.86,25389.1,141254.54,21901.29,10951.48,8112.67,40965.44,182219.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,34975,68393.15,12946.7,2898.82,84238.67,8781.05,10023.22,6721.38,25525.65,109764.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16911,113285.34,39954.68,15693.79,168933.81,25518.43,15196.11,2766.78,43481.32,212415.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52136,7387.06,0.0,1008.62,8395.68,1176.87,0.0,837.2,2014.07,10409.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,8951,61588.29,0.0,622.55,62210.84,12825.05,12395.71,5105.74,30326.5,92537.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,21134,33949.08,7334.17,3770.59,45053.84,6031.0,3345.06,769.34,10145.4,55199.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27160,11405.7,0.0,0.0,11405.7,0.0,4945.91,912.91,5858.82,17264.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,26612,85669.11,62.12,729.0,86460.23,17786.92,12281.11,7005.03,37073.06,123533.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,23540,130845.84,55078.33,16355.7,202279.87,28930.04,15196.12,3450.04,47576.2,249856.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",42536,1605.6,0.0,0.0,1605.6,0.0,382.29,124.31,506.6,2112.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20907,4763.26,0.0,0.0,4763.26,381.67,2065.51,392.11,2839.29,7602.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12523,88063.2,433.8,8366.83,96863.83,18299.19,9633.77,7739.35,35672.31,132536.14 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7203,Bldg & Grounds Maint Sprv,18428,60645.0,6367.73,11890.0,78902.73,13401.83,7167.98,6441.16,27010.97,105913.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,40269,11468.8,636.0,604.13,12708.93,723.12,2676.04,983.92,4383.08,17092.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,42269,60898.69,0.0,250.0,61148.69,12517.82,12044.06,5006.37,29568.25,90716.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43726,22187.46,0.0,92.19,22279.65,15.6,0.0,4849.37,4864.97,27144.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,10868,85368.03,0.0,0.0,85368.03,17594.6,12424.5,6959.76,36978.86,122346.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,14095,66603.15,0.0,3703.6,70306.75,13802.98,11776.34,5791.28,31370.6,101677.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,39468,62109.59,24384.05,1970.41,88464.05,12828.85,12352.11,6961.76,32142.72,120606.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,38344,93681.06,0.0,624.0,94305.06,19436.77,12424.5,7821.04,39682.31,133987.37 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,10310,91219.89,0.0,0.0,91219.89,18814.4,11164.13,7526.7,37505.23,128725.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13958,50968.25,0.0,0.0,50968.25,8059.28,11683.8,4091.32,23834.4,74802.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,35615,93910.66,12597.79,9124.11,115632.56,19491.07,12424.5,1881.97,33797.54,149430.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18412,22854.6,51.02,279.12,23184.74,2226.19,6140.57,1761.88,10128.64,33313.38 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8326,"Asst Dir, Log Cabin Rnch",33499,98365.01,0.0,1629.2,99994.21,22810.62,12424.5,10436.78,45671.9,145666.11 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,50073,2896.0,0.0,60.0,2956.0,550.11,477.86,229.43,1257.4,4213.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43814,149099.03,0.0,9781.67,158880.7,23918.48,12424.5,10266.6,46609.58,205490.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38263,1102.0,0.0,0.0,1102.0,267.52,477.86,100.46,845.84,1947.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,962,62461.1,7696.02,0.0,70157.12,12844.46,12424.5,5442.57,30711.53,100868.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47560,118441.23,872.48,13595.49,132909.2,24654.8,10815.59,5947.89,41418.28,174327.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35680,24090.74,1751.22,1075.93,26917.89,6197.3,7480.16,2051.94,15729.4,42647.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,32975,8730.0,0.0,0.0,8730.0,1624.65,1433.6,697.12,3755.37,12485.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38771,46978.38,813.1,2962.88,50754.36,11909.06,10687.76,4083.32,26680.14,77434.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,7674,112209.0,1005.24,0.0,113214.24,22870.16,12424.5,9048.78,44343.44,157557.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31613,10547.93,564.72,292.14,11404.79,2990.45,2182.89,848.61,6021.95,17426.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,20550,25812.02,0.0,288.0,26100.02,6733.8,5734.39,2058.56,14526.75,40626.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,5143,68345.01,1683.97,3616.58,73645.56,14871.41,10513.03,5931.23,31315.67,104961.23 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,29173,48110.85,0.0,0.0,48110.85,8722.48,4706.97,3803.15,17232.6,65343.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,20404,92282.0,66.13,5970.0,98318.13,20256.47,12424.5,7942.01,40622.98,138941.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,6082,8860.0,579.32,1335.64,10774.96,2035.94,2867.19,810.11,5713.24,16488.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,12739,56907.02,522.24,5697.43,63126.69,12537.81,11940.9,5175.18,29653.89,92780.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,26660,156190.41,1932.67,304.2,158427.28,31454.83,12424.5,10446.59,54325.92,212753.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,17648,107978.01,1470.6,8515.66,117964.27,22255.04,12424.5,9630.35,44309.89,162274.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,14902,31280.26,546.72,5289.34,37116.32,7210.13,5567.13,3037.56,15814.82,52931.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,24990,116384.12,0.0,0.0,116384.12,23424.8,12424.5,8906.41,44755.71,161139.83 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,27955,45628.39,0.0,0.0,45628.39,13673.67,2840.32,6276.71,22790.7,68419.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30426,116791.87,1015.51,15266.76,133074.14,22174.3,10782.61,10059.66,43016.57,176090.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,33391,118104.05,0.0,0.0,118104.05,23768.42,12424.5,9692.27,45885.19,163989.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34915,82070.57,5041.9,5249.17,92361.64,17070.23,12424.5,1528.76,31023.49,123385.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5303,"Sprv, Traffic & Street Signs",23052,93338.06,139.28,0.0,93477.34,19313.92,11946.64,7450.06,38710.62,132187.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,43360,45949.95,291.7,2824.41,49066.06,11135.64,12104.09,3983.13,27222.86,76288.92 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,8663,67911.02,2854.81,4974.31,75740.14,14521.57,12424.5,6206.82,33152.89,108893.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,41517,2195.88,0.0,0.0,2195.88,0.0,328.54,170.0,498.54,2694.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,7845,78176.0,27329.94,4203.17,109709.11,15994.01,11468.76,8771.2,36233.97,145943.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",19551,88637.71,0.0,1274.53,89912.24,18529.16,11811.39,7458.47,37799.02,127711.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,3760,38941.55,0.0,0.0,38941.55,9367.0,8601.58,3137.33,21105.91,60047.46 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,6379,104449.23,0.0,0.0,104449.23,21478.53,12424.5,8529.38,42432.41,146881.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27462,56314.9,0.0,1975.95,58290.85,11611.08,12376.71,4782.23,28770.02,87060.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,27238,178293.65,0.0,0.0,178293.65,35948.33,12275.19,10828.88,59052.4,237346.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42506,134318.84,4139.93,16694.59,155153.36,0.0,9953.16,2599.31,12552.47,167705.83 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,26430,77071.03,0.0,125.0,77196.03,15884.7,12424.5,6392.91,34702.11,111898.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,12564,5927.5,0.0,3144.06,9071.56,1343.0,1194.67,743.37,3281.04,12352.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,27020,14135.72,0.0,0.0,14135.72,0.0,734.72,2023.3,2758.02,16893.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,1455,138635.93,59496.15,16285.74,214417.82,27392.94,12424.5,3657.27,43474.71,257892.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,37371,63887.01,26866.55,1816.49,92570.05,13575.29,12424.51,7866.78,33866.58,126436.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19294,34285.52,8318.58,2220.58,44824.68,10562.1,6818.3,3466.07,20846.47,65671.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,13132,81853.56,13892.93,18352.78,114099.27,19920.32,12410.99,9639.22,41970.53,156069.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,36003,96598.16,0.0,0.0,96598.16,19157.27,10685.19,7747.72,37590.18,134188.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,20359,32160.0,2499.95,14560.7,49220.65,5709.66,2867.2,808.05,9384.91,58605.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17172,32060.02,0.0,0.0,32060.02,7433.31,8601.57,2589.16,18624.04,50684.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29947,140479.05,26875.35,19191.41,186545.81,27788.26,12424.5,3127.7,43340.46,229886.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25418,2070.25,0.0,0.0,2070.25,0.0,1009.5,160.49,1169.99,3240.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6200,Public Safety Inspection,6220,"Inspector, Weights & Measures",8279,64389.5,0.0,0.0,64389.5,13267.14,12424.5,4805.42,30497.06,94886.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,5530,56531.0,8952.4,1289.68,66773.08,11797.22,12424.5,5453.87,29675.59,96448.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,34851,67261.0,0.0,0.0,67261.0,13862.82,12424.5,5427.22,31714.54,98975.54 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,1388,82236.01,0.0,4540.0,86776.01,16925.99,12424.5,7091.57,36442.06,123218.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7989,116000.24,35659.82,17421.87,169081.93,22872.22,11946.64,2875.19,37694.05,206775.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,32977,2860.53,0.0,0.0,2860.53,0.0,951.26,221.89,1173.15,4033.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,32775,58727.75,2310.62,0.0,61038.37,12937.27,7287.45,4867.37,25092.09,86130.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,4611,146600.02,0.0,0.0,146600.02,29528.93,12424.5,10223.44,52176.87,198776.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47167,119465.56,3950.59,6442.92,129859.07,24096.61,12424.5,2136.77,38657.88,168516.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15345,16231.4,0.0,0.0,16231.4,400.4,6976.83,1319.13,8696.36,24927.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,50821,110041.0,13931.7,3907.75,127880.45,22145.92,12424.5,9869.95,44440.37,172320.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,29449,84644.0,46838.4,5760.75,137243.15,17581.16,12424.51,9913.44,39919.11,177162.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,22915,55614.0,3529.37,0.0,59143.37,12201.67,6212.26,4784.47,23198.4,82341.77 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,27129,132988.72,0.0,21078.65,154067.37,26702.38,12424.5,10378.54,49505.42,203572.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10423,127205.46,0.0,37436.23,164641.69,29912.61,10924.01,5166.66,46003.28,210644.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25907,2162.13,0.0,0.0,2162.13,0.0,1054.29,167.59,1221.88,3384.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,20245,81649.4,0.0,0.0,81649.4,16810.45,12424.5,6469.91,35704.86,117354.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,39115,119066.02,77721.93,17764.4,214552.35,33148.75,12424.5,3654.29,49227.54,263779.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10734,5151.85,0.0,0.0,5151.85,0.0,2234.02,419.76,2653.78,7805.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15743,45092.35,0.0,1318.76,46411.11,693.11,0.0,1169.42,1862.53,48273.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",49420,969.15,0.0,0.0,969.15,0.0,125.44,75.15,200.59,1169.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,15456,3578.01,0.0,0.0,3578.01,0.0,1048.32,277.71,1326.03,4904.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,13245,136466.0,80624.41,33398.15,250488.56,40141.59,12424.52,4219.98,56786.09,307274.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,31057,117140.95,30644.72,1714.98,149500.65,23164.17,12424.5,2501.3,38089.97,187590.62 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,33148,39986.93,0.0,6673.57,46660.5,8511.78,2349.01,7178.44,18039.23,64699.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21372,853.5,0.0,0.0,853.5,0.0,358.4,66.25,424.65,1278.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21479,6414.36,0.0,96.33,6510.69,0.0,2093.66,505.19,2598.85,9109.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,15824,109375.68,4729.95,8796.0,122901.63,23578.0,12478.26,2040.38,38096.64,160998.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,14941,49629.8,6589.31,1855.58,58074.69,11915.67,12424.5,4661.8,29001.97,87076.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,37305,109491.56,1739.63,23906.2,135137.39,25947.2,14694.73,2246.87,42888.8,178026.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,44618,138633.91,22317.01,5761.85,166712.77,27400.21,12424.52,2840.73,42665.46,209378.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,18239,6615.35,0.0,134.71,6750.06,0.0,2416.21,523.4,2939.61,9689.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35477,67017.1,21033.39,1930.48,89980.97,18889.03,13207.73,7034.1,39130.86,129111.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,28886,108038.0,5148.34,1281.0,114467.34,22266.23,12424.5,9201.75,43892.48,158359.82 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),39929,101783.01,0.0,6106.98,107889.99,22185.72,12424.5,1795.59,36405.81,144295.8 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,25876,106116.01,0.0,0.0,106116.01,21882.46,12424.5,8698.59,43005.55,149121.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,12594,63887.01,0.0,624.0,64511.01,13295.98,12424.5,5281.46,31001.94,95512.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48084,7523.79,392.16,26.91,7942.86,1784.35,2267.77,603.07,4655.19,12598.05 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,41191,22585.92,0.0,0.0,22585.92,3390.48,6149.53,1830.55,11370.56,33956.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45070,30295.05,0.0,0.0,30295.05,6981.29,8123.71,2452.71,17557.71,47852.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,52855,55495.02,0.0,0.0,55495.02,10701.71,7167.98,4453.37,22323.06,77818.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25955,58642.5,229.25,310.55,59182.3,11429.39,8983.87,4174.85,24588.11,83770.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,15638,159964.93,10838.15,13162.41,183965.49,31566.13,12424.5,3057.4,47048.03,231013.52 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0902,Mayoral Staff XIV,18365,117240.61,0.0,0.0,117240.61,23594.81,12424.5,17010.72,53030.03,170270.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,37765,16016.01,0.0,160.0,16176.01,3557.11,3822.92,1322.78,8702.81,24878.82 +Calendar,2015,1,Public Protection,SHF,Sheriff,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,5592,16872.0,0.0,0.0,16872.0,3139.89,1433.6,2349.35,6922.84,23794.84 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",41291,0.0,0.0,2696.13,2696.13,0.0,34.25,39.09,73.34,2769.47 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2456,Asst Forensic Toxicologist 1,38016,110338.03,0.0,2083.6,112421.63,22205.95,12424.5,9024.5,43654.95,156076.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,29148,95968.06,0.0,0.0,95968.06,19775.71,12424.5,16317.42,48517.63,144485.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12420,26936.0,113.36,1561.4,28610.76,5138.13,4348.58,2203.49,11690.2,40300.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5272,Landscape Architect Assoc 2,22110,76035.04,0.0,1440.22,77475.26,16682.08,6546.75,6367.92,29596.75,107072.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6591,67455.98,19983.04,9112.86,96551.88,20950.42,13289.86,7553.67,41793.95,138345.83 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",40291,56502.81,0.0,4328.42,60831.23,12066.83,9079.44,5021.26,26167.53,86998.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40821,113233.61,9931.79,22152.43,145317.83,25724.81,15196.12,2467.91,43388.84,188706.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,46187,99369.68,0.0,0.0,99369.68,19886.31,10513.04,8136.95,38536.3,137905.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,38694,81942.0,818.1,2304.25,85064.35,17361.75,12424.53,6792.41,36578.69,121643.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,25028,31729.55,0.0,0.0,31729.55,5506.54,10302.48,2560.28,18369.3,50098.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22520,112140.83,3295.98,7153.14,122589.95,22234.09,12364.77,2086.83,36685.69,159275.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,30884,89944.94,5073.1,12312.03,107330.07,19880.37,12282.03,1743.19,33905.59,141235.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38071,112750.98,7292.97,259.75,120303.7,22649.7,10076.99,9788.79,42515.48,162819.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,52591,101531.0,20511.28,4670.78,126713.06,21497.16,12424.54,9816.37,43738.07,170451.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,29734,2080.0,861.29,72.6,3013.89,0.0,615.25,233.93,849.18,3863.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25685,118998.12,4822.94,11554.09,135375.15,25011.04,11096.03,9967.45,46074.52,181449.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,28151,79722.01,8423.23,782.0,88927.24,16596.98,12424.48,6960.84,35982.3,124909.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51109,42868.11,253.2,3195.5,46316.81,10640.88,11444.88,3738.95,25824.71,72141.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,45651,110041.11,0.0,0.0,110041.11,22157.94,12424.5,8840.12,43422.56,153463.67 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,157,37252.03,0.0,0.0,37252.03,6932.62,5256.52,2957.51,15146.65,52398.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13126,881.61,0.0,0.0,881.61,219.06,382.3,81.69,683.05,1564.66 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,39258,6946.53,0.0,0.0,6946.53,0.0,0.0,549.29,549.29,7495.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,19818,49173.45,0.0,0.0,49173.45,10759.44,6403.39,3817.66,20980.49,70153.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21378,56531.0,0.0,6765.8,63296.8,13779.89,12424.5,5122.96,31327.35,94624.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29065,68621.88,1211.23,2077.81,71910.92,14537.4,12378.8,5716.75,32632.95,104543.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7219,Maintenance Scheduler,12445,77837.06,0.0,0.0,77837.06,16008.13,12424.49,6202.36,34634.98,112472.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,25101,46637.33,0.0,0.0,46637.33,10441.66,10920.78,3772.98,25135.42,71772.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,36433,19522.88,0.0,0.0,19522.88,5036.91,5904.63,1575.72,12517.26,32040.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40845,124599.98,19034.62,8957.39,152591.99,24636.03,12424.5,2557.55,39618.08,192210.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19071,149099.03,0.0,8400.09,157499.12,20804.37,12424.5,9887.37,43116.24,200615.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19903,67947.92,34141.91,5076.9,107166.73,20004.18,13388.36,8175.93,41568.47,148735.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31659,67999.41,5965.96,3711.19,77676.56,19658.91,13399.83,6031.39,39090.13,116766.69 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,50999,107562.0,0.0,5068.5,112630.5,21660.43,12424.5,31965.02,66049.95,178680.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25974,97765.85,55642.28,18850.99,172259.12,27467.63,12424.51,2888.32,42780.46,215039.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27296,113877.06,0.0,24798.4,138675.46,25567.84,9777.13,9233.66,44578.63,183254.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",39878,2392.0,0.0,0.0,2392.0,0.0,142.88,185.42,328.3,2720.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21596,18348.31,0.0,898.88,19247.19,1797.48,7956.46,1550.43,11304.37,30551.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17602,24818.74,3796.95,778.67,29394.36,6729.41,7768.61,2219.53,16717.55,46111.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43450,76394.3,1266.56,14444.59,92105.45,4904.44,0.0,7873.52,12777.96,104883.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,41632,61701.63,0.0,0.0,61701.63,12564.61,10990.91,4951.86,28507.38,90209.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28863,10669.55,0.0,0.0,10669.55,1788.87,4575.57,873.42,7237.86,17907.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20890,44207.37,3432.82,1499.56,49139.75,11868.31,13312.2,3686.1,28866.61,78006.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,30144,79722.02,19923.87,1346.5,100992.39,16716.7,12424.49,8131.94,37273.13,138265.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,30178,48723.65,11.25,1500.0,50234.9,11273.29,11433.29,4096.78,26803.36,77038.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",4335,150.0,0.0,0.0,150.0,0.0,0.0,11.86,11.86,161.86 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,51366,31126.2,0.0,0.0,31126.2,1160.7,7311.35,2456.34,10928.39,42054.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,34979,10254.0,512.7,804.52,11571.22,1962.58,1433.58,916.05,4312.21,15883.43 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",11202,198139.06,0.0,5462.78,203601.84,40974.08,12424.5,11290.51,64689.09,268290.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23830,56531.0,20499.8,2927.38,79958.18,12260.68,12424.5,6289.05,30974.23,110932.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14993,43499.91,3440.2,1870.27,48810.38,11791.67,13240.94,3700.32,28732.93,77543.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,8329,1587.3,0.0,146.82,1734.12,356.72,310.61,156.64,823.97,2558.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4696,6993.02,0.0,207.39,7200.41,0.0,2976.93,581.76,3558.69,10759.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,41240,56108.7,729.34,2902.05,59740.09,12555.62,12424.5,4800.64,29780.76,89520.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7259,Water & Power Maint Sprv 1,3968,99098.01,13037.73,3681.03,115816.77,20570.19,12424.52,9497.81,42492.52,158309.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50237,117140.95,1337.29,5082.11,123560.35,23164.17,12424.5,2060.6,37649.27,161209.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,19100,56163.3,986.69,1.22,57151.21,10885.46,8601.58,3474.77,22961.81,80113.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8238,3423.09,0.0,0.0,3423.09,0.0,1484.37,272.49,1756.86,5179.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,51019,2346.41,0.0,4872.09,7218.5,538.5,382.3,559.42,1480.22,8698.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",18399,11138.85,0.0,0.0,11138.85,0.0,2652.15,863.81,3515.96,14654.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19914,1441.5,0.0,12.4,1453.9,0.0,555.51,112.56,668.07,2121.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29004,63427.77,6260.26,2200.74,71888.77,16211.95,12604.72,5491.4,34308.07,106196.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5900,78673.84,307.83,4271.13,83252.8,16145.6,8601.28,6716.38,31463.26,114716.06 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,5008,396.0,18.56,0.0,414.56,0.0,95.58,32.18,127.76,542.32 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,39265,74412.0,0.0,3624.0,78036.0,15474.51,12424.5,6482.7,34381.71,112417.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8782,140334.0,457.28,40077.9,180869.18,34646.05,12424.5,10683.16,57753.71,238622.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,18985,37363.5,6335.55,11969.32,55668.37,8380.63,5495.45,4515.44,18391.52,74059.89 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,20682,149767.36,0.0,0.0,149767.36,30121.74,12424.5,17596.59,60142.83,209910.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,19664,2148.41,0.0,0.0,2148.41,0.0,778.03,173.79,951.82,3100.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52797,1138.0,0.0,0.0,1138.0,0.0,477.86,88.32,566.18,1704.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18234,52305.14,6028.0,2439.97,60773.11,15564.1,10375.23,4677.14,30616.47,91389.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26434,67464.78,4449.95,547.75,72462.48,18615.65,13292.66,5597.54,37505.85,109968.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,46032,48560.05,0.0,1003.83,49563.88,10634.04,7645.85,3847.67,22127.56,71691.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,33941,92509.94,0.0,616.65,93126.59,19167.69,12278.16,7673.83,39119.68,132246.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,18834,4252.51,0.0,14052.96,18305.47,961.91,716.79,1433.14,3111.84,21417.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",32671,53635.04,18692.07,5415.7,77742.81,11922.01,8123.71,6326.81,26372.53,104115.34 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,25489,102019.02,0.0,0.0,102019.02,21026.25,12424.5,8364.38,41815.13,143834.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,43114,100554.08,0.0,0.0,100554.08,20721.15,12424.52,8267.63,41413.3,141967.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36738,49442.8,0.0,8385.54,57828.34,12910.55,11964.56,4346.53,29221.64,87049.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36621,80957.63,5602.74,3477.79,90038.16,16556.63,12424.51,3371.43,32352.57,122390.73 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,13538,16969.14,0.0,285.29,17254.43,3211.04,3004.58,1383.01,7598.63,24853.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,49183,72518.32,0.0,0.0,72518.32,15163.49,10847.55,5914.3,31925.34,104443.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,34414,1185.0,0.0,0.0,1185.0,0.0,358.4,91.74,450.14,1635.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27796,67631.08,11048.85,2922.88,81602.81,19314.23,13327.97,6371.37,39013.57,120616.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,26451,7292.0,0.0,0.0,7292.0,1603.52,1911.46,580.87,4095.85,11387.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32835,118683.47,1368.93,10116.01,130168.41,21660.31,10211.99,7677.79,39550.09,169718.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7960,111879.76,15364.3,16896.08,144140.14,23422.15,15014.6,2401.39,40838.14,184978.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,6053,75605.0,28154.81,3395.71,107155.52,15597.27,12424.5,8532.58,36554.35,143709.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49472,4824.7,0.0,0.0,4824.7,0.0,2092.15,381.0,2473.15,7297.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,37949,50317.78,1638.93,4112.97,56069.68,11130.05,9528.76,4602.85,25261.66,81331.34 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,29596,20938.29,3738.65,667.07,25344.01,4696.44,4148.29,1996.79,10841.52,36185.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36838,56531.0,0.0,4830.55,61361.55,11788.47,12424.5,4893.32,29106.29,90467.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,1110,5678.23,0.0,150.0,5828.23,1307.27,848.21,502.23,2657.71,8485.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,42252,11206.0,0.0,0.0,11206.0,0.0,2484.9,869.35,3354.25,14560.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37091,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2410.98,12864.33,44164.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,49087,7830.01,6389.43,1531.21,15750.65,1468.9,955.73,264.79,2689.42,18440.07 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,12098,27593.29,0.0,536.25,28129.54,6746.96,8096.85,2258.61,17102.42,45231.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,9179,81418.59,0.0,518.59,81937.18,16913.69,10325.48,6858.95,34098.12,116035.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,35220,39915.33,2159.9,1234.87,43310.1,9789.24,10772.88,3251.17,23813.29,67123.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,15372,55830.68,0.0,373.5,56204.18,11597.83,7436.78,4659.9,23694.51,79898.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27802,66894.69,8914.2,3216.57,79025.46,15950.75,13180.97,5827.01,34958.73,113984.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3390,4087.38,312.23,11.54,4411.15,1150.95,1290.23,332.19,2773.37,7184.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5305,Materials Testing Technician,36549,74326.01,2464.18,0.0,76790.19,15318.92,12424.46,6255.78,33999.16,110789.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36356,68587.38,13602.24,7582.4,89772.02,20902.38,13515.35,6801.89,41219.62,130991.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,14759,123968.75,0.0,0.0,123968.75,24904.36,12424.5,17066.46,54395.32,178364.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,9765,192711.0,0.0,4020.0,196731.0,39547.14,12400.61,11072.43,63020.18,259751.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,8700,122387.32,38196.23,7938.29,168521.84,24223.86,12424.5,2870.72,39519.08,208040.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,40037,100761.01,938.68,950.0,102649.69,20962.91,12424.5,8464.72,41852.13,144501.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37681,59898.61,6183.9,859.71,66942.22,16566.84,11795.2,5159.74,33521.78,100464.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,691,97767.47,34392.79,9945.09,142105.35,26195.79,12424.5,2375.97,40996.26,183101.61 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,33249,3147.0,0.0,0.0,3147.0,585.66,477.87,244.26,1307.79,4454.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42983,7438.5,0.0,1107.31,8545.81,1978.64,3225.59,698.16,5902.39,14448.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,26232,0.0,0.0,12678.73,12678.73,0.0,68.5,969.92,1038.42,13717.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14462,3993.5,0.0,5.88,3999.38,0.0,1947.3,310.19,2257.49,6256.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8755,36508.39,0.0,3488.28,39996.67,9030.37,9081.66,3204.82,21316.85,61313.52 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,3790,58101.04,0.0,624.0,58725.04,12103.59,12424.5,4867.66,29395.75,88120.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,11255,56806.52,1061.26,0.0,57867.78,11664.06,11913.19,4511.7,28088.95,85956.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",31943,10536.75,0.0,0.0,10536.75,0.0,2508.79,815.76,3324.55,13861.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5214,Building Plans Engineer,48059,149312.0,0.0,0.0,149312.0,30049.2,12424.5,10348.99,52822.69,202134.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51631,1865.55,0.0,62.19,1927.74,0.0,143.35,47.44,190.79,2118.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,41375,36690.98,359.89,450.0,37500.87,7739.42,5454.95,3036.78,16231.15,53732.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,14395,54221.35,0.0,604.82,54826.17,11173.64,9419.94,4409.38,25002.96,79829.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,24400,66102.11,3838.5,1919.25,71859.86,13624.1,12424.5,5919.59,31968.19,103828.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,35650,22811.25,0.0,0.0,22811.25,1504.82,6899.18,1812.59,10216.59,33027.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",45228,143054.29,55809.54,26262.96,225126.79,33916.67,12759.01,3793.02,50468.7,275595.49 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,29135,56276.01,0.0,0.0,56276.01,12591.79,12424.5,4666.73,29683.02,85959.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7480,Power Generation Technician 1,206,64585.94,3094.18,11949.4,79629.52,13406.66,10333.85,5407.99,29148.5,108778.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,8363,53973.0,2347.24,1802.44,58122.68,13067.8,12424.5,4803.84,30296.14,88418.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,2505,72123.49,8457.44,2459.35,83040.28,14840.85,11865.99,6839.71,33546.55,116586.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30914,102880.11,3504.81,16795.18,123180.1,22674.51,13807.74,2098.52,38580.77,161760.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,3210,2835.0,0.0,0.0,2835.0,635.89,477.86,223.97,1337.72,4172.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,13816,74308.32,3657.07,0.0,77965.39,15274.06,12030.23,6375.2,33679.49,111644.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",41311,46552.34,3862.9,5819.04,56234.28,11238.89,4730.87,925.01,16894.77,73129.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3352,1099.64,192.24,1386.37,2678.25,346.22,218.68,207.38,772.28,3450.53 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,41046,81206.13,0.0,0.0,81206.13,16394.32,9022.7,6634.06,32051.08,113257.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,12772,56531.01,147.9,5640.76,62319.67,12673.07,12424.5,4754.41,29851.98,92171.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38638,77058.29,28210.11,10754.36,116022.76,17480.07,15196.11,1862.27,34538.45,150561.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9736,66231.21,6123.56,5434.52,77789.29,19704.92,13060.9,6031.56,38797.38,116586.67 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,28716,6042.0,0.0,0.0,6042.0,1558.83,1433.6,492.61,3485.04,9527.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1936,Senior Storekeeper,42023,42195.52,0.0,419.83,42615.35,8879.32,8359.78,3369.78,20608.88,63224.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,27189,4241.75,0.0,0.0,4241.75,0.0,1403.73,328.4,1732.13,5973.88 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),27087,81075.0,0.0,1125.0,82200.0,16494.51,9557.31,6598.91,32650.73,114850.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,8303,101323.03,26271.73,4122.9,131717.66,20883.11,12424.5,9881.77,43189.38,174907.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,41947,90085.87,0.0,1742.51,91828.38,18924.79,11996.34,7571.83,38492.96,130321.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,12513,117565.55,20094.24,3511.81,141171.6,23748.05,15052.76,2397.35,41198.16,182369.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,5932,129811.02,0.0,0.0,129811.02,26124.17,12424.5,9961.78,48510.45,178321.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,44849,64219.42,0.0,478.34,64697.76,13320.29,9523.98,5440.72,28284.99,92982.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39063,16923.48,2011.38,740.95,19675.81,4812.42,5342.13,1476.75,11631.3,31307.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,24817,65713.4,0.0,0.0,65713.4,13159.36,9557.33,5277.93,27994.62,93708.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22700,66585.8,21948.43,5356.69,93890.92,19764.87,13129.71,7298.96,40193.54,134084.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,52227,64750.91,5280.1,0.0,70031.01,13139.13,10474.62,5771.52,29385.27,99416.28 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,38716,112209.05,0.0,0.0,112209.05,22582.31,12424.5,9099.62,44106.43,156315.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31773,3325.26,0.0,1035.83,4361.09,119.53,0.0,13.96,133.49,4494.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50755,454.15,113.54,0.0,567.69,111.22,0.0,44.96,156.18,723.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,7324,21095.99,877.13,2289.95,24263.07,4847.54,4251.81,2002.33,11101.68,35364.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11248,65227.24,7684.92,3881.44,76793.6,18919.2,12851.42,5651.79,37422.41,114216.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,8722,69971.65,634.07,249.75,70855.47,14427.1,10895.31,5796.57,31118.98,101974.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8079,62461.1,0.0,1565.0,64026.1,13165.69,12424.5,5202.18,30792.37,94818.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,26015,85436.8,29759.56,11516.0,126712.36,18673.66,11540.21,9856.06,40069.93,166782.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50733,56531.0,0.0,6895.47,63426.47,12418.84,12424.5,5181.61,30024.95,93451.42 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44723,3958.5,0.0,0.0,3958.5,0.0,1688.95,306.47,1995.42,5953.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,33402,55350.82,945.58,0.0,56296.4,11699.66,9702.94,4642.85,26045.45,82341.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,438,137658.14,14428.91,3577.19,155664.24,27225.51,12337.48,2574.69,42137.68,197801.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,25105,46921.81,1213.66,0.0,48135.47,11250.92,12424.5,3913.35,27588.77,75724.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,10131,25592.0,0.0,0.0,25592.0,5740.32,3822.92,2128.71,11691.95,37283.95 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,19513,24765.0,0.0,0.0,24765.0,4608.78,3822.92,1979.07,10410.77,35175.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,48271,193080.0,0.0,3821.13,196901.13,39565.46,12424.5,11089.89,63079.85,259980.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,21794,29874.78,0.0,1343.71,31218.49,4377.93,6077.85,2460.26,12916.04,44134.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19970,882.01,0.0,7.84,889.85,0.0,430.07,69.06,499.13,1388.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,41321,38369.4,13086.64,4066.91,55522.95,6144.14,7299.28,4346.5,17789.92,73312.87 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,15946,108941.69,0.0,0.0,108941.69,21878.84,12092.03,8713.87,42684.74,151626.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,21667,39008.0,0.0,3242.15,42250.15,7072.16,3345.06,1734.78,12152.0,54402.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,35874,26982.87,0.0,0.0,26982.87,0.0,0.0,2134.17,2134.17,29117.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22621,63643.12,15458.42,739.58,79841.12,17642.26,12542.65,6566.32,36751.23,116592.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12148,68056.58,8750.67,5919.34,82726.59,20305.02,13413.08,6244.7,39962.8,122689.39 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,43317,58690.0,0.0,0.0,58690.0,11884.85,9939.6,4710.68,26535.13,85225.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16151,45398.29,5757.87,1011.39,52167.55,12527.95,8905.51,4054.87,25488.33,77655.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4491,1206.41,0.0,162.83,1369.24,0.0,89.6,468.29,557.89,1927.13 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,17296,14163.6,0.0,0.0,14163.6,0.0,0.0,1121.77,1121.77,15285.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,12503,61204.04,0.0,0.0,61204.04,5449.99,12316.99,4928.62,22695.6,83899.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,28966,86663.05,12629.82,3030.0,102322.87,18482.61,12424.5,8351.84,39258.95,141581.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,30925,23286.01,1091.54,0.0,24377.55,5223.06,2867.2,1998.69,10088.95,34466.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2403,20889.88,0.0,2013.39,22903.27,6937.59,1771.09,5024.16,13732.84,36636.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,29765,0.0,0.0,303.74,303.74,0.0,0.0,23.23,23.23,326.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,8724,11677.08,0.0,73.58,11750.66,0.0,0.0,929.32,929.32,12679.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,4850,20376.04,0.0,1259.77,21635.81,0.0,4775.67,1679.28,6454.95,28090.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,49692,68679.62,0.0,614.4,69294.02,14272.6,12233.36,5130.01,31635.97,100929.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,40949,130574.86,0.0,5555.49,136130.35,27535.79,11424.45,9999.49,48959.73,185090.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,31903,193080.05,0.0,250.0,193330.05,38857.52,12424.5,10875.42,62157.44,255487.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,22081,97934.03,12148.58,4031.82,114114.43,20594.57,12424.5,8718.92,41737.99,155852.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,10642,102019.02,0.0,0.0,102019.02,21026.27,12424.5,7824.04,41274.81,143293.83 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,164.0,Physicians and Dentists - Miscellaneous,2500,Med Therapy & Auxiliary,2598,Asst Med Examiner,13746,279311.03,9046.92,56742.56,345100.51,56211.61,12424.5,13482.66,82118.77,427219.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,3.0,"Operating Engineers - Miscellaneous, Local 3",7200,Supervisory-Labor & Trade,7208,Heavy Equipment Ops Sprv,49140,109563.04,0.0,0.0,109563.04,22049.81,12424.5,9011.52,43485.83,153048.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,32511,56406.01,7398.69,1848.0,65652.7,11986.2,12424.5,5157.34,29568.04,95220.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39443,10168.98,0.0,0.0,10168.98,1955.43,4409.63,817.16,7182.22,17351.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,46456,104796.25,5631.44,10314.77,120742.46,21333.32,9557.3,2053.93,32944.55,153687.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46179,119461.62,30315.63,1714.73,151491.98,23641.88,12424.5,2571.44,38637.82,190129.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41627,123085.38,1072.8,21389.88,145548.06,25906.23,10900.11,4318.75,41125.09,186673.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33339,48244.0,2573.16,2495.55,53312.71,11588.67,12424.5,4044.9,28058.07,81370.78 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,6724,731.03,0.0,40.61,771.64,160.66,0.0,61.11,221.77,993.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,7197,119321.05,0.0,0.0,119321.05,24013.59,12424.5,9695.15,46133.24,165454.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,3085,56531.0,2763.91,2735.46,62030.37,11686.82,12424.5,4870.79,28982.11,91012.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19558,137755.82,533.06,3075.91,141364.79,28337.87,12200.21,10138.12,50676.2,192040.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18969,65671.78,21134.18,4129.35,90935.31,19076.24,12936.48,7071.06,39083.78,130019.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,25007,43081.51,214.5,741.09,44037.1,10237.16,9565.38,3696.88,23499.42,67536.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34770,126759.75,21875.84,19574.25,168209.84,25025.87,12424.5,2812.11,40262.48,208472.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23570,1625.23,0.0,62.77,1688.0,0.0,881.06,130.69,1011.75,2699.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),18764,9882.0,0.0,0.0,9882.0,0.0,2867.19,766.87,3634.06,13516.06 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,46134,7978.0,0.0,0.0,7978.0,1484.7,955.73,607.31,3047.74,11025.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24718,15357.83,0.0,0.0,15357.83,200.2,6597.53,1244.03,8041.76,23399.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,10171,56120.0,0.0,0.0,56120.0,12556.79,12424.5,4462.62,29443.91,85563.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",24890,20200.0,0.0,0.0,20200.0,0.0,4778.66,1567.45,6346.11,26546.11 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,42516,73028.13,0.0,0.0,73028.13,15050.9,12418.53,5776.48,33245.91,106274.04 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,35974,3183.57,787.31,0.0,3970.88,0.0,949.76,308.88,1258.64,5229.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21610,11350.6,0.0,0.0,11350.6,0.0,4922.02,908.64,5830.66,17181.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,36209,105363.09,0.0,780.0,106143.09,21727.62,12424.5,8270.37,42422.49,148565.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,50701,83148.06,0.0,7932.84,91080.9,17128.0,12424.48,6771.27,36323.75,127404.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,7086,83798.23,0.0,0.0,83798.23,17256.78,12424.5,6818.05,36499.33,120297.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,7825,21095.13,0.0,264.26,21359.39,0.0,5638.81,1655.77,7294.58,28653.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6115,Wastewater Control Inspector,32132,7236.0,0.0,0.0,7236.0,1346.62,955.72,566.7,2869.04,10105.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7228,Automotive Trnst Shop Sprv 1,17258,18776.0,4953.69,4694.56,28424.25,3875.06,1911.46,2204.83,7991.35,36415.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40863,18187.45,41.33,651.06,18879.84,800.92,7825.05,1524.26,10150.23,29030.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,30799,2734.5,0.0,40.0,2774.5,610.11,716.79,203.45,1530.35,4304.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27566,91533.33,5252.52,17255.0,114040.85,26404.03,11636.92,1941.05,39982.0,154022.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,1085,117118.28,0.0,1807.23,118925.51,23839.31,8516.76,9589.87,41945.94,160871.45 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,27309,63102.07,0.0,989.7,64091.77,13070.88,12424.5,5311.71,30807.09,94898.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32990,15870.89,0.0,261.32,16132.21,0.0,5249.53,1251.08,6500.61,22632.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50695,8238.5,2222.12,124.67,10585.29,2157.7,2241.97,851.76,5251.43,15836.72 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,2917,12472.2,0.0,0.0,12472.2,0.0,2980.68,967.06,3947.74,16419.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,44164,77642.38,0.0,1804.67,79447.05,16018.47,8296.93,6465.82,30781.22,110228.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27032,62620.18,0.0,0.0,62620.18,12843.08,11766.06,5194.78,29803.92,92424.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50264,70493.83,21469.45,7183.86,99147.14,21257.37,13884.86,7543.09,42685.32,141832.46 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,19666,6143.9,0.0,0.0,6143.9,0.0,0.0,486.46,486.46,6630.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13479,89783.93,24505.53,7732.82,122022.28,18804.83,11468.77,2036.07,32309.67,154331.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,41265,3328.28,0.0,23.54,3351.82,0.0,831.78,260.0,1091.78,4443.6 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,46973,30221.44,0.0,1486.4,31707.84,6868.38,3993.76,2578.74,13440.88,45148.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,34769,26758.2,0.0,0.0,26758.2,6001.89,3813.54,2204.86,12020.29,38778.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,10843,81157.01,0.0,3744.31,84901.32,17472.27,12424.5,6776.56,36673.33,121574.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27389,8078.4,0.0,0.0,8078.4,0.0,3440.63,649.9,4090.53,12168.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,6279,63887.0,16657.2,3130.02,83674.22,13810.38,12424.5,6851.9,33086.78,116761.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,17963,50759.41,8132.85,1825.0,60717.26,12587.82,12424.5,4804.75,29817.07,90534.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,28193,55612.8,0.0,0.0,55612.8,3178.97,9509.52,4452.81,17141.3,72754.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3500,6164.34,0.0,0.0,6164.34,0.0,2673.06,481.16,3154.22,9318.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,47280,68082.3,0.0,0.0,68082.3,14001.81,12424.5,5481.87,31908.18,99990.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,3348,36675.0,0.0,0.0,36675.0,8226.18,4300.79,2780.02,15306.99,51981.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1431,Senior Unit Clerk,48545,68198.98,679.87,1783.88,70662.73,14382.89,12422.11,5583.8,32388.8,103051.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,19372,97793.0,11910.59,600.0,110303.59,20267.12,12424.5,8809.67,41501.29,151804.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,30396,81195.79,1113.42,9300.31,91609.52,17943.35,12430.47,7266.15,37639.97,129249.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49219,1252.0,0.0,0.0,1252.0,226.99,191.14,97.17,515.3,1767.3 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,42126,21399.0,62.61,146.08,21607.69,0.0,4503.88,1676.44,6180.32,27788.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22229,52338.6,0.0,4418.49,56757.09,13591.49,12424.5,4306.92,30322.91,87080.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,24637,65145.0,33387.33,5098.79,103631.12,8743.82,12424.52,8382.78,29551.12,133182.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,9358,Crane Mechanic Supervisor,3319,118427.0,26884.4,613.2,145924.6,23833.74,12424.5,10214.23,46472.47,192397.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,29120,43509.29,0.0,0.0,43509.29,8941.82,9297.77,3664.21,21903.8,65413.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,41933,65067.23,805.29,526.38,66398.9,13325.63,10480.72,5525.99,29332.34,95731.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,29833,10191.0,0.0,0.0,10191.0,0.0,3082.24,788.98,3871.22,14062.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,22070,17697.01,0.0,0.0,17697.01,3454.17,3345.06,1436.5,8235.73,25932.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,3850,41001.2,0.0,0.0,41001.2,9321.34,10943.12,3311.4,23575.86,64577.06 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,52897,120111.02,0.0,16365.97,136476.99,24172.55,12424.5,10072.28,46669.33,183146.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,40282,3826.9,0.0,0.0,3826.9,987.34,955.73,275.79,2218.86,6045.76 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,30541,74412.03,0.0,3000.0,77412.03,15345.94,12424.5,6433.19,34203.63,111615.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,5955,19375.03,0.0,0.0,19375.03,4260.56,4300.79,1524.29,10085.64,29460.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,50947,63887.06,27949.33,7258.58,99094.97,14167.16,12424.5,8054.34,34646.0,133740.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34343,98531.49,520.1,9912.49,108964.08,21081.53,9000.0,8730.42,38811.95,147776.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2899,69617.72,17734.73,4125.65,91478.1,15867.27,12312.86,7235.18,35415.31,126893.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,33243,75288.08,0.0,0.0,75288.08,15491.37,12424.52,6007.61,33923.5,109211.58 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,46705,92282.15,0.0,0.0,92282.15,19019.56,12424.49,6666.09,38110.14,130392.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,49351,91395.42,0.0,0.0,91395.42,16755.46,6203.29,7057.76,30016.51,121411.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,26266,1665.55,0.0,0.0,1665.55,301.96,0.0,131.93,433.89,2099.44 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,9507,54082.8,0.0,0.0,54082.8,11381.67,12424.5,4369.81,28175.98,82258.78 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,41778,24113.36,0.0,0.0,24113.36,0.0,5461.11,1867.69,7328.8,31442.16 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,17428,93268.74,0.0,0.0,93268.74,17987.84,8601.59,7366.54,33955.97,127224.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10734,2631.03,0.0,0.0,2631.03,0.0,1140.91,200.5,1341.41,3972.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,16266,26233.9,0.0,0.0,26233.9,0.0,5208.73,2069.81,7278.54,33512.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44832,5738.98,0.0,1532.73,7271.71,0.0,489.82,564.4,1054.22,8325.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,13933,92655.81,1280.18,9725.01,103661.0,20237.84,12561.89,1717.44,34517.17,138178.17 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),29488,132226.41,0.0,1562.5,133788.91,26900.98,12424.5,10010.49,49335.97,183124.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,47852,19889.62,0.0,216.17,20105.79,4844.54,5763.06,1628.86,12236.46,32342.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",2926,25861.6,0.0,0.0,25861.6,0.0,5453.64,2004.92,7458.56,33320.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",43731,17124.5,0.0,0.0,17124.5,0.0,4061.87,1329.13,5391.0,22515.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5168,8484.59,0.0,170.7,8655.29,0.0,3629.15,702.15,4331.3,12986.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,14753,107327.82,0.0,0.0,107327.82,19366.62,12328.93,7918.97,39614.52,146942.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29615,67113.02,0.0,0.0,67113.02,13703.99,11235.8,5353.03,30292.82,97405.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,39451,61875.01,0.0,824.0,62699.01,12881.26,12424.5,5129.16,30434.92,93133.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1272,725.69,0.0,357.01,1082.7,187.23,334.51,83.5,605.24,1687.94 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,53165,59694.01,6345.76,5400.58,71440.35,14347.14,12424.5,5474.11,32245.75,103686.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49296,119463.83,53522.5,12938.5,185924.83,23633.5,12424.5,3147.91,39205.91,225130.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,34220,35469.0,25655.8,5064.56,66189.36,6852.9,4300.79,4823.02,15976.71,82166.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,48780,74883.91,0.0,0.0,74883.91,15427.95,12424.5,6093.0,33945.45,108829.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2566,8760.9,0.0,249.41,9010.31,232.89,3799.03,720.0,4751.92,13762.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,35268,93884.0,0.0,3320.0,97204.0,20033.25,12424.51,7865.74,40323.5,137527.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,48221,13289.16,311.1,16.59,13616.85,3108.3,3061.92,1102.38,7272.6,20889.45 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,19333,80570.0,0.0,1040.0,81610.0,16819.41,12424.5,6713.41,35957.32,117567.32 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,48140,77071.03,0.0,1464.0,78535.03,16186.47,12424.5,6283.46,34894.43,113429.46 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,27838,69144.63,0.0,582.0,69726.63,14400.26,11587.94,5800.51,31788.71,101515.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52869,15886.78,0.0,0.0,15886.78,4086.35,6688.74,1276.75,12051.84,27938.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,37428,49679.0,0.0,2021.4,51700.4,11930.06,12424.5,4027.28,28381.84,80082.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,3789,189505.03,351.31,18266.47,208122.81,38065.34,12424.5,3105.66,53595.5,261718.31 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),26872,21132.0,0.0,735.14,21867.14,4797.65,1433.6,1775.88,8007.13,29874.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,31131,95053.02,544.95,0.0,95597.97,19590.64,12424.5,7676.81,39691.95,135289.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,48592,96930.03,0.0,0.0,96930.03,19977.61,12424.5,7852.89,40255.0,137185.03 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,37193,102019.01,0.0,0.0,102019.01,21026.26,12424.5,8302.08,41752.84,143771.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16670,54134.89,0.0,972.45,55107.34,11205.38,11911.03,4575.06,27691.47,82798.81 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,15482,101087.05,0.0,0.0,101087.05,20826.44,12424.5,8031.56,41282.5,142369.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,36664,13674.42,0.0,2691.93,16366.35,2776.24,2206.96,1337.04,6320.24,22686.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43977,11309.05,0.0,14.33,11323.38,0.0,2801.48,190.05,2991.53,14314.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,32311,61735.0,796.5,0.0,62531.5,12724.0,12424.5,5171.0,30319.5,92851.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,53056,27476.5,97.35,0.0,27573.85,6167.82,6687.13,2236.95,15091.9,42665.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,33227,101276.0,19091.83,12115.76,132483.59,22962.48,12424.5,9948.47,45335.45,177819.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44197,118900.98,4927.38,25617.69,149446.05,27662.01,10856.87,8043.09,46561.97,196008.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,46136,37021.11,862.32,2138.59,40022.02,7107.55,6722.97,3217.37,17047.89,57069.91 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,36105,68984.5,0.0,960.0,69944.5,14411.39,12288.61,5667.82,32367.82,102312.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3151,84102.81,0.0,6020.18,90122.99,15036.27,7415.87,4179.26,26631.4,116754.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,19691,119450.09,16066.84,8407.07,143924.0,24261.04,12424.5,2394.7,39080.24,183004.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40180,120004.37,520.1,8854.91,129379.38,25021.1,10957.93,9711.05,45690.08,175069.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45273,115566.71,12873.74,13010.07,141450.52,22795.39,11946.64,2336.81,37078.84,178529.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,17732,87601.0,1076.7,901.42,89579.12,18145.06,12424.5,7213.24,37782.8,127361.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",14060,69768.67,0.0,7167.44,76936.11,15079.92,10955.07,6237.31,32272.3,109208.41 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,192C,Court Administrator,49834,56661.0,0.0,3000.0,59661.0,10272.68,5256.52,13395.43,28924.63,88585.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,37278,135421.01,0.0,0.0,135421.01,27253.5,12424.51,10035.04,49713.05,185134.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,30530,28757.0,956.85,345.6,30059.45,5415.99,4300.79,2402.29,12119.07,42178.52 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14191,111296.1,0.0,1500.0,112796.1,22969.97,12424.5,9061.17,44455.64,157251.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,14884,66339.65,0.0,0.0,66339.65,13645.31,12424.5,5336.54,31406.35,97746.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21458,119712.76,49414.73,13728.24,182855.73,23679.36,12424.5,2967.8,39071.66,221927.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7589,113226.43,1148.29,17112.23,131486.95,24876.13,15195.16,2219.55,42290.84,173777.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20633,114536.9,0.0,5350.28,119887.18,19973.25,11158.16,6970.04,38101.45,157988.63 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,38990,153105.05,0.0,0.0,153105.05,30812.58,12424.5,17652.58,60889.66,213994.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32646,119459.84,5741.55,15763.57,140964.96,23648.13,12424.5,2389.67,38462.3,179427.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,28203,50190.1,0.0,4509.99,54700.09,11086.69,7167.99,4507.26,22761.94,77462.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,46314,82883.0,13229.79,9803.91,105916.7,18228.34,12424.5,8605.93,39258.77,145175.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13687,44122.01,0.0,0.0,44122.01,8672.68,8123.7,3576.41,20372.79,64494.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9774,127084.43,10773.99,6462.36,144320.78,25144.48,12424.5,2447.71,40016.69,184337.47 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,9172,51844.89,7454.33,119.84,59419.06,8722.83,10068.03,4741.21,23532.07,82951.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5749,60524.39,15290.56,676.68,76491.63,16644.47,11917.9,5967.44,34529.81,111021.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45552,56120.03,0.0,1460.0,57580.03,12883.18,12424.5,4385.34,29693.02,87273.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20460,71143.18,0.0,12105.88,83249.06,12593.29,6536.6,5597.47,24727.36,107976.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,33863,84644.01,26329.98,22316.08,133290.07,17556.45,12424.5,9900.51,39881.46,173171.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,11160,98157.0,0.0,0.0,98157.0,20230.58,12424.5,7618.8,40273.88,138430.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,37653,66714.58,823.35,4541.27,72079.2,13879.79,11801.96,5951.74,31633.49,103712.69 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,166,133087.05,0.0,0.0,133087.05,26783.95,12424.5,10080.14,49288.59,182375.64 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,7288,84841.56,7395.43,5888.89,98125.88,18526.62,12400.61,7897.4,38824.63,136950.51 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,31070,2081.63,0.0,467.56,2549.19,546.98,465.92,197.36,1210.26,3759.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),985,85020.15,13175.45,9796.72,107992.32,18976.3,12424.52,1754.79,33155.61,141147.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,41097,89210.0,0.0,1540.0,90750.0,18702.98,12424.5,7106.13,38233.61,128983.61 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,25115,11100.75,0.0,593.2,11693.95,3015.13,3404.79,958.13,7378.05,19072.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,41727,87531.02,0.0,0.0,87531.02,18040.63,12424.5,7261.18,37726.31,125257.33 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8234,Fire Alarm Dispatcher,23430,67270.55,7007.2,6310.76,80588.51,14732.73,12251.94,6576.74,33561.41,114149.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,29378,81157.0,15001.41,19268.14,115426.55,19612.25,12424.5,9191.51,41228.26,156654.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0380,"Inspector, (Police Department)",26186,139122.49,7995.6,12763.57,159881.66,29294.67,12424.5,236.05,41955.22,201836.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",23268,74624.85,0.0,1018.4,75643.25,15581.17,9939.6,6235.31,31756.08,107399.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,22268,62187.0,3269.31,4230.6,69686.91,13466.18,12424.5,5458.16,31348.84,101035.75 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,20096,191926.0,0.0,19192.6,211118.6,41299.32,12424.5,5504.58,59228.4,270347.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52889,5285.29,0.0,112.88,5398.17,66.5,0.0,1316.63,1383.13,6781.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43343,8890.0,0.0,780.11,9670.11,2494.88,2389.33,785.93,5670.14,15340.25 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,45264,123776.01,4602.71,10836.3,139215.02,25630.05,12424.5,10054.71,48109.26,187324.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42680,17028.3,0.0,357.89,17386.19,0.0,4229.12,1347.99,5577.11,22963.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36336,37820.3,0.0,0.0,37820.3,7057.55,5782.18,2896.93,15736.66,53556.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,485,62187.01,0.0,2162.4,64349.41,12826.05,12424.5,4974.88,30225.43,94574.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17156,28510.8,0.0,0.0,28510.8,6255.26,4396.36,2192.94,12844.56,41355.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",45538,90801.96,0.0,0.0,90801.96,17883.2,10035.18,14274.24,42192.62,132994.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45660,70555.9,0.0,10567.17,81123.07,14489.48,0.0,6256.1,20745.58,101868.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,46005,121173.83,648.0,5305.53,127127.36,25774.48,9930.76,9713.28,45418.52,172545.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",31032,26498.42,0.0,0.0,26498.42,0.0,6239.14,2055.96,8295.1,34793.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",29717,14550.75,0.0,0.0,14550.75,0.0,3464.49,1129.17,4593.66,19144.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35401,5866.25,0.0,0.0,5866.25,1513.51,1941.33,454.16,3909.0,9775.25 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,40223,209452.6,0.0,39796.0,249248.6,45206.13,12424.5,5417.95,63048.58,312297.18 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,40888,65829.8,265.53,0.0,66095.33,13554.08,12424.5,5258.99,31237.57,97332.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,33815,189509.92,0.0,250.0,189759.92,38074.3,12376.71,10911.34,61362.35,251122.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,12627,129271.06,2731.96,866.25,132869.27,26205.52,12424.5,9944.82,48574.84,181444.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25483,75550.36,0.0,1560.0,77110.36,15863.75,12424.5,6096.76,34385.01,111495.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,8559,105851.61,153.98,12367.46,118373.05,22118.75,12242.44,9714.35,44075.54,162448.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,32187,95558.04,7404.96,0.0,102963.0,19695.12,12424.5,8454.21,40573.83,143536.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32540,9238.0,0.0,63.08,9301.08,1641.64,955.73,77.4,2674.77,11975.85 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,32368,43656.25,0.0,0.0,43656.25,564.81,7018.65,3477.08,11060.54,54716.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,33069,81542.04,0.0,0.0,81542.04,16806.18,12424.5,6645.07,35875.75,117417.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25355,120902.28,15398.16,15263.44,151563.88,23874.24,12424.49,2536.36,38835.09,190398.97 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,11000,27455.11,0.0,475.42,27930.53,6696.01,6970.87,2300.39,15967.27,43897.8 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,15454,128590.06,0.0,0.0,128590.06,25878.86,12424.51,9872.34,48175.71,176765.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,28495,91700.2,33127.6,12329.7,137157.5,17253.52,8123.71,2346.15,27723.38,164880.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,25626,71885.7,1479.08,4383.45,77748.23,14960.48,12472.29,6380.38,33813.15,111561.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1041,IS Engineer-Assistant,12629,105254.62,0.0,3788.8,109043.42,21593.38,12424.5,8726.73,42744.61,151788.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,14779,93755.4,40486.27,4369.8,138611.47,19363.73,12663.43,10012.95,42040.11,180651.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,2291,43786.5,792.02,2440.03,47018.55,10949.3,10465.25,3794.34,25208.89,72227.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,35804,40275.0,5767.28,851.07,46893.35,8999.18,7167.99,3721.52,19888.69,66782.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,33453,98157.01,0.0,0.0,98157.01,20230.58,12424.5,7960.32,40615.4,138772.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,17476,97589.37,34543.3,10744.63,142877.3,25649.19,12400.61,2361.45,40411.25,183288.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,29510,75605.01,17287.1,3312.4,96204.51,15582.61,12424.5,7880.61,35887.72,132092.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,12740,137777.17,1817.8,1437.2,141032.17,28025.25,10298.0,10102.18,48425.43,189457.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21062,24053.99,2248.62,627.71,26930.32,6089.12,7472.13,2052.89,15614.14,42544.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,5767,2742.92,0.0,586.97,3329.89,0.0,601.81,258.45,860.26,4190.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15980,79976.39,0.0,22844.65,102821.04,18209.05,0.0,6534.93,24743.98,127565.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31542,49480.1,0.0,6689.28,56169.38,12923.18,12424.5,4542.9,29890.58,86059.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,48468,35922.02,0.0,0.0,35922.02,6845.82,6690.11,2918.41,16454.34,52376.36 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,35386,26050.96,0.0,613.52,26664.48,6494.62,6448.8,2133.23,15076.65,41741.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25614,49552.23,4669.43,1489.79,55711.45,14482.09,9854.36,4202.86,28539.31,84250.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49913,23667.42,2758.36,676.1,27101.88,6008.33,7353.35,2066.19,15427.87,42529.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,39555,0.0,0.0,1369.21,1369.21,0.0,34.25,104.74,138.99,1508.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14406,107766.04,3504.81,16201.37,127472.22,24374.75,12711.22,2170.16,39256.13,166728.35 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,42813,150393.07,0.0,0.0,150393.07,30399.28,12424.5,17616.72,60440.5,210833.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22255,47515.51,3347.09,853.01,51715.61,11398.27,12084.99,4272.17,27755.43,79471.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30485,902.27,0.0,46.83,949.1,0.0,391.25,80.96,472.21,1421.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,45095,75580.02,2207.08,8315.96,86103.06,16766.77,12420.5,7025.47,36212.74,122315.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,11241,81157.02,16184.03,20346.42,117687.47,20100.93,12424.49,9448.88,41974.3,159661.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26349,65966.18,5411.59,2029.59,73407.36,18628.94,12997.64,5607.01,37233.59,110640.95 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,50234,57246.6,1565.34,5680.06,64492.0,13865.13,12352.81,5174.57,31392.51,95884.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",21214,7987.69,0.0,0.0,7987.69,531.8,1690.43,649.41,2871.64,10859.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,30920,22638.38,1316.4,3669.26,27624.04,5314.78,4390.94,2000.4,11706.12,39330.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,44047,140053.62,10685.39,20617.65,171356.66,27671.45,12424.5,2910.83,43006.78,214363.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,17477,7138.44,0.0,0.0,7138.44,1601.15,1582.93,601.98,3786.06,10924.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,13580,28789.97,0.0,645.25,29435.22,7049.79,7108.24,2370.4,16528.43,45963.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6914,77065.69,3386.16,13088.28,93540.13,17960.45,15196.12,1559.18,34715.75,128255.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34672,17837.33,3109.69,562.36,21509.38,4408.06,5506.92,1643.76,11558.74,33068.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23200,48509.13,0.0,3277.79,51786.92,11466.71,11165.44,4232.31,26864.46,78651.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,17335,125815.1,0.0,0.0,125815.1,25320.94,12424.5,9888.31,47633.75,173448.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41210,96563.08,49614.01,18933.36,165110.45,28075.09,12328.94,2712.34,43116.37,208226.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,48314,55027.21,0.0,1595.1,56622.31,13174.64,12424.5,4347.78,29946.92,86569.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,9105,20711.71,0.0,25.65,20737.36,3702.15,4614.36,1571.92,9888.43,30625.79 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,52893,363.38,370.95,0.0,734.33,0.0,107.52,56.99,164.51,898.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,14631,84973.0,0.0,0.0,84973.0,17500.88,12424.5,6914.51,36839.89,121812.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28648,15712.81,0.0,0.0,15712.81,4041.47,6615.51,1263.27,11920.25,27633.06 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,14947,223826.01,0.0,114068.91,337894.92,51728.65,12424.5,13408.58,77561.73,415456.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7213,Plumber Supervisor 1,29879,86066.74,1072.66,8478.93,95618.33,19261.48,9489.69,7654.79,36405.96,132024.29 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0890,Mayoral Staff X,13721,17627.01,0.0,0.0,17627.01,3280.38,2867.19,3329.15,9476.72,27103.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,12773,24450.0,0.0,0.0,24450.0,5484.12,2867.19,1988.25,10339.56,34789.56 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1281,Senior Emp Relations Repres,17529,34595.0,0.0,0.0,34595.0,7590.12,3345.06,2853.74,13788.92,48383.92 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,33229,67911.02,0.0,5529.36,73440.38,14529.62,12424.5,5818.1,32772.22,106212.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",10248,105987.74,22393.85,10585.15,138966.74,23565.71,12412.44,10105.27,46083.42,185050.16 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,991,41463.0,0.0,0.0,41463.0,7716.22,5734.39,3259.26,16709.87,58172.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14207,34511.39,6787.45,1903.1,43201.94,10675.82,6863.23,3868.52,21407.57,64609.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35939,44713.71,5295.79,2716.0,52725.5,13489.37,8277.04,3011.88,24778.29,77503.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24810,4648.38,0.0,18.1,4666.48,0.0,1781.54,362.07,2143.61,6810.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19531,3613.15,0.0,36.26,3649.41,0.0,1517.22,290.97,1808.19,5457.6 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,39213,34338.34,9.77,2572.03,36920.14,4585.68,7804.14,2910.11,15299.93,52220.07 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,9971,208032.0,0.0,5723.14,213755.14,43018.44,12424.5,11474.8,66917.74,280672.88 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",40316,74084.81,44297.49,4558.86,122941.16,17942.53,12424.5,2336.9,32703.93,155645.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,49233,15515.82,0.0,20.0,15535.82,3151.1,2212.51,1476.04,6839.65,22375.47 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,43922,78585.16,762.26,0.0,79347.42,16200.72,12394.64,6579.68,35175.04,114522.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,14419,45338.0,0.0,880.0,46218.0,8906.66,7167.97,3702.75,19777.38,65995.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,5800,2661.44,0.0,0.0,2661.44,0.0,788.48,206.55,995.03,3656.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,30772,67396.0,0.0,0.0,67396.0,14317.94,9557.31,5449.25,29324.5,96720.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,37664,81243.04,26019.73,1212.97,108475.74,17357.27,8123.71,8776.27,34257.25,142732.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,52770,42209.8,505.57,4668.14,47383.51,606.57,7024.61,3661.19,11292.37,58675.88 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,3212,9463.59,0.0,2243.16,11706.75,0.0,0.0,169.75,169.75,11876.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,23331,196584.01,0.0,0.0,196584.01,40516.67,12424.5,11173.98,64115.15,260699.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33347,97761.25,4610.16,8871.54,111242.95,25928.07,12424.5,1882.1,40234.67,151477.62 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,4177,134257.02,0.0,0.0,134257.02,26996.12,12424.51,10055.94,49476.57,183733.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25956,128828.3,50009.67,12394.36,191232.33,25970.11,12424.5,3252.75,41647.36,232879.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7378,48757.19,0.0,540.0,49297.19,6587.27,11164.25,3730.33,21481.85,70779.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,28756,120111.03,0.0,0.0,120111.03,24172.55,12424.5,9625.86,46222.91,166333.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40161,795.6,0.0,8.85,804.45,0.0,430.07,62.28,492.35,1296.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,42366,75605.0,10043.55,8908.26,94556.81,16688.88,12424.5,7741.45,36854.83,131411.64 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,2340,86540.43,0.0,0.0,86540.43,17784.18,12269.19,6812.64,36866.01,123406.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52181,56531.01,40.52,982.8,57554.33,11651.3,12424.5,4426.06,28501.86,86056.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2536,Respiratory Care Practitioner,16494,6061.13,0.0,0.0,6061.13,0.0,1187.2,469.79,1656.99,7718.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12879,75281.88,692.85,4495.12,80469.85,14396.87,7816.03,1365.91,23578.81,104048.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,36640,136640.1,0.0,0.0,136640.1,27500.19,12424.5,10148.89,50073.58,186713.68 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,38290,119066.04,14812.66,14577.18,148455.88,31634.18,12424.5,2526.55,46585.23,195041.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,1743,84157.06,17243.83,8605.18,110006.07,18114.79,12424.5,9025.98,39565.27,149571.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,50903,138699.53,19809.15,11391.17,169899.85,27449.91,12424.51,2863.91,42738.33,212638.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",36634,95542.02,18977.56,1129.28,115648.86,19696.65,12424.51,9258.19,41379.35,157028.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3580,16577.62,42.56,2179.04,18799.22,4243.06,6976.83,1524.27,12744.16,31543.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,27756,101683.0,0.0,13565.71,115248.71,22832.2,11757.28,9213.77,43803.25,159051.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,51435,25087.95,0.0,1279.52,26367.47,0.0,6719.98,2044.61,8764.59,35132.06 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0891,Mayoral Staff XI,42348,97934.0,0.0,0.0,97934.0,20184.94,12424.5,15844.19,48453.63,146387.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",17701,64974.18,1920.86,1338.8,68233.84,12875.46,7586.11,5496.12,25957.69,94191.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,351,138633.91,18305.8,6909.6,163849.31,27945.01,12424.5,2790.65,43160.16,207009.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,41826,50311.52,0.0,0.0,50311.52,12059.09,12407.83,4674.19,29141.11,79452.63 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,5824,38400.0,0.0,0.0,38400.0,7407.51,7167.99,3079.84,17655.34,56055.34 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,12378,13038.97,90.75,0.0,13129.72,0.0,2967.24,1017.93,3985.17,17114.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,28100,83607.08,19046.44,5828.83,108482.35,17637.05,12675.4,8845.5,39157.95,147640.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,26517,51013.22,871.02,0.0,51884.24,10905.0,7454.7,4191.09,22550.79,74435.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10318,67830.9,8434.59,830.46,77095.95,18793.33,13363.27,5848.53,38005.13,115101.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46658,58533.76,553.83,5789.45,64877.04,0.0,0.0,1020.82,1020.82,65897.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2410,56577.14,1889.83,7007.89,65474.86,12827.3,10050.47,5377.86,28255.63,93730.49 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),12923,46994.81,5594.79,950.0,53539.6,9238.7,7167.97,896.05,17302.72,70842.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29441,10974.0,0.0,85.56,11059.56,0.0,4229.12,857.42,5086.54,16146.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33204,60564.13,0.0,900.23,61464.36,12599.48,12044.96,4785.89,29430.33,90894.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41219,3839.78,0.0,0.0,3839.78,0.0,1665.06,304.75,1969.81,5809.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,9158,91188.3,5492.19,4737.02,101417.51,18828.61,12424.5,1691.25,32944.36,134361.87 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2792,97765.84,14974.44,12190.96,124931.24,25905.06,12424.5,2080.9,40410.46,165341.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1919,63052.69,0.0,3314.68,66367.37,13496.57,11152.18,5467.83,30116.58,96483.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,7133,100554.01,0.0,0.0,100554.01,20724.83,12424.52,8237.94,41387.29,141941.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,10657,98157.02,0.0,0.0,98157.02,20230.58,12424.5,8000.36,40655.44,138812.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",10250,72298.25,6186.21,24.72,78509.18,15007.59,9565.08,6483.83,31056.5,109565.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,29576,49679.0,0.0,2078.55,51757.55,12072.66,12424.5,4031.75,28528.91,80286.46 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,14447,103037.03,0.0,0.0,103037.03,20494.33,10990.9,8257.2,39742.43,142779.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",1400,"Clerical, Secretarial & Steno",1466,Meter Reader,3447,64963.04,0.0,0.0,64963.04,13389.14,12424.5,5346.51,31160.15,96123.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13715,16405.25,0.0,146.28,16551.53,-0.01,0.0,704.66,704.65,17256.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5110,81654.77,4942.38,10808.49,97405.64,18571.64,8972.41,1709.36,29253.41,126659.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32920,647.04,0.0,31.71,678.75,0.0,0.0,97.73,97.73,776.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",36445,108943.82,4273.22,1199.89,114416.93,22453.71,12424.49,9185.35,44063.55,158480.48 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,14108,101770.01,0.0,0.0,101770.01,20975.25,12424.5,8140.38,41540.13,143310.14 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,8797,79903.1,6958.18,11610.85,98472.13,17846.46,12376.71,7891.92,38115.09,136587.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,14909,87359.0,4415.52,650.09,92424.61,18125.96,12424.52,7426.45,37976.93,130401.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,6960,22754.11,0.0,1325.58,24079.69,5313.66,3282.03,1985.16,10580.85,34660.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,49950,79855.99,0.0,0.0,79855.99,16448.22,12424.5,6497.01,35369.73,115225.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,46717,79295.81,4699.51,13125.76,97121.08,17902.37,12137.78,7589.46,37629.61,134750.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16268,66663.86,9303.0,5193.75,81160.61,19716.04,13140.16,6120.72,38976.92,120137.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,30857,3555.37,0.0,112.55,3667.92,0.0,1182.72,284.1,1466.82,5134.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20768,56531.01,1918.48,1472.78,59922.27,11971.91,12424.5,4866.08,29262.49,89184.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,40918,49773.2,1632.6,2943.24,54349.04,12395.7,12424.51,4327.84,29148.05,83497.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,13935,12501.27,0.0,182.38,12683.65,0.0,4793.57,983.26,5776.83,18460.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,23103,100554.0,0.0,0.0,100554.0,20724.83,12424.49,8051.21,41200.53,141754.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,18051,109309.02,0.0,0.0,109309.02,22291.37,10990.9,9008.51,42290.78,151599.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20514,10060.5,0.0,0.0,10060.5,2259.37,2723.82,801.27,5784.46,15844.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21715,65497.03,71.39,8156.34,73724.76,747.42,0.0,7205.17,7952.59,81677.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",52718,93281.13,0.0,1020.0,94301.13,19424.62,12424.5,7767.4,39616.52,133917.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34004,9543.75,0.0,0.0,9543.75,0.0,4076.07,778.71,4854.78,14398.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,41520,27629.49,243.11,309.14,28181.74,7192.55,6155.33,2333.05,15680.93,43862.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,34880,23267.94,0.0,1050.09,24318.03,4658.71,4127.55,1790.96,10577.22,34895.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,29820,32744.37,0.0,0.0,32744.37,7855.1,9844.03,2673.66,20372.79,53117.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10675,74884.24,7939.45,6299.86,89123.55,15998.77,15052.77,1476.57,32528.11,121651.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32647,36325.93,4904.5,654.56,41884.99,9562.24,11343.63,3193.93,24099.8,65984.79 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37745,1323.0,0.0,152.25,1475.25,0.0,564.48,114.21,678.69,2153.94 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,28720,0.0,0.0,5783.5,5783.5,0.0,0.0,442.44,442.44,6225.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,18290,121118.21,42647.22,13645.25,177410.68,27166.47,12424.5,10752.13,50343.1,227753.78 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,32868,49289.91,1487.02,4671.28,55448.21,10782.87,10955.08,4463.1,26201.05,81649.26 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,4167,9463.59,0.0,2077.08,11540.67,0.0,0.0,167.34,167.34,11708.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,53179,49679.01,0.0,4765.13,54444.14,12619.98,12424.5,4244.3,29288.78,83732.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,12185,149962.62,0.0,0.0,149962.62,30205.42,12322.95,17599.71,60128.08,210090.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22768,64880.41,3959.56,592.2,69432.17,17952.39,12789.59,5408.5,36150.48,105582.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28971,6810.93,0.0,0.0,6810.93,0.0,2953.44,558.52,3511.96,10322.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,48193,14816.9,1397.12,506.93,16720.95,0.0,3764.21,1255.13,5019.34,21740.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,51840,50908.65,0.0,1945.05,52853.7,11305.1,11229.6,4818.48,27353.18,80206.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,24693,43148.22,0.0,1395.2,44543.42,10620.97,10654.36,3715.67,24991.0,69534.42 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,51982,35598.0,921.78,6482.75,43002.53,7339.35,5160.95,3418.44,15918.74,58921.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,28528,17710.12,0.0,0.0,17710.12,0.0,0.0,1400.51,1400.51,19110.63 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,38613,156599.83,0.0,0.0,156599.83,31475.96,12424.5,17729.23,61629.69,218229.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,31251,66102.03,0.0,2984.29,69086.32,14241.85,12424.5,5425.64,32091.99,101178.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,23924,54072.8,9259.29,1615.49,64947.58,10463.79,8792.72,5061.95,24318.46,89266.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43217,112680.11,11884.86,8653.16,133218.13,22350.67,12424.5,2222.57,36997.74,170215.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,6956,128129.09,0.0,0.0,128129.09,25766.04,12424.5,17225.58,55416.12,183545.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35056,29025.16,0.0,2555.76,31580.92,11046.22,2354.62,1045.17,14446.01,46026.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,29018,35922.0,0.0,0.0,35922.0,6845.8,6690.12,2886.83,16422.75,52344.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9438,3028.94,0.0,122.66,3151.6,0.0,1003.51,244.47,1247.98,4399.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12720,55643.59,14418.69,3515.87,73578.15,15879.29,10691.52,5691.02,32261.83,105839.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q037,Assistant Inspector 3,43742,138629.96,7960.23,5702.46,152292.65,27414.76,12424.5,2540.43,42379.69,194672.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41847,31750.14,881.41,3083.93,35715.48,10093.76,6314.09,2592.44,19000.29,54715.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,22316,33836.11,0.0,9474.78,43310.89,7912.32,6449.58,3547.77,17909.67,61220.56 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,24008,66989.45,21437.69,3429.03,91856.17,14111.94,12374.03,7479.05,33965.02,125821.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49786,56443.21,0.0,2603.05,59046.26,11777.67,12405.09,4891.55,29074.31,88120.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3544,Curator 3,7156,32210.0,0.0,0.0,32210.0,5994.3,4778.65,2553.56,13326.51,45536.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,29626,29052.01,0.0,0.0,29052.01,5406.59,3345.06,2308.9,11060.55,40112.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,28719,88831.0,10630.59,4352.77,103814.36,18555.9,12424.5,8338.01,39318.41,143132.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,23189,3385.39,0.0,0.0,3385.39,0.0,1582.93,262.58,1845.51,5230.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29318,11818.0,0.0,0.0,11818.0,2598.77,2867.19,949.9,6415.86,18233.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8477,96903.34,1139.8,5087.49,103130.63,20574.6,8099.82,8265.42,36939.84,140070.47 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",16839,198139.01,0.0,4137.66,202276.67,40736.19,12424.5,11261.63,64422.32,266698.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2190,10174.86,996.25,446.42,11617.53,2943.29,2009.25,849.96,5802.5,17420.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,46898,79951.0,0.0,0.0,79951.0,16478.21,12424.5,6565.43,35468.14,115419.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,37847,129604.96,87424.53,16684.97,233714.46,28781.75,15052.75,3974.25,47808.75,281523.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,532,70023.15,0.0,2285.97,72309.12,14840.11,12264.49,5908.0,33012.6,105321.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33758,112159.77,8971.72,20589.38,141720.87,25264.14,15052.76,2367.32,42684.22,184405.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44604,52776.64,5501.2,2079.14,60356.98,15542.47,10495.6,4701.84,30739.91,91096.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4691,10112.72,160.4,9874.14,20147.26,3027.41,2011.1,1538.73,6577.24,26724.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,22869,177116.2,17146.65,1161.14,195423.99,35644.78,12116.27,11056.54,58817.59,254241.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7887,67846.0,6326.65,1670.86,75843.51,15827.48,13368.11,5538.39,34733.98,110577.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,21279,100554.07,0.0,0.0,100554.07,20724.83,12424.5,7983.79,41133.12,141687.19 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,3252,6056.49,0.0,10.93,6067.42,0.0,794.45,470.93,1265.38,7332.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,39350,97424.12,0.0,1420.0,98844.12,20372.82,12424.5,8185.57,40982.89,139827.01 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,40408,73418.41,0.0,3000.0,76418.41,15103.18,9153.03,6493.37,30749.58,107167.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,42208,56867.52,0.0,0.0,56867.52,11672.8,11438.91,4673.11,27784.82,84652.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,15945,54169.89,0.0,6824.18,60994.07,12113.45,11903.99,5041.12,29058.56,90052.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5216,Chief Surveyor,45139,111355.11,0.0,0.0,111355.11,22648.82,12424.49,8772.8,43846.11,155201.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21522,59121.23,9631.28,1985.0,70737.51,16648.85,11638.3,5479.64,33766.79,104504.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6002,124660.35,30192.79,7205.79,162058.93,24648.99,12424.5,2762.6,39836.09,201895.02 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,18159,13555.0,813.3,0.0,14368.3,2522.6,2389.34,1137.49,6049.43,20417.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46023,51456.8,7702.27,3003.65,62162.72,12346.96,12424.5,5014.48,29785.94,91948.66 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,17514,101531.06,0.0,0.0,101531.06,20926.03,12424.51,8144.59,41495.13,143026.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,26938,33265.32,0.0,0.0,33265.32,6750.64,7141.34,2709.14,16601.12,49866.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,14308,50016.01,0.0,1204.0,51220.01,11205.01,7645.85,4030.55,22881.41,74101.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,20367,25155.0,0.0,0.0,25155.0,4681.31,4300.78,1995.9,10977.99,36132.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17667,30749.97,3384.01,1283.34,35417.32,8140.52,9583.06,2428.7,20152.28,55569.6 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,1012,1252.4,0.0,0.0,1252.4,239.95,143.35,69.98,453.28,1705.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21137,51513.77,0.0,0.0,51513.77,11169.9,5674.66,4107.85,20952.41,72466.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,34725,56744.04,6481.77,141.0,63366.81,12712.71,6690.11,5106.12,24508.94,87875.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,15079,62195.12,87.24,4081.33,66363.69,14053.14,9581.2,5480.73,29115.07,95478.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,30724,26927.0,0.0,720.0,27647.0,6201.21,5734.39,2252.07,14187.67,41834.67 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,29579,21852.0,0.0,0.0,21852.0,4066.65,2867.19,3566.76,10500.6,32352.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,20128,88326.0,0.0,0.0,88326.0,18204.26,12424.5,6901.22,37529.98,125855.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,9395,"Property Manager, Port",43649,12335.16,0.0,0.0,12335.16,2236.36,1418.67,909.24,4564.27,16899.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,2551,41310.34,0.0,0.0,41310.34,9908.85,12417.03,3359.29,25685.17,66995.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7203,Bldg & Grounds Maint Sprv,35682,105773.0,49235.01,2828.45,157836.46,22285.84,12424.5,10379.6,45089.94,202926.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,46442,39648.01,0.0,384.0,40032.01,8759.37,7645.85,3154.45,19559.67,59591.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41054,56433.22,6029.33,558.7,63021.25,15204.39,12735.95,4802.28,32742.62,95763.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,37648,87745.63,0.0,1640.58,89386.21,18397.23,12424.5,7267.6,38089.33,127475.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,33218,3508.15,0.0,19.42,3527.57,0.0,1640.34,273.57,1913.91,5441.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,48454,0.0,0.0,4345.25,4345.25,0.0,0.0,332.42,332.42,4677.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),1192,69031.2,0.0,0.0,69031.2,0.0,4683.07,5350.44,10033.51,79064.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,30245,62545.0,11432.59,4026.79,78004.38,12760.18,9557.3,6066.28,28383.76,106388.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,20656,43944.0,0.0,0.0,43944.0,7967.04,4300.78,3531.54,15799.36,59743.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,45672,15018.42,0.0,322.0,15340.42,1184.77,2758.18,1187.65,5130.6,20471.02 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,5120,92898.0,3078.04,1258.88,97234.92,19647.55,10990.9,7822.88,38461.33,135696.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,42777,66289.0,0.0,622.76,66911.76,13169.08,8123.69,5477.1,26769.87,93681.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,8642,112776.09,1514.21,6175.96,120466.26,23928.79,12424.5,9663.62,46016.91,166483.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,7766,73032.99,3237.89,1247.02,77517.9,15188.57,12362.86,6146.09,33697.52,111215.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52671,65370.94,11203.81,2151.79,78726.54,18489.83,12882.72,5886.84,37259.39,115985.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,446,107098.46,579.01,3597.67,111275.14,22168.56,11795.16,8771.3,42735.02,154010.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,38367,13549.34,0.0,0.0,13549.34,0.0,0.0,1071.81,1071.81,14621.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26458,65301.16,10458.13,679.84,76439.13,18049.61,12866.59,5964.47,36880.67,113319.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,5331,6177.6,0.0,0.0,6177.6,1385.63,931.84,495.42,2812.89,8990.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,28931,6749.43,0.0,118.93,6868.36,0.0,2244.47,532.43,2776.9,9645.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,14231,113466.25,0.0,11653.03,125119.28,25110.09,12315.09,9790.41,47215.59,172334.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,4414,62468.87,0.0,1763.68,64232.55,13168.38,12424.5,5260.94,30853.82,95086.37 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23063,29532.06,0.0,732.3,30264.36,7413.2,7323.29,2426.96,17163.45,47427.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39667,6749.7,0.0,380.48,7130.18,0.0,2867.19,568.84,3436.03,10566.21 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,15994,96930.05,0.0,0.0,96930.05,19977.61,12424.5,7952.75,40354.86,137284.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,28364,119455.9,6570.78,10990.17,137016.85,23662.81,12424.5,2326.69,38414.0,175430.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6596,49592.66,0.0,6925.38,56518.04,12041.92,11031.52,4553.22,27626.66,84144.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,24947,79090.34,0.0,785.0,79875.34,16407.71,10969.41,6626.6,34003.72,113879.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26049,136071.01,0.0,250.0,136321.01,27384.43,12424.47,10019.31,49828.21,186149.22 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,7435,97761.25,5396.65,10806.73,113964.63,26383.05,12424.5,814.87,39622.42,153587.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3038,62208.21,302.06,9649.09,72159.36,13962.77,11002.85,5678.63,30644.25,102803.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,28791,12071.75,0.0,316.57,12388.32,749.43,3987.55,959.55,5696.53,18084.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26609,5660.08,0.0,195.65,5855.73,0.0,1409.7,453.73,1863.43,7719.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,20610,18644.99,239.55,0.0,18884.54,0.0,2789.54,1462.04,4251.58,23136.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,27064,81776.01,905.29,560.0,83241.3,16970.88,12424.51,6768.49,36163.88,119405.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,20118,199095.03,0.0,250.0,199345.03,40068.04,12424.5,11216.26,63708.8,263053.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,26249,42380.42,0.0,562.38,42942.8,8859.6,6224.2,3296.19,18379.99,61322.79 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,46685,67261.02,6388.15,6870.4,80519.57,14761.55,12424.5,6442.16,33628.21,114147.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,40357,88831.0,27346.21,8488.89,124666.1,19948.49,12424.5,9824.8,42197.79,166863.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3428,Nursery Specialist,15775,76536.11,0.0,0.0,76536.11,15785.81,12424.5,6329.98,34540.29,111076.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,33178,92282.05,0.0,624.0,92906.05,19148.19,12424.5,7641.61,39214.3,132120.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,34801,8436.0,0.0,0.0,8436.0,1569.94,955.65,645.77,3171.36,11607.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,18851,3946.27,0.0,0.0,3946.27,137.98,1305.95,305.52,1749.45,5695.72 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,24070,19819.63,0.0,283.06,20102.69,3741.11,3309.22,1758.99,8809.32,28912.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2849,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41147,17896.48,2961.23,752.02,21609.73,4467.37,5524.84,1546.69,11538.9,33148.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,18609,70791.0,20310.45,5036.17,96137.62,15629.17,12424.5,7864.43,35918.1,132055.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,52480,78204.0,0.0,0.0,78204.0,16117.97,12424.5,6390.42,34932.89,113136.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1796,2883.51,0.0,612.45,3495.96,863.03,573.44,270.98,1707.45,5203.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50031,50089.8,3757.34,1231.9,55079.04,12003.92,12424.5,4278.02,28706.44,83785.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,25753,78790.15,0.0,0.0,78790.15,16194.33,12048.17,6313.42,34555.92,113346.07 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,40318,152906.58,0.0,5525.0,158431.58,31028.56,8709.09,10383.11,50120.76,208552.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,31393,82717.01,2053.57,3222.65,87993.23,17177.08,12424.5,7217.93,36819.51,124812.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,34483,62468.81,828.61,927.74,64225.16,12995.81,12424.5,5296.26,30716.57,94941.73 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,23480,75504.65,0.0,3533.6,79038.25,15718.45,10624.56,6456.16,32799.17,111837.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,47856,10504.0,0.0,0.0,10504.0,1904.38,955.73,734.23,3594.34,14098.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7249,Automotive Mechanic Sprv 1,36962,70727.0,28782.52,15522.27,115031.79,16087.67,8123.71,6896.92,31108.3,146140.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,6686,112776.0,826.94,1565.76,115168.7,22999.12,12424.5,9244.65,44668.27,159836.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52013,54615.28,0.0,1734.65,56349.93,0.0,4742.81,4503.97,9246.78,65596.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,10290,84729.4,0.0,200.0,84929.4,17471.06,12388.66,6786.88,36646.6,121576.0 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1767,Media Programming Spec,10419,12725.0,178.95,166.34,13070.29,2399.08,2389.33,1038.48,5826.89,18897.18 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,50351,128898.03,0.0,26690.19,155588.22,27107.03,8601.58,15170.31,50878.92,206467.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,2692,69475.66,0.0,1288.92,70764.58,14908.4,10193.11,5773.11,30874.62,101639.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47320,4667.26,0.0,29.4,4696.66,0.0,2275.84,364.32,2640.16,7336.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,20666,1360.97,0.0,53.64,1414.61,0.0,403.2,109.82,513.02,1927.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,1926,67261.05,145.52,2184.0,69590.57,13991.51,12424.5,5520.91,31936.92,101527.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,31834,70245.01,17270.32,11877.77,99393.1,15914.53,12424.5,8112.0,36451.03,135844.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40352,2946.0,0.0,20.0,2966.0,665.27,477.86,229.17,1372.3,4338.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4459,55443.65,0.0,5.0,55448.65,11287.53,10990.6,4245.05,26523.18,81971.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,251,5940.2,1288.0,875.7,8103.9,1332.39,955.73,625.57,2913.69,11017.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26251,60064.15,10172.3,2120.25,72356.7,16852.02,11822.99,5551.84,34226.85,106583.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,33632,1199.9,0.0,0.0,1199.9,0.0,155.31,93.02,248.33,1448.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,7337,139315.58,8389.34,9182.51,156887.43,27547.21,12424.5,2618.71,42590.42,199477.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21416,62069.14,8609.87,2154.52,72833.53,17494.39,12224.4,5462.35,35181.14,108014.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14897,112159.75,2626.04,18452.55,133238.34,24822.81,15052.76,2259.1,42134.67,175373.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13257,24563.55,119.59,4623.29,29306.43,7309.07,5190.75,2215.19,14715.01,44021.44 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,35707,17260.33,0.0,1301.46,18561.79,0.0,4390.39,1438.95,5829.34,24391.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,40699,72707.9,0.0,1523.78,74231.68,15288.89,12424.5,6106.3,33819.69,108051.37 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,6251,13029.0,0.0,0.0,13029.0,2858.55,1433.6,1056.26,5348.41,18377.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46088,325.61,0.0,6.86,332.47,0.0,158.77,25.8,184.57,517.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17099,35.8,0.0,0.0,35.8,0.0,11.94,2.77,14.71,50.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,28320,81116.01,0.0,0.0,81116.01,16718.53,12424.5,6646.57,35789.6,116905.61 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,9637,25084.64,0.0,0.0,25084.64,1114.02,3575.03,1938.31,6627.36,31712.0 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,30418,99602.0,999.34,1897.77,102499.11,20528.27,12424.5,8415.69,41368.46,143867.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3652,130995.03,6373.72,30106.29,167475.04,26145.83,11247.64,6912.11,44305.58,211780.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,31613,28966.0,0.0,5105.38,34071.38,6678.34,5734.38,2743.57,15156.29,49227.67 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,30197,97495.71,0.0,860.0,98355.71,20180.89,12146.74,7872.04,40199.67,138555.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,35439,66580.04,0.0,0.0,66580.04,13722.37,12424.5,5416.75,31563.62,98143.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,49393,117140.96,24352.8,17442.79,158936.55,23163.67,12424.5,2631.6,38219.77,197156.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,14975,69968.45,24575.36,3913.9,98457.71,15665.38,12375.29,7786.28,35826.95,134284.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,23422,12770.0,0.0,0.0,12770.0,2808.12,3822.92,1031.78,7662.82,20432.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,559,1337.16,0.0,0.0,1337.16,0.0,561.49,111.5,672.99,2010.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35990,68867.71,14873.53,1460.0,85201.24,14462.54,12424.5,6617.23,33504.27,118705.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,45953,68760.12,0.0,0.0,68760.12,14500.24,9975.37,5468.72,29944.33,98704.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,25653,110116.7,1189.76,14453.91,125760.37,30532.89,10011.29,2099.68,42643.86,168404.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,43438,145659.12,0.0,0.0,145659.12,29314.87,12424.5,10181.0,51920.37,197579.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28352,112159.76,3504.81,18728.19,134392.76,24822.82,15052.76,2289.4,42164.98,176557.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23049,15105.13,0.0,771.42,15876.55,1060.09,6550.1,1267.31,8877.5,24754.05 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,31937,98157.0,0.0,0.0,98157.0,20230.58,12424.5,7834.2,40489.28,138646.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4263,124974.24,368.78,32272.86,157615.88,28831.86,11064.97,5838.24,45735.07,203350.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,44855,68067.06,146.96,616.2,68830.22,14156.03,12424.5,5576.67,32157.2,100987.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2919,Child Care Specialist,44090,49679.02,0.0,1300.0,50979.02,12225.86,12424.5,3903.93,28554.29,79533.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,29372,39351.19,0.0,1881.36,41232.55,9629.21,10022.27,3355.34,23006.82,64239.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,38145,68853.31,5251.5,2194.63,76299.44,14672.66,12090.0,6294.46,33057.12,109356.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,29132,25954.2,65.92,4421.01,30441.13,0.0,6203.6,2445.26,8648.86,39089.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,19475,178836.23,0.0,0.0,178836.23,35990.97,12424.5,18062.37,66477.84,245314.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2118,12592.08,769.57,78.91,13440.56,3036.12,3882.06,1034.7,7952.88,21393.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8142,2442.73,0.0,4069.09,6511.82,546.88,204.83,504.38,1256.09,7767.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9183,"Deputy Dir I, MTA",34907,178369.13,0.0,0.0,178369.13,35943.63,12424.5,19124.76,67492.89,245862.02 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,9889,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8727.69,43124.0,149729.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35435,77071.03,9293.24,624.0,86988.27,16013.39,12424.5,7178.3,35616.19,122604.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28072,66380.5,7500.69,2263.31,76144.5,16055.19,13076.73,6315.99,35447.91,111592.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16940,12775.19,1034.79,89.93,13899.91,3084.63,3937.07,1062.85,8084.55,21984.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17984,102286.76,0.0,360.14,102646.9,15054.37,9915.7,8004.82,32974.89,135621.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,36480,54124.03,0.0,1624.0,55748.03,12476.58,12424.5,4364.8,29265.88,85013.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,12657,2133.9,0.0,11.54,2145.44,478.63,430.07,332.39,1241.09,3386.53 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,10439,79718.3,0.0,0.0,79718.3,16411.2,12424.5,6455.92,35291.62,115009.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,49575,48281.31,2908.95,5003.81,56194.07,12146.69,12424.5,4495.11,29066.3,85260.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,7312,87736.2,0.0,0.0,87736.2,17827.76,10704.18,7245.71,35777.65,123513.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,5668,76393.0,0.0,0.0,76393.0,15629.99,11468.77,6181.64,33280.4,109673.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18952,43795.8,7030.36,2890.32,53716.48,11098.7,11134.26,4431.49,26664.45,80380.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,7192,27324.3,2460.16,5091.31,34875.77,4850.58,2389.33,588.71,7828.62,42704.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,5029,8232.59,0.0,0.0,8232.59,1015.77,0.0,342.75,1358.52,9591.11 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",33630,74103.04,11684.36,2333.03,88120.43,17375.18,12424.5,1374.76,31174.44,119294.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,39447,119463.81,24755.97,5991.98,150211.76,23633.48,12424.5,2560.31,38618.29,188830.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9200,112685.48,30082.02,4671.34,147438.84,22330.95,12424.5,2465.55,37221.0,184659.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,52280,63887.02,921.75,5385.9,70194.67,13295.98,12424.5,5687.25,31407.73,101602.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,4214,49767.6,1011.51,2774.87,53553.98,12385.13,12424.5,4317.64,29127.27,82681.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,9949,19749.02,4.78,1304.26,21058.06,3502.41,1433.6,359.81,5295.82,26353.88 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,7918,65757.77,0.0,3500.0,69257.77,10697.11,4963.82,4280.98,19941.91,89199.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,43732,36036.78,0.0,0.0,36036.78,7924.49,5289.85,2896.42,16110.76,52147.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,6774,59720.16,0.0,3367.96,63088.12,12563.0,9775.39,5230.46,27568.85,90656.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,46952,117140.95,37190.47,16159.16,170490.58,23164.18,12424.51,2859.59,38448.28,208938.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,51728,18048.01,0.0,292.15,18340.16,4111.43,4724.17,1389.22,10224.82,28564.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,8366,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",12049,24965.2,42.34,0.0,25007.54,3390.64,5226.65,1940.98,10558.27,35565.81 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,19950,30867.51,0.0,767.07,31634.58,6523.67,6212.25,2325.55,15061.47,46696.05 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,16376,61226.42,0.0,544.97,61771.39,13122.58,7006.23,4952.82,25081.63,86853.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,41970,115692.78,0.0,0.0,115692.78,23276.48,12424.5,26769.75,62470.73,178163.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,31475,20586.18,213.5,1251.11,22050.79,5231.8,4607.7,1822.69,11662.19,33712.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29515,96917.61,2126.89,11625.7,110670.2,26393.5,12315.67,1858.48,40567.65,151237.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,36901,65629.42,24064.59,6203.66,95897.67,13942.95,12245.78,7199.16,33387.89,129285.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,1470,114004.41,0.0,0.0,114004.41,22917.25,12424.51,8982.03,44323.79,158328.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",44531,26423.34,0.0,0.0,26423.34,0.0,4282.87,2050.04,6332.91,32756.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50232,92438.36,3649.07,7422.77,103510.2,19260.79,11839.11,1693.54,32793.44,136303.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31386,41778.62,0.0,931.25,42709.87,13099.51,0.0,5999.82,19099.33,61809.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5305,Materials Testing Technician,27255,74326.0,0.0,0.0,74326.0,15318.92,12424.53,5856.96,33600.41,107926.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,42800,81157.01,0.0,15935.86,97092.87,19499.31,12424.49,7957.48,39881.28,136974.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,30099,385.1,0.0,0.0,385.1,86.38,47.79,33.45,167.62,552.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,21424,80052.63,11699.24,4010.48,95762.35,16798.27,12424.5,7739.62,36962.39,132724.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,10117,5080.29,0.0,38.48,5118.77,0.0,1687.46,299.84,1987.3,7106.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",12602,106144.9,23177.86,3865.32,133188.08,22464.74,12424.5,10006.65,44895.89,178083.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,4618,56409.45,0.0,6603.98,63013.43,12339.92,12397.63,4962.64,29700.19,92713.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,42855,93281.04,0.0,624.0,93905.04,19354.57,12424.5,7787.82,39566.89,133471.93 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,16067,115541.01,0.0,1715.0,117256.01,23589.45,12424.5,9620.06,45634.01,162890.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,713,56163.3,457.27,305.66,56926.23,10885.46,8601.58,3963.95,23450.99,80377.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19940,66923.36,14819.31,879.77,82622.44,15449.2,13188.86,6105.03,34743.09,117365.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,39055,0.0,685.88,228.63,914.51,0.0,0.0,15.73,15.73,930.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49580,19124.22,0.0,32169.68,51293.9,4648.82,2245.97,35.01,6929.8,58223.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,30512,65592.0,18864.23,5404.29,89860.52,13734.19,12424.5,7359.81,33518.5,123379.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,40437,126367.53,0.0,0.0,126367.53,25444.12,12364.77,9934.71,47743.6,174111.13 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10342,101660.59,34877.22,17975.47,154513.28,23360.65,13428.01,2583.61,39372.27,193885.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36798,112696.21,46108.17,12477.85,171282.23,22291.44,12424.5,2922.31,37638.25,208920.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12312,77856.3,1862.06,1022.14,80740.5,15750.04,11946.64,4345.81,32042.49,112782.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29118,203.16,0.0,0.0,203.16,0.01,0.0,390.43,390.44,593.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,7070,54911.96,3210.57,1134.45,59256.98,12308.55,12329.76,4782.05,29420.36,88677.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,41155,32724.02,409.04,0.0,33133.06,8144.92,8601.58,2675.74,19422.24,52555.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,17954,49280.0,0.0,0.0,49280.0,11009.86,6690.11,3950.52,21650.49,70930.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5492,39900.53,23.05,6262.19,46185.77,10390.14,10336.47,3486.58,24213.19,70398.96 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,52694,16516.13,6503.61,1629.85,24649.59,3225.03,1899.51,576.83,5701.37,30350.96 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,50093,113672.0,0.0,8437.96,122109.96,24149.74,12424.5,9850.33,46424.57,168534.53 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),39276,174805.62,0.0,1562.5,176368.12,35480.05,12424.5,10729.03,58633.58,235001.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,26804,61428.09,198.62,4790.61,66417.32,13377.81,12424.5,5473.29,31275.6,97692.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27855,110.2,0.0,0.0,110.2,0.0,47.79,8.54,56.33,166.53 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,43470,12264.0,0.0,0.0,12264.0,2223.47,1194.67,1604.51,5022.65,17286.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,25288,68722.0,915.55,0.0,69637.55,14164.02,12424.5,5725.16,32313.68,101951.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49335,98064.36,11569.19,9643.28,119276.83,20338.86,12364.77,1989.99,34693.62,153970.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",42913,4195.8,0.0,0.0,4195.8,0.0,860.17,325.66,1185.83,5381.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27149,3332.5,0.0,104.78,3437.28,0.0,1284.26,266.11,1550.37,4987.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,26894,18702.01,0.0,0.0,18702.01,4194.85,2867.19,1480.43,8542.47,27244.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,15459,47531.2,4894.14,5553.24,57978.58,12235.84,12424.5,4611.09,29271.43,87250.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,891,147531.8,0.0,18370.5,165902.3,18636.07,12293.09,5275.05,36204.21,202106.51 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,7487,211551.0,0.0,37647.6,249198.6,54058.96,12424.5,3491.59,69975.05,319173.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,50756,44002.41,0.0,16302.46,60304.87,9121.2,5829.95,4816.11,19767.26,80072.13 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),39680,124854.0,0.0,1500.0,126354.0,25373.03,12424.5,9715.4,47512.93,173866.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44167,5461.83,0.0,151.62,5613.45,0.0,2359.46,458.34,2817.8,8431.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24210,119455.94,23983.19,9380.63,152819.76,24132.87,12424.5,2593.79,39151.16,191970.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,50119,62468.8,15312.17,1302.61,79083.58,12994.98,12424.5,6179.14,31598.62,110682.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,39448,146009.35,7370.03,11032.47,164411.85,29430.88,12424.5,418.05,42273.43,206685.28 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,16990,77421.14,0.0,0.0,77421.14,16003.96,9070.49,6320.02,31394.47,108815.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,49439,45955.42,49.68,1661.84,47666.94,11154.31,8992.83,3873.29,24020.43,71687.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,19078,150600.81,0.0,4917.0,155517.81,30770.15,12415.54,10396.51,53582.2,209100.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39060,68201.67,19894.95,1892.77,89989.39,19214.81,13441.15,6983.28,39639.24,129628.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28709,24420.0,1014.54,1057.35,26491.89,5714.56,4778.67,2190.14,12683.37,39175.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,52732,69746.03,0.0,0.0,69746.03,14374.92,12424.5,5739.95,32539.37,102285.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,8070,97048.61,0.0,0.0,97048.61,19962.0,12424.5,7849.09,40235.59,137284.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50340,47601.53,32.42,4773.9,52407.85,11114.95,10577.74,4196.87,25889.56,78297.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34960,3883.26,0.0,14.7,3897.96,0.0,1893.54,302.35,2195.89,6093.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2484,Biologist III,5716,119321.02,0.0,0.0,119321.02,24009.23,12424.5,9797.25,46230.98,165552.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9793,2982.65,0.0,0.0,2982.65,0.0,262.83,231.5,494.33,3476.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,30212,115896.01,11734.52,3883.64,131514.17,23906.65,12424.5,9957.28,46288.43,177802.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45506,3478.02,0.0,0.0,3478.02,0.0,1460.47,277.65,1738.12,5216.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,44951,23196.15,0.0,0.0,23196.15,0.0,3130.03,1797.93,4927.96,28124.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,4165,30906.0,0.0,0.0,30906.0,7165.85,8601.58,2423.83,18191.26,49097.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29574,119366.84,2342.24,8672.38,130381.46,25109.21,10897.96,9780.55,45787.72,176169.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28287,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2412.83,12866.18,44166.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42903,82191.77,1348.04,10311.25,93851.06,16889.12,9079.44,1561.43,27529.99,121381.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,36585,72705.9,27049.21,83938.14,183693.25,16631.53,6546.76,274.01,23452.3,207145.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",35136,135115.51,41168.21,13511.55,189795.27,29208.88,12424.5,484.04,42117.42,231912.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2622,Dietetic Technician,12954,28777.48,0.0,2876.89,31654.37,6454.79,5925.53,2849.77,15230.09,46884.46 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,11257,5483.54,0.0,0.0,5483.54,994.17,477.86,509.3,1981.33,7464.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,30238,862.32,0.0,6.13,868.45,0.0,403.2,67.24,470.44,1338.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17289,22467.77,1911.45,2436.82,26816.04,5024.36,3464.52,631.77,9120.65,35936.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0402,Deputy Chief 3,13074,72324.0,0.0,91397.32,163721.32,15878.52,3345.06,4688.46,23912.04,187633.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7100,Administrative-Labor & Trades,7108,Heavy Equip Ops Asst Sprv,16507,104354.0,0.0,0.0,104354.0,21507.81,12424.49,8348.03,42280.33,146634.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7236,Locksmith Supervisor 1,38070,106812.0,14282.53,0.0,121094.53,22013.95,12424.5,9799.1,44237.55,165332.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,46744,46431.27,916.99,1120.89,48469.15,11238.1,11158.15,3895.53,26291.78,74760.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,46312,93416.45,0.0,0.0,93416.45,19250.8,12212.21,7463.28,38926.29,132342.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,13598,116976.14,0.0,0.0,116976.14,23550.0,12424.51,9179.99,45154.5,162130.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22846,117280.93,0.0,10252.81,127533.74,24257.21,11038.69,9930.91,45226.81,172760.55 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,16783,75721.69,0.0,13446.97,89168.66,13681.5,0.0,10284.19,23965.69,113134.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45322,8912.43,0.0,819.61,9732.04,1620.59,3864.73,769.81,6255.13,15987.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,28047,36045.0,5150.61,1395.03,42590.64,8488.75,8601.58,3381.87,20472.2,63062.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8204,Institutional Police Officer,50190,73583.0,20749.15,9352.74,103684.89,18888.69,12424.5,2005.39,33318.58,137003.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,718.0,"Glaziers, Metal, and Glass Workers, Local 718",7300,Journeyman Trade,7326,Glazier,35628,27720.7,0.0,203.0,27923.7,5868.66,3870.68,2316.61,12055.95,39979.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H120,Pilot Of Fire Boats,6449,148809.3,29170.16,9672.66,187652.12,31177.52,15052.76,3165.14,49395.42,237047.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,34777,22291.87,169.22,0.0,22461.09,3675.89,7362.11,1804.65,12842.65,35303.74 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,11544,31853.0,0.0,732.2,32585.2,6064.12,5495.44,2500.87,14060.43,46645.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,30642,31097.35,0.0,0.0,31097.35,4483.59,10085.95,2461.56,17031.1,48128.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49612,24234.37,2413.48,1176.49,27824.34,6262.26,7525.43,2122.27,15909.96,43734.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,40617,20427.1,0.0,0.0,20427.1,0.0,3775.16,1583.45,5358.61,25785.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,28404,59303.02,3018.25,1769.04,64090.31,12556.14,12424.5,5160.89,30141.53,94231.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,14276,88831.0,14293.06,8216.64,111340.7,19243.66,12424.5,9149.45,40817.61,152158.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,24924,105178.12,2888.76,1722.16,109789.04,21413.48,7659.29,8260.21,37332.98,147122.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,19590,158362.3,7577.56,1744.39,167684.25,31276.32,12424.5,2818.17,46518.99,214203.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7353,Water Meter Repairer,3079,0.0,0.0,118.15,118.15,0.0,0.0,9.04,9.04,127.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,7019,29579.4,25.59,20.0,29624.99,0.0,5256.51,2299.37,7555.88,37180.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31408,247.95,0.0,0.0,247.95,0.0,107.52,19.24,126.76,374.71 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,26329,72145.14,0.0,606.9,72752.04,14965.77,12084.02,6000.6,33050.39,105802.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19396,49927.27,213.5,3056.3,53197.07,11363.33,11107.38,4246.28,26716.99,79914.06 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,15356,9463.59,0.0,6016.08,15479.67,0.0,0.0,224.46,224.46,15704.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,22831,44628.56,0.0,0.0,44628.56,8477.11,4369.49,3343.47,16190.07,60818.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,3586,51624.7,5769.68,2006.92,59401.3,12773.12,12424.5,4760.58,29958.2,89359.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49377,124260.46,6010.22,5087.49,135358.17,24583.95,12424.5,2259.46,39267.91,174626.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42834,68063.21,4823.14,4126.86,77013.21,19768.57,13409.2,5842.28,39020.05,116033.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,14424,9974.31,0.0,0.0,9974.31,0.0,2628.25,774.17,3402.42,13376.73 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,37198,93919.03,4306.73,1443.45,99669.21,19582.74,12197.51,8218.32,39998.57,139667.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",11857,150050.62,27201.62,28909.87,206162.11,34266.03,15052.76,3472.39,52791.18,258953.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18630,68739.16,0.0,1260.0,69999.16,14388.11,12400.6,5042.86,31831.57,101830.73 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,23191,15520.47,0.0,0.0,15520.47,0.0,5764.25,1247.32,7011.57,22532.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,28757,108038.0,6015.71,640.5,114694.21,22266.23,12424.5,8902.97,43593.7,158287.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,15847,63329.12,0.0,806.8,64135.92,13068.48,11086.49,5043.63,29198.6,93334.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1827,Administrative Services Mgr,41846,30925.5,0.0,0.0,30925.5,0.0,4073.8,2511.09,6584.89,37510.39 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,8579,97389.58,15094.96,12251.53,124736.07,26664.99,12376.71,2077.77,41119.47,165855.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,20987,103918.35,13205.06,18248.47,135371.88,21331.48,8906.22,2217.43,32455.13,167827.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,11195,10012.2,0.0,1001.23,11013.43,2841.46,1959.25,920.67,5721.38,16734.81 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,34521,78963.02,0.0,624.0,79587.02,16403.15,12424.5,6306.52,35134.17,114721.19 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,11049,87531.03,0.0,0.0,87531.03,18040.64,12424.5,6757.66,37222.8,124753.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,2050,54124.01,0.0,0.0,54124.01,12110.45,12424.5,4492.73,29027.68,83151.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22628,149099.04,0.0,600.0,149699.04,30119.35,12424.5,10285.16,52829.01,202528.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34713,97653.81,25410.48,17483.8,140548.09,28014.18,12409.63,2339.77,42763.58,183311.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,44006,57762.89,788.27,1383.54,59934.7,12038.06,11419.79,4962.5,28420.35,88355.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45298,60126.93,12170.18,2764.1,75061.21,17083.99,11842.1,5819.15,34745.24,109806.45 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,52634,484.5,302.81,0.0,787.31,0.0,143.35,61.11,204.46,991.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,15978,89210.08,0.0,2144.0,91354.08,18827.91,12424.5,7565.56,38817.97,130172.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,14073,102561.02,0.0,0.0,102561.02,21138.64,12424.5,8177.14,41740.28,144301.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46208,5454.9,0.0,170.95,5625.85,0.0,2365.43,450.49,2815.92,8441.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39798,5737.3,0.0,223.21,5960.51,0.0,2487.88,485.04,2972.92,8933.43 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,8854,108062.32,0.0,10259.49,118321.81,21993.87,12424.5,9046.5,43464.87,161786.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",51939,14811.41,0.0,0.0,14811.41,0.0,3524.25,1148.03,4672.28,19483.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,20387,43480.0,0.0,2978.38,46458.38,9539.52,3822.92,3646.55,17008.99,63467.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3624,30108.92,3103.62,602.8,33815.34,7794.51,9382.53,2577.09,19754.13,53569.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,52428,168237.04,0.0,0.0,168237.04,33924.04,12424.5,10592.61,56941.15,225178.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,14021,14660.86,0.0,0.0,14660.86,3241.79,2868.92,1257.81,7368.52,22029.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25234,68838.19,29186.78,4050.1,102075.07,19994.94,13565.89,7939.04,41499.87,143574.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,26110,30184.83,0.0,380.16,30564.99,7329.6,7454.7,2459.71,17244.01,47809.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,51437,71612.01,0.0,624.0,72236.01,14888.01,12424.5,5933.57,33246.08,105482.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41475,3327.76,0.0,28.44,3356.2,0.0,1729.27,260.11,1989.38,5345.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,15212,83097.06,0.0,0.0,83097.06,17092.68,12424.5,6573.85,36091.03,119188.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34734,67048.28,20377.9,810.92,88237.1,15453.04,13214.59,7056.01,35723.64,123960.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,6125,62468.8,7600.14,1724.58,71793.52,13081.46,12424.5,5843.31,31349.27,103142.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),2232,72483.1,10132.65,3468.72,86084.47,15228.25,11038.69,1391.58,27658.52,113742.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45907,13534.35,0.0,2255.76,15790.11,5052.92,1146.88,626.78,6826.58,22616.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,1289,62461.11,2865.55,0.0,65326.66,12844.46,12424.5,5151.18,30420.14,95746.8 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,25301,24265.92,0.0,111.53,24377.45,6113.49,6030.08,1989.26,14132.83,38510.28 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,19728,17945.03,0.0,0.0,17945.03,0.0,5901.64,1391.07,7292.71,25237.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26196,12698.43,0.0,8302.96,21001.39,3219.13,1232.6,1686.48,6138.21,27139.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4409,110445.06,0.0,1350.0,111795.06,22512.21,11931.7,8475.11,42919.02,154714.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19941,56531.0,62.07,0.0,56593.07,11659.55,12424.5,4647.91,28731.96,85325.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44994,2570.95,0.0,79.22,2650.17,0.0,1087.14,213.4,1300.54,3950.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,3069,70589.8,0.0,240.0,70829.8,14564.96,12424.5,5321.66,32311.12,103140.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31085,0.0,0.0,532.34,532.34,0.0,68.5,21.6,90.1,622.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40868,43109.83,0.0,4447.41,47557.24,11245.15,10447.34,3877.46,25569.95,73127.19 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,16950,3248.54,0.0,0.0,3248.54,0.0,0.0,256.63,256.63,3505.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,42915,100640.8,0.0,0.0,100640.8,20728.25,12424.5,8108.93,41261.68,141902.48 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44906,56531.0,14383.02,1145.83,72059.85,11887.28,12424.5,5866.53,30178.31,102238.16 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,51087,92282.02,0.0,0.0,92282.02,19019.51,12424.5,7380.18,38824.19,131106.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48783,119461.66,1060.16,4268.84,124790.66,23641.92,12424.5,2114.06,38180.48,162971.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47810,5355.23,0.0,237.27,5592.5,0.0,471.83,498.13,969.96,6562.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,45956,59508.0,3005.56,8409.36,70922.92,13265.11,9079.42,5765.15,28109.68,99032.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,570,61960.21,34.65,7877.25,69872.11,13684.93,10961.16,5704.57,30350.66,100222.77 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1430,Transcriber Typist,5686,53212.5,0.0,570.44,53782.94,11250.95,10751.97,4432.27,26435.19,80218.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,11312,8697.5,0.0,0.0,8697.5,1618.6,1194.67,671.86,3485.13,12182.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,28292,9694.37,0.0,0.0,9694.37,1887.32,2090.66,738.26,4716.24,14410.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,12760,201450.0,0.0,0.0,201450.0,40542.08,12424.48,11128.44,64095.0,265545.0 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,20980,63705.03,0.0,619.2,64324.23,13257.42,12424.5,5280.67,30962.59,95286.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,18931,69247.02,2450.27,2536.69,74233.98,14408.31,12424.5,6137.79,32970.6,107204.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,40197,73876.09,0.0,0.0,73876.09,14908.54,10035.17,5973.34,30917.05,104793.14 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0116,"Brd Comm Mbr, M=$200/Mtg",44412,11400.0,0.0,0.0,11400.0,0.0,274.77,774.44,1049.21,12449.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,29737,211707.0,0.0,0.0,211707.0,42606.19,12424.5,11387.09,66417.78,278124.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,10266,53453.0,0.0,0.0,53453.0,12820.69,12424.5,4109.77,29354.96,82807.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26038,67874.28,3819.91,3038.93,74733.12,16142.69,13373.72,5658.19,35174.6,109907.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13047,3773.0,0.0,0.0,3773.0,0.0,1839.78,292.62,2132.4,5905.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,22752,434.38,0.0,0.0,434.38,0.0,143.35,33.65,177.0,611.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,1219,33509.47,5401.07,3969.41,42879.95,8815.03,4303.42,708.51,13826.96,56706.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8293,11267.95,0.0,269.3,11537.25,0.0,4886.17,923.09,5809.26,17346.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41524,119465.6,21007.65,6106.2,146579.45,23627.24,12424.5,2495.84,38547.58,185127.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,35863,34711.46,5546.68,11919.09,52177.23,5695.38,2317.64,1198.04,9211.06,61388.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44634,119348.37,0.0,4944.74,124293.11,23452.0,12412.56,1118.32,36982.88,161275.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29909,113233.59,16709.74,18060.27,148003.6,24937.46,15196.11,2477.07,42610.64,190614.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29843,8066.72,0.0,0.0,8066.72,0.0,710.82,624.52,1335.34,9402.06 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,13852,107328.0,0.0,6728.64,114056.64,23059.13,12424.5,9439.0,44922.63,158979.27 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,40890,93681.02,68581.77,12389.38,174652.17,21031.66,12424.5,10698.22,44154.38,218806.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40049,14160.96,46.46,4030.37,18237.79,3255.79,1261.56,1453.68,5971.03,24208.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,19604,139190.93,13073.33,11081.45,163345.71,28092.59,12424.49,2728.31,43245.39,206591.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,5391,73412.17,3329.63,7046.37,83788.17,16588.17,8449.02,6898.96,31936.15,115724.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,929.0,Building Inspectors' Association - Chiefs,6300,Construction Inspection,6334,Chief Building Inspector,9628,15723.0,0.0,1879.55,17602.55,3622.11,1433.6,1449.83,6505.54,24108.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7322,Auto Body&Fender Wrk Asst Sprv,12525,60413.0,16558.73,12714.62,89686.35,13648.53,7645.84,6196.73,27491.1,117177.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,12026,21803.07,0.0,0.0,21803.07,2487.63,4395.76,1692.26,8575.65,30378.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,43442,8676.59,0.0,61.31,8737.9,0.0,0.0,691.06,691.06,9428.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,43027,42263.0,8411.62,1726.3,52400.92,10132.46,12424.5,3951.0,26507.96,78908.88 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2594,Employee Assistance Counselor,32266,26684.2,0.0,0.0,26684.2,4965.95,3679.56,2107.5,10753.01,37437.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25484,56076.41,416.39,1405.0,57897.8,12818.03,12424.5,4450.81,29693.34,87591.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,25855,81942.0,970.2,600.0,83512.2,17000.25,12424.49,6628.73,36053.47,119565.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29249,56076.42,4255.92,300.0,60632.34,12574.99,12424.5,4919.19,29918.68,90551.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33416,35760.96,10596.97,436.47,46794.4,9285.76,7006.11,3517.57,19809.44,66603.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,43921,43550.8,0.0,0.0,43550.8,9525.64,7645.85,3535.52,20707.01,64257.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13489,74608.27,12750.43,7027.98,94386.68,16365.89,15052.75,1567.15,32985.79,127372.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4433,19824.09,0.0,3194.29,23018.38,3978.45,2050.04,1809.71,7838.2,30856.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,9006,140574.03,0.0,0.0,140574.03,28221.74,12424.5,17381.46,58027.7,198601.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,20396,80357.01,4393.97,0.0,84750.98,16562.14,12424.5,6720.64,35707.28,120458.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,26831,0.0,0.0,1188.0,1188.0,0.0,0.0,90.89,90.89,1278.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,28631,66618.06,0.0,618.01,67236.07,13846.98,12305.15,5324.86,31476.99,98713.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22210,12590.3,0.0,0.0,12590.3,0.0,5399.88,1022.17,6422.05,19012.35 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0902,Mayoral Staff XIV,17852,14203.87,0.0,18043.06,32246.93,3116.34,1433.6,3150.15,7700.09,39947.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,2876,85905.2,0.0,0.0,85905.2,17686.79,12424.5,6619.37,36730.66,122635.86 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,36977,106429.6,0.0,0.0,106429.6,21910.16,12424.5,8263.59,42598.25,149027.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10943,39796.71,1436.79,697.24,41930.74,11271.51,0.0,3275.02,14546.53,56477.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,25396,81776.07,0.0,0.0,81776.07,16854.47,12424.5,6747.62,36026.59,117802.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,7623,89900.65,0.0,2993.28,92893.93,19137.44,11624.09,7285.65,38047.18,130941.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28248,113233.58,11006.58,14560.47,138800.63,24313.7,15196.12,2474.45,41984.27,180784.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",36699,93738.0,6014.15,3537.73,103289.88,19801.76,12424.51,8444.84,40671.11,143960.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42513,5266.38,0.0,163.2,5429.58,5178.7,424.4,217.11,5820.21,11249.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,12356,118838.45,9180.76,29091.23,157110.44,35118.45,12400.62,2677.09,50196.16,207306.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,45455,10005.65,0.0,0.0,10005.65,0.0,2408.74,776.09,3184.83,13190.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,16519,15475.35,3654.04,937.78,20067.17,3393.05,4754.75,1599.12,9746.92,29814.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,34780,55031.03,0.0,0.0,55031.03,10494.46,6690.11,4425.18,21609.75,76640.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,35820,12444.0,2580.87,3523.8,18548.67,2725.07,2867.19,1425.91,7018.17,25566.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",28874,104176.98,9191.14,688.77,114056.89,21482.25,12424.49,9296.63,43203.37,157260.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25257,116531.26,0.0,8558.54,125089.8,23924.58,11153.38,9800.8,44878.76,169968.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,49626,157609.18,25468.68,13176.6,196254.46,31096.27,12364.77,3293.24,46754.28,243008.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7268,Window Cleaner Supervisor,49199,83933.01,0.0,1168.8,85101.81,17548.02,12424.5,6803.12,36775.64,121877.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15749,125387.93,3324.44,4098.63,132811.0,24805.13,12424.5,2207.05,39436.68,172247.68 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,241,97757.01,41079.75,18610.66,157447.42,27583.08,12424.51,2637.79,42645.38,200092.8 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,16260,44737.95,0.0,909.68,45647.63,9408.82,6570.64,3648.56,19628.02,65275.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36141,51433.98,1733.99,3099.51,56267.48,14220.16,11822.75,4246.61,30289.52,86557.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7200,Supervisory-Labor & Trade,7208,Heavy Equipment Ops Sprv,26723,50931.01,0.0,216.15,51147.16,9518.51,5734.39,4173.22,19426.12,70573.28 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,52036,75028.0,0.0,0.0,75028.0,15463.6,12424.5,6227.93,34116.03,109144.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38129,75550.31,637.88,1540.0,77728.19,15862.32,12424.5,6438.39,34725.21,112453.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,39392,264.07,0.0,5.0,269.07,0.0,77.65,20.86,98.51,367.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,5410,13256.55,0.0,0.0,13256.55,0.0,3263.7,1077.73,4341.43,17597.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51690,54836.15,19241.2,8587.31,82664.66,13407.46,12202.48,6349.87,31959.81,114624.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,12655,48770.5,200.43,1476.08,50447.01,11769.75,11612.13,4112.23,27494.11,77941.12 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,7357,48451.51,0.0,4711.91,53163.42,10867.64,6451.18,4300.19,21619.01,74782.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2785,151.38,56.77,0.0,208.15,42.84,0.0,16.45,59.29,267.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",32747,94388.01,5396.55,0.0,99784.56,19453.78,12424.51,8005.45,39883.74,139668.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,52738,61735.03,0.0,2694.0,64429.03,13283.17,12424.5,5332.95,31040.62,95469.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7832,10797.69,0.0,332.36,11130.05,2871.56,4551.67,907.83,8331.06,19461.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,17794,109306.45,0.0,901.97,110208.42,22384.15,11054.28,8364.15,41802.58,152011.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17931,101104.64,2339.4,5908.35,109352.39,20772.89,9079.44,1819.37,31671.7,141024.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12339,118835.01,20464.58,5481.0,144780.59,23497.6,12358.78,2462.51,38318.89,183099.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,20327,74165.07,0.0,624.0,74789.07,15414.47,12424.5,5949.27,33788.24,108577.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,21667,96653.03,0.0,8279.09,104932.12,20178.46,9079.44,8577.02,37834.92,142767.04 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,34670,146133.01,468.53,15157.69,161759.23,31355.11,12424.5,9972.19,53751.8,215511.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3795,120226.91,0.0,26843.43,147070.34,27636.35,10979.38,10171.57,48787.3,195857.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,39857,74070.79,0.0,623.21,74694.0,15396.78,12408.62,6193.55,33998.95,108692.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,50272,74003.28,0.0,0.0,74003.28,15041.81,9027.16,5993.27,30062.24,104065.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26271,96928.64,11281.33,10572.99,118782.96,26127.04,12319.67,2014.18,40460.89,159243.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,42378,54124.01,6192.87,6278.28,66595.16,12948.64,12424.5,5474.55,30847.69,97442.85 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,44707,72699.05,0.0,1039.87,73738.92,15198.72,12424.51,6112.22,33735.45,107474.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,48459,97424.01,0.0,0.0,97424.01,20079.52,12424.5,8036.43,40540.45,137964.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52932,56873.0,0.0,4959.74,61832.74,11355.34,0.0,6074.99,17430.33,79263.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,22095,63736.62,787.95,17801.89,82326.46,11409.19,7311.34,6652.35,25372.88,107699.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4990,16056.89,0.0,0.0,16056.89,309.83,6934.13,1288.16,8532.12,24589.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29480,64914.14,10146.59,3881.38,78942.11,15742.92,12813.79,5790.6,34347.31,113289.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14890,121349.16,520.1,25428.15,147297.41,18619.08,11038.69,9808.79,39466.56,186763.97 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,23826,89394.47,0.0,0.0,89394.47,18388.06,12402.09,7107.22,37897.37,127291.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,49009,123776.02,29442.01,11447.28,164665.31,24846.77,12424.5,10442.23,47713.5,212378.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7480,66730.08,9081.81,2833.84,78645.73,19042.91,13146.94,6106.68,38296.53,116942.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,51947,13549.28,0.0,284.49,13833.77,3039.09,1681.3,1099.03,5819.42,19653.19 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,36479,900.0,0.0,0.0,900.0,527.96,0.0,1289.35,1817.31,2717.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,41715,135421.0,0.0,79.33,135500.33,27267.88,12424.49,10073.84,49766.21,185266.54 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,12170,111918.03,0.0,100.0,112018.03,22523.68,12424.5,8593.12,43541.3,155559.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,6120,6841.45,0.0,129.06,6970.51,0.0,0.0,551.69,551.69,7522.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,26135,75257.0,4987.11,1969.54,82213.65,15729.66,10990.91,6549.59,33270.16,115483.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,10808,26640.0,240.87,2725.42,29606.29,5195.97,4300.79,2403.5,11900.26,41506.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1750,122438.3,35100.66,6173.66,163712.62,24690.97,12424.5,423.62,37539.09,201251.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,26734,34303.07,0.0,0.0,34303.07,6585.63,10306.96,2767.37,19659.96,53963.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1663,Patient Accounts Supervisor,29875,10038.0,1197.71,72.0,11307.71,2267.67,1433.6,943.38,4644.65,15952.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,43532,93727.4,1130.49,4510.75,99368.64,19482.98,12423.01,7751.75,39657.74,139026.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,43885,90461.68,14255.43,6571.28,111288.39,18348.34,10035.16,1798.9,30182.4,141470.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1936,Senior Storekeeper,42078,63102.0,0.0,612.0,63714.0,13132.0,12424.5,5229.97,30786.47,94500.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,21388,5092.4,0.0,509.24,5601.64,0.0,1385.81,433.68,1819.49,7421.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40998,68624.1,32188.6,8052.37,108865.07,20994.94,13519.71,8270.99,42785.64,151650.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19772,25699.8,0.0,4352.15,30051.95,0.0,2006.19,2326.63,4332.82,34384.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,22082,49660.21,0.0,33.84,49694.05,4124.93,11161.5,3984.96,19271.39,68965.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10833,43101.11,2050.52,1762.38,46914.01,11627.92,13245.48,3434.28,28307.68,75221.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23760,10861.6,0.0,0.0,10861.6,0.0,4709.96,870.78,5580.74,16442.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,29942,62811.03,0.0,2224.0,65035.03,13361.7,12424.5,5317.55,31103.75,96138.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,5346,67032.31,0.0,0.0,67032.31,13796.66,12424.5,5160.03,31381.19,98413.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,16866,64572.99,17414.54,3151.24,85138.77,13638.24,9458.75,6845.07,29942.06,115080.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48472,10995.11,0.0,170.7,11165.81,0.0,4706.96,907.92,5614.88,16780.69 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2558,Senior Physical Therapist,43184,72525.05,0.0,0.0,72525.05,15678.28,7167.99,5726.14,28572.41,101097.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,45167,81992.04,0.0,0.0,81992.04,15845.46,8601.58,6312.43,30759.47,112751.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,30815,7692.47,0.0,121.42,7813.89,0.0,2558.07,605.66,3163.73,10977.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2488,Supv Chemist,46334,59977.01,0.0,20573.53,80550.54,13159.52,6212.25,6485.21,25856.98,106407.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35909,40866.48,5064.63,1361.45,47292.56,10981.73,12734.51,3584.19,27300.43,74592.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,28475,41204.96,0.0,0.0,41204.96,0.0,3579.51,3197.68,6777.19,47982.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,417,43255.22,0.0,0.0,43255.22,9479.83,9564.06,4038.2,23082.09,66337.31 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8109,Document Examiner Technician,47355,71311.08,280.47,2294.99,73886.54,15082.75,12424.5,6109.41,33616.66,107503.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18356,51451.56,2907.67,2202.55,56561.78,11668.55,11438.91,4560.13,27667.59,84229.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49770,0.0,0.0,414.5,414.5,0.0,0.0,31.71,31.71,446.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,1873,52952.42,0.0,3138.64,56091.06,12698.76,12424.5,4454.91,29578.17,85669.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19910,8589.1,0.0,93.67,8682.77,0.0,3703.45,695.39,4398.84,13081.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,497,113233.61,35252.56,18640.99,167127.16,25036.04,15196.12,2803.2,43035.36,210162.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,27934,26869.53,2814.91,677.21,30361.65,5774.03,4020.04,2411.63,12205.7,42567.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9124,Sr Transit Information Clerk,32517,69497.19,0.0,0.0,69497.19,14287.84,12370.74,5603.27,32261.85,101759.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,46047,187247.14,0.0,4599.88,191847.02,38570.79,12424.5,11001.64,61996.93,253843.95 +Calendar,2015,1,Public Protection,CRT,Superior Court,196.0,Court Unrepresented Managers,SCRT,SF Superior Court,879C,"Director, Fiscal Services",25098,139568.0,0.0,5684.0,145252.0,28105.65,12424.5,32392.49,72922.64,218174.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0962,Dept Head II,40181,170710.3,0.0,0.0,170710.3,34355.68,12424.5,25606.38,72386.56,243096.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50637,3915.0,587.25,80.48,4582.73,734.45,477.86,73.95,1286.26,5868.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,5704,90700.7,0.0,0.0,90700.7,18730.48,11481.98,7222.22,37434.68,128135.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,12603,101981.33,0.0,0.0,101981.33,21008.63,12424.5,8179.0,41612.13,143593.46 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,38207,189752.92,0.0,0.0,189752.92,38128.12,12424.5,18097.18,68649.8,258402.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10356,45983.88,406.11,8094.61,54484.6,10228.22,8138.89,4271.17,22638.28,77122.88 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,867,89166.6,0.0,225.0,89391.6,18399.36,12326.36,7239.69,37965.41,127357.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,18830,73957.02,5720.87,1544.0,81221.89,15561.13,12424.5,6506.91,34492.54,115714.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41633,66321.7,15492.23,1549.11,83363.04,18566.91,13069.68,6253.38,37889.97,121253.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,14626,32674.07,2228.45,1819.37,36721.89,7101.72,6475.91,3025.96,16603.59,53325.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15548,43049.91,3551.55,1202.58,47804.04,11470.85,12956.72,3622.27,28049.84,75853.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,19530,93253.93,23287.28,4742.62,121283.83,19718.03,12595.34,9685.38,41998.75,163282.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12287,109149.93,5907.02,12979.18,128036.13,23070.96,9665.19,9907.94,42644.09,170680.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,32369,21185.16,0.0,417.71,21602.87,5170.52,6212.25,1752.71,13135.48,34738.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,40352,81946.52,0.0,25.0,81971.52,16832.76,11946.63,6674.09,35453.48,117425.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,44949,66149.84,0.0,613.74,66763.58,13758.95,12220.39,5539.19,31518.53,98282.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49671,53537.85,0.0,8923.02,62460.87,586.73,0.0,6494.12,7080.85,69541.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,52614,47.03,0.0,0.0,47.03,0.0,11.94,3.65,15.59,62.62 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8135,Asst Chf Victim/Wit Invstgtor,12748,30944.5,0.0,320.0,31264.5,5818.32,4300.79,2588.07,12707.18,43971.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",24505,93738.06,10813.33,58.71,104610.1,19330.75,12424.5,8344.31,40099.56,144709.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,2826,2208.6,0.0,0.0,2208.6,0.0,430.07,171.41,601.48,2810.08 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,40661,6155.05,0.0,0.0,6155.05,0.0,2036.9,477.79,2514.69,8669.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,35408,84599.02,0.0,2740.54,87339.56,17997.83,12424.5,7144.24,37566.57,124906.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,25511,87531.03,0.0,0.0,87531.03,18040.63,12424.5,7192.23,37657.36,125188.39 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,33270,396.0,18.56,0.0,414.56,0.0,95.58,32.18,127.76,542.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,38109,88640.04,139.65,1661.0,90440.69,18767.51,11297.37,7325.3,37390.18,127830.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25026,5354.02,0.0,250.0,5604.02,1602.46,68.5,424.04,2095.0,7699.02 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1280,Employee Relations Representat,6350,35247.3,0.0,0.0,35247.3,6559.52,4778.65,2832.36,14170.53,49417.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17316,16199.4,0.0,1376.32,17575.72,2055.11,7024.62,1413.18,10492.91,28068.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,13289,89892.0,0.0,0.0,89892.0,18231.81,10513.02,7246.04,35990.87,125882.87 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,7720,19084.54,0.0,0.0,19084.54,0.0,0.0,1509.74,1509.74,20594.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,52628,97764.94,3880.12,18732.76,120377.82,28337.72,12424.5,2003.24,42765.46,163143.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,50979,73749.0,0.0,2157.01,75906.01,15405.18,12424.5,5994.78,33824.46,109730.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,16791,16422.0,0.0,385.7,16807.7,4336.38,4061.86,1348.47,9746.71,26554.41 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,48483,50359.54,19405.9,1907.77,71673.21,3797.24,10410.0,5723.4,19930.64,91603.85 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,15856,51524.71,0.0,0.0,51524.71,9570.03,4897.22,7237.92,21705.17,73229.88 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,47969,134764.96,0.0,0.0,134764.96,27021.89,12424.5,17356.15,56802.54,191567.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,31831,153253.37,0.0,0.0,153253.37,30786.17,12424.5,25339.74,68550.41,221803.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,43637,53929.07,362.08,979.95,55271.1,12302.83,12379.46,4239.55,28921.84,84192.94 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,45700,58101.02,0.0,0.0,58101.02,11974.94,12424.5,4655.21,29054.65,87155.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,2353,44213.71,0.0,12968.65,57182.36,9990.06,6475.08,4633.01,21098.15,78280.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,31962,62240.5,0.0,250.0,62490.5,12822.87,12310.95,4912.29,30046.11,92536.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,3914,142886.71,0.0,0.0,142886.71,28750.63,12424.5,10162.36,51337.49,194224.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7358,Pattern Maker,22464,84226.46,0.0,4000.0,88226.46,18047.41,11493.56,7037.63,36578.6,124805.06 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,1881,120896.28,0.0,0.0,120896.28,24281.44,12424.5,27113.9,63819.84,184716.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37392,1928.5,0.0,881.46,2809.96,497.55,836.27,231.68,1565.5,4375.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,630,66151.95,8183.6,4138.07,78473.62,19272.93,13038.08,6085.14,38396.15,116869.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16486,113464.84,62219.88,18295.32,193980.04,24488.18,15196.11,3264.11,42948.4,236928.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,30181,38636.73,112.49,3191.5,41940.72,9189.52,9053.28,3417.6,21660.4,63601.12 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,31199,676.28,363.38,0.0,1039.66,0.0,200.1,80.69,280.79,1320.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10834,112159.74,5003.28,27676.69,144839.71,27248.25,15052.76,2412.35,44713.36,189553.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,53222,39072.01,1102.72,167.4,40342.13,8585.52,7645.81,3202.07,19433.4,59775.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,47704,0.0,0.0,63.13,63.13,0.0,0.0,4.83,4.83,67.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,39969,72699.0,2017.94,3533.54,78250.48,15112.3,12424.5,6460.12,33996.92,112247.4 +Calendar,2015,1,Public Protection,POL,Police,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,42083,211597.0,0.0,0.0,211597.0,42569.75,12424.5,11267.5,66261.75,277858.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4120,12626.17,1396.69,964.34,14987.2,3972.1,2510.94,1149.59,7632.63,22619.83 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8169,Legislative Asst City Atty Ofc,7254,2758.0,0.0,0.0,2758.0,618.62,477.86,213.53,1310.01,4068.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,52522,149295.33,0.0,0.0,149295.33,29950.21,10211.39,10332.33,50493.93,199789.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,917,66717.03,3397.48,3140.38,73254.89,19101.28,13143.69,5672.2,37917.17,111172.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,16851,251102.29,0.0,0.0,251102.29,50671.26,12424.5,22937.58,86033.34,337135.63 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,40535,32804.0,0.0,384.09,33188.09,6176.3,4300.79,2733.94,13211.03,46399.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,43967,48483.0,330.09,1998.57,50811.66,12049.22,12424.5,4099.76,28573.48,79385.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,39831,130350.84,0.0,0.0,130350.84,26228.93,12424.5,24932.06,63585.49,193936.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,42692,48643.75,1086.32,2789.55,52519.62,11822.91,10804.54,4311.75,26939.2,79458.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,11369,1401.6,0.0,0.0,1401.6,308.21,382.3,108.79,799.3,2200.9 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,8721,81116.01,0.0,0.0,81116.01,16718.52,12424.5,6661.66,35804.68,116920.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,19671,86649.06,0.0,0.0,86649.06,17485.98,10035.19,6792.41,34313.58,120962.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7472,Wire Rope Cable Maint Mechanic,13,86697.82,38923.18,12860.91,138481.91,19746.16,11994.43,10047.24,41787.83,180269.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,51729,106953.0,9426.59,633.15,117012.74,12799.91,12424.55,9135.0,34359.46,151372.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46536,46862.6,12125.16,1427.07,60414.83,11318.32,12424.5,4810.04,28552.86,88967.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,40270,41308.14,0.0,4111.02,45419.16,9283.5,9183.26,3400.49,21867.25,67286.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30725,691.4,0.0,51.86,743.26,0.0,0.0,51.95,51.95,795.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29522,33583.57,2743.74,835.09,37162.4,9888.37,6656.13,2870.54,19415.04,56577.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17974,112511.51,13655.13,20854.74,147021.38,24861.71,14527.11,2451.52,41840.34,188861.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40822,67201.67,6979.4,4286.48,78467.55,19608.66,13239.5,6123.58,38971.74,117439.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,30779,34972.95,0.0,0.0,34972.95,5264.22,10519.01,2775.14,18558.37,53531.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,38473,6232.64,0.0,60.0,6292.64,1411.43,1408.2,488.91,3308.54,9601.18 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",9373,39085.0,0.0,781.7,39866.7,7227.85,2389.33,757.12,10374.3,50241.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,20461,56954.9,355.36,10.0,57320.26,11574.22,10694.74,4730.08,26999.04,84319.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50275,66102.0,0.0,0.0,66102.0,13954.69,12424.5,5440.91,31820.1,97922.1 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),18413,108301.41,0.0,1500.0,109801.41,22333.22,12424.5,8699.91,43457.63,153259.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23601,44052.57,2261.73,3007.4,49321.7,13620.67,8760.65,3734.44,26115.76,75437.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47102,46103.3,0.0,9774.77,55878.07,7141.73,0.0,8478.38,15620.11,71498.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33445,47531.2,2992.39,1831.09,52354.68,11429.86,12424.5,4184.06,28038.42,80393.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52997,113233.61,35672.67,25546.15,174452.43,25481.14,15196.12,2973.68,43650.94,218103.37 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",26954,112273.99,0.0,0.0,112273.99,22580.79,0.0,16629.24,39210.03,151484.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,5862,60193.59,11395.39,3405.49,74994.47,13140.22,11718.87,6239.72,31098.81,106093.28 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,34388,80570.0,0.0,624.0,81194.0,16734.65,12424.5,6609.28,35768.43,116962.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51996,118890.0,11545.92,16862.27,147298.19,23518.37,12364.76,2454.93,38338.06,185636.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,1649,77172.04,0.0,0.0,77172.04,16112.83,10990.9,5464.52,32568.25,109740.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,33777,135421.0,0.0,13907.82,149328.82,30052.43,12424.5,10283.53,52760.46,202089.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,40.0,"Roofers and Waterproofers, Local 40",7200,Supervisory-Labor & Trade,9343,Roofer,31888,68526.68,0.0,170.0,68696.68,14251.18,10510.06,6132.68,30893.92,99590.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,1283,12936.0,503.23,326.63,13765.86,2468.18,1911.45,1054.77,5434.4,19200.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,10385,43977.21,0.0,1505.89,45483.1,9471.37,8878.09,3718.47,22067.93,67551.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,34742,62244.72,660.01,7477.19,70381.92,13320.0,11010.32,5538.19,29868.51,100250.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,27014,136071.05,0.0,6128.0,142199.05,28566.85,12424.5,10129.29,51120.64,193319.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,43171,32612.97,0.0,2975.13,35588.1,8376.56,8180.1,2953.91,19510.57,55098.67 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,7484,9463.59,0.0,0.0,9463.59,0.0,12424.5,137.22,12561.72,22025.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,53220,80949.88,3910.69,3106.12,87966.69,16584.79,12424.49,3209.49,32218.77,120185.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22165,4583.63,0.0,0.0,4583.63,0.0,1987.63,369.8,2357.43,6941.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45665,56531.0,0.0,5765.95,62296.95,12615.04,12424.5,5040.97,30080.51,92377.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,44486,12270.75,0.0,380.54,12651.29,0.0,4703.98,980.61,5684.59,18335.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,18655,78959.22,0.0,1103.92,80063.14,16578.81,11325.77,6593.86,34498.44,114561.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,28438,45194.4,1939.02,0.0,47133.42,10683.1,10417.47,3320.55,24421.12,71554.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,22542,48796.61,458.64,300.04,49555.29,10204.17,9755.93,3854.08,23814.18,73369.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50187,1362.46,298.04,250.0,1910.5,385.58,430.07,117.91,933.56,2844.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,13762,10670.74,0.0,0.0,10670.74,2393.44,2177.26,851.06,5421.76,16092.5 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,36806,87285.2,0.0,0.0,87285.2,17951.26,12257.25,6974.6,37183.11,124468.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38599,350.43,0.0,15.3,365.73,1920.51,27.31,22.25,1970.07,2335.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,1529,47154.22,0.0,0.0,47154.22,11290.48,12424.5,3785.52,27500.5,74654.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,53226,72633.04,146.93,23096.26,95876.23,9850.27,6090.34,7981.95,23922.56,119798.79 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,8479,0.0,0.0,0.0,0.0,0.0,68.5,18.22,86.72,86.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,52766,107625.2,18627.5,3724.7,129977.4,22477.24,12376.73,9939.66,44793.63,174771.03 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,51393,50143.5,0.0,0.0,50143.5,0.0,5495.45,3974.38,9469.83,59613.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,30743,104194.0,0.0,0.0,104194.0,21431.05,12424.5,8352.0,42207.55,146401.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46501,12207.0,0.0,0.0,12207.0,2213.13,1863.67,947.46,5024.26,17231.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10742,101844.93,41127.13,10845.59,153817.65,22344.46,15052.76,2429.82,39827.04,193644.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,13784,3921.88,0.0,59.14,3981.02,0.0,1503.78,308.56,1812.34,5793.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4022,2727.46,0.0,0.0,2727.46,0.0,1182.72,211.16,1393.88,4121.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31029,56462.34,0.0,3254.61,59716.95,13056.91,12406.58,4396.05,29859.54,89576.49 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,18803,97771.25,20473.84,10347.53,128592.62,26294.02,12424.5,2190.87,40909.39,169502.01 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,32904,98303.04,0.0,280.0,98583.04,20289.76,12376.71,7689.25,40355.72,138938.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,26536,62286.92,0.0,572.33,62859.25,13072.37,11395.78,5232.95,29701.1,92560.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48657,58920.13,0.0,7758.22,66678.35,12878.4,9557.31,5502.97,27938.68,94617.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,4448,163091.05,0.0,0.0,163091.05,32789.02,12424.51,10599.41,55812.94,218903.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44656,6931.2,0.0,173.28,7104.48,0.0,573.44,551.42,1124.86,8229.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,30638,56324.01,2876.6,2618.6,61819.21,12281.9,10990.9,5087.33,28360.13,90179.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53149,63122.94,6515.64,822.07,70460.65,17486.98,12435.61,5273.66,35196.25,105656.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,43858,97934.0,0.0,2004.0,99938.0,20592.49,12424.5,8231.2,41248.19,141186.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,8807,15530.78,0.0,284.02,15814.8,0.0,4854.81,1226.09,6080.9,21895.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,20142,95460.72,0.0,0.0,95460.72,19630.13,11791.32,7464.84,38886.29,134347.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,24057,60728.83,6127.81,379.05,67235.69,12618.03,11414.77,5340.36,29373.16,96608.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50326,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,22820,70245.0,31585.68,5369.76,107200.44,14616.8,12424.5,8478.23,35519.53,142719.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,17664,133087.02,0.0,0.0,133087.02,26783.95,12424.5,9993.16,49201.61,182288.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,50064,18128.0,0.0,0.0,18128.0,3373.64,3822.92,1441.8,8638.36,26766.36 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,11436,4440.3,0.0,0.0,4440.3,826.34,907.95,344.45,2078.74,6519.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,43084,85617.02,0.0,775.0,86392.02,17760.9,12424.5,7154.09,37339.49,123731.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12984,119461.67,6670.45,12913.41,139045.53,23641.93,12424.5,2367.79,38434.22,177479.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",19502,131577.1,28064.46,21180.61,180822.17,29980.02,15196.12,2993.26,48169.4,228991.57 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8217,Comm Pol Svcs Aide Supervisor,19653,78610.09,21657.74,5842.12,106109.95,16706.47,12424.5,8365.21,37496.18,143606.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43617,56531.0,0.0,7995.51,64526.51,13809.26,12424.5,4966.59,31200.35,95726.86 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,13173,49739.61,3344.78,0.0,53084.39,11916.99,12424.5,4025.46,28366.95,81451.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36570,68024.28,12042.34,6359.43,86426.05,20390.16,13406.1,6746.89,40543.15,126969.2 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,13237,22019.68,0.0,0.0,22019.68,4097.87,3739.29,1762.32,9599.48,31619.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10464,34801.59,0.0,651.9,35453.49,2786.06,3054.7,2179.24,8020.0,43473.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51457,2361.19,0.0,0.0,2361.19,0.0,1151.36,183.22,1334.58,3695.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50774,63322.31,410.64,2719.47,66452.42,13296.06,11898.85,5388.53,30583.44,97035.86 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,21532,65674.06,0.0,1140.0,66814.06,13751.47,8691.18,5412.01,27854.66,94668.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14289,9462.0,0.0,946.21,10408.21,281.66,0.0,107.95,389.61,10797.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43177,7524.18,275.13,29.56,7828.87,1785.08,2267.9,600.61,4653.59,12482.46 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,15950,91684.13,272.03,0.0,91956.16,20925.36,12164.06,1517.26,34606.68,126562.84 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,24613,1400.0,0.0,0.0,1400.0,0.0,0.0,110.72,110.72,1510.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7219,Maintenance Scheduler,19201,27423.01,4927.57,0.0,32350.58,6150.96,4300.79,2638.93,13090.68,45441.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3098,27342.98,1961.75,1312.21,30616.94,7169.44,8506.85,2297.13,17973.42,48590.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,39000,50335.74,0.0,0.0,50335.74,11290.32,6212.25,4034.59,21537.16,71872.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,36591,78923.62,0.0,650.0,79573.62,16362.19,12424.5,6419.62,35206.31,114779.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22097,0.0,0.0,331.1,331.1,0.0,68.5,6.21,74.71,405.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,5888,61735.0,0.0,0.0,61735.0,12724.0,12424.5,5119.87,30268.37,92003.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,217,22883.37,5986.04,3991.63,32861.04,6976.58,4550.77,2438.88,13966.23,46827.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42775,9964.47,0.0,539.62,10504.09,0.0,3811.99,814.58,4626.57,15130.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51594,103292.9,0.0,15709.52,119002.42,0.0,8960.52,9225.25,18185.77,137188.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,22727,151367.54,0.0,0.0,151367.54,30422.94,12424.5,25293.06,68140.5,219508.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,25421,78772.21,1172.63,0.0,79944.84,16223.36,12328.93,6435.85,34988.14,114932.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22545,5348.25,0.0,0.0,5348.25,0.0,2257.91,430.53,2688.44,8036.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,48463,4460.13,0.0,1.24,4461.37,0.0,1718.8,346.06,2064.86,6526.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,37235,9065.61,1468.82,0.0,10534.43,2033.42,1714.34,853.43,4601.19,15135.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,25244,66580.04,22146.25,4564.26,93290.55,13851.16,12425.1,7635.26,33911.52,127202.07 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8312,Sheriff's Captain,15096,156528.03,3570.66,13472.24,173570.93,41336.47,12424.5,2913.1,56674.07,230245.0 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,22344,14319.98,0.0,0.0,14319.98,0.0,4738.94,1109.71,5848.65,20168.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,8742,43086.5,0.0,0.0,43086.5,8591.71,8840.51,3496.03,20928.25,64014.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8357,12580.17,0.0,849.78,13429.95,1745.24,5485.06,1076.53,8306.83,21736.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24425,97761.24,7846.33,23147.69,128755.26,29423.85,12424.5,2146.74,43995.09,172750.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30536,121770.28,61184.66,36964.42,219919.36,25517.47,12424.5,569.22,38511.19,258430.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,41984,6572.75,105.4,90.97,6769.12,0.0,3073.27,525.0,3598.27,10367.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41549,49795.53,1696.01,1786.34,53277.88,12157.69,9902.75,4063.44,26123.88,79401.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,9338,88144.0,0.0,0.0,88144.0,18166.76,12424.5,6912.87,37504.13,125648.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,40632,18608.67,0.0,546.01,19154.68,4296.39,3703.63,1697.0,9697.02,28851.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16994,63364.59,14271.16,6929.81,84565.56,19161.65,12478.03,6604.94,38244.62,122810.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2934,34684.94,6481.0,1701.04,42866.98,9622.27,10878.85,3246.29,23747.41,66614.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34049,43469.6,5001.39,1540.71,50011.7,11674.92,13080.2,4305.01,29060.13,79071.83 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,3726,75927.02,0.0,0.0,75927.02,15648.74,12424.5,5739.14,33812.38,109739.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,26615,78204.01,0.0,624.0,78828.01,16246.79,12424.5,6477.43,35148.72,113976.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11146,112685.44,24585.51,9509.51,146780.46,22330.91,12424.5,2500.49,37255.9,184036.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,11564,101531.01,291.08,0.0,101822.09,20926.02,12424.5,8331.52,41682.04,143504.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33676,97554.64,6807.97,7358.48,111721.09,25514.24,12397.68,1855.52,39767.44,151488.53 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,37407,82677.65,0.0,0.0,82677.65,17001.95,12412.32,6475.64,35889.91,118567.56 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,3952,62926.33,10820.64,7933.27,81680.24,14167.78,11517.04,6468.62,32153.44,113833.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,29046,210682.0,0.0,0.0,210682.0,42454.54,12424.5,18664.07,73543.11,284225.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40276,65321.71,10002.53,26472.02,101796.26,14250.12,8362.64,1646.3,24259.06,126055.32 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,32487,100479.65,0.0,3152.52,103632.17,20685.6,12424.51,8130.08,41240.19,144872.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,17066,500.0,0.0,0.0,500.0,0.0,59.73,38.75,98.48,598.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50894,60230.02,916.17,205.0,61351.19,13491.13,12424.5,4941.0,30856.63,92207.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,1689,0.0,0.0,4261.87,4261.87,0.0,0.0,326.04,326.04,4587.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,20724,66263.0,11025.33,5230.15,82518.48,14307.11,12424.5,6729.73,33461.34,115979.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,34795,47331.0,0.0,5.52,47336.52,9741.71,8123.71,3712.27,21577.69,68914.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0402,Deputy Chief 3,51410,141548.4,0.0,175417.43,316965.83,32291.58,6546.76,4913.73,43752.07,360717.9 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,3405,61617.0,88.5,2448.36,64153.86,13111.65,12400.6,5238.7,30750.95,94904.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,13708,77680.53,19782.56,3991.7,101454.79,16041.56,8501.58,8284.75,32827.89,134282.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,26466,17923.65,135.38,0.0,18059.03,3916.45,5931.51,1447.08,11295.04,29354.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,20277,52752.13,38.03,200.0,52990.16,12650.21,12402.58,4293.81,29346.6,82336.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",3400,Agriculture & Horticulture,3450,Agricultural Inspector,25901,67417.02,0.0,624.0,68041.02,14023.6,12424.5,5640.88,32088.98,100130.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3487,40364.92,0.0,9200.35,49565.27,562.21,0.0,7037.2,7599.41,57164.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,16826,113623.06,0.0,0.0,113623.06,22860.58,12424.5,9304.67,44589.75,158212.81 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,39742,393.65,0.0,0.0,393.65,86.37,23.89,30.4,140.66,534.31 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,11814,6739.95,0.0,0.0,6739.95,1482.13,1607.18,503.69,3593.0,10332.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2565,Acupuncturist,1374,77440.0,0.0,1904.0,79344.0,16353.54,12424.5,6529.21,35307.25,114651.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5118,113233.6,41589.58,18108.05,172931.23,24818.84,15196.12,2940.72,42955.68,215886.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6805,3423.09,0.0,0.0,3423.09,0.0,1484.37,272.49,1756.86,5179.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,44973,97424.02,0.0,1460.0,98884.02,20377.95,12424.51,7789.62,40592.08,139476.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,2589,66458.0,3403.35,0.0,69861.35,13687.2,12424.5,5628.17,31739.87,101601.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37363,63735.06,12432.11,3087.34,79254.51,18253.38,12553.88,6175.43,36982.69,116237.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,2634,75927.0,0.0,624.0,76551.0,15777.43,12424.5,6338.13,34540.06,111091.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,41077,20655.61,15912.91,2985.43,39553.95,5265.22,6230.17,3133.28,14628.67,54182.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,19569,197955.29,0.0,0.0,197955.29,39798.79,12424.5,18406.56,70629.85,268585.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51958,42195.82,0.0,5116.02,47311.84,412.96,0.0,5130.92,5543.88,52855.72 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39435,97748.73,11687.88,14354.06,123790.67,27258.89,12422.83,2052.88,41734.6,165525.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,23851,2841.78,0.0,0.0,2841.78,0.0,928.85,231.16,1160.01,4001.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50328,67773.18,29031.1,4786.18,101590.46,19896.15,13355.68,7907.62,41159.45,142749.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,12145,125476.11,0.0,0.0,125476.11,25252.15,12424.5,9886.83,47563.48,173039.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,43822,24073.5,0.0,650.0,24723.5,6210.94,5256.53,1923.89,13391.36,38114.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,46339,66580.0,10681.82,1280.66,78542.48,13722.34,12424.5,5946.76,32093.6,110636.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,8569,42805.02,731.28,20.36,43556.66,7965.99,5734.38,3336.81,17037.18,60593.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,15263,53891.06,543.87,0.0,54434.93,12076.54,11689.78,4439.0,28205.32,82640.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17581,91747.64,2796.59,8460.11,103004.34,18716.98,9557.31,1725.75,30000.04,133004.38 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,7254,63644.19,0.0,132.58,63776.77,13319.54,9987.4,5131.61,28438.55,92215.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,505,127251.98,1640.82,29613.2,158506.0,29163.58,10924.6,10317.9,50406.08,208912.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10230,8557.45,0.0,172.78,8730.23,0.0,2281.81,677.61,2959.42,11689.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,52855,36883.05,0.0,0.0,36883.05,8272.88,5256.51,2983.16,16512.55,53395.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,20807,45136.4,450.38,0.0,45586.78,10754.64,11420.99,3566.24,25741.87,71328.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,11916,112776.01,0.0,31811.33,144587.34,22718.17,12424.51,10199.83,45342.51,189929.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,16533,158363.94,35937.44,834.25,195135.63,31270.85,12424.5,3281.58,46976.93,242112.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,47705,21666.0,164.96,0.0,21830.96,4764.38,5256.52,1783.28,11804.18,33635.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,32495,24149.21,0.0,13720.93,37870.14,5476.86,5340.15,3067.59,13884.6,51754.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50072,0.0,0.0,6817.65,6817.65,0.0,0.0,521.55,521.55,7339.2 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,41725,14446.21,0.0,718.74,15164.95,3294.12,3011.93,1371.77,7677.82,22842.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10369,2731.2,0.0,0.0,2731.2,0.0,1146.88,211.99,1358.87,4090.07 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),29533,184289.02,0.0,5185.78,189474.8,38130.64,12424.5,11057.63,61612.77,251087.57 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,21552,109464.6,0.0,8144.58,117609.18,23245.72,12472.29,9717.14,45435.15,163044.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,49615,90764.04,0.0,0.0,90764.04,17877.26,10035.17,7224.99,35137.42,125901.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21632,67571.34,14365.45,1557.71,83494.5,18945.96,13318.83,6478.76,38743.55,122238.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,15851,119066.01,2237.04,10475.28,131778.33,31500.75,12424.5,2189.43,46114.68,177893.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,7113,65445.89,0.0,0.0,65445.89,13459.17,12263.23,5241.95,30964.35,96410.24 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,21621,72863.7,0.0,0.0,72863.7,14692.87,10035.18,5787.23,30515.28,103378.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26215,56531.01,0.0,1975.95,58506.96,11651.3,12424.5,4706.81,28782.61,87289.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,38155,53488.55,3025.46,489.5,57003.51,11152.19,10411.52,4741.43,26305.14,83308.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,9239,32190.12,0.0,0.0,32190.12,4476.65,7060.46,2594.87,14131.98,46322.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,19912,116976.05,0.0,0.0,116976.05,23541.49,12424.5,9618.36,45584.35,162560.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,9819,106371.68,0.0,0.0,106371.68,21921.39,12424.5,8559.01,42904.9,149276.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52693,56531.0,0.0,3013.22,59544.22,12896.58,12424.5,4780.24,30101.32,89645.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",46662,9982.43,0.0,1247.8,11230.23,1982.14,1146.88,187.99,3317.01,14547.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,3785,47200.0,0.0,1000.0,48200.0,10228.34,9557.31,3818.1,23603.75,71803.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,19747,65910.03,0.0,0.0,65910.03,13606.52,12019.09,5301.78,30927.39,96837.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2044,149099.01,0.0,250.0,149349.01,28756.01,12424.5,6210.79,47391.3,196740.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18762,18241.48,0.0,780.81,19022.29,1006.4,7897.03,1540.88,10444.31,29466.6 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",49054,104856.07,0.0,0.0,104856.07,21607.28,12397.63,8549.22,42554.13,147410.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,31504,5794.65,0.0,125.36,5920.01,1101.72,943.79,456.3,2501.81,8421.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,31166,70791.03,7750.05,2201.85,80742.93,15043.98,12424.51,6629.49,34097.98,114840.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2427,139797.6,0.0,40100.14,179897.74,33791.19,12376.71,4755.56,50923.46,230821.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator,Taxi & Accesssvcs",30493,88237.8,0.0,0.0,88237.8,18180.04,12424.5,6805.05,37409.59,125647.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,47258,43203.2,842.18,1052.1,45097.48,9457.91,8792.72,3741.19,21991.82,67089.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7319,Electric Motor Repairer,34970,84499.29,22184.75,4326.1,111010.14,17579.88,12403.12,8854.95,38837.95,149848.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,41590,73291.64,0.0,0.0,73291.64,14850.59,10417.48,5811.14,31079.21,104370.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,27179,49445.2,0.0,0.0,49445.2,2356.45,6920.1,4085.77,13362.32,62807.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,52457,41727.5,0.0,999.62,42727.12,8495.06,7048.5,3420.68,18964.24,61691.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,12062,75022.7,0.0,15705.67,90728.37,17748.6,11368.77,7383.06,36500.43,127228.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,7081,93884.01,0.0,0.0,93884.01,19350.03,12424.5,7511.02,39285.55,133169.56 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,48989,77071.04,0.0,0.0,77071.04,15884.7,12424.5,6111.07,34420.27,111491.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,50055,74759.58,1203.08,9601.56,85564.22,16877.89,12232.46,7060.44,36170.79,121735.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7203,Bldg & Grounds Maint Sprv,21346,32999.02,502.57,0.0,33501.59,6141.1,3822.93,2668.93,12632.96,46134.55 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,15626,63705.01,0.0,0.0,63705.01,13129.84,12424.5,5182.66,30737.0,94442.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5911,27125.12,2234.36,1850.96,31210.44,8195.31,5394.32,2303.09,15892.72,47103.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,21653,67522.21,533.64,4136.58,72192.43,13266.51,12324.46,5813.9,31404.87,103597.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,4229,117140.95,29896.43,21278.16,168315.54,23164.17,12424.5,2815.61,38404.28,206719.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,39208,87503.01,0.0,0.0,87503.01,18024.41,12424.5,7188.9,37637.81,125140.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,21332,23821.0,2371.47,0.0,26192.47,5343.03,3345.08,2111.56,10799.67,36992.14 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,22668,86594.44,0.0,0.0,86594.44,17961.05,11678.43,7153.31,36792.79,123387.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,21551,106928.6,29741.69,16212.11,152882.4,24236.42,12296.06,10270.28,46802.76,199685.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,23293,5544.0,0.0,0.0,5544.0,1219.12,955.73,430.3,2605.15,8149.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,6928,84973.0,0.0,0.0,84973.0,17513.3,12424.5,7048.87,36986.67,121959.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,34202,55726.77,655.59,1061.94,57444.3,11557.75,11071.14,4711.7,27340.59,84784.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2236,119461.64,268.86,9727.27,129457.77,23641.92,12424.5,2158.14,38224.56,167682.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,18882,84644.02,18317.31,11251.97,114213.3,19103.12,12424.52,9075.57,40603.21,154816.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41493,16734.6,0.0,0.0,16734.6,3624.34,2580.47,1289.45,7494.26,24228.86 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5444,96121.97,34681.96,13815.29,144619.22,26725.42,12217.41,2409.64,41352.47,185971.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15800,6726.81,0.0,253.09,6979.9,0.0,0.0,417.34,417.34,7397.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43686,119465.61,10463.4,3946.95,133875.96,23627.22,12424.51,2279.69,38331.42,172207.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51650,111271.74,2038.11,7984.95,121294.8,14190.46,10439.57,9694.53,34324.56,155619.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8011,43121.14,5682.92,991.12,49795.18,11446.4,13105.75,3776.79,28328.94,78124.12 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),38725,97207.2,0.0,3069.15,100276.35,21958.94,6594.55,8182.22,36735.71,137012.06 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,13323,57565.33,0.0,8639.66,66204.99,12641.95,8506.01,5326.99,26474.95,92679.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,34134,47990.43,1563.62,0.0,49554.05,11490.95,12327.73,4024.78,27843.46,77397.51 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31223,97763.4,23209.32,12887.98,133860.7,26928.01,12424.5,2282.04,41634.55,175495.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7952,67082.01,27272.2,1668.24,96022.45,18805.45,13216.26,7455.92,39477.63,135500.08 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,20787,96754.39,0.0,17199.49,113953.88,27716.25,12295.18,1893.5,41904.93,155858.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3859,22729.6,0.0,0.0,22729.6,1732.84,9796.24,1837.14,13366.22,36095.82 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,40452,118104.06,0.0,910.0,119014.06,23943.32,12424.5,9263.25,45631.07,164645.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4678,23981.19,2699.43,844.37,27524.99,6121.45,7446.4,2080.07,15647.92,43172.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20391,107.4,0.0,0.0,107.4,0.0,35.84,8.32,44.16,151.56 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,51513,70783.26,8338.49,5504.45,84626.2,15319.97,9383.79,7060.27,31764.03,116390.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,40250,12547.7,0.0,0.0,12547.7,0.0,4157.44,972.97,5130.41,17678.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15722,41880.32,4801.51,2225.76,48907.59,12773.68,8328.66,3672.05,24774.39,73681.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46297,46373.95,0.0,0.0,46373.95,0.0,6080.84,3594.91,9675.75,56049.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,24556,20194.48,0.0,130.33,20324.81,0.0,4151.45,1575.8,5727.25,26052.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,37028,125.0,0.0,0.0,125.0,0.0,0.0,9.88,9.88,134.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28219,112694.06,19054.9,820.04,132569.0,22299.39,12424.5,2185.34,36909.23,169478.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51504,8042.23,2228.55,32.36,10303.14,0.0,2665.61,799.29,3464.9,13768.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2719,Janitorial Svcs Asst Sprv,44362,74326.02,0.0,6458.16,80784.18,16380.22,12424.5,6496.38,35301.1,116085.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50500,66458.13,19280.6,1646.2,87384.93,18634.49,13094.65,6571.47,38300.61,125685.54 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,20284,62803.04,0.0,0.0,62803.04,12779.4,10990.9,5073.43,28843.73,91646.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9364,62119.58,18029.01,625.59,80774.18,17159.52,12241.13,6089.56,35490.21,116264.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,51320,83545.86,0.0,0.0,83545.86,17216.2,12401.62,6812.32,36430.14,119976.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38350,753.38,0.0,13.23,766.61,0.0,367.36,59.5,426.86,1193.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50897,63853.67,12204.98,1999.42,78058.07,18064.49,12590.98,6082.09,36737.56,114795.63 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1944,Materials Coordinator,24624,118104.01,0.0,0.0,118104.01,23768.42,12424.5,9465.54,45658.46,163762.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9508,Prpl Permit And Citation Clerk,17843,81971.68,2092.36,0.0,84064.04,16897.13,12405.09,6965.6,36267.82,120331.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1319,64130.16,15023.88,3673.87,82827.91,18659.68,12633.81,6426.28,37719.77,120547.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,49513,106812.03,0.0,0.0,106812.03,22013.95,12424.51,8798.49,43236.95,150048.98 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,53151,42245.18,0.0,0.0,42245.18,9070.22,8742.98,3401.73,21214.93,63460.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,10860,59720.45,0.0,0.0,59720.45,12186.51,8097.49,4927.0,25211.0,84931.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,33441,175379.0,0.0,0.0,175379.0,35194.16,12424.5,27792.29,75410.95,250789.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,31396,62811.0,84866.22,13271.63,160948.85,14502.66,12424.5,10280.99,37208.15,198157.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,43627,71311.03,0.0,0.0,71311.03,14697.59,12424.5,5745.77,32867.86,104178.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",44394,1550.0,0.0,0.0,1550.0,0.0,185.17,120.16,305.33,1855.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,10460,43048.91,1508.95,0.0,44557.86,9251.28,8601.76,3564.59,21417.63,65975.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,10483,90775.02,0.0,0.0,90775.02,18709.22,12424.5,7453.64,38587.36,129362.38 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,39338,97558.02,0.0,0.0,97558.02,20099.24,12424.5,7565.09,40088.83,137646.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,3870,93281.09,0.0,1240.0,94521.09,19477.27,12424.51,7584.76,39486.54,134007.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51098,64771.35,22859.27,4574.73,92205.35,18968.05,12762.6,7171.18,38901.83,131107.18 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,15483,37355.01,0.0,1935.82,39290.83,9118.66,10035.17,2962.17,22116.0,61406.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,20486,97767.85,55392.02,19778.0,172937.87,28583.4,12424.5,2902.58,43910.48,216848.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,52470,110455.0,0.0,0.0,110455.0,22072.08,11420.97,9086.96,42580.01,153035.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,34356,49120.4,105.02,3229.3,52454.72,11931.72,12424.5,4089.67,28445.89,80900.61 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3549,Arts Program Assistant,36303,70930.96,0.0,0.0,70930.96,14619.09,12424.49,5771.04,32814.62,103745.58 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2819,Assistant Health Educator,9115,68567.64,0.0,1280.0,69847.64,14375.71,10902.43,5459.87,30738.01,100585.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,9151,1936.1,0.0,0.0,1936.1,0.0,453.97,150.27,604.24,2540.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39786,12146.0,0.0,476.53,12622.53,0.0,3264.42,977.24,4241.66,16864.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,50777,2778.3,0.0,0.0,2778.3,599.58,430.07,233.74,1263.39,4041.69 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,35099,19449.75,0.0,701.77,20151.52,0.0,4703.99,1562.27,6266.26,26417.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,18712,53605.78,0.0,0.0,53605.78,11053.5,11468.76,4260.19,26782.45,80388.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5130,Sewage Treatment Plant Supt,36455,77432.4,0.0,7859.11,85291.51,16988.68,6546.77,6947.94,30483.39,115774.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,23215,220.4,0.0,0.0,220.4,0.0,95.58,18.56,114.14,334.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23172,25073.0,0.0,0.0,25073.0,5513.55,5734.39,2072.36,13320.3,38393.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10919,668.09,0.0,0.0,668.09,0.0,289.71,51.72,341.43,1009.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,37618,181945.06,0.0,14649.34,196594.4,36616.95,12424.5,11112.83,60154.28,256748.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4046,119559.18,36498.11,20422.94,176480.23,25045.84,12424.5,431.92,37902.26,214382.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,33855,0.0,0.0,2819.56,2819.56,0.0,0.0,215.69,215.69,3035.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,41339,81157.01,29680.61,13101.18,123938.8,18104.96,12424.5,9719.74,40249.2,164188.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5893,1453.26,0.0,0.0,1453.26,0.0,630.19,112.51,742.7,2195.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,7951,14772.24,39.08,757.58,15568.9,0.0,0.0,1231.13,1231.13,16800.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,32412,87531.06,0.0,0.0,87531.06,18047.01,12424.5,7216.23,37687.74,125218.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,30306,32160.0,11777.35,16182.92,60120.27,5709.66,2867.19,987.22,9564.07,69684.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23407,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2900,Human Services,2966,Welfare Fraud Investigator,7300,19302.0,0.0,0.0,19302.0,3592.12,2867.19,1534.58,7993.89,27295.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,41945,85368.04,9350.71,0.0,94718.75,17594.6,12424.5,7542.33,37561.43,132280.18 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,36129,13478.37,62.93,0.0,13541.3,0.0,0.0,1071.4,1071.4,14612.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19945,70245.0,31010.17,4115.98,105371.15,14627.15,12424.5,8333.14,35384.79,140755.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,16773,53638.97,4115.2,697.8,58451.97,11820.68,11459.7,4603.42,27883.8,86335.77 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,6325,26022.93,0.0,0.0,26022.93,4955.92,1726.29,2018.92,8701.13,34724.06 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,32291,54168.03,0.0,0.0,54168.03,11884.44,5734.39,4416.89,22035.72,76203.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,46365,6694.89,0.0,73.24,6768.13,0.0,0.0,535.69,535.69,7303.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35552,9689.42,0.0,9.37,9698.79,0.0,4171.17,776.31,4947.48,14646.27 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,50391,121472.0,0.0,5960.0,127432.0,24587.09,12424.5,9980.16,46991.75,174423.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,14222,32406.02,165.72,0.0,32571.74,7268.69,5256.52,2552.66,15077.87,47649.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,46428,88347.4,0.0,0.0,88347.4,18196.36,12328.93,7049.7,37574.99,125922.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,18151,51405.0,4136.22,2976.52,58517.74,12602.97,12424.5,4532.04,29559.51,88077.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37944,98582.14,0.0,16095.15,114677.29,0.0,8632.04,8890.28,17522.32,132199.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,36149,57578.94,0.0,263.61,57842.55,12847.65,12344.22,4685.95,29877.82,87720.37 +Calendar,2015,1,Public Protection,CRT,Superior Court,196.0,Court Unrepresented Managers,SCRT,SF Superior Court,149C,Communications Director,36025,120939.98,0.0,5336.0,126275.98,24344.79,12370.09,31937.22,68652.1,194928.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,29762,75787.55,0.0,4647.92,80435.47,16098.1,10080.58,6427.67,32606.35,113041.82 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,35431,69924.9,0.0,408.0,70332.9,14488.48,12424.5,5786.42,32699.4,103032.3 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,7500,97761.62,16623.13,14041.26,128426.01,27202.29,12424.5,2179.74,41806.53,170232.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,6091,28254.93,0.0,25012.78,53267.71,6392.74,2369.55,4226.71,12989.0,66256.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49757,5208.9,0.0,0.0,5208.9,0.0,1738.23,404.17,2142.4,7351.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,34358,77740.83,0.0,0.0,77740.83,16055.57,12424.51,6067.08,34547.16,112287.99 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,21411,15641.22,749.98,705.03,17096.23,3516.84,3098.84,1937.74,8553.42,25649.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46200,64992.52,10288.01,5330.95,80611.48,19326.28,12802.14,6076.72,38205.14,118816.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,26209,108038.02,0.0,0.0,108038.02,22266.23,12424.5,8890.9,43581.63,151619.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,7722,54740.41,0.0,0.0,54740.41,11362.83,11096.93,4478.41,26938.17,81678.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6085,56531.0,0.0,0.0,56531.0,11651.3,12424.5,4587.75,28663.55,85194.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,44971,84644.0,0.0,650.0,85294.0,17567.28,12424.5,6686.25,36678.03,121972.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,9678,72153.14,0.0,0.0,72153.14,14879.01,12424.5,5915.14,33218.65,105371.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,7987,38653.53,27.08,0.0,38680.61,9286.97,12108.52,3096.41,24491.9,63172.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,5835,105995.68,0.0,0.0,105995.68,21830.83,12328.94,8683.64,42843.41,148839.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8219,Parking Enforcement Admin,14729,93377.46,4407.53,8210.18,105995.17,19290.98,12179.78,8607.14,40077.9,146073.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,2056,101531.08,0.0,0.0,101531.08,20926.04,12424.5,8342.33,41692.87,143223.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,35119,63171.15,45460.98,11660.56,120292.69,14817.62,12496.18,9504.78,36818.58,157111.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,39303,65549.47,2358.69,9360.89,77269.05,14738.08,12349.84,6293.84,33381.76,110650.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,43937,121005.02,0.0,0.0,121005.02,24265.57,11946.61,9534.34,45746.52,166751.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53048,34285.86,2064.94,1315.17,37665.97,10529.83,6818.37,2840.43,20188.63,57854.6 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,27894,19960.7,0.0,0.0,19960.7,3714.67,3010.55,1566.12,8291.34,28252.04 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,2966,42588.0,0.0,0.0,42588.0,9552.48,5017.58,3401.58,17971.64,60559.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,25141,195281.82,0.0,0.0,195281.82,39515.67,12424.51,11155.56,63095.74,258377.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,35535,75927.03,7536.51,1578.65,85042.19,15792.01,12424.5,6973.88,35190.39,120232.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10204,112159.77,41010.37,18236.65,171406.79,24822.82,15052.76,2867.55,42743.13,214149.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,34041,19995.59,6265.51,1365.01,27626.11,1415.57,6154.01,2165.39,9734.97,37361.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,32273,108038.0,0.0,0.0,108038.0,22281.99,12424.51,8721.38,43427.88,151465.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,30824,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,16049,93281.05,0.0,1624.0,94905.05,19558.93,12424.5,7496.46,39479.89,134384.94 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,33501,82593.06,2058.16,1144.8,85796.02,17474.0,10990.9,6858.51,35323.41,121119.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,14422,28136.0,195.15,0.0,28331.15,0.0,5256.5,2249.02,7505.52,35836.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,47330,107978.0,0.0,48.0,108026.0,22271.85,12424.5,8807.92,43504.27,151530.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51411,67696.85,10730.24,5014.78,83441.87,19922.28,13338.89,6345.89,39607.06,123048.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47352,11303.1,0.0,0.0,11303.1,1110.34,4844.18,912.93,6867.45,18170.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51062,7045.92,0.0,0.0,7045.92,1355.51,3055.35,576.75,4987.61,12033.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,9761,65145.02,50.66,5596.05,70791.73,14572.69,12424.5,5820.03,32817.22,103608.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14369,81055.84,2627.59,10039.68,93723.11,16845.21,12424.5,1560.86,30830.57,124553.68 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,13204,87531.02,0.0,624.0,88155.02,18169.32,12424.5,7264.47,37858.29,126013.31 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8228,Museum Sec Supv,12072,70245.02,6726.13,5387.67,82358.82,15280.52,12424.5,6546.85,34251.87,116610.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16127,34614.0,0.0,1124.98,35738.98,0.0,2867.61,2766.91,5634.52,41373.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,20702,29122.02,0.0,0.0,29122.02,5419.62,4300.78,2167.93,11888.33,41010.35 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,26626,64163.05,0.0,642.08,64805.13,13332.81,12424.5,5239.44,30996.75,95801.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2416,Laboratory Technician II,29809,62305.25,59.23,0.0,62364.48,12835.69,11713.2,5186.83,29735.72,92100.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",32233,145503.76,21980.26,30644.49,198128.51,34452.72,14718.31,501.82,49672.85,247801.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7254,Automotive Machinist Sprv 1,49723,90796.03,0.0,20392.13,111188.16,19165.5,10513.04,9061.74,38740.28,149928.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9709,11581.0,0.0,0.0,11581.0,2099.64,1768.1,893.36,4761.1,16342.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,18189,38178.93,0.0,0.0,38178.93,5781.38,12400.61,3079.32,21261.31,59440.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52063,77058.28,7948.56,12836.64,97843.48,17904.7,15196.13,1620.03,34720.86,132564.34 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,16936,106305.51,0.0,15945.85,122251.36,24613.66,6164.46,9625.62,40403.74,162655.1 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,2680,17171.0,0.0,0.0,17171.0,3510.7,3679.57,1373.85,8564.12,25735.12 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,41626,114720.04,0.0,12274.08,126994.12,23087.61,12424.51,9977.85,45489.97,172484.09 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,5930,16082.08,0.0,2809.54,18891.62,0.0,3628.79,1463.53,5092.32,23983.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,36442,180164.33,0.0,0.0,180164.33,36149.04,12424.5,18116.85,66690.39,246854.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,17445,0.0,0.0,7308.15,7308.15,0.0,68.5,559.08,627.58,7935.73 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,40483,68158.36,2806.59,40.0,71004.95,13947.43,11412.03,5823.3,31182.76,102187.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,33389,71645.88,0.0,0.0,71645.88,14754.14,12424.5,5776.85,32955.49,104601.37 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,43214,41214.88,74.93,0.0,41289.81,8149.25,7080.05,3404.58,18633.88,59923.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,14443,55429.61,1163.25,0.0,56592.86,12398.77,12282.95,4446.16,29127.88,85720.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,52332,101142.9,43254.28,1183.05,145580.23,20853.79,12376.71,10162.86,43393.36,188973.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25440,28940.7,0.0,1037.1,29977.8,153.69,0.0,4347.51,4501.2,34479.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",23813,58413.57,21980.63,12296.59,92690.79,11467.97,5877.74,1553.32,18899.03,111589.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19634,1316.83,0.0,44.45,1361.28,0.0,353.92,105.39,459.31,1820.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34746,59016.54,0.0,3538.1,62554.64,0.0,4548.39,1051.14,5599.53,68154.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,30496,65596.76,25366.2,5407.69,96370.65,14620.73,8902.63,7860.51,31383.87,127754.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7169,13454.75,0.0,245.48,13700.23,0.0,5140.05,1062.25,6202.3,19902.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15501,16593.6,0.0,719.52,17313.12,4167.38,0.0,947.19,5114.57,22427.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,19658,117140.94,33174.94,13680.05,163995.93,23164.17,12424.5,2787.94,38376.61,202372.54 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,43615,148333.47,0.0,0.0,148333.47,29828.25,12424.5,27804.61,70057.36,218390.83 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,5816,85004.13,14046.17,8950.13,108000.43,18581.13,12424.5,8795.53,39801.16,147801.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,14250,55190.01,0.0,0.0,55190.01,11075.94,9557.3,4411.6,25044.84,80234.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12820,2644.8,0.0,0.0,2644.8,0.0,1146.88,204.76,1351.64,3996.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,33739,77071.04,15123.39,2184.0,94378.43,16333.45,12424.5,7509.88,36267.83,130646.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9119,83534.11,268.2,3120.51,86922.82,14924.08,7396.16,3478.24,25798.48,112721.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,990,99335.0,0.0,0.0,99335.0,20401.62,11946.62,7886.1,40234.34,139569.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33519,3635.69,912.28,386.61,4934.58,1061.04,1147.65,357.27,2565.96,7500.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19939,15597.91,0.0,359.36,15957.27,0.0,0.0,1262.07,1262.07,17219.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,48445,55949.22,0.0,1588.28,57537.5,11899.4,9611.07,3925.3,25435.77,82973.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43650,42094.68,3012.53,1994.59,47101.8,11452.11,12688.41,3351.48,27492.0,74593.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",23141,19945.66,0.0,0.0,19945.66,0.0,4683.08,1548.11,6231.19,26176.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,35817,63887.0,2739.93,275.4,66902.33,13225.01,12424.51,5518.61,31168.13,98070.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,10573,11064.65,0.0,0.0,11064.65,763.73,3661.65,905.58,5330.96,16395.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8982,8200.58,0.0,0.0,8200.58,0.0,3494.39,659.39,4153.78,12354.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38303,31281.52,0.0,3117.45,34398.97,7076.32,3224.69,2737.37,13038.38,47437.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28009,3916.53,0.0,32.51,3949.04,-0.01,286.71,944.38,1231.08,5180.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,18580,4707.7,0.0,85.93,4793.63,0.0,1570.98,371.12,1942.1,6735.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,25789,28386.54,252.9,850.97,29490.41,5998.37,5630.51,2476.99,14105.87,43596.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,42686,19270.19,0.0,523.52,19793.71,4832.53,5620.89,1465.97,11919.39,31713.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,51256,97424.01,6502.62,2596.97,106523.6,20208.21,12424.5,8802.13,41434.84,147958.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,29334,58344.43,637.95,3392.11,62374.49,14105.26,10977.65,5110.97,30193.88,92568.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,28781,85254.2,0.0,0.0,85254.2,17542.37,12424.49,6862.46,36829.32,122083.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38203,29659.6,0.0,0.0,29659.6,5377.28,2819.41,2331.43,10528.12,40187.72 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2825,Senior Health Educator,24617,99671.19,0.0,0.0,99671.19,20517.43,12254.26,7648.76,40420.45,140091.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27191,52076.27,3968.95,904.07,56949.29,13130.05,11922.03,4079.12,29131.2,86080.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,50519,35608.08,7531.7,450.73,43590.51,4277.68,8392.52,3467.58,16137.78,59728.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33118,17862.8,3448.7,458.15,21769.65,4392.35,5515.23,1667.28,11574.86,33344.51 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,29838,92282.04,0.0,1196.15,93478.19,19265.77,12424.5,7305.44,38995.71,132473.9 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27196,97763.74,12482.43,7273.62,117519.79,25549.17,12424.5,2000.31,39973.98,157493.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,33353,36492.96,0.0,738.79,37231.75,7677.28,6236.14,3163.29,17076.71,54308.46 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,5093,62628.01,0.0,2260.44,64888.45,12310.19,8123.71,4620.8,25054.7,89943.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3162,129820.12,68645.27,16422.34,214887.73,28813.41,15079.04,3611.18,47503.63,262391.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,38595,59445.93,0.0,0.0,59445.93,13253.38,12388.66,4836.1,30478.14,89924.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36544,69117.87,25845.55,2189.94,97153.36,19565.47,13621.31,7418.62,40605.4,137758.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,49832,102019.06,0.0,0.0,102019.06,21026.27,12424.5,8348.82,41799.59,143818.65 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,23104,54979.61,0.0,4016.5,58996.11,12296.55,12424.5,4871.75,29592.8,88588.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,6957,23664.52,0.0,0.0,23664.52,4776.48,5734.39,1918.06,12428.93,36093.45 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,33032,57657.6,0.0,0.0,57657.6,10453.33,3763.19,4558.49,18775.01,76432.61 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,33994,108380.28,21005.17,16024.67,145410.12,28793.91,12424.5,2388.96,43607.37,189017.49 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,28614,71057.93,0.0,0.0,71057.93,14667.76,11630.05,5661.93,31959.74,103017.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,20015,0.0,0.0,2212.21,2212.21,0.0,0.0,169.24,169.24,2381.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",13632,22077.02,0.0,0.0,22077.02,5695.91,5256.51,1704.01,12656.43,34733.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,41138,146263.28,0.0,0.0,146263.28,29363.4,12424.5,18623.73,60411.63,206674.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34986,94458.34,1090.77,9074.54,104623.65,25198.83,11999.92,940.92,38139.67,142763.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,40891,483.9,0.0,6.45,490.35,-713.3,0.0,257.99,-455.31,35.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,40413,59942.01,264.27,620.0,60826.28,13520.43,12424.5,4880.86,30825.79,91652.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29776,7106.52,0.0,128.03,7234.55,0.0,3050.75,591.87,3642.62,10877.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23688,10058.8,0.0,83.5,10142.3,0.0,3323.14,787.06,4110.2,14252.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,7314,70245.01,176.2,885.5,71306.71,14503.55,12424.5,5658.39,32586.44,103893.15 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,20699,2180.97,0.0,0.0,2180.97,0.0,0.0,172.59,172.59,2353.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29404,7023.99,180.32,25.9,7230.21,1665.88,2117.12,554.13,4337.13,11567.34 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),13427,182657.3,0.0,1562.5,184219.8,37044.56,12424.5,10938.7,60407.76,244627.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,37323,63035.34,0.0,1310.0,64345.34,13214.11,12470.56,5310.77,30995.44,95340.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,8290,41769.55,198.65,3775.89,45744.09,10253.96,11002.85,3637.82,24894.63,70638.72 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,18652,63071.85,9946.66,8581.58,81600.09,14202.33,12418.53,6458.96,33079.82,114679.91 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,17483,42360.0,0.0,0.0,42360.0,7758.64,5973.32,3429.16,17161.12,59521.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50619,56531.01,54.03,909.08,57494.12,11847.33,12424.5,4759.56,29031.39,86525.51 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,5236,33409.2,0.0,0.0,33409.2,6217.46,4491.95,2620.4,13329.81,46739.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,6361,84973.0,0.0,841.86,85814.86,17646.0,12424.5,7099.64,37170.14,122985.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,20499,149149.0,0.0,0.0,149149.0,29976.31,12424.5,18613.64,61014.45,210163.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,42025,1652.0,0.0,924.24,2576.24,370.54,334.51,201.22,906.27,3482.51 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28506,130559.99,0.0,1325.0,131884.99,26537.21,9939.6,10025.05,46501.86,178386.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49827,66154.76,3352.59,1654.27,71161.62,15449.59,13038.5,5472.58,33960.67,105122.29 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,34409,70488.0,0.0,26861.04,97349.04,17784.82,4300.79,7595.31,29680.92,127029.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,22378,78176.0,30563.22,11689.11,120428.33,19019.42,11468.78,9307.19,39795.39,160223.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,16404,2940.75,0.0,0.0,2940.75,261.86,215.04,187.8,664.7,3605.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",27186,91368.68,0.0,0.0,91368.68,18790.78,12026.16,7339.97,38156.91,129525.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,8848,7236.0,0.0,258.4,7494.4,1394.7,1433.59,569.27,3397.56,10891.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2457,Asst Forensic Toxicologist 2,27746,112700.82,0.0,21981.02,134681.84,22980.93,10990.9,9983.74,43955.57,178637.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,24755,9770.6,89.72,295.83,10156.15,2213.6,2341.54,804.45,5359.59,15515.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,599,9153.15,0.0,421.87,9575.02,0.0,2284.8,741.81,3026.61,12601.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,8188,78770.72,965.59,0.0,79736.31,16231.77,12361.78,6360.11,34953.66,114689.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1815,8859.88,0.0,790.27,9650.15,1325.3,0.0,4976.07,6301.37,15951.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,38082,92001.31,72847.08,7664.68,172513.07,19383.59,12424.54,10635.67,42443.8,214956.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,39041,25702.5,125.5,3007.39,28835.39,6684.83,6212.25,2376.76,15273.84,44109.23 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46108,97774.42,50501.8,10599.83,158876.05,26359.1,12424.5,2706.43,41490.03,200366.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,31190,119461.61,79113.54,15255.42,213830.57,23641.89,12424.5,3646.96,39713.35,253543.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,45490,84791.01,907.98,0.0,85698.99,17475.8,12424.61,6763.74,36664.15,122363.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",26291,106090.1,4942.19,11041.76,122074.05,23728.11,12424.5,9769.74,45922.35,167996.4 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7430,Asst Electronic Main Tech,2902,93151.37,4680.38,0.0,97831.75,19196.71,12407.12,8011.6,39615.43,137447.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12280,119465.58,17905.38,16081.69,153452.65,23627.2,12424.5,2606.99,38658.69,192111.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36197,121330.86,1040.82,10619.61,132991.29,0.0,9014.03,9575.69,18589.72,151581.01 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,31133,48488.75,1154.11,1210.88,50853.74,10388.65,9606.59,4242.88,24238.12,75091.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,41365,54587.31,393.72,2619.59,57600.62,12702.65,12424.5,4643.65,29770.8,87371.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21288,47756.48,2372.77,5001.92,55131.17,9960.25,8840.51,1473.1,20273.86,75405.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,16053,7328.72,0.0,173.87,7502.59,0.0,2437.11,581.09,3018.2,10520.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,21014,57717.41,0.0,0.0,57717.41,12869.9,12424.5,4695.23,29989.63,87707.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19500,76952.9,19967.3,10172.42,107092.62,17455.48,15196.12,1791.64,34443.24,141535.86 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,21948,619.5,0.0,0.0,619.5,1256.59,71.68,434.46,1762.73,2382.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,9136,135421.02,0.0,0.0,135421.02,27253.5,12424.5,10118.54,49796.54,185217.56 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,2165,0.0,0.0,3832.41,3832.41,0.0,34.25,293.18,327.43,4159.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,35975,94100.12,151.14,2401.93,96653.19,19037.84,8305.3,7735.15,35078.29,131731.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38673,62349.7,4873.31,4162.96,71385.97,18156.35,12277.68,5398.63,35832.66,107218.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,9002,88144.01,0.0,0.0,88144.01,18166.76,12424.5,7061.18,37652.44,125796.45 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,43722,87545.81,0.0,0.0,87545.81,18033.45,12424.51,7451.16,37909.12,125454.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,41844,11317.5,0.0,0.0,11317.5,0.0,1194.67,876.2,2070.87,13388.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,42811,140764.26,11101.09,6624.16,158489.51,27820.88,12424.5,2654.99,42900.37,201389.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,49789,107416.0,15152.85,13850.81,136419.66,22742.8,12424.51,9968.18,45135.49,181555.15 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0649,Probate Examiner,28885,95289.6,0.0,4813.0,100102.6,19631.0,12424.5,7543.62,39599.12,139701.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,16881,74323.62,1445.0,2843.06,78611.68,15375.78,12212.8,5913.74,33502.32,112114.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29653,62461.14,1209.52,1460.0,65130.66,13142.91,12424.5,5178.73,30746.14,95876.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,20508,48371.73,0.0,0.0,48371.73,0.0,5734.39,3749.63,9484.02,57855.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,51207,67261.07,0.0,370.0,67631.07,13929.41,12424.5,5211.99,31565.9,99196.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2453,8891.15,0.0,0.0,8891.15,0.0,3793.06,714.38,4507.44,13398.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,2197,70027.65,0.0,0.0,70027.65,14412.24,11734.58,5759.2,31906.02,101933.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,27390,64455.8,14516.96,18575.05,97547.81,16290.38,12424.5,7964.63,36679.51,134227.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,37788,24285.71,0.0,1533.14,25818.85,6166.45,5410.39,2160.97,13737.81,39556.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),7629,8399.7,0.0,0.0,8399.7,0.0,2437.11,651.95,3089.06,11488.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27333,647.43,0.0,0.0,647.43,0.0,280.75,50.13,330.88,978.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,47448,74107.0,0.0,0.0,74107.0,16259.1,5256.52,5799.69,27315.31,101422.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,19743,55363.03,6480.33,16.0,61859.36,10166.84,6212.25,4648.22,21027.31,82886.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,3462,28308.0,6786.34,1061.55,36155.89,6379.1,3345.05,3059.2,12783.35,48939.24 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,38368,5908.82,0.0,0.0,5908.82,1296.4,477.86,465.22,2239.48,8148.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,22874,53915.1,0.0,337.11,54252.21,12124.11,12424.5,4411.49,28960.1,83212.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,8569,44702.01,0.0,0.0,44702.01,9990.07,6690.11,3431.97,20112.15,64814.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39472,112159.76,49408.41,25749.39,187317.56,26777.85,15052.77,3138.23,44968.85,232286.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36331,41826.9,199.4,5514.86,47541.16,10857.6,11062.58,3826.08,25746.26,73287.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",2322,131577.11,62892.84,17323.76,211793.71,29124.98,15196.13,3561.23,47882.34,259676.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19439,68006.12,32333.29,6200.05,106539.46,20327.6,13399.83,8292.52,42019.95,148559.41 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,45242,67846.13,15403.43,5530.14,88779.7,14488.92,12412.56,7231.89,34133.37,122913.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",5195,59603.8,5071.3,5682.02,70357.12,12822.17,10895.34,5422.72,29140.23,99497.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2887,66764.39,7656.05,2429.62,76850.06,18957.32,13155.93,5778.97,37892.22,114742.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7358,Pattern Maker,31741,91004.05,0.0,1745.0,92749.05,19109.01,12424.5,7298.06,38831.57,131580.62 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,50516,121472.0,0.0,5984.0,127456.0,24591.71,12424.5,10007.76,47023.97,174479.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47945,5498.08,0.0,434.42,5932.5,0.0,453.97,460.04,914.01,6846.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4302,3196.88,0.0,1.24,3198.12,0.0,1232.0,247.93,1479.93,4678.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,6786,54970.81,1311.54,1428.75,57711.1,11535.45,8335.8,5221.76,25093.01,82804.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37797,132016.0,0.0,2003.19,134019.19,26920.97,12424.5,9946.67,49292.14,183311.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52454,113233.6,26538.26,18302.27,158074.13,24917.39,15196.12,2649.08,42762.59,200836.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",29923,93738.0,14210.7,3698.43,111647.13,19837.8,12424.5,9106.14,41368.44,153015.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,26047,84644.0,8942.33,5928.85,99515.18,17562.79,12424.5,7788.25,37775.54,137290.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,51889,38055.04,88.5,2851.56,40995.1,8365.41,7406.92,3295.18,19067.51,60062.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,37935,108478.56,39360.92,18106.87,165946.35,25145.67,15052.76,2771.13,42969.56,208915.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24240,112517.74,0.0,23063.19,135580.93,25376.11,9956.03,6384.86,41717.0,177297.93 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,38102,2789.62,0.0,0.0,2789.62,0.0,1030.4,216.52,1246.92,4036.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14522,813.45,0.0,135.58,949.03,0.0,71.8,73.48,145.28,1094.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,19203,81157.01,5838.07,15531.88,102526.96,19829.94,12424.5,8172.67,40427.11,142954.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15087,55559.91,0.0,5735.6,61295.51,13153.44,12209.76,4967.7,30330.9,91626.41 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,16962,42617.05,0.0,0.0,42617.05,1052.72,7242.65,3402.87,11698.24,54315.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",41311,102256.94,15639.26,12782.1,130678.3,21695.12,10321.89,2165.24,34182.25,164860.55 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,4664,27309.19,0.0,533.6,27842.79,0.0,4957.85,2201.26,7159.11,35001.9 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,12802,126348.46,0.0,0.0,126348.46,25388.09,12424.51,27390.85,65203.45,191551.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1605,45090.59,256.58,5436.6,50783.77,9969.94,7977.37,3964.59,21911.9,72695.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41104,69385.38,12650.96,2185.25,84221.59,19594.16,13668.15,6583.3,39845.61,124067.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,434,11402.57,0.0,0.0,11402.57,0.0,4871.54,930.32,5801.86,17204.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28254,109813.6,21202.34,15165.62,146181.56,24813.27,15196.12,2441.82,42451.21,188632.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,41127,116749.86,0.0,0.0,116749.86,23471.31,12281.15,9155.41,44907.87,161657.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,14852,30121.0,0.0,0.0,30121.0,5188.66,5065.39,165.93,10419.98,40540.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,23097,2611.7,0.0,5.02,2616.72,0.0,621.21,203.09,824.3,3441.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,37207,70791.01,2120.48,917.77,73829.26,14788.4,12424.5,5860.12,33073.02,106902.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,14657,114720.02,0.0,3370.97,118090.99,23087.61,12424.5,9626.99,45139.1,163230.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,14044,3309.1,0.0,0.0,3309.1,0.0,997.54,256.84,1254.38,4563.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,53172,56531.03,648.3,453.68,57633.01,11744.93,12439.43,4667.52,28851.88,86484.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,20411,48353.43,1543.74,356.79,50253.96,11605.21,11151.0,4025.84,26782.05,77036.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,12193,5577.45,0.0,0.0,5577.45,0.0,1845.75,432.64,2278.39,7855.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",21972,180414.14,64307.44,27712.54,272434.12,40881.3,15100.54,4619.38,60601.22,333035.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8766,3529.86,0.0,0.0,3529.86,0.0,1530.67,280.75,1811.42,5341.28 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0965,Dept Head V,7035,277842.0,0.0,0.0,277842.0,55896.24,12424.5,19759.71,88080.45,365922.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20378,47142.1,2061.13,1066.8,50270.03,11308.11,12424.5,4031.5,27764.11,78034.14 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2462,Microbiologist,20350,92841.62,0.0,0.0,92841.62,19111.94,12424.49,7334.19,38870.62,131712.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,16885,107416.02,3341.25,12699.37,123456.64,24208.73,12424.5,9839.48,46472.71,169929.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5130,Sewage Treatment Plant Supt,14523,137450.04,0.0,0.0,137450.04,27662.65,12424.5,10158.26,50245.41,187695.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,1536,56673.55,0.0,0.0,56673.55,12651.82,12424.5,4530.85,29607.17,86280.72 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,7968,72593.2,0.0,0.0,72593.2,15016.43,11987.07,5686.21,32689.71,105282.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,35760,75596.69,408.66,3703.13,79708.48,15731.94,12423.13,6586.64,34741.71,114450.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6616,30048.0,0.0,0.0,30048.0,5447.71,4587.51,2315.64,12350.86,42398.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,35071,77856.3,2965.51,1792.42,82614.23,15750.04,11946.64,4186.13,31882.81,114497.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,41998,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52951,13723.03,0.0,0.0,13723.03,0.0,1203.62,1063.73,2267.35,15990.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,15748,0.0,0.0,140.72,140.72,0.0,22.84,10.76,33.6,174.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,8748,7991.9,244.65,0.0,8236.55,0.0,2341.53,652.38,2993.91,11230.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23364,131330.3,378.45,13992.62,145701.37,16294.32,12036.54,5460.85,33791.71,179493.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,6452,17519.2,0.0,0.0,17519.2,0.0,5774.76,1407.07,7181.83,24701.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18039,102060.11,0.0,11649.95,113710.06,21461.68,8506.01,9265.06,39232.75,152942.81 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1959,28197.94,0.0,0.0,28197.94,7203.28,7156.03,2292.9,16652.21,44850.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,14842,82084.16,0.0,0.0,82084.16,9807.01,12424.5,7190.34,29421.85,111506.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,9270,100554.01,0.0,2231.02,102785.03,21195.89,12424.51,8343.14,41963.54,144748.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,3304,76182.0,5939.29,0.0,82121.29,15521.79,10990.9,6564.93,33077.62,115198.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,360,38277.12,0.0,949.25,39226.37,8585.56,5954.2,3241.55,17781.31,57007.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7216,Electrical Trnst Shop Sprv 1,30117,121236.1,13032.63,1760.62,136029.35,24430.74,12424.5,10023.66,46878.9,182908.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",34687,11038.5,0.0,0.0,11038.5,0.0,2628.26,856.02,3484.28,14522.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,1994,72699.04,0.0,825.7,73524.74,15154.8,12424.5,6045.78,33625.08,107149.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,46419,127384.57,9184.68,13059.09,149628.34,26091.22,12543.97,2552.78,41187.97,190816.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2523,Forensic Autopsy Technician,20292,69933.36,410.34,1531.0,71874.7,14852.79,11468.83,5572.97,31894.59,103769.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,23150,118104.08,0.0,0.0,118104.08,23782.39,12424.5,9579.97,45786.86,163890.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,35746,11412.0,0.0,79.97,11491.97,2313.78,1211.99,183.08,3708.85,15200.82 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,42525,113623.05,0.0,0.0,113623.05,22866.77,12424.5,9036.37,44327.64,157950.69 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,44600,50261.04,14049.78,1224.86,65535.68,11253.19,10871.44,5325.77,27450.4,92986.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,16586,0.0,0.0,9580.76,9580.76,0.0,68.5,732.93,801.43,10382.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14214,109675.69,73243.8,19155.67,202075.16,24274.49,14663.01,3403.72,42341.22,244416.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15001,119235.19,28609.11,4373.05,152217.35,23584.09,12400.61,2586.24,38570.94,190788.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7664,112419.52,9625.89,18016.26,140061.67,24745.89,15086.51,2385.86,42218.26,182279.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,45068,11690.87,0.0,0.0,11690.87,0.0,2592.42,906.67,3499.09,15189.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,8837,70245.0,3390.9,3331.0,76966.9,14627.15,12424.5,6286.39,33338.04,110304.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,49577,41490.0,438.08,0.0,41928.08,9727.36,9557.31,3321.24,22605.91,64533.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22009,70245.0,34003.56,4316.65,108565.21,14488.1,12424.5,8837.48,35750.08,144315.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,30682,140071.49,0.0,0.0,140071.49,28140.67,12424.51,17445.65,58010.83,198082.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9203,Sr Airport Communications Disp,50342,92254.36,5626.23,10159.7,108040.29,20231.87,12352.82,8611.38,41196.07,149236.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,27709,53586.03,1391.17,0.0,54977.2,12019.31,6212.24,4513.88,22745.43,77722.63 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,38804,47998.53,1313.18,1335.25,50646.96,11764.57,12421.52,4189.24,28375.33,79022.29 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,45628,111918.12,0.0,0.0,111918.12,22527.81,12424.5,9154.73,44107.04,156025.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,29390,27278.35,648.51,526.45,28453.31,5819.66,5198.22,2408.44,13426.32,41879.63 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42327,131762.8,0.0,1562.5,133325.3,26816.92,12424.5,9961.88,49203.3,182528.6 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8240,Pub Safety Communication Coord,37294,110522.18,24956.26,5264.1,140742.54,23680.28,12412.56,10136.37,46229.21,186971.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33434,34100.41,0.0,207.0,34307.41,11459.5,2564.23,1034.53,15058.26,49365.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2739,56531.02,0.0,2533.77,59064.79,11980.78,12424.5,4879.36,29284.64,88349.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6345,113233.58,19811.33,23104.41,156149.32,25904.58,15196.12,392.22,41492.92,197642.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,20497,51783.05,555.1,7511.25,59849.4,11760.42,9860.17,4953.26,26573.85,86423.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49495,15327.53,66.68,259.0,15653.21,0.0,4096.15,1213.28,5309.43,20962.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,40211,112776.17,1174.68,5638.81,119589.66,23831.43,12424.5,9754.28,46010.21,165599.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,48007,12990.93,0.0,51.54,13042.47,0.0,4335.14,1010.7,5345.84,18388.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,4033,17581.82,0.0,1331.83,18913.65,3975.11,3440.51,1572.49,8988.11,27901.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20500,27624.55,1005.62,1409.12,30039.29,2057.59,0.0,4995.96,7053.55,37092.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,41383,64455.81,10291.72,12875.96,87623.49,15475.34,12424.5,7110.31,35010.15,122633.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,6331,15059.72,0.0,120.92,15180.64,2825.12,1636.69,1229.44,5691.25,20871.89 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,4328,191926.0,0.0,19192.6,211118.6,42487.89,12424.51,11294.06,66206.46,277325.06 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,26546,2099.5,575.34,242.25,2917.09,0.0,621.23,226.41,847.64,3764.73 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,40562,103210.22,21444.16,7831.36,132485.74,22122.08,12173.63,9939.12,44234.83,176720.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,19182,84953.64,0.0,1890.64,86844.28,17914.52,11316.15,7055.38,36286.05,123130.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1249,Personnel Trainee,32431,32148.4,0.0,0.0,32148.4,7098.66,6800.62,2443.98,16343.26,48491.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,28419,9859.77,0.0,254.05,10113.82,0.0,2900.04,920.67,3820.71,13934.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43016,124574.52,0.0,250.0,124824.52,25063.11,12424.5,9825.61,47313.22,172137.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,15430,83177.8,0.0,0.0,83177.8,17114.14,12186.65,6686.43,35987.22,119165.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22956,20266.18,0.0,114.21,20380.39,0.0,1770.79,1579.77,3350.56,23730.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7305,67582.35,20095.19,3196.46,90874.0,16108.6,13317.65,6809.26,36235.51,127109.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,39782,2933.15,0.0,12.43,2945.58,0.0,958.72,239.43,1198.15,4143.73 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,37464,93224.88,400.85,12116.76,105742.49,20933.42,0.0,8730.55,29663.97,135406.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,30573,92176.1,0.0,0.0,92176.1,18977.92,12424.5,7412.06,38814.48,130990.58 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,45849,39978.0,0.0,1040.0,41018.0,9874.41,8601.58,3227.5,21703.49,62721.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,15892,5285.36,0.0,459.9,5745.26,1116.59,678.23,660.08,2454.9,8200.16 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,19062,34954.0,0.0,0.0,34954.0,6504.97,5017.58,2798.62,14321.17,49275.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,12490,54591.22,0.0,700.25,55291.47,11184.18,10247.76,4276.71,25708.65,81000.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",6291,146404.31,5474.49,28891.27,180770.07,34477.82,14809.41,3063.3,52350.53,233120.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,51112,70642.41,0.0,0.0,70642.41,14538.69,12424.5,5477.69,32440.88,103083.29 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,30149,82226.03,28402.8,9655.48,120284.31,18338.39,10917.37,9734.72,38990.48,159274.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,43157,138038.91,1276.9,5862.07,145177.88,27264.06,12370.74,2473.89,42108.69,187286.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50729,57558.86,303.15,8300.42,66162.43,12934.5,10179.31,5193.86,28307.67,94470.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8289,12769.46,0.0,0.0,12769.46,0.0,5537.26,1018.73,6555.99,19325.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,18968,97769.0,8102.23,16904.09,122775.32,27897.58,12424.5,2079.65,42401.73,165177.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,30413,93271.1,2843.41,3008.13,99122.64,19813.76,12424.5,8113.0,40351.26,139473.9 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,53052,74412.01,0.0,5055.0,79467.01,15474.52,12424.5,6477.91,34376.93,113843.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,27036,70931.01,0.0,1451.41,72382.42,14930.99,12424.5,5648.57,33004.06,105386.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,22551,43567.5,0.0,250.0,43817.5,10302.88,10465.25,3525.5,24293.63,68111.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20901,54710.4,347.29,30019.51,85077.2,12337.95,4587.51,6791.34,23716.8,108794.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,47486,111040.47,10085.04,8979.71,130105.22,23799.24,12326.48,9958.26,46083.98,176189.2 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,3659,76510.05,0.0,0.0,76510.05,15713.83,11946.64,5583.73,33244.2,109754.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46271,116761.01,1391.87,35623.96,153776.84,28354.46,10026.75,10307.85,48689.06,202465.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27246,65284.32,1995.55,3043.38,70323.25,18830.33,12883.97,5153.02,36867.32,107190.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1958,Supervising Purchaser,14004,46430.8,0.0,0.0,46430.8,0.0,0.0,3672.46,3672.46,50103.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46642,119455.94,38295.41,5474.89,163226.24,23662.87,12424.5,2692.41,38779.78,202006.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,12715,97174.0,1634.13,1214.78,100022.91,20278.08,12424.49,7994.09,40696.66,140719.57 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,8265,396.0,18.56,0.0,414.56,0.0,95.58,32.18,127.76,542.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25061,32849.4,4.84,406.74,33260.98,7207.15,5065.37,2558.73,14831.25,48092.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,11492,25408.0,530.36,471.44,26409.8,6345.21,6116.67,2128.57,14590.45,41000.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,7209,41918.76,5328.21,2438.14,49685.11,8972.06,9470.22,4049.82,22492.1,72177.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O775,Accountant II (OCII),30361,65710.03,0.0,0.0,65710.03,13260.55,10035.17,4441.47,27737.19,93447.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31336,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2394.4,12847.75,44147.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,44087,47635.4,0.0,0.0,47635.4,9495.42,8888.3,3688.61,22072.33,69707.73 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,15015,123776.01,0.0,3516.0,127292.01,25619.91,12424.5,9878.98,47923.39,175215.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,11351,32160.0,3504.93,15584.05,51248.98,5709.66,2867.19,809.98,9386.83,60635.81 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,44399,60802.8,0.0,5035.9,65838.7,13340.12,6579.61,5364.43,25284.16,91122.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,40023,81919.2,146.81,140.0,82206.01,16913.44,12424.51,6742.9,36080.85,118286.86 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,12395,2737.81,0.0,0.0,2737.81,1539.49,316.59,545.45,2401.53,5139.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,41439,61688.53,11361.26,3673.9,76723.69,13315.54,12443.24,6050.43,31809.21,108532.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22845,14565.3,0.0,116.21,14681.51,3195.62,2245.97,1123.79,6565.38,21246.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,27847,63086.66,14386.52,1851.15,79324.33,13240.65,12421.46,6471.9,32134.01,111458.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,15924,47634.69,496.43,653.79,48784.91,11041.28,11204.57,3844.89,26090.74,74875.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19718,66037.75,22634.23,4042.25,92714.23,19116.46,13008.38,7035.39,39160.23,131874.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29584,42960.0,1336.29,6262.74,50559.03,10279.49,7645.85,4148.22,22073.56,72632.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22410,70245.0,27898.78,4891.08,103034.86,14632.3,12424.5,8147.99,35204.79,138239.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,34956,90540.78,7538.37,2879.25,100958.4,19353.91,11095.44,7802.3,38251.65,139210.05 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",15137,26509.0,0.0,5313.26,31822.26,5912.07,1672.53,2461.85,10046.45,41868.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers Int, Local 261",3400,Agriculture & Horticulture,3408,Apprentice Arborist Tech I,3431,23668.0,1105.68,16.2,24789.88,5316.44,6690.11,2000.0,14006.55,38796.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,14527,57246.02,2274.51,0.0,59520.53,12080.09,10035.18,4839.79,26955.06,86475.59 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,12868,28896.0,0.0,0.0,28896.0,6481.37,3345.06,2356.85,12183.28,41079.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,35207,53733.42,0.0,0.0,53733.42,12874.5,12403.96,4346.99,29625.45,83358.87 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,28753,60252.63,684.85,1380.0,62317.48,12675.05,12124.34,5137.37,29936.76,92254.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5764,67874.36,6218.43,1015.72,75108.51,18896.29,13374.5,5613.67,37884.46,112992.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,22202,92936.2,0.0,648.55,93584.75,20390.23,6385.48,7627.33,34403.04,127987.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17897,33772.96,4149.29,2042.29,39964.54,9783.11,6632.11,3104.51,19519.73,59484.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,15731,108331.2,0.0,357.48,108688.68,21633.42,9258.64,8736.92,39628.98,148317.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,7507,54482.49,4203.12,3315.91,62001.52,11374.98,11973.04,5117.36,28465.38,90466.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,8031,44594.77,337.62,939.6,45871.99,9585.08,8863.33,3626.81,22075.22,67947.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,42349,101531.03,1028.14,0.0,102559.17,20926.03,12424.5,7974.42,41324.95,143884.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34890,23642.37,0.0,630.82,24273.19,0.0,0.0,1919.43,1919.43,26192.62 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,1513,36880.1,0.0,0.0,36880.1,470.27,7120.2,2831.09,10421.56,47301.66 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,39976,7497.0,78.09,0.0,7575.09,1395.18,1433.59,583.14,3411.91,10987.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39845,97729.53,16673.11,6812.71,121215.35,25420.77,12420.09,1373.18,39214.04,160429.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",11608,77298.27,1029.96,1420.74,79748.97,15901.6,10161.04,6599.08,32661.72,112410.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,4625,32241.45,68.68,228.95,32539.08,7098.68,6309.2,2742.19,16150.07,48689.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,14219,59512.0,7278.9,2263.2,69054.1,11595.58,7645.85,5526.74,24768.17,93822.27 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42040,87163.5,0.0,1500.0,88663.5,17319.32,9318.38,6814.0,33451.7,122115.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43163,6237.43,0.0,133.37,6370.8,0.0,2078.71,494.19,2572.9,8943.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator, Taxi And Accessible Servic",6064,992.5,0.0,324.18,1316.68,220.87,238.93,101.19,560.99,1877.67 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,30170,36854.51,0.0,0.0,36854.51,6681.71,4175.35,2946.02,13803.08,50657.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,36.0,"Hod Carriers, Local 166",7400,Skilled Labor,7428,Hodcarrier,6113,77071.0,1767.6,1146.0,79984.6,16121.11,12424.5,6582.01,35127.62,115112.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4048,113233.59,798.32,15659.56,129691.47,24432.34,15196.12,2153.08,41781.54,171473.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,27063,46203.72,0.0,688.66,46892.38,10800.08,10278.88,3904.49,24983.45,71875.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,42475,117137.52,11741.52,865.62,129744.66,23176.47,12424.5,2199.14,37800.11,167544.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52679,108028.4,4101.67,4824.53,116954.6,21423.36,11908.65,1934.85,35266.86,152221.46 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,24809,2178.28,8.99,0.0,2187.27,0.0,540.58,169.55,710.13,2897.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,35844,84644.0,14587.36,14620.81,113852.17,19465.65,12424.51,9291.49,41181.65,155033.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,20210,89210.02,0.0,0.0,89210.02,18386.53,12424.5,7383.06,38194.09,127404.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,11988,87531.05,0.0,0.0,87531.05,18040.64,12424.5,7261.18,37726.32,125257.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32739,42098.37,83.6,9046.74,51228.71,12920.54,8372.03,3949.62,25242.19,76470.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,22073,79835.02,0.0,0.0,79835.02,16438.16,12424.5,6402.86,35265.52,115100.54 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,41496,9056.5,0.0,153.4,9209.9,2065.78,1833.81,741.65,4641.24,13851.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,19292,4988.66,0.0,44.97,5033.63,0.0,2332.58,390.36,2722.94,7756.57 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,31684,56016.0,0.0,0.0,56016.0,11943.54,9557.3,4736.86,26237.7,82253.7 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,22649,53806.17,287.48,556.98,54650.63,11122.31,11089.94,4483.0,26695.25,81345.88 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,26905,68704.91,0.0,0.0,68704.91,14120.71,12233.36,5339.41,31693.48,100398.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19090,1365.6,0.0,0.0,1365.6,0.0,573.44,105.99,679.43,2045.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48957,119455.87,8786.77,7698.24,135940.88,23662.8,12424.5,2292.75,38380.05,174320.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",1059,57322.01,0.0,0.0,57322.01,11168.96,7645.85,9820.78,28635.59,85957.6 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,53128,127002.55,0.0,0.0,127002.55,25899.68,10990.91,17213.14,54103.73,181106.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42072,98478.37,11104.09,9521.79,119104.25,20452.52,12424.5,1981.59,34858.61,153962.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,42018,97424.05,0.0,624.0,98048.05,20208.22,12424.51,8079.98,40712.71,138760.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,14898,48735.2,0.0,5935.77,54670.97,12754.33,12424.5,4131.51,29310.34,83981.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,28132,58782.1,0.0,624.0,59406.1,12240.74,12424.5,4924.19,29589.43,88995.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,52424,119463.82,40089.15,4588.17,164141.14,23633.48,12424.5,2750.45,38808.43,202949.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37399,12928.03,1447.99,48.73,14424.75,3052.92,2454.91,1079.23,6587.06,21011.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51721,9301.26,0.0,0.0,9301.26,1657.61,4002.13,767.24,6426.98,15728.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44482,66054.31,1457.55,815.55,68327.41,15222.77,13015.38,4996.67,33234.82,101562.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,14761,11608.0,0.0,0.0,11608.0,2160.24,1911.46,907.42,4979.12,16587.12 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,44278,78963.04,0.0,0.0,78963.04,16274.48,12424.5,6549.98,35248.96,114212.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44145,66359.65,15117.4,5437.52,86914.57,19655.18,13073.21,6574.97,39303.36,126217.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",29071,137101.01,0.0,0.0,137101.01,27592.1,12424.5,17379.89,57396.49,194497.5 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,24853,9567.0,0.0,0.0,9567.0,1780.41,1433.6,722.02,3936.03,13503.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,16951,8634.12,0.0,0.0,8634.12,0.0,0.0,682.86,682.86,9316.98 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,52632,99654.0,0.0,0.0,99654.0,22731.77,12424.5,1661.74,36818.01,136472.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",23098,130329.29,1691.58,22243.17,154264.04,28844.13,15052.76,2604.94,46501.83,200765.87 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,38505,39006.21,0.0,0.0,39006.21,0.0,4826.44,3104.9,7931.34,46937.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,17132,51405.02,1233.11,3357.16,55995.29,12639.23,12424.5,4569.27,29633.0,85628.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,20809,89317.59,0.0,0.0,89317.59,18963.93,7645.87,16735.02,43344.82,132662.41 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,2159,74412.03,215.86,6095.0,80722.89,15687.96,12424.5,6549.07,34661.53,115384.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,763,92679.51,4502.67,19432.84,116615.02,27314.37,11771.74,1971.22,41057.33,157672.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,23010,147149.01,0.0,0.0,147149.01,29613.71,12424.5,18634.39,60672.6,207821.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,9838,37272.38,0.0,2394.78,39667.16,9066.47,8536.11,2987.71,20590.29,60257.45 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,22617,75927.02,0.0,0.0,75927.02,15648.74,12424.5,6246.13,34319.37,110246.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,22983,28757.0,0.0,361.8,29118.8,5419.0,4300.79,2341.59,12061.38,41180.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,45874,0.0,0.0,9212.94,9212.94,0.0,0.0,704.79,704.79,9917.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,37268,3470.0,0.0,0.0,3470.0,645.77,477.86,269.14,1392.77,4862.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,29594,143188.0,0.0,25052.82,168240.82,28816.76,12424.5,10608.21,51849.47,220090.29 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0116,"Brd Comm Mbr, M=$200/Mtg",34743,10700.0,0.0,0.0,10700.0,0.0,256.85,829.67,1086.52,11786.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,15085,56903.21,0.0,1139.99,58043.2,12959.77,12424.5,4716.63,30100.9,88144.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16960,83726.83,0.0,0.0,83726.83,16289.22,8861.42,6717.72,31868.36,115595.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,45701,69945.99,24435.16,11015.47,105396.62,15792.36,11330.01,8615.26,35737.63,141134.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38448,52975.47,2830.42,2891.91,58697.8,11066.88,11655.01,4858.9,27580.79,86278.59 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),3769,145524.02,0.0,1562.5,147086.52,29579.56,12424.5,10266.27,52270.33,199356.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33206,22921.63,0.0,1991.92,24913.55,1250.35,0.0,4238.54,5488.89,30402.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,47006,77071.0,3731.72,2084.0,82886.72,16314.08,12424.5,6852.77,35591.35,118478.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,49754,47764.88,0.0,0.0,47764.88,1408.15,5047.46,3784.95,10240.56,58005.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,35638,100803.85,62661.42,14851.71,178316.98,20617.62,10990.9,2982.3,34590.82,212907.8 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,13846,160115.0,0.0,29901.65,190016.65,35452.33,12424.5,10971.03,58847.86,248864.51 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,37451,55865.53,0.0,0.0,55865.53,12515.4,12336.04,4634.22,29485.66,85351.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,5308,59011.57,0.0,0.0,59011.57,12187.91,11898.49,4765.79,28852.19,87863.76 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,38196,100554.06,0.0,2200.0,102754.06,21157.17,12424.5,8357.62,41939.29,144693.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,6681,58689.41,13366.62,0.0,72056.03,12084.0,12424.5,5810.25,30318.75,102374.78 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,21362,14649.5,0.0,2749.21,17398.71,3779.57,3966.28,1417.77,9163.62,26562.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35485,112159.75,13970.89,11436.67,137567.31,23498.92,15052.75,2440.3,40991.97,178559.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7323,142526.03,127.76,37636.63,180290.42,0.0,0.0,3050.35,3050.35,183340.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43837,13624.2,0.0,996.6,14620.8,3207.8,1290.23,1197.1,5695.13,20315.93 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,42739,111436.0,0.0,8271.98,119707.98,23674.78,12424.5,9808.79,45908.07,165616.05 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,48739,9463.59,0.0,2196.96,11660.55,0.0,12424.5,0.0,12424.5,24085.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50206,13779.45,41.33,582.17,14402.95,0.0,5913.59,1127.36,7040.95,21443.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,42403,70050.04,715.58,0.0,70765.62,14414.75,12424.5,5709.39,32548.64,103314.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45186,1499.25,0.0,16.76,1516.01,0.0,0.0,26.91,26.91,1542.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14397,93421.2,7058.28,7793.32,108272.8,19519.08,11946.63,1806.46,33272.17,141544.97 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),7859,155069.93,0.0,1500.0,156569.93,31440.57,12424.5,10488.56,54353.63,210923.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19684,65630.51,5571.68,2738.99,73941.18,18745.84,12935.94,5714.4,37396.18,111337.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3424,Integrated Pest Mgmt Specialst,44119,80357.0,268.8,0.0,80625.8,16562.14,12424.5,7106.6,36093.24,116719.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44693,23192.1,0.0,4942.18,28134.28,5450.97,2222.08,2293.65,9966.7,38100.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50728,47589.42,0.0,1558.64,49148.06,294.99,4183.9,3503.09,7981.98,57130.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41445,56531.0,0.0,2930.55,59461.55,11796.81,12424.5,4919.8,29141.11,88602.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,29544,8560.0,0.0,33.75,8593.75,1889.77,2867.19,689.46,5446.42,14040.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27198,19042.41,0.0,0.0,19042.41,0.0,2484.9,1478.0,3962.9,23005.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49657,48213.19,2982.88,1302.0,52498.07,13090.64,9123.47,3397.79,25611.9,78109.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48921,66958.96,20778.97,4219.4,91957.33,19514.12,13193.92,7192.73,39900.77,131858.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,50479,67742.9,0.0,0.0,67742.9,13481.68,7888.9,5037.85,26408.43,94151.33 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,15763,196220.53,0.0,641.96,196862.49,39610.99,11176.07,11049.08,61836.14,258698.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,29260,11468.71,0.0,0.0,11468.71,0.0,1590.4,890.16,2480.56,13949.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,34438,177950.36,0.0,0.0,177950.36,35790.66,12424.5,25728.37,73943.53,251893.89 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,33382,129183.0,0.0,24230.01,153413.01,28132.62,10513.04,8838.46,47484.12,200897.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9271,63409.8,37751.36,1848.0,103009.16,14059.26,8601.57,8085.74,30746.57,133755.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,36987,49967.25,5758.01,1865.84,57591.1,11715.72,11213.72,4545.37,27474.81,85065.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,4026,102227.82,0.0,0.0,102227.82,20561.13,11327.92,8195.56,40084.61,142312.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,41227,50266.51,161.66,0.0,50428.17,9113.28,5495.46,4026.74,18635.48,69063.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40705,49206.1,986.25,3183.31,53375.66,9340.9,5350.6,4249.01,18940.51,72316.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8296,124714.9,41820.58,10148.72,176684.2,24712.95,12424.5,2957.47,40094.92,216779.12 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,38577,73866.1,0.0,3000.0,76866.1,15244.34,12333.35,6337.64,33915.33,110781.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,21361,100761.0,30517.51,12701.1,143979.61,20960.97,12424.5,10144.03,43529.5,187509.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,50319,5892.0,0.0,0.0,5892.0,1068.22,477.86,100.65,1646.73,7538.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50568,119455.92,83133.25,12347.78,214936.95,24153.93,12424.5,3610.66,40189.09,255126.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34652,40913.56,4646.67,1911.67,47471.9,12071.76,8092.35,3515.3,23679.41,71151.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,7884,85032.51,0.0,14017.0,99049.51,17952.61,8362.64,13617.82,39933.07,138982.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,28524,89600.66,0.0,2393.99,91994.65,18916.85,12406.58,7184.15,38507.58,130502.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,32046,99099.7,26548.21,14776.61,140424.52,22444.24,11377.61,2381.66,36203.51,176628.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45076,52760.01,962.12,1808.75,55530.88,13069.85,0.0,4597.82,17667.67,73198.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,53083,3516.7,0.0,0.0,3516.7,0.0,1261.86,283.57,1545.43,5062.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,35978,81776.03,0.0,624.0,82400.03,16983.28,12424.5,6635.04,36042.82,118442.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1834,62369.89,12831.84,5330.72,80532.45,18547.65,12291.18,6070.56,36909.39,117441.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15266,63672.46,10543.15,1720.67,75936.28,17818.79,12538.17,5883.25,36240.21,112176.49 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",49816,105082.04,0.0,0.0,105082.04,21657.97,12424.5,8425.3,42507.77,147589.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38702,1968.0,454.16,0.0,2422.16,556.94,621.23,185.93,1364.1,3786.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,20534,4810.84,0.0,296.16,5107.0,1430.3,914.46,449.85,2794.61,7901.61 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,14115,52773.13,0.0,0.0,52773.13,2694.75,8910.7,4030.75,15636.2,68409.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11911,64464.6,17558.66,3797.35,85820.61,18644.23,12697.6,6615.68,37957.51,123778.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,32126,62811.0,1525.83,998.1,65334.93,13074.35,12424.5,5408.95,30907.8,96242.73 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,42555,97768.69,25653.77,12295.33,135717.79,26061.8,12424.5,2311.97,40798.27,176516.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",47035,93281.02,0.0,3446.99,96728.01,19850.51,12424.5,7862.6,40137.61,136865.62 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,36752,36762.87,0.0,434.58,37197.45,7761.4,5632.84,2976.35,16370.59,53568.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,42617,40831.58,0.0,775.31,41606.89,8601.81,7630.14,3460.7,19692.65,61299.54 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50349,56463.2,4142.27,623.25,61228.72,11764.74,12409.52,5010.06,29184.32,90413.04 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,6770,88051.92,0.0,3622.28,91674.2,18292.12,12390.16,7619.18,38301.46,129975.66 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,33889,88295.2,19605.11,10214.77,118115.08,19285.25,11707.71,9653.73,40646.69,158761.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22330,64175.99,20859.31,1028.98,86064.28,17849.15,12647.24,6685.46,37181.85,123246.13 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,39868,605.63,363.38,0.0,969.01,0.0,179.2,75.21,254.41,1223.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",26927,92.0,0.0,0.0,92.0,0.0,0.0,0.25,0.25,92.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,41256,87713.03,0.0,1610.29,89323.32,18078.17,12424.5,7076.79,37579.46,126902.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,19535,116976.07,0.0,2159.94,119136.01,23983.55,12424.49,9405.57,45813.61,164949.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,45571,96617.01,36752.71,6946.69,140316.41,20489.23,10577.38,10056.51,41123.12,181439.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49001,75614.85,10667.91,7533.28,93816.04,16576.62,15196.1,1517.61,33290.33,127106.37 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,25950,83528.02,0.0,1000.0,84528.02,17421.52,12424.5,6710.17,36556.19,121084.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,44992,93681.02,0.0,624.0,94305.02,19436.77,12424.5,7753.31,39614.58,133919.6 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,10490,20421.12,2524.78,975.15,23921.05,4589.54,6188.36,1921.09,12698.99,36620.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35451,56531.0,405.19,3272.55,60208.74,11659.55,12424.5,4880.63,28964.68,89173.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28255,5258.61,0.0,0.0,5258.61,0.0,2280.32,373.99,2654.31,7912.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43721,991.8,0.0,876.92,1868.72,227.45,430.07,144.05,801.57,2670.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,29194,6240.93,0.0,0.0,6240.93,0.0,2039.88,483.17,2523.05,8763.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,5147,81542.07,0.0,0.0,81542.07,16806.21,12424.51,6439.4,35670.12,117212.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7204,Chief Water Service Inspector,27480,129811.01,0.0,0.0,129811.01,26124.18,12424.5,9940.55,48489.23,178300.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26944,67570.54,33247.63,4221.88,105040.05,19703.42,13317.45,7967.79,40988.66,146028.71 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,31579,111091.01,0.0,0.0,111091.01,25340.73,12424.5,1891.08,39656.31,150747.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,31548,82717.0,2549.52,10334.18,95600.7,18458.58,12424.5,7880.46,38763.54,134364.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,25331,85368.02,0.0,1015.0,86383.02,17803.95,12424.5,7102.55,37331.0,123714.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,6618,14388.0,0.0,152.87,14540.87,2706.05,1911.46,1205.22,5822.73,20363.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,22094,77921.64,2740.21,0.0,80661.85,16024.12,12424.5,6481.58,34930.2,115592.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,33189,77667.29,0.0,820.0,78487.29,15806.19,9837.76,6336.48,31980.43,110467.72 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,18799,72480.85,0.0,4363.0,76843.85,14915.3,12424.5,6374.71,33714.51,110558.36 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2403,Forensic Laboratory Technician,35955,82717.04,0.0,0.0,82717.04,17048.47,12424.5,6742.23,36215.2,118932.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,45122,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45212,54925.31,0.0,2689.93,57615.24,11453.8,9711.18,4648.85,25813.83,83429.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7253,Electrical Trnst Mech Sprv 1,22179,95654.02,59416.98,22951.64,178022.64,19488.5,10990.9,9319.83,39799.23,217821.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,42866,117976.54,7298.83,13352.53,138627.9,23333.15,12424.5,2352.4,38110.05,176737.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,28127,20303.03,0.0,0.0,20303.03,5238.18,6140.57,1615.54,12994.29,33297.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2488,Supv Chemist,50250,119321.05,0.0,0.0,119321.05,24013.59,12424.5,9297.47,45735.56,165056.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33132,27132.71,922.62,755.44,28810.77,4912.68,2389.33,491.55,7793.56,36604.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,19215,122428.3,1892.63,823.73,125144.66,24224.57,12424.49,2123.05,38772.11,163916.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,23341,51206.05,2971.06,0.0,54177.11,10932.43,9079.44,4331.32,24343.19,78520.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3436,Arborist Technician Supervisor,33048,91653.03,0.0,810.0,92463.03,19054.36,12424.5,7654.85,39133.71,131596.74 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4517,180313.61,0.0,5103.15,185416.76,37240.3,12154.81,10950.36,60345.47,245762.23 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,7666,66944.25,1333.85,3814.79,72092.89,14591.41,12246.92,5911.63,32749.96,104842.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,20520,31712.7,501.64,2455.26,34669.6,7649.77,7980.36,3097.85,18727.98,53397.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9122,Transit Information Clerk,18215,790.0,0.0,0.0,790.0,0.0,238.93,56.25,295.18,1085.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9124,Sr Transit Information Clerk,875,13882.0,2464.16,108.58,16454.74,3076.53,2867.19,1281.04,7224.76,23679.5 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,51895,73155.66,0.0,4807.77,77963.43,15769.2,4115.62,6423.81,26308.63,104272.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25521,62838.29,8287.26,1207.38,72332.93,17675.88,12403.89,5514.87,35594.64,107927.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,9846,101107.53,0.0,0.0,101107.53,20827.13,12424.5,8183.26,41434.89,142542.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23251,52689.56,9729.6,2729.04,65148.2,15714.6,10478.27,4807.85,31000.72,96148.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,52207,78985.6,0.0,0.0,78985.6,16239.68,12089.99,6440.13,34769.8,113755.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35083,1816.53,0.0,0.0,1816.53,0.0,450.99,140.76,591.75,2408.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,31720,54124.0,0.0,624.0,54748.0,12250.23,12424.51,4537.52,29212.26,83960.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,26246,70245.01,25559.54,4964.65,100769.2,14616.81,12424.5,8212.65,35253.96,136023.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,3081,66102.13,8244.34,0.0,74346.47,13624.09,12424.51,6105.72,32154.32,106500.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,10762,119460.2,0.0,750.0,120210.2,23646.17,10032.19,9139.05,42817.41,163027.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7235,Transit Power Line Sprv1,49802,116248.0,106809.62,1000.63,224058.25,23718.1,12424.5,11557.15,47699.75,271758.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,45862,50738.12,0.0,1500.0,52238.12,10636.1,10984.94,3963.09,25584.13,77822.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,52461,129271.03,0.0,0.0,129271.03,26015.92,12424.5,9797.75,48238.17,177509.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6067,21680.5,0.0,0.0,21680.5,0.0,5390.93,1680.52,7071.45,28751.95 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,52437,91221.4,0.0,0.0,91221.4,18793.07,12424.5,7345.31,38562.88,129784.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,5608,118932.58,0.0,692.55,119625.13,23970.72,12311.91,9803.98,46086.61,165711.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,42896,11485.2,0.0,113.44,11598.64,0.0,2437.11,857.28,3294.39,14893.03 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2802,Epidemiologist 1,5625,11997.0,0.0,1119.05,13116.05,2690.91,2150.39,1033.45,5874.75,18990.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6526,128065.0,0.0,24806.92,152871.92,26410.39,12424.5,6206.18,45041.07,197912.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,44673,96447.76,0.0,1300.0,97747.76,19619.91,6206.28,8089.3,33915.49,131663.25 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,8300,Correction & Detention,8576,"Dir, Log Cabin Ranch (SFERS)",40897,122762.32,0.0,0.0,122762.32,24705.99,12424.5,19934.82,57065.31,179827.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,47299,69247.08,2169.8,2384.35,73801.23,14400.86,12424.5,5810.61,32635.97,106437.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,47363,45795.58,2570.04,6853.41,55219.03,9482.59,6684.14,4429.07,20595.8,75814.83 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,12053,42920.59,3979.31,2894.87,49794.77,10478.73,11108.88,3860.34,25447.95,75242.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15668,64.0,0.0,1.92,65.92,0.0,23.89,5.12,29.01,94.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7368,Senior Comm Systems Technican,42753,130566.02,0.0,624.0,131190.02,26402.43,12424.5,9925.95,48752.88,179942.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17666,54697.6,0.0,8032.18,62729.78,14291.5,12424.5,5027.12,31743.12,94472.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,14911,54370.0,3203.42,5982.72,63556.14,11692.53,11946.64,4991.74,28630.91,92187.05 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,7698,106116.02,0.0,0.0,106116.02,21870.85,12424.5,8469.63,42764.98,148881.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,20346,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8727.69,43124.0,149729.01 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,25850,651.45,0.0,0.0,651.45,0.0,71.68,50.78,122.46,773.91 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,17571,123950.2,0.0,0.0,123950.2,24921.15,12424.5,9850.99,47196.64,171146.84 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,4740,13169.45,0.0,820.0,13989.45,0.0,2956.79,1084.68,4041.47,18030.92 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8603,Emergency Services Coord III,45797,52728.0,0.0,0.0,52728.0,11826.88,6212.25,3828.99,21868.12,74596.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24851,62831.65,0.0,5089.24,67920.89,8566.39,0.0,7797.3,16363.69,84284.58 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,18291,62023.33,3152.62,8125.5,73301.45,13722.79,12211.61,6040.29,31974.69,105276.14 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,23383,53117.17,0.0,6.44,53123.61,11200.43,9849.76,4312.75,25362.94,78486.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16292,113233.62,15132.32,19032.53,147398.47,24383.51,15196.12,2503.97,42083.6,189482.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,35199,44353.55,0.0,810.0,45163.55,10637.86,10655.44,3534.31,24827.61,69991.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,28565,105561.2,7996.83,12744.06,126302.09,23598.68,12137.78,9837.99,45574.45,171876.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,5452,51190.0,166.62,0.0,51356.62,10273.32,9557.31,4219.19,24049.82,75406.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29092,5137.3,0.0,10.74,5148.04,0.0,1714.35,399.42,2113.77,7261.81 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,48757,122217.01,0.0,0.0,122217.01,24596.62,12424.5,9722.28,46743.4,168960.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5216,Chief Surveyor,3554,126490.07,0.0,0.0,126490.07,25465.63,12424.5,9905.78,47795.91,174285.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,8583,87889.01,0.0,0.0,87889.01,18114.02,12424.5,7106.92,37645.44,125534.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47034,24209.51,2683.1,1048.55,27941.16,6225.8,7517.88,2134.68,15878.36,43819.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5943,118985.14,284.95,3976.37,123246.46,24719.35,9915.7,9828.47,44463.52,167709.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,10451,52521.4,13190.66,8633.85,74345.91,12979.38,12424.51,5889.69,31293.58,105639.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20161,48929.55,0.0,0.0,48929.55,11726.76,12424.5,3929.97,28081.23,77010.78 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,34537,100796.66,9413.48,0.0,110210.14,22983.41,12424.5,1875.79,37283.7,147493.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,18486,4956.55,0.0,0.0,4956.55,0.0,1640.28,383.73,2024.01,6980.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8916,7118.19,0.0,828.94,7947.13,1038.11,3082.6,653.56,4774.27,12721.4 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,18433,30520.0,0.0,0.0,30520.0,5679.79,4300.79,2500.03,12480.61,43000.61 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,13000,7263.95,47.88,0.0,7311.83,0.0,1739.73,567.52,2307.25,9619.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12586,70584.43,27378.58,6911.5,104874.51,21260.44,13913.77,8173.42,43347.63,148222.14 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,44806,70244.97,1025.29,3589.05,74859.31,14561.54,11728.73,6230.09,32520.36,107379.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,4200,4748.09,0.0,21.97,4770.06,0.0,2220.11,370.06,2590.17,7360.23 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,41996,56904.54,0.0,3477.18,60381.72,12097.55,9501.27,5083.77,26682.59,87064.31 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,47214,29091.7,0.0,0.0,29091.7,5413.96,3715.41,2353.23,11482.6,40574.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11965,113233.6,2367.82,21065.09,136666.51,25481.14,15196.12,2272.98,42950.24,179616.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,16142,85477.9,31658.59,4316.4,121452.89,17864.22,12759.01,9738.58,40361.81,161814.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1363,36186.95,5306.99,714.51,42208.45,9542.25,11301.47,3219.08,24062.8,66271.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,23043,98157.01,0.0,0.0,98157.01,20230.58,12424.5,7842.68,40497.76,138654.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,9165,11172.0,279.3,0.0,11451.3,2505.87,1433.58,944.57,4884.02,16335.32 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,36706,34563.02,0.0,0.0,34563.02,7961.04,8123.71,2733.4,18818.15,53381.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3292,Asst Superintendent Rec,12944,44268.02,0.0,807.89,45075.91,9060.68,5734.39,3580.48,18375.55,63451.46 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,1690,49140.01,0.0,560.0,49700.01,9586.47,7167.98,3982.15,20736.6,70436.61 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,518,68033.52,0.0,12199.43,80232.95,14524.91,10274.1,6010.79,30809.8,111042.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44980,64705.82,23627.9,2343.72,90677.44,18348.8,12750.65,7034.09,38133.54,128810.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,43803,70245.0,29581.84,11036.05,110862.89,15707.17,12424.5,8973.94,37105.61,147968.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,45633,80389.22,0.0,0.0,80389.22,16560.54,12376.71,6448.5,35385.75,115774.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,11555,83367.25,13844.18,7564.05,104775.48,17698.79,11268.18,8596.35,37563.32,142338.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,41437,9403.37,134.72,26.57,9564.66,0.0,3127.03,741.81,3868.84,13433.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,28207,59216.83,773.64,1327.91,61318.38,12479.53,12421.93,4838.96,29740.42,91058.8 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,34848,101047.05,0.0,5251.68,106298.73,21912.01,12424.5,8515.94,42852.45,149151.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39567,84114.89,3217.98,11913.67,99246.54,23295.85,10990.9,1556.64,35843.39,135089.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22349,50016.37,3292.17,3906.75,57215.29,11470.53,11128.3,4559.54,27158.37,84373.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,36895,45969.0,214.35,1242.0,47425.35,10285.24,7884.79,3926.43,22096.46,69521.81 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,40052,104811.02,13531.81,67.6,118410.43,21601.92,12424.5,9676.86,43703.28,162113.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,31322,49679.0,0.0,5089.31,54768.31,12624.06,12424.5,4311.41,29359.97,84128.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,7539,3970.5,0.0,18117.63,22088.13,599.11,716.79,1701.02,3016.92,25105.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,21264,1295.65,0.0,0.0,1295.65,0.0,382.3,155.18,537.48,1833.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,34186,39378.35,1586.98,2297.05,43262.38,8370.81,7658.99,3567.77,19597.57,62859.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5177,Safety Officer,23404,130910.0,0.0,0.0,130910.0,26346.5,12424.5,10043.1,48814.1,179724.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,35495,85368.03,0.0,965.0,86333.03,17792.73,12424.5,6961.86,37179.09,123512.12 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,20614,98157.02,0.0,0.0,98157.02,20230.58,12424.5,7756.84,40411.92,138568.94 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,45645,31848.7,3304.17,1061.61,36214.48,6118.99,6212.25,2786.91,15118.15,51332.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,46860,84599.03,0.0,600.0,85199.03,17548.1,12424.51,6990.1,36962.71,122161.74 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,38472,7512.71,0.0,0.0,7512.71,1142.12,495.79,142.55,1780.46,9293.17 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,1781,444.13,370.95,0.0,815.08,0.0,131.41,63.26,194.67,1009.75 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,24619,4493.46,0.0,0.0,4493.46,0.0,0.0,355.79,355.79,4849.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9379,55450.67,0.0,1363.96,56814.63,0.0,4432.32,4403.8,8836.12,65650.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,5027,101531.01,582.15,0.0,102113.16,20926.03,12424.48,8354.57,41705.08,143818.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39828,58767.4,737.71,3449.79,62954.9,12439.45,10405.76,4960.83,27806.04,90760.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,21806,68189.02,12677.22,3800.13,84666.37,14637.84,12424.5,6573.37,33635.71,118302.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,12704,32091.0,0.0,4133.98,36224.98,7040.76,3106.13,2781.11,12928.0,49152.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7317,Senior Water Service Inspector,15802,117750.04,8617.88,21357.83,147725.75,25573.81,12424.5,10261.35,48259.66,195985.41 +Calendar,2015,6,General Administration & Finance,CON,Controller,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,45766,81542.01,0.0,0.0,81542.01,16806.14,12424.5,6345.95,35576.59,117118.6 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,38011,44714.55,0.0,1025.16,45739.71,10980.51,10728.08,3642.36,25350.95,71090.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,13448,89292.48,2143.38,2090.0,93525.86,18812.63,11976.51,7457.79,38246.93,131772.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,32548,83671.96,16269.25,5748.34,105689.55,17662.33,12352.82,8391.32,38406.47,144096.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46505,40881.97,2881.33,1830.78,45594.08,11098.19,12614.57,3411.17,27123.93,72718.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,26485,2504.82,0.0,30.2,2535.02,0.0,436.05,196.76,632.81,3167.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,48948,64146.3,33611.29,7162.82,104920.41,14138.69,12270.68,8110.58,34519.95,139440.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44752,4388.07,0.0,0.0,4388.07,0.0,1854.71,356.0,2210.71,6598.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",28082,118858.12,42.59,0.0,118900.71,24225.28,12424.5,9419.6,46069.38,164970.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5304,Materials Testing Aide,15436,50553.12,180.52,0.0,50733.64,10330.83,9766.32,4086.85,24184.0,74917.64 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,49859,33314.41,0.0,0.0,33314.41,7309.19,3037.55,4450.74,14797.48,48111.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,27145,25703.81,512.7,0.0,26216.51,4783.48,3631.77,2245.43,10660.68,36877.19 +Calendar,2015,6,General Administration & Finance,CON,Controller,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,11692,1709.0,0.0,0.0,1709.0,318.06,238.93,130.89,687.88,2396.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,52947,34177.88,7848.83,6656.24,48682.95,7754.27,6732.11,3836.3,18322.68,67005.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39909,96869.15,30473.95,4978.37,132321.47,24784.45,12309.82,2320.7,39414.97,171736.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1827,Administrative Services Mgr,34940,99008.0,0.0,0.0,99008.0,20487.3,11946.64,8105.68,40539.62,139547.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,47383,44253.0,1607.85,369.68,46230.53,9973.19,6675.18,3726.42,20374.79,66605.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,35567,65059.1,3639.92,8920.94,77619.96,15230.82,12408.02,6138.32,33777.16,111397.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,29363,157659.1,0.0,0.0,157659.1,31717.91,12376.71,10379.06,54473.68,212132.78 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,23257,155574.33,0.0,0.0,155574.33,31261.71,12424.5,17696.03,61382.24,216956.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41284,119481.91,3229.83,28584.02,151295.76,27486.63,10910.86,10335.0,48732.49,200028.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,10741,107093.58,0.0,4415.2,111508.78,22318.34,11794.62,8961.37,43074.33,154583.11 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),40466,184729.28,0.0,1500.0,186229.28,37468.66,12454.37,10999.91,60922.94,247152.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,15672,2209.0,0.0,24.0,2233.0,500.86,477.86,176.41,1155.13,3388.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,25782,41582.01,0.0,440.0,42022.01,8008.63,6690.12,3394.9,18093.65,60115.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51260,20967.08,0.0,0.0,20967.08,-0.01,0.0,2594.15,2594.14,23561.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,472,75605.0,17140.79,11187.99,103933.78,16954.4,12424.5,8492.08,37870.98,141804.76 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,26269,48883.59,0.0,125.0,49008.59,9623.63,7854.38,3871.12,21349.13,70357.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,4317,67709.52,3421.91,0.0,71131.43,13936.89,12424.5,5582.86,31944.25,103075.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,38131,33469.0,0.0,0.0,33469.0,6228.6,5734.39,2567.51,14530.5,47999.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45936,56531.0,0.0,9164.74,65695.74,12876.43,12424.5,5412.86,30713.79,96409.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40337,3157.95,0.0,94.31,3252.26,0.0,1326.08,260.14,1586.22,4838.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,30446,127129.02,0.0,0.0,127129.02,25584.71,12424.5,17219.73,55228.94,182357.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7360,Pipe Welder,49810,100761.01,22650.22,0.0,123411.23,20767.03,12424.52,9840.33,43031.88,166443.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,6611,64978.8,0.0,0.0,64978.8,13130.19,10035.16,5301.66,28467.01,93445.81 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,33565,137218.51,0.0,0.0,137218.51,27525.08,12098.95,10099.7,49723.73,186942.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50776,57447.01,0.0,1872.16,59319.17,12370.13,9318.38,4741.83,26430.34,85749.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7609,67355.31,3690.93,2216.64,73262.88,19038.91,13271.29,5711.35,38021.55,111284.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,50357,67261.0,0.0,780.0,68041.0,14030.84,12424.5,5588.48,32043.82,100084.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,37992,49579.95,8267.32,6029.02,63876.29,12740.77,12409.93,5071.68,30222.38,94098.67 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O035,Management Assistant II (OCII),32016,65180.02,0.0,0.0,65180.02,13153.6,10035.18,5352.24,28541.02,93721.04 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,28455,72699.06,0.0,971.74,73670.8,15181.43,12424.5,6071.68,33677.61,107348.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,7207,131008.34,0.0,0.0,131008.34,26255.34,11868.98,17291.03,55415.35,186423.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8159,Child Support Officer III,31778,63202.29,0.0,421.56,63623.85,12634.09,8393.83,5162.81,26190.73,89814.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29566,118382.34,0.0,2272.33,120654.67,24170.36,12114.19,9162.14,45446.69,166101.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16551,64307.72,405.19,718.29,65431.2,17808.96,12673.53,4877.6,35360.09,100791.29 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19179,56531.01,2823.27,960.9,60315.18,11780.12,12424.5,4735.55,28940.17,89255.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,36292,77071.0,32888.57,1500.0,111459.57,16191.42,12424.5,9072.09,37688.01,149147.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42021,73502.74,0.0,12274.51,85777.25,0.0,6062.62,6649.64,12712.26,98489.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,11405,10357.64,0.0,359.33,10716.97,2436.79,0.0,1058.43,3495.22,14212.19 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,4002,74412.03,0.0,7527.7,81939.73,15985.25,12424.5,6788.4,35198.15,117137.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14848,93547.19,26120.51,9703.57,129371.27,25122.53,11883.92,2192.97,39199.42,168570.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43846,102566.49,826.69,13537.8,116930.98,23144.45,11117.54,9435.44,43697.43,160628.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7353,Water Meter Repairer,3497,76728.02,3547.8,0.0,80275.82,15813.98,12424.5,6609.59,34848.07,115123.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,23102,76560.0,1316.29,4059.86,81936.15,16563.98,12424.5,6646.57,35635.05,117571.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",44259,106090.08,7078.91,2955.9,116124.89,22071.46,12424.5,9824.07,44320.03,160444.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,5710,79996.26,24654.57,8870.21,113521.04,17791.81,12237.36,8835.92,38865.09,152386.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,3581,71608.41,0.0,0.0,71608.41,14665.68,11718.64,5841.95,32226.27,103834.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,5518,109322.42,0.0,0.0,109322.42,22239.12,12424.49,8794.03,43457.64,152780.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,40795,61875.02,5835.21,992.7,68702.93,12881.26,12424.5,5490.8,30796.56,99499.49 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,21129,54876.22,0.0,0.0,54876.22,11308.25,12424.5,4294.53,28027.28,82903.5 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,13495,99654.0,0.0,0.0,99654.0,22731.77,12424.5,1694.21,36850.48,136504.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,11763,135421.0,0.0,0.0,135421.0,27253.5,12424.5,10126.85,49804.85,185225.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1033,IS Trainer-Senior,7823,101999.28,0.0,0.0,101999.28,20938.75,11884.4,8146.24,40969.39,142968.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8310,48492.08,9806.15,2748.16,61046.39,13521.81,9517.17,4609.69,27648.67,88695.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11563,68090.89,5574.45,2236.02,75901.36,19268.47,13417.02,5880.53,38566.02,114467.38 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,45018,72676.76,0.0,623.81,73300.57,15107.73,12420.74,6025.79,33554.26,106854.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,13758,7865.16,0.0,55.18,7920.34,0.0,0.0,626.45,626.45,8546.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,32580,30605.04,629.52,2015.63,33250.19,5813.45,6017.89,2753.77,14585.11,47835.3 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,17654,40603.65,0.0,10037.85,50641.5,10244.73,2407.25,4034.5,16686.48,67327.98 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,38743,87462.0,0.0,0.0,87462.0,18393.07,8601.58,12420.49,39415.14,126877.14 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,37077,97763.75,1581.09,10721.58,110066.42,26354.71,12424.5,1868.74,40647.95,150714.37 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,19613,85004.17,8938.27,9881.2,103823.64,18744.91,12424.5,8504.61,39674.02,143497.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,31808,58848.45,22.96,0.0,58871.41,12233.36,11373.2,4517.12,28123.68,86995.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,5387,140530.37,47596.0,15093.67,203220.04,28377.38,12424.5,3419.76,44221.64,247441.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,38820,2835.0,0.0,24.0,2859.0,641.27,477.86,225.87,1345.0,4204.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,34054,7413.75,0.0,494.25,7908.0,1379.7,1075.2,613.42,3068.32,10976.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22502,77306.95,256.46,48728.57,126291.98,24503.72,6482.24,2805.27,33791.23,160083.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23734,65130.09,20629.61,809.1,86568.8,17997.51,12831.46,6547.91,37376.88,123945.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,17901,78898.39,7093.16,519.0,86510.55,16365.0,11707.74,6986.54,35059.28,121569.83 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,26347,21024.0,0.0,0.0,21024.0,3811.64,2150.39,4022.96,9984.99,31008.99 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8217,Comm Pol Svcs Aide Supervisor,42000,78302.43,0.0,8568.7,86871.13,17389.36,12376.71,7174.35,36940.42,123811.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,51272,0.0,0.0,8366.27,8366.27,0.0,13.7,640.02,653.72,9019.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,22454,113229.08,0.0,1395.08,114624.16,22543.83,12423.42,1813.72,36780.97,151405.13 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,44890,8755.38,0.0,0.0,8755.38,0.0,2744.74,678.87,3423.61,12178.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,38236,62811.0,10494.74,4658.25,77963.99,13074.36,12424.5,6408.02,31906.88,109870.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,5466,75550.31,11044.05,2810.0,89404.36,16126.94,12424.5,7352.89,35904.33,125308.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,39484,84791.01,0.0,0.0,84791.01,17475.8,12424.5,7401.7,37302.0,122093.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,15155,79722.01,1371.15,1883.0,82976.16,16828.12,12424.5,6865.58,36118.2,119094.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,47047,9004.06,0.0,7.16,9011.22,0.0,2986.66,698.54,3685.2,12696.42 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8183,Assistant Chief Attorney 2,5697,218440.02,0.0,3697.8,222137.82,44789.9,12424.5,11551.94,68766.34,290904.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24595,97764.96,42654.31,16320.73,156740.0,27747.29,12424.5,2666.12,42837.91,199577.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,4190,79478.41,11369.73,3345.04,94193.18,17050.33,12424.51,7716.95,37191.79,131384.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,49602,77071.06,1173.8,1240.0,79484.86,16143.76,12424.5,6583.79,35152.05,114636.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,52850,108372.98,17859.3,18576.25,144808.53,30869.85,12424.5,2413.4,45707.75,190516.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,48791,74018.16,0.0,1780.08,75798.24,15143.09,5111.49,6089.84,26344.42,102142.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",2104,93738.07,0.0,537.45,94275.52,19433.53,12424.5,7526.05,39384.08,133659.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19205,2548.38,0.0,0.0,2548.38,0.0,1105.06,212.23,1317.29,3865.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,39944,66519.41,0.0,840.44,67359.85,13882.27,11677.84,5579.73,31139.84,98499.69 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,1954,21111.01,0.0,1133.97,22244.98,4139.79,3345.06,1888.97,9373.82,31618.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42862,4368.0,0.0,0.0,4368.0,0.0,1146.88,354.45,1501.33,5869.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40053,60921.4,3283.03,1800.31,66004.74,13159.99,9861.41,5083.58,28104.98,94109.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40201,68959.12,17087.87,3766.68,89813.67,19974.39,13589.24,6981.32,40544.95,130358.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,34161,35435.42,850.24,3622.57,39908.23,7623.35,7741.42,3022.17,18386.94,58295.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,25044,91572.74,16764.99,12152.1,120489.83,21196.45,12466.32,1993.53,35656.3,156146.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,52995,83097.02,0.0,0.0,83097.02,17095.76,12424.5,6498.21,36018.47,119115.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51062,10386.38,0.0,0.0,10386.38,0.0,4503.88,834.0,5337.88,15724.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,155,56531.0,0.0,2289.75,58820.75,12664.6,12424.5,4724.17,29813.27,88634.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,9258,6435.01,0.0,0.0,6435.01,1660.23,1433.59,533.88,3627.7,10062.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35471,120883.32,1040.2,12296.75,134220.27,24979.77,11038.69,5661.27,41679.73,175900.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,1236,81157.0,12410.47,15524.47,109091.94,18726.16,12424.5,8733.97,39884.63,148976.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,47963,29231.94,0.0,0.0,29231.94,6556.75,4813.0,2383.71,13753.46,42985.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27588,21235.11,2947.25,494.4,24676.76,5672.03,6703.16,1878.35,14253.54,38930.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,14700,136942.63,0.0,0.0,136942.63,27587.35,12424.5,10123.73,50135.58,187078.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2900,Human Services,2966,Welfare Fraud Investigator,51358,45364.86,0.0,0.0,45364.86,8534.71,6200.31,3348.01,18083.03,63447.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,1969,33616.92,0.0,0.0,33616.92,2459.01,9369.15,2619.97,14448.13,48065.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40321,2268.89,0.0,101.85,2370.74,0.0,952.75,184.01,1136.76,3507.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1931,Senior Parts Storekeeper,12604,72319.02,11351.67,3160.68,86831.37,14905.16,12424.5,7145.92,34475.58,121306.95 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,24903,142101.01,0.0,0.0,142101.01,28498.59,12424.5,25145.25,66068.34,208169.35 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,33527,93238.88,25021.19,7111.13,125371.2,19415.79,12366.26,9851.28,41633.33,167004.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,50394,32160.0,10508.53,3232.67,45901.2,5709.66,2867.19,786.95,9363.8,55265.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,19799,54858.79,0.0,1596.86,56455.65,11529.07,11087.58,4449.75,27066.4,83522.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,2500,92500.94,0.0,1760.0,94260.94,19310.6,12319.97,7776.5,39407.07,133668.01 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,28049,3569.8,0.0,0.0,3569.8,0.0,0.0,282.52,282.52,3852.32 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,49563,37509.4,0.0,315.2,37824.6,7810.5,6460.14,3043.66,17314.3,55138.9 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,3541,6909.0,0.0,0.0,6909.0,1519.29,1433.6,551.01,3503.9,10412.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,32221,83699.03,0.0,1140.0,84839.03,17483.36,12424.5,6981.49,36889.35,121728.38 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,32324,28896.0,0.0,0.0,28896.0,6481.37,3345.06,2312.61,12139.04,41035.04 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,25219,152083.35,0.0,0.0,152083.35,30487.17,11902.79,17636.76,60026.72,212110.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11593,57059.8,6272.32,989.57,64321.69,14339.32,13067.23,4792.83,32199.38,96521.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25208,4381.3,0.0,0.0,4381.3,0.0,1839.78,349.04,2188.82,6570.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,8349,95968.01,0.0,0.0,95968.01,19779.2,12424.5,7401.15,39604.85,135572.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34460,121497.3,474.6,10835.38,132807.28,23876.98,11096.03,9676.91,44649.92,177457.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18386,68206.08,33432.78,5938.21,107577.07,20324.36,13439.72,8256.64,42020.72,149597.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,37629,76338.0,0.0,1135.52,77473.52,15973.62,12424.5,6376.9,34775.02,112248.54 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,42910,174665.92,0.0,0.0,174665.92,35063.2,12424.5,28255.23,75742.93,250408.85 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,4824,76804.03,0.0,525.0,77329.03,15899.22,12381.19,6272.65,34553.06,111882.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30951,119467.5,6914.72,10722.78,137105.0,23621.02,12424.5,2280.72,38326.24,175431.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37917,86771.04,0.0,15724.94,102495.98,0.0,7627.27,7942.01,15569.28,118065.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9353,67947.95,6243.21,3663.45,77854.61,19622.79,13388.06,5817.3,38828.15,116682.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,22176,143472.32,0.0,0.0,143472.32,28817.76,12112.1,17488.65,58418.51,201890.83 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,13955,86597.62,0.0,0.0,86597.62,17779.91,10847.55,7007.31,35634.77,122232.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,38883,48837.3,27932.83,6130.9,82901.03,11717.85,6690.11,6488.21,24896.17,107797.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,25482,27049.63,271.55,0.0,27321.18,6191.48,6247.49,1994.18,14433.15,41754.33 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8602,Emergency Services Coord II,5575,76940.0,1181.21,1653.29,79774.5,15852.22,12424.5,6415.88,34692.6,114467.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,39371,100761.0,0.0,1750.0,102511.0,21127.45,12424.5,8407.93,41959.88,144470.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,13262,34583.74,5189.9,0.0,39773.64,6436.03,4181.31,3191.45,13808.79,53582.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27116,14319.11,41.33,413.35,14773.79,516.73,6209.26,1165.27,7891.26,22665.05 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),26902,63824.0,0.0,5456.16,69280.16,14797.11,7645.85,1108.45,23551.41,92831.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48595,16946.32,1913.94,1397.22,20257.48,5108.01,3370.09,1549.53,10027.63,30285.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41029,46853.4,0.0,6246.84,53100.24,12244.48,12424.5,4298.78,28967.76,82068.0 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,22723,80154.0,15542.25,0.0,95696.25,16520.24,12424.5,7585.5,36530.24,132226.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15550,112255.05,35427.35,8051.73,155734.13,22233.72,12376.71,2270.12,36880.55,192614.68 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,21477,67911.04,3287.28,4976.19,76174.51,14522.28,12424.5,6286.05,33232.83,109407.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,8909,212039.15,0.0,0.0,212039.15,42794.01,12424.5,26380.17,81598.68,293637.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33582,66848.51,2639.31,1930.81,71418.63,18808.3,13169.49,5565.91,37543.7,108962.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17228,56531.0,0.0,5539.63,62070.63,12425.1,12424.5,5076.67,29926.27,91996.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,282,79395.09,0.0,2061.6,81456.69,16798.45,12424.51,6739.73,35962.69,117419.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,26475,58782.02,0.0,200.0,58982.02,12115.28,12424.5,4823.08,29362.86,88344.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,50865,88326.01,0.0,0.0,88326.01,18204.27,12424.5,7040.94,37669.71,125995.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,21912,79898.76,42577.18,11803.77,134279.71,17554.98,10765.48,9975.08,38295.54,172575.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,1507,101531.0,10382.79,7018.48,118932.27,22372.16,12424.5,9685.52,44482.18,163414.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,10679,97934.02,0.0,0.0,97934.02,20195.66,12424.5,8079.49,40699.65,138633.67 +Calendar,2015,1,Public Protection,POL,Police,200.0,"Transportation Workers, Local 200",7400,Skilled Labor,7412,Auto Svc Wrk Asst Sprv,46950,72871.8,518.25,51.13,73441.18,15040.62,12520.08,5794.31,33355.01,106796.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,23206,81410.01,11830.09,3569.0,96809.1,16745.97,11946.64,7745.46,36438.07,133247.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,10414,53100.57,7010.37,4081.29,64192.23,11315.74,9941.33,5264.06,26521.13,90713.36 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,6592,67582.38,4070.01,7326.22,78978.61,14996.83,12364.77,5904.18,33265.78,112244.39 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,21862,22546.02,0.0,80.0,22626.02,4210.69,2867.19,1771.01,8848.89,31474.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,5261,37053.76,0.0,0.0,37053.76,6717.86,2980.69,5179.41,14877.96,51931.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,20772,24303.0,1706.59,210.66,26220.25,4522.83,5256.52,2108.26,11887.61,38107.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,17493,76414.02,0.0,0.0,76414.02,15190.25,8840.49,6480.59,30511.33,106925.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,38699,43086.58,3658.86,12346.69,59092.13,9771.99,6436.24,4786.87,20995.1,80087.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,18735,17433.04,426.65,1433.12,19292.81,2581.63,5712.16,1460.25,9754.04,29046.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,41729,112776.07,269.44,0.0,113045.51,22696.48,12424.5,9225.09,44346.07,157391.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25086,136071.0,1309.27,5757.84,143138.11,27626.69,12424.5,5514.48,45565.67,188703.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,28361,8250.7,0.0,30.66,8281.36,0.0,2989.65,641.88,3631.53,11912.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,5409,135955.41,66012.81,13422.54,215390.76,36308.54,12378.74,3674.48,52361.76,267752.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,15759,72224.02,0.0,1626.73,73850.75,15450.37,7645.85,5885.39,28981.61,102832.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,47936,116976.0,18071.57,14445.49,149493.06,25268.8,12424.5,10259.91,47953.21,197446.27 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,1876,98157.0,0.0,0.0,98157.0,20230.58,12424.51,8063.63,40718.72,138875.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,11654,575.51,0.0,0.0,575.51,129.09,97.0,68.93,295.02,870.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,31782,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5124.28,30401.4,92760.4 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,17508,87713.0,0.0,10541.95,98254.95,19617.15,12424.51,7783.11,39824.77,138079.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,34418,74513.06,3943.19,8953.55,87409.8,15181.77,10990.9,2065.16,28237.83,115647.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,41160,55932.51,0.0,0.0,55932.51,10992.22,8123.7,4588.84,23704.76,79637.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,4481,109282.84,0.0,910.0,110192.84,20953.22,8123.71,17015.75,46092.68,156285.52 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,20897,77037.21,0.0,608.69,77645.9,15967.75,12119.56,6394.23,34481.54,112127.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,30941,79951.0,6283.54,0.0,86234.54,16478.21,12424.51,7062.42,35965.14,122199.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,11457,140796.47,28993.44,32131.3,201921.21,27836.89,12305.02,3383.34,43525.25,245446.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26681,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1850.29,10264.06,34268.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,23701,36221.0,0.0,0.0,36221.0,6814.33,6212.25,2980.76,16007.34,52228.34 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,41958,118411.01,0.0,3547.66,121958.67,23830.25,12424.5,9839.12,46093.87,168052.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,6030,154926.28,0.0,0.0,154926.28,31168.51,9891.81,10284.53,51344.85,206271.13 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H110,Marine Engineer Of Fire Boats,41196,58294.93,0.0,1878.94,60173.87,11762.51,5895.67,1022.08,18680.26,78854.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,14340,17424.0,0.0,0.0,17424.0,3908.24,3822.92,1421.49,9152.65,26576.65 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,42844,103283.07,0.0,901.37,104184.44,21620.16,12424.5,8512.62,42557.28,146741.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36912,49860.56,0.0,2887.63,52748.19,11433.21,11092.45,4009.25,26534.91,79283.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23243,6770.7,0.0,391.11,7161.81,4878.42,526.07,185.52,5590.01,12751.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,929.0,Building Inspectors' Association - Chiefs,6300,Construction Inspection,6334,Chief Building Inspector,47752,57651.0,0.0,2882.55,60533.55,13281.07,5256.52,4934.05,23471.64,84005.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,2761,63887.03,17401.39,2110.65,83399.07,13295.99,12424.5,6618.36,32338.85,115737.92 +Calendar,2015,1,Public Protection,PDR,Public Defender,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,6054,51292.8,0.0,6317.3,57610.1,11749.18,6546.76,4945.32,23241.26,80851.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",8584,92924.4,0.0,1240.0,94164.4,19414.72,12376.72,7808.29,39599.73,133764.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,46792,102548.33,0.0,0.0,102548.33,21042.56,12160.63,8313.93,41517.12,144065.45 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7416,Book Repairer,26590,58457.58,0.0,0.0,58457.58,12039.79,12325.94,4776.63,29142.36,87599.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,52012,62811.0,30848.58,12882.62,106542.2,14680.93,12424.5,8416.55,35521.98,142064.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49622,2417.52,0.0,83.14,2500.66,0.0,1048.32,201.98,1250.3,3750.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26014,43492.84,0.0,2414.95,45907.79,9940.75,9657.54,3484.34,23082.63,68990.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,44194,100554.01,0.0,0.0,100554.01,20724.83,12424.5,8261.64,41410.97,141964.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,29382,21444.0,0.0,0.0,21444.0,5532.6,5734.39,1749.02,13016.01,34460.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,26410,155081.35,0.0,0.0,155081.35,31180.31,12424.5,18730.13,62334.94,217416.29 +Calendar,2015,1,Public Protection,PDR,Public Defender,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,9607,36727.15,0.0,0.0,36727.15,7550.33,6630.38,2798.42,16979.13,53706.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,26652,66580.0,0.0,0.0,66580.0,13722.34,12424.49,5522.07,31668.9,98248.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,19743,48412.0,16129.58,1364.0,65905.58,11164.75,6212.25,5168.81,22545.81,88451.39 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,12414,24161.63,0.0,0.0,24161.63,5781.36,5967.04,1960.07,13708.47,37870.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24901,97392.5,7519.9,12666.31,117578.71,26773.64,12376.71,2001.04,41151.39,158730.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,23864,55834.89,0.0,0.0,55834.89,12415.7,12130.44,4551.0,29097.14,84932.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,30393,94265.23,0.0,0.0,94265.23,19392.11,12424.49,7088.18,38904.78,133170.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,33197,50151.6,7388.78,4581.93,62122.31,12756.67,12424.5,5006.57,30187.74,92310.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29627,149099.02,0.0,8371.23,157470.25,28544.37,12424.5,2978.62,43947.49,201417.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,18822,117133.6,20637.49,8419.35,146190.44,23190.84,12424.5,2435.67,38051.01,184241.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,10024,132923.26,0.0,0.0,132923.26,26720.3,12424.5,10072.97,49217.77,182141.03 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,30227,95627.6,17511.31,2171.82,115310.73,19991.46,12424.5,9266.86,41682.82,156993.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,19649,81504.37,34908.37,6895.04,123307.78,16914.15,12424.5,9730.12,39068.77,162376.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,36313,58026.2,11417.65,3596.74,73040.59,12437.75,11277.62,5863.07,29578.44,102619.03 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0891,Mayoral Staff XI,37140,35848.8,0.0,0.0,35848.8,7343.69,4575.57,6619.63,18538.89,54387.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,28170,39119.23,0.0,84.0,39203.23,8298.58,4981.68,3182.96,16463.22,55666.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,31991,13559.61,0.0,100.18,13659.79,0.0,4506.87,1059.08,5565.95,19225.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50956,6804.4,0.0,5.73,6810.13,0.0,0.0,568.12,568.12,7378.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38996,119463.87,6283.48,3270.33,129017.68,24103.01,12424.5,2142.04,38669.55,167687.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47624,69291.83,10883.29,3187.91,83363.03,19872.17,13655.48,6510.69,40038.34,123401.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,2575,61230.93,0.0,618.93,61849.86,12744.96,12323.49,5133.53,30201.98,92051.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,25077,6588.1,0.0,1250.44,7838.54,0.0,0.0,113.66,113.66,7952.2 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,13865,56676.92,0.0,11848.0,68524.92,12434.94,6546.76,17735.99,36717.69,105242.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,48019,1900.29,0.0,0.0,1900.29,0.0,888.52,147.4,1035.92,2936.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,22104,58476.65,7.73,1700.0,60184.38,12347.32,11825.07,4516.53,28688.92,88873.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,8110,93225.34,0.0,1955.54,95180.88,19618.75,12417.04,7888.73,39924.52,135105.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36448,56314.9,5693.73,4155.55,66164.18,12460.11,12376.72,5393.37,30230.2,96394.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39185,108846.61,1040.2,18105.4,127992.21,24775.33,9914.93,9439.78,44130.04,172122.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,33458,99590.2,0.0,1300.0,100890.2,18231.68,6809.58,5020.96,30062.22,130952.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41319,55301.69,0.0,15642.12,70943.81,3224.65,0.0,5136.22,8360.87,79304.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,25546,17547.24,0.0,0.0,17547.24,1845.09,4646.05,1375.71,7866.85,25414.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",48287,150.0,0.0,0.0,150.0,0.0,17.92,11.61,29.53,179.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",37219,10561.84,0.0,0.0,10561.84,0.0,2514.75,819.77,3334.52,13896.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,24131,73604.06,16595.57,2987.7,93187.33,14975.02,10747.8,7691.17,33413.99,126601.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31662,1105.0,0.0,0.0,1105.0,0.0,597.33,85.55,682.88,1787.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29871,3085.6,0.0,0.0,3085.6,0.0,1338.02,246.36,1584.38,4669.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,14775,12196.8,0.0,408.38,12605.18,0.0,2676.05,1013.17,3689.22,16294.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2924,Medical Social Work Supervisor,16729,89377.94,0.0,0.0,89377.94,18417.02,12364.76,6946.95,37728.73,127106.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,51694,97424.02,1288.35,14947.67,113660.04,20541.13,12424.5,8705.1,41670.73,155330.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,47271,57464.53,0.0,19796.06,77260.59,13238.14,6528.84,6260.09,26027.07,103287.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,24184,17635.2,0.0,0.0,17635.2,4549.88,5333.69,1447.29,11330.86,28966.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),9949,23112.0,325.01,13507.87,36944.88,4101.52,1911.46,596.3,6609.28,43554.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,17606,62811.05,1650.43,1476.35,65937.83,13196.63,12424.5,5332.32,30953.45,96891.28 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,1577,99787.33,0.0,0.0,99787.33,22763.34,12424.5,256.5,35444.34,135231.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42242,68919.48,25631.0,4457.27,99007.75,20077.72,13578.43,7490.78,41146.93,140154.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2327,3062.5,0.0,14.7,3077.2,0.0,1493.33,238.67,1732.0,4809.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,2874,3661.1,0.0,54.2,3715.3,0.0,1382.34,288.37,1670.71,5386.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,27791,51823.51,0.0,943.07,52766.58,10883.98,9025.69,4259.09,24168.76,76935.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32354,121877.12,676.76,10344.69,132898.57,25782.46,10178.53,9578.75,45539.74,178438.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46027,67769.46,1060.17,1230.57,70060.2,18904.95,13355.2,5200.81,37460.96,107521.16 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,3773,99654.01,6255.84,5787.9,111697.75,24054.93,12424.5,1900.11,38379.54,150077.29 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,48062,44668.29,4379.77,3167.07,52215.13,8607.56,5232.63,4185.39,18025.58,70240.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,49095,64481.48,0.0,0.0,64481.48,12800.41,6763.53,5419.72,24983.66,89465.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6115,Wastewater Control Inspector,51051,73580.0,4495.28,0.0,78075.28,15618.6,9557.31,6230.72,31406.63,109481.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,32321,97424.01,0.0,1070.0,98494.01,20301.94,12424.54,7919.48,40645.96,139139.97 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),23305,29888.56,0.0,1793.32,31681.88,5895.99,3434.66,531.51,9862.16,41544.04 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,18947,89171.76,0.0,0.0,89171.76,18392.6,12206.49,7191.25,37790.34,126962.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37188,16855.8,0.0,4411.99,21267.79,3850.56,3727.35,1729.21,9307.12,30574.91 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,19316,163554.62,0.0,0.0,163554.62,32795.97,12376.35,27918.3,73090.62,236645.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11676,45202.09,0.0,5956.49,51158.58,0.0,0.0,873.07,873.07,52031.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,31930,70245.0,16915.95,12087.29,99248.24,15927.41,12424.5,8100.65,36452.56,135700.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,4802,36767.65,430.03,4559.57,41757.25,0.0,4303.78,3236.4,7540.18,49297.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,8311,4791.0,0.0,95.82,4886.82,0.0,716.79,378.33,1095.12,5981.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,52881,3056.2,0.0,13.1,3069.3,407.88,669.02,238.05,1314.95,4384.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,40674,71645.8,0.0,40.0,71685.8,14763.11,12424.5,5745.57,32933.18,104618.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38715,5859.0,0.0,18.6,5877.6,0.0,2257.91,455.92,2713.83,8591.43 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,36776,49559.02,0.0,450.0,50009.02,9316.53,5286.4,4024.17,18627.1,68636.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,23032,62187.0,0.0,1081.2,63268.2,12816.97,12424.5,5198.05,30439.52,93707.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,49360,161719.29,3668.99,15055.42,180443.7,34097.6,12057.15,10732.48,56887.23,237330.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22340,45621.52,0.0,5521.29,51142.81,10448.53,4320.44,4207.25,18976.22,70119.03 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,34510,68549.22,0.0,0.0,68549.22,14121.36,12424.51,5510.17,32056.04,100605.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1371,51713.6,6393.6,3740.19,61847.39,12676.57,12424.5,4734.34,29835.41,91682.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,777,81942.02,8843.97,2727.03,93513.02,17446.11,12424.51,7460.66,37331.28,130844.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,46311,27018.89,0.0,520.0,27538.89,6176.95,4237.4,2389.45,12803.8,40342.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,15918,117140.98,8329.3,10781.72,136252.0,23164.17,12424.5,2189.0,37777.67,174029.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19973,41647.35,0.0,3527.45,45174.8,8785.05,7285.89,3599.28,19670.22,64845.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5303,"Sprv, Traffic & Street Signs",26900,25998.03,1706.12,0.0,27704.15,5831.35,3345.03,2290.84,11467.22,39171.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41434,97765.75,20880.31,15984.05,134630.11,27661.42,12424.5,2247.08,42333.0,176963.11 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,43409,21159.01,0.0,0.0,21159.01,5066.83,6204.37,1722.87,12994.07,34153.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,46056,2267.5,0.0,50.8,2318.3,509.79,597.33,179.76,1286.88,3605.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10265,108052.88,1234.93,12015.49,121303.3,18160.32,10486.94,9688.03,38335.29,159638.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,9577,14526.0,3522.24,1618.78,19667.02,3334.75,3345.06,1560.67,8240.48,27907.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,36789,58126.03,0.0,0.0,58126.03,12962.93,12424.5,4687.89,30075.32,88201.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,11517,13419.7,729.25,1054.53,15203.48,0.0,1588.91,1177.05,2765.96,17969.44 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,38859,73749.03,2622.4,4330.22,80701.65,15405.08,12424.5,6768.72,34598.3,115299.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,9489,67261.1,0.0,624.0,67885.1,13991.51,12424.5,5067.77,31483.78,99368.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,26859,6730.16,0.0,247.23,6977.39,1524.93,1362.75,572.57,3460.25,10437.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,44662,74165.02,0.0,1289.0,75454.02,15545.04,12424.5,6001.9,33971.44,109425.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,32209,7497.0,78.09,0.0,7575.09,1395.18,1433.59,557.14,3385.91,10961.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,11052,53424.25,2091.22,6717.48,62232.95,11036.6,6684.14,5078.35,22799.09,85032.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,32846,116976.03,0.0,0.0,116976.03,23541.49,12424.51,9384.21,45350.21,162326.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,47242,1269.0,0.0,0.0,1269.0,0.0,286.72,98.24,384.96,1653.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32715,52637.91,1125.28,9435.61,63198.8,11070.58,5739.4,5351.34,22161.32,85360.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,31115,73065.89,5440.96,1500.0,80006.85,15357.98,12448.4,6396.57,34202.95,114209.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,19057,62381.0,420.0,0.0,62801.0,14367.17,10513.01,5028.91,29909.09,92710.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,22594,22825.65,11.14,232.14,23068.93,5171.86,4621.85,1917.64,11711.35,34780.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45118,68354.69,8136.33,4282.74,80773.76,19889.47,13466.84,6255.02,39611.33,120385.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,3975,156320.03,0.0,0.0,156320.03,31459.67,12424.5,10486.72,54370.89,210690.92 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,4621,87700.9,0.0,3619.8,91320.7,18646.26,12340.76,7591.17,38578.19,129898.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,44319,131763.73,0.0,304.4,132068.13,26522.81,12400.61,9946.99,48870.41,180938.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30391,119450.15,2004.0,4258.42,125712.57,23683.76,12424.5,2140.94,38249.2,163961.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,31125,99783.92,485.87,18139.33,118409.12,23175.57,11099.92,9699.38,43974.87,162383.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5400,Community Development,5408,Coord Of Citizen Involvement,6404,92322.74,0.0,0.0,92322.74,19008.57,12311.01,7426.7,38746.28,131069.02 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,4571,88813.58,0.0,120.0,88933.58,18152.29,9862.55,7836.51,35851.35,124784.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,5369,75605.0,15364.13,5239.85,96208.98,15887.84,12424.5,7836.07,36148.41,132357.39 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,8107,97766.22,4355.9,12247.57,114369.69,26039.44,12424.5,1891.68,40355.62,154725.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51191,56531.0,66.86,6949.04,63546.9,13540.92,12424.5,4890.48,30855.9,94402.8 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,25459,87530.2,0.0,5316.59,92846.79,18168.2,12316.74,7707.25,38192.19,131038.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,31091,75605.0,11366.57,4838.95,91810.52,15711.25,12424.5,7533.3,35669.05,127479.57 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,14282,74412.01,0.0,4431.0,78843.01,15345.94,12424.5,6542.66,34313.1,113156.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,42801,25889.0,858.44,1645.34,28392.78,4856.2,5256.52,2303.27,12415.99,40808.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,26087,62811.0,0.0,624.0,63435.0,13391.64,12424.5,5258.56,31074.7,94509.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18571,138509.9,133.95,42901.52,181545.37,34221.66,12376.71,4458.35,51056.72,232602.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",11551,139759.2,28202.46,15520.46,183482.12,30438.0,14144.82,3131.16,47713.98,231196.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30556,46427.71,0.0,0.0,46427.71,0.0,0.0,3672.11,3672.11,50099.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,10525,126297.2,0.0,15827.98,142125.18,25447.7,12151.52,10108.42,47707.64,189832.82 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,51975,62135.99,17334.93,4453.36,83924.28,13434.82,11964.38,6634.75,32033.95,115958.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,15776,64896.0,1702.64,2254.84,68853.48,13844.38,12376.73,5677.59,31898.7,100752.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52235,113233.6,37117.55,21756.06,172107.21,25621.39,15196.12,2934.49,43752.0,215859.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,1134,8119.07,0.0,81.18,8200.25,0.0,2699.94,634.99,3334.93,11535.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2830,113223.0,20155.32,15644.49,149022.81,24518.22,15196.11,2482.51,42196.84,191219.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45037,28037.65,0.0,19967.17,48004.82,5096.64,2350.97,2698.43,10146.04,58150.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11760,12488.03,0.0,0.0,12488.03,0.0,5415.23,1019.95,6435.18,18923.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47942,2756.26,0.0,0.0,2756.26,0.0,1343.99,213.72,1557.71,4313.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,49591,70697.14,0.0,0.0,70697.14,13148.37,11358.27,5737.49,30244.13,100941.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37589,98835.45,3811.75,10158.45,112805.65,20501.01,12424.49,1838.29,34763.79,147569.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,3185,155884.8,0.0,0.0,155884.8,31356.28,12355.79,10432.59,54144.66,210029.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29257,3634.49,0.0,0.0,3634.49,0.0,1526.19,289.81,1816.0,5450.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,28325,62872.81,0.0,1384.98,64257.79,13243.55,12424.5,5324.74,30992.79,95250.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30306,91948.18,39911.72,7112.21,138972.11,18756.75,9557.3,2330.88,30644.93,169617.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,26100,17827.12,0.0,0.0,17827.12,3998.62,3345.06,1468.17,8811.85,26638.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42272,64728.14,2003.56,771.98,67503.68,14911.52,12756.02,4932.95,32600.49,100104.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,50478,405.93,0.0,28.12,434.05,76.47,0.0,252.76,329.23,763.28 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,10043,55214.28,9888.69,7379.58,72482.55,12448.42,10871.44,5895.86,29215.72,101698.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11848,3974.09,0.0,0.0,3974.09,125.28,1723.3,315.15,2163.73,6137.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,49373,132654.62,0.0,0.0,132654.62,26646.58,12424.5,9980.41,49051.49,181706.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,24684,28405.01,0.0,0.0,28405.01,6246.3,5256.53,2284.15,13786.98,42191.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,13383,54301.65,0.0,548.62,54850.27,11259.74,10924.06,4530.5,26714.3,81564.57 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,435,67911.04,0.0,6008.03,73919.07,14525.54,12424.5,6062.87,33012.91,106931.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15107,56531.0,0.0,2277.45,58808.45,11780.12,12424.5,4616.32,28820.94,87629.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36113,86611.58,0.0,17412.0,104023.58,0.0,6630.68,8058.91,14689.59,118713.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,21045,13597.8,0.0,0.0,13597.8,2849.34,2557.78,1047.56,6454.68,20052.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,38884,58646.96,0.0,1634.44,60281.4,12294.55,11654.78,4986.4,28935.73,89217.13 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8135,Asst Chf Victim/Wit Invstgtor,40358,102290.02,0.0,0.0,102290.02,21082.4,12424.51,7923.77,41430.68,143720.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8977,50597.48,0.0,9306.02,59903.5,508.55,0.0,6391.42,6899.97,66803.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2416,Laboratory Technician II,44106,55259.71,0.0,0.0,55259.71,12331.7,12388.65,4100.23,28820.58,84080.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40068,63374.47,18244.53,3841.67,85460.67,18316.3,12481.43,6461.19,37258.92,122719.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,49970,23421.65,3511.12,672.03,27604.8,5626.73,6068.9,2228.58,13924.21,41529.01 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,23070,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5169.23,30446.35,92805.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26060,32431.01,0.0,12955.69,45386.7,1856.02,0.0,6121.95,7977.97,53364.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,34172,72816.0,7498.9,31811.5,112126.4,19592.11,7645.85,222.22,27460.18,139586.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23762,52629.1,0.0,60.0,52689.1,12615.57,12424.5,4285.52,29325.59,82014.69 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,31302,177562.58,0.0,0.0,177562.58,35656.24,12347.57,28193.57,76197.38,253759.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6208,33283.23,5605.19,1536.85,40425.27,10131.34,6618.97,3121.15,19871.46,60296.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36344,55993.85,0.0,622.61,56616.46,12667.95,12396.78,4688.48,29753.21,86369.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14990,52947.5,2205.24,1128.03,56280.77,13351.66,11730.46,4084.96,29167.08,85447.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,11295,114264.0,1005.98,6439.14,121709.12,23695.96,12413.99,9808.42,45918.37,167627.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,19507,22840.88,0.0,0.0,22840.88,868.6,6908.12,1829.97,9606.69,32447.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,53207,95820.8,0.0,0.0,95820.8,19462.71,10952.97,7460.66,37876.34,133697.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,906,11215.35,0.0,0.0,11215.35,0.0,4838.39,907.6,5745.99,16961.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50356,34465.04,2335.73,0.0,36800.77,8467.29,9557.31,2805.09,20829.69,57630.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,50946,113457.16,0.0,0.0,113457.16,22810.53,12286.87,9333.59,44430.99,157888.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,29987,100761.0,0.0,900.0,101661.0,20952.08,12424.5,8392.44,41769.02,143430.02 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,26785,101047.03,0.0,4279.95,105326.98,21694.03,12424.5,8480.25,42598.78,147925.76 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,7802,85771.25,0.0,2100.0,87871.25,18332.41,10600.43,6920.72,35853.56,123724.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36160,119467.4,1589.55,3313.87,124370.82,23620.98,12424.49,2062.51,38107.98,162478.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),3035,11556.0,0.0,189.47,11745.47,2050.76,955.73,196.84,3203.33,14948.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,31744,81014.02,13932.72,1992.0,96938.74,17121.44,12424.5,7919.62,37465.56,134404.3 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,31019,51763.84,0.0,1196.24,52960.08,11356.98,5782.18,4272.82,21411.98,74372.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,45198,85357.0,10876.24,6447.98,102681.22,17353.28,10513.03,8039.86,35906.17,138587.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,49639,107416.0,1154.82,1306.0,109876.82,22391.34,12424.51,9002.48,43818.33,153695.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23525,6081.67,0.0,0.0,6081.67,0.0,2637.22,485.78,3123.0,9204.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,10113,107625.2,29966.27,13870.22,151461.69,24352.35,12376.71,10263.42,46992.48,198454.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41561,56531.01,0.0,7417.79,63948.8,13586.89,12424.5,5124.12,31135.51,95084.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,36940,45945.78,11743.53,1026.44,58715.75,10497.86,9939.6,4433.95,24871.41,83587.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,7579,21971.43,0.0,0.0,21971.43,4088.88,3787.09,1759.49,9635.46,31606.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,38042,97934.0,0.0,0.0,97934.0,20181.36,12424.5,7831.61,40437.47,138371.47 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,12897,92866.73,28324.37,6753.24,127944.34,19273.89,12316.98,9900.25,41491.12,169435.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,10224,76033.82,3381.68,5879.87,85295.37,16896.53,11660.16,6857.28,35413.97,120709.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45740,67846.34,13197.21,892.11,81935.66,18833.04,13371.1,6140.4,38344.54,120280.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6281,Fire Safety Inspector 2,7625,135109.0,35599.15,8106.54,178814.69,28837.04,12424.5,10822.91,52084.45,230899.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52558,68229.77,28011.58,1948.51,98189.86,19157.62,13442.06,7643.77,40243.45,138433.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46309,7879.31,0.0,0.0,7879.31,682.35,3416.73,635.22,4734.3,12613.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,53080,117027.72,24784.25,12186.98,153998.95,23603.68,12412.56,390.28,36406.52,190405.47 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,21148,60881.2,510.22,292.73,61684.15,12494.8,11946.63,4923.01,29364.44,91048.59 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,15630,32082.47,0.0,125.0,32207.47,6075.09,5139.86,2558.02,13772.97,45980.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,15259,32160.0,1767.14,22813.74,56740.88,5709.66,2867.19,912.58,9489.43,66230.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,15072,92690.87,0.0,0.0,92690.87,19093.39,12345.42,7293.39,38732.2,131423.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,46171,3027.0,0.0,0.0,3027.0,563.32,477.86,234.94,1276.12,4303.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11768,119461.69,34427.72,23941.73,177831.14,23641.92,12424.51,2973.95,39040.38,216871.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,8451,75927.07,0.0,8532.83,84459.9,15772.96,12424.5,6282.51,34479.97,118939.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7220,151147.01,0.0,250.0,151397.01,27894.93,12424.5,6243.56,46562.99,197960.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4535,56531.0,0.0,4236.83,60767.83,12523.73,12424.5,4971.34,29919.57,90687.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,31128,93281.0,0.0,624.0,93905.0,19354.57,12424.5,7346.89,39125.96,133030.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,25452,84973.0,0.0,200.0,85173.0,17513.3,12424.5,7013.29,36951.09,122124.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39459,112439.41,13184.39,18542.22,144166.02,24878.34,15090.09,2455.98,42424.41,186590.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,36347,17966.54,46.28,6371.83,24384.65,4377.89,2006.91,1977.76,8362.56,32747.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47831,38895.25,1470.61,4194.69,44560.55,7361.3,3990.17,3739.01,15090.48,59651.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40672,56531.0,45.16,2985.48,59561.64,12175.3,12424.5,4675.9,29275.7,88837.34 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,35616,35061.8,0.0,1623.48,36685.28,5461.58,0.0,6903.39,12364.97,49050.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13206,12380.93,872.63,141.18,13394.74,3000.72,3818.16,1008.51,7827.39,21222.13 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2566,Rehabilitation Counselor,456,27535.56,0.0,610.46,28146.02,5643.72,4413.51,2627.72,12684.95,40830.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33078,69290.89,49536.81,9514.11,128341.81,21576.13,13650.46,9515.14,44741.73,173083.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,15986,25812.0,20.32,288.0,26120.32,6733.8,5734.39,2151.06,14619.25,40739.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,48291,75927.06,0.0,0.0,75927.06,15644.58,12424.5,5821.88,33890.96,109818.02 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,34155,78718.45,0.0,0.0,78718.45,16194.96,12424.5,6322.73,34942.19,113660.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27166,66626.68,14582.58,4973.55,86182.81,19582.06,13126.25,6703.13,39411.44,125594.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,11651,42724.05,0.0,722.5,43446.55,8960.18,6274.97,3345.49,18580.64,62027.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,6677,19221.34,3464.85,1672.53,24358.72,3608.35,3343.56,1907.24,8859.15,33217.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,40149,83528.03,0.0,0.0,83528.03,17211.04,12424.5,6804.6,36440.14,119968.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,48253,76727.66,121.97,608.03,77457.66,15939.65,12424.44,6318.99,34683.08,112140.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,43294,53488.81,0.0,18326.37,71815.18,10005.0,6021.11,5764.01,21790.12,93605.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,3958,76728.0,0.0,824.0,77552.0,15942.8,12424.5,6413.8,34781.1,112333.1 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,19609,22973.67,0.0,0.0,22973.67,5517.46,7556.24,1911.81,14985.51,37959.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,43600,56140.75,215.26,1888.92,58244.93,11981.18,11128.35,4778.42,27887.95,86132.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24957,144706.02,0.0,583.2,145289.22,29184.17,12424.5,10203.15,51811.82,197101.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,36728,53585.6,1081.6,3136.23,57803.43,12850.16,12424.5,4686.11,29960.77,87764.2 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,34363,54750.48,0.0,10776.64,65527.12,9851.33,0.0,10031.61,19882.94,85410.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29186,39590.43,393.78,2753.93,42738.14,9726.83,10711.29,3450.1,23888.22,66626.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,3780,129811.04,0.0,0.0,129811.04,26124.19,12424.5,10013.5,48562.19,178373.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,4027,6903.38,0.0,0.0,6903.38,1284.72,872.1,559.95,2716.77,9620.15 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,33082,87530.59,0.0,0.0,87530.59,18040.55,12424.44,6962.34,37427.33,124957.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1843,"Ex Dir, Se Com Fac Comm",17385,112146.03,0.0,0.0,112146.03,22569.26,12424.5,17790.34,52784.1,164930.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,24337,56060.75,0.0,0.0,56060.75,1899.9,8052.04,4444.24,14396.18,70456.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,26920,70186.27,414.94,9597.35,80198.56,15582.39,12414.05,6593.88,34590.32,114788.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,39763,17013.86,0.0,0.0,17013.86,3190.04,2631.25,1413.86,7235.15,24249.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,15370,148946.8,0.0,0.0,148946.8,29929.15,12424.5,10318.9,52672.55,201619.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9430,84865.4,24338.8,6542.83,115747.03,18248.52,12663.46,9186.95,40098.93,155845.96 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,36305,67261.01,485.07,1941.66,69687.74,14236.8,12424.5,5708.87,32370.17,102057.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,3236,73946.82,0.0,1780.66,75727.48,15589.69,12158.86,6071.42,33819.97,109547.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,28646,137101.0,0.0,0.0,137101.0,27592.09,12424.5,25052.41,65069.0,202170.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,13840,112209.04,10856.53,4369.85,127435.42,22892.85,12424.53,9861.48,45178.86,172614.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,47985,156574.35,0.0,250.0,156824.35,31524.91,10076.99,10402.57,52004.47,208828.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46037,4160.05,0.0,0.0,4160.05,0.0,1803.94,329.54,2133.48,6293.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,201,79722.01,1091.49,2363.0,83176.5,16918.96,12424.51,6826.97,36170.44,119346.94 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,44454,125815.08,0.0,0.0,125815.08,25320.89,12424.5,9860.36,47605.75,173420.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,38357,88831.0,20539.75,11821.84,121192.59,20108.17,12424.5,9756.45,42289.12,163481.71 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,11041,143188.03,0.0,0.0,143188.03,28816.78,12424.5,10358.18,51599.46,194787.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,31740,97934.03,0.0,624.0,98558.03,20309.93,12424.5,8168.41,40902.84,139460.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17155,41464.05,0.0,126.16,41590.21,406.62,3124.04,1251.37,4782.03,46372.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,27095,113223.01,3705.2,18879.4,135807.61,25079.51,15196.12,2312.78,42588.41,178396.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42015,68330.35,9019.13,2235.42,79584.9,19346.06,13462.37,6239.08,39047.51,118632.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,2247,84599.04,0.0,600.0,85199.04,17548.1,12424.51,7141.9,37114.51,122313.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1662,Patient Accounts Asst Sprv,32358,76728.0,0.0,624.0,77352.0,15942.8,12424.5,6337.23,34704.53,112056.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,39140,62438.28,28745.48,2074.03,93257.79,13097.75,12418.35,7573.85,33089.95,126347.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,14269,68394.04,10455.49,4737.81,83587.34,14888.24,12424.5,6623.0,33935.74,117523.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8159,Child Support Officer III,10975,52618.45,0.0,0.0,52618.45,11050.48,7017.16,4518.78,22586.42,75204.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2522,Senior Morgue Attendant,28883,75199.02,0.0,0.0,75199.02,15498.63,12424.5,5551.75,33474.88,108673.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,17224,49041.9,2316.95,2308.05,53666.9,10607.4,8710.17,4240.97,23558.54,77225.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24244,7009.96,0.0,0.0,7009.96,0.0,2990.84,560.38,3551.22,10561.18 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,28716,65144.04,0.0,0.0,65144.04,14282.33,10990.91,5162.96,30436.2,95580.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,48013,36225.0,0.0,0.0,36225.0,6741.45,4778.65,2929.18,14449.28,50674.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator, Taxi And Accessible Servic",49875,4527.0,0.0,0.0,4527.0,842.47,716.79,348.17,1907.43,6434.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,15876,41141.8,0.0,0.0,41141.8,7927.89,7120.2,3174.89,18222.98,59364.78 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,16646,58863.02,0.0,0.0,58863.02,11660.12,8601.58,4683.14,24944.84,83807.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,10658,62527.49,0.0,0.0,62527.49,0.0,6260.04,4848.78,11108.82,73636.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,23423,78690.31,0.0,1498.6,80188.91,16541.05,12316.99,6648.55,35506.59,115695.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,39954,118724.08,0.0,0.0,118724.08,23887.47,12424.51,9511.35,45823.33,164547.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43573,7497.15,0.0,0.0,7497.15,0.0,3189.75,597.32,3787.07,11284.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4337,46864.38,824.7,3104.49,50793.57,0.0,4110.6,3938.37,8048.97,58842.54 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,12310,78893.65,0.0,1300.0,80193.65,16561.1,12161.68,6523.26,35246.04,115439.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,33823,133488.78,0.0,0.0,133488.78,26903.19,12251.74,10094.91,49249.84,182738.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1610,24197.84,0.0,1860.41,26058.25,0.0,0.0,2061.25,2061.25,28119.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,44790,19067.3,0.0,0.0,19067.3,3548.4,2532.69,2760.69,8841.78,27909.08 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45637,184289.01,0.0,5185.78,189474.79,38130.64,12424.5,11001.88,61557.02,251031.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29749,10545.6,0.0,0.0,10545.6,198.38,4572.93,846.32,5617.63,16163.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,33635,79395.12,0.0,2164.0,81559.12,16804.45,12424.51,6700.67,35929.63,117488.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,16644,4110.0,2189.86,98.97,6398.83,770.74,477.86,107.51,1356.11,7754.94 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,15835,66759.09,12528.61,8303.08,87590.78,14853.48,12212.45,7137.43,34203.36,121794.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,7516,65687.27,337.44,0.0,66024.71,13509.75,12424.5,5325.39,31259.64,97284.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,51308,228636.01,5322.5,10529.31,244487.82,48044.12,11182.06,11902.15,71128.33,315616.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,25657,56120.01,0.0,0.0,56120.01,12556.8,12424.5,4313.19,29294.49,85414.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,8243,72663.18,0.0,1663.7,74326.88,15314.96,12418.52,5906.92,33640.4,107967.28 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,17583,37603.1,0.0,141.61,37744.71,7040.99,3942.4,3240.31,14223.7,51968.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29712,26865.3,0.0,0.0,26865.3,5071.4,4109.64,2072.19,11253.23,38118.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,25231,88482.54,20884.02,5591.94,114958.5,18087.56,9404.51,1918.19,29410.26,144368.76 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,20073,45726.0,7693.2,4096.45,57515.65,11588.33,12376.71,4724.81,28689.85,86205.5 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,11616,86230.06,0.0,0.0,86230.06,17401.71,10035.18,6781.89,34218.78,120448.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28935,13024.5,0.0,675.3,13699.8,0.0,4978.77,1062.24,6041.01,19740.81 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,15620,361.38,0.0,0.0,361.38,0.0,41.82,28.04,69.86,431.24 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,22053,55002.55,1247.19,4154.91,60404.65,13206.39,12142.74,4898.01,30247.14,90651.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,37539,52848.45,0.0,960.0,53808.45,12227.91,11105.01,4397.9,27730.82,81539.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11438,119797.25,0.0,1075.0,120872.25,24446.67,11560.35,6083.76,42090.78,162963.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,39364,117129.68,6417.2,6713.72,130260.6,23205.2,12424.49,2163.61,37793.3,168053.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12152,65630.96,0.0,12129.17,77760.13,0.0,0.0,1281.38,1281.38,79041.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,42185,99098.01,0.0,0.0,99098.01,20424.58,12424.5,7733.09,40582.17,139680.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17884,17518.82,0.0,2493.67,20012.49,9041.06,0.0,4143.53,13184.59,33197.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28533,59328.6,10266.08,4217.6,73812.28,17378.63,11685.78,5538.75,34603.16,108415.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,24986,116976.0,0.0,0.0,116976.0,23541.49,12424.52,9552.86,45518.87,162494.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,13288,123407.01,25646.08,15673.56,164726.65,27330.69,15100.55,2689.67,45120.91,209847.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,53182,147552.44,0.0,459.46,148011.9,29761.04,12424.54,10281.59,52467.17,200479.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17229,8162.86,0.0,921.15,9084.01,1089.5,603.3,1813.97,3506.77,12590.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22263,67380.72,9149.53,2635.52,79165.77,19183.32,13278.09,6138.87,38600.28,117766.05 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,28803,78700.57,0.0,2113.24,80813.81,16110.57,8732.51,6227.44,31070.52,111884.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40990,20795.06,13.78,629.5,21438.34,1414.14,8955.79,1662.09,12032.02,33470.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,10855,3950.1,0.0,106.54,4056.64,1046.61,907.95,343.03,2297.59,6354.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33744,69670.79,5070.81,4149.24,78890.84,14496.49,12322.72,6238.79,33058.0,111948.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,20033,81157.0,1163.26,775.0,83095.26,16874.18,12424.5,6810.2,36108.88,119204.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,26127,76300.7,0.0,0.0,76300.7,0.0,5973.32,5914.66,11887.98,88188.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37600,122790.73,3745.98,20558.23,147094.94,28176.22,11912.7,9828.55,49917.47,197012.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,11446,1772.54,0.0,19.42,1791.96,0.0,828.79,139.05,967.84,2759.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18506,6544.58,0.0,0.0,6544.58,0.0,0.0,517.26,517.26,7061.84 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1767,Media Programming Spec,17488,14030.0,0.0,286.24,14316.24,2664.25,2389.33,1278.7,6332.28,20648.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19318,56531.0,3944.56,1132.59,61608.15,11884.99,12424.5,4837.7,29147.19,90755.34 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,14055,8631.59,0.0,0.0,8631.59,0.0,2390.82,669.94,3060.76,11692.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5195,7915.24,300.23,563.77,8779.24,2042.85,1574.09,637.08,4254.02,13033.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,22828,67455.02,0.0,0.0,67455.02,13888.41,12282.87,5356.84,31528.12,98983.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,14731,61708.17,838.24,1168.42,63714.83,12932.73,12206.54,5008.97,30148.24,93863.07 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,14030,8392.7,0.0,8.39,8401.09,0.0,1911.46,651.9,2563.36,10964.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,49637,35720.66,303.3,0.0,36023.96,8904.86,8441.97,2934.79,20281.62,56305.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,41255,51040.25,0.0,3010.86,54051.11,12392.73,12335.79,4471.86,29200.38,83251.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18864,47053.1,0.0,7423.3,54476.4,12327.84,12424.5,4356.71,29109.05,83585.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,41491,118104.05,0.0,0.0,118104.05,23768.42,12424.5,9601.79,45794.71,163898.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,9767,14794.9,410.29,5418.49,20623.68,3395.85,2819.39,1622.76,7838.0,28461.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,10954,79722.0,1062.11,2335.25,83119.36,16905.24,12424.5,6659.57,35989.31,119108.67 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,28366,9074.8,0.0,0.0,9074.8,2341.3,1911.46,723.64,4976.4,14051.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,8219,12335.81,0.0,0.0,12335.81,0.0,3082.22,956.28,4038.5,16374.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,34702,82287.12,0.0,1436.31,83723.43,17219.15,12346.85,6808.41,36374.41,120097.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12572,51412.68,2916.39,8352.38,62681.45,1735.75,4369.48,4026.72,10131.95,72813.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,34740,54861.8,26697.01,13525.26,95084.07,14075.95,12424.5,7336.8,33837.25,128921.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12005,98.0,0.0,0.0,98.0,0.0,47.79,7.58,55.37,153.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33494,64721.97,13330.76,5310.96,83363.69,19138.17,12751.54,6509.41,38399.12,121762.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,53181,62640.01,0.0,1400.0,64040.01,13153.57,12424.5,5180.19,30758.26,94798.27 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,4420,78963.08,0.0,624.0,79587.08,16403.16,12424.5,6575.62,35403.28,114990.36 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,6209,78013.84,0.0,3900.7,81914.54,17306.12,4733.85,6546.79,28586.76,110501.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25439,33585.19,0.0,5147.55,38732.74,8204.0,4157.43,96.66,12458.09,51190.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,15203,82619.65,0.0,0.0,82619.65,16991.02,12424.5,6640.52,36056.04,118675.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8338,119467.44,52329.08,11115.85,182912.37,24090.21,12424.5,3073.19,39587.9,222500.27 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,36983,191926.01,0.0,840.0,192766.01,38793.66,12424.5,11033.39,62251.55,255017.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22968,6536.39,0.0,261.54,6797.93,1786.17,1281.58,455.03,3522.78,10320.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39346,96655.47,11753.42,14552.88,122961.77,26923.06,12282.63,1436.96,40642.65,163604.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,19513,13884.25,0.0,0.0,13884.25,2506.98,4199.24,1116.11,7822.33,21706.58 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",4100,Property Administration,4119,Events & Facilities Specialist,45841,79571.13,0.0,46.2,79617.33,16347.54,11854.59,6467.59,34669.72,114287.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,44597,91331.01,0.0,0.0,91331.01,18823.67,12424.5,7461.18,38709.35,130040.36 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,35920,40911.0,4137.64,5929.64,50978.28,10788.23,12424.5,4111.41,27324.14,78302.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,20608,8768.98,0.0,61.31,8830.29,0.0,3179.3,684.39,3863.69,12693.98 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,558,66731.0,0.0,0.0,66731.0,13753.7,12424.5,5157.08,31335.28,98066.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,20990,25202.2,0.0,610.35,25812.55,6191.87,6224.2,2135.54,14551.61,40364.16 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,23280,12180.6,579.49,3000.0,15760.09,2678.52,3201.7,1279.0,7159.22,22919.31 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),20843,169220.25,0.0,1562.5,170782.75,34329.31,12424.5,10731.8,57485.61,228268.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38089,13550.83,0.0,236.37,13787.2,0.0,3351.04,1069.17,4420.21,18207.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,24409,257928.62,4198.3,17838.16,279965.08,55013.51,12352.82,12508.68,79875.01,359840.09 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,38539,15794.87,0.0,0.0,15794.87,0.0,5868.78,1268.55,7137.33,22932.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33252,56163.3,369.25,1484.31,58016.86,10885.46,8601.58,3950.36,23437.4,81454.26 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,50856,33254.46,0.0,0.0,33254.46,0.0,3954.34,2576.05,6530.39,39784.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,26094,74664.7,0.0,2703.96,77368.66,15875.78,12424.5,6338.52,34638.8,112007.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,8985,30495.03,0.0,650.36,31145.39,6965.65,4778.65,2383.32,14127.62,45273.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,13314,91223.18,0.0,4521.8,95744.98,19231.46,6240.63,7849.53,33321.62,129066.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33977,6347.43,0.0,2404.93,8752.36,2875.0,480.56,1861.88,5217.44,13969.8 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,31224,101047.02,0.0,5155.53,106202.55,21890.42,12424.5,8415.9,42730.82,148933.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19292,4789.26,0.0,18.03,4807.29,0.0,1815.88,373.12,2189.0,6996.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,44645,111632.04,4617.12,25112.2,141361.36,25468.82,11799.99,10139.9,47408.71,188770.07 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,12779,43081.0,0.0,0.0,43081.0,8989.52,8601.55,3375.95,20967.02,64048.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,51902,59020.0,54.71,486.44,59561.15,12605.39,9685.26,4992.53,27283.18,86844.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23731,11267.98,0.0,0.0,11267.98,1592.17,4886.17,902.25,7380.59,18648.57 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,33327,1938.0,696.47,242.25,2876.72,0.0,573.44,223.28,796.72,3673.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23128,62317.39,8062.31,555.42,70935.12,17172.7,12275.54,5271.43,34719.67,105654.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26791,4895.0,0.0,0.0,4895.0,-0.08,477.86,-0.03,477.75,5372.75 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,3295,54525.83,0.0,0.0,54525.83,12097.72,12042.2,4441.89,28581.81,83107.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,35037,79836.02,0.0,0.0,79836.02,14636.1,6212.25,13726.2,34574.55,114410.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,4966,130018.72,0.0,0.0,130018.72,26106.07,12424.49,9932.22,48462.78,178481.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30633,57252.92,0.0,3095.35,60348.27,11690.69,10118.8,4310.97,26120.46,86468.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21872,220.4,0.0,0.0,220.4,0.0,95.58,17.06,112.64,333.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,53153,0.0,0.0,875.13,875.13,0.0,68.5,66.95,135.45,1010.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14414,5253.95,0.0,258.27,5512.22,1938.84,0.0,2163.22,4102.06,9614.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2900,80957.66,2700.9,6360.37,90018.93,16746.17,12424.5,1688.32,30858.99,120877.92 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,46464,119807.02,0.0,5336.0,125143.02,24159.66,12254.2,32238.57,68652.43,193795.45 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,52398,43531.59,0.0,850.0,44381.59,9814.16,9613.46,3433.33,22860.95,67242.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,52553,81304.0,1427.4,2836.68,85568.08,17293.48,12424.5,6871.12,36589.1,122157.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,24575,10273.21,0.0,0.0,10273.21,2304.28,1883.09,828.56,5015.93,15289.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18731,70194.66,869.94,7442.14,78506.74,16823.73,12415.54,6167.18,35406.45,113913.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,3649,82717.06,6062.81,0.0,88779.87,17060.56,12424.49,7221.7,36706.75,125486.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,23246,49795.81,0.0,0.0,49795.81,11936.66,12424.5,3350.71,27711.87,77507.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1771,Media Production Specialist,21110,7409.96,0.0,0.0,7409.96,0.0,1508.27,575.14,2083.41,9493.37 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,36713,84354.22,1692.33,3101.95,89148.5,17398.67,12328.92,6986.33,36713.92,125862.42 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,24530,63812.4,0.0,1559.24,65371.64,13518.56,11791.92,5742.99,31053.47,96425.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26462,113233.61,49488.74,16316.47,179038.82,24474.74,15196.12,2905.75,42576.61,221615.43 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2566,Rehabilitation Counselor,2663,73735.11,0.0,0.0,73735.11,15122.81,11791.33,6026.17,32940.31,106675.42 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,47473,104185.8,0.0,20494.98,124680.78,5716.65,8888.29,9470.14,24075.08,148755.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11309,936.7,0.0,875.13,1811.83,241.67,406.19,146.93,794.79,2606.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,41811,193929.03,0.0,0.0,193929.03,39029.2,12424.5,28587.16,80040.86,273969.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18468,68450.46,10067.57,2698.51,81216.54,19497.8,13487.4,6216.83,39202.03,120418.57 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1492,"Asst Clk, Board Of Supervisors",30718,101531.01,1652.16,0.0,103183.17,20926.02,12424.5,8416.08,41766.6,144949.77 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4331,Security Analyst,11807,39020.5,0.0,0.0,39020.5,7261.71,5017.58,3123.49,15402.78,54423.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,2256,8055.6,0.0,0.0,8055.6,0.0,2007.04,623.67,2630.71,10686.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11699,68834.61,18621.18,5729.73,93185.52,20427.5,13566.48,7071.55,41065.53,134251.05 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,14190,59343.85,0.0,2520.52,61864.37,12423.53,0.0,4904.94,17328.47,79192.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,8551,39748.73,172.73,8.92,39930.38,7884.45,8440.3,3102.39,19427.14,59357.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,22251,66102.0,663.34,963.27,67728.61,14813.16,12424.5,5485.46,32723.12,100451.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,11866,145200.06,0.0,0.0,145200.06,29221.73,12424.5,10185.47,51831.7,197031.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13506,65166.06,25981.59,1865.07,93012.72,18345.8,12840.02,7222.89,38408.71,131421.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30570,102762.79,18833.0,13913.25,135509.04,23259.21,15196.11,2261.07,40716.39,176225.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,20742,5048.12,0.0,0.0,5048.12,0.0,1820.37,391.52,2211.89,7260.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9868,102379.81,0.0,59.27,102439.08,0.0,8798.93,1717.13,10516.06,112955.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51575,54766.38,6170.4,1150.34,62087.12,14501.85,13026.25,4518.07,32046.17,94133.29 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,48734,3068.5,1014.42,242.25,4325.17,0.0,907.95,335.7,1243.65,5568.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,352.0,Municipal Executive Association - Fire,0900,Management,0150,Dep Chf Of Dept (Fire Dept),22230,261958.02,0.0,26884.8,288842.82,56616.89,12424.5,13578.11,82619.5,371462.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,38600,60145.96,179.03,901.59,61226.58,12558.52,11977.45,5058.73,29594.7,90821.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1246,Principal Personnel Analyst,11190,126490.05,0.0,0.0,126490.05,25456.42,12424.5,9921.72,47802.64,174292.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",25762,93738.0,3130.4,2374.59,99242.99,19809.84,12424.5,8170.37,40404.71,139647.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,44451,49361.1,0.0,1187.92,50549.02,10146.65,2344.53,3919.21,16410.39,66959.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18302,51007.5,144.4,6571.38,57723.28,10276.76,5376.0,4643.16,20295.92,78019.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,42549,95241.63,0.0,7188.68,102430.31,24886.17,12113.46,929.85,37929.48,140359.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50944,15257.34,42.56,469.49,15769.39,3947.17,6451.18,1260.48,11658.83,27428.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,9782,12578.28,0.0,0.0,12578.28,0.0,3043.41,974.58,4017.99,16596.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4473,47710.38,7932.18,3178.1,58820.66,14318.43,9488.08,5216.68,29023.19,87843.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,46821,75601.31,0.0,594.0,76195.31,15789.57,11827.18,6212.78,33829.53,110024.84 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,480,41745.34,0.0,14107.26,55852.6,9558.45,6546.76,4557.56,20662.77,76515.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44419,25404.26,0.0,16.84,25421.1,5455.63,5877.74,2041.09,13374.46,38795.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7441,113233.59,81417.63,19174.69,213825.91,25036.02,15196.12,3650.69,43882.83,257708.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,44379,80257.22,13143.02,9432.99,102833.23,17457.94,12490.21,1716.51,31664.66,134497.89 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,38732,80252.29,92.22,1467.02,81811.53,16945.01,11688.11,6799.73,35432.85,117244.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,17645,63887.0,1204.22,886.31,65977.53,13354.7,12424.5,5346.82,31126.02,97103.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,51251,112776.0,1880.63,6175.96,120832.59,23928.77,12424.5,9794.54,46147.81,166980.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31248,92499.1,37480.84,15548.59,145528.53,26323.68,11747.73,2426.67,40498.08,186026.61 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50659,97774.19,49016.31,10249.27,157039.77,26269.04,12424.5,2669.41,41362.95,198402.72 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,49807,114720.01,0.0,11310.83,126030.84,23087.61,12424.51,9824.2,45336.32,171367.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,39044,108038.0,0.0,13207.8,121245.8,24164.11,12424.5,9684.2,46272.81,167518.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15347,112524.82,0.0,9677.25,122202.07,22571.82,11524.56,7357.98,41454.36,163656.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,39335,56531.0,325.57,4802.78,61659.35,12662.28,12424.5,5048.61,30135.39,91794.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2520,Morgue Attendant,24542,12196.12,0.0,0.0,12196.12,2204.98,0.0,1757.47,3962.45,16158.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,1516,81542.01,0.0,0.0,81542.01,16806.14,12424.5,6690.85,35921.49,117463.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,52489,49829.2,238.06,1891.94,51959.2,12330.96,12424.52,4154.3,28909.78,80868.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,31595,54883.0,5722.58,6054.2,66659.78,13800.7,12424.5,5331.57,31556.77,98216.55 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),40620,184289.03,0.0,5248.28,189537.31,38144.36,12424.5,10986.54,61555.4,251092.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45089,116432.34,1059.23,20877.48,138369.05,27069.76,11124.71,10053.03,48247.5,186616.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,13792,6345.0,0.0,0.0,6345.0,1423.17,1433.6,526.52,3383.29,9728.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,22748,56531.0,0.0,414.21,56945.21,11738.81,12424.5,4664.4,28827.71,85772.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47446,44000.29,10381.79,4346.9,58728.98,14010.05,8750.26,4359.69,27120.0,85848.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,17309,84644.04,9731.04,12087.15,106462.23,19257.28,12424.5,8671.81,40353.59,146815.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20891,144706.04,0.0,1450.0,146156.04,29361.72,12424.5,10154.22,51940.44,198096.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,42988,9249.88,0.0,67.44,9317.32,0.0,0.0,736.89,736.89,10054.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,39264,129629.04,0.0,0.0,129629.04,26037.97,12424.5,24934.45,63396.92,193025.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33063,1422.27,0.0,9.37,1431.64,0.0,616.75,110.84,727.59,2159.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,765,10851.6,0.0,7.03,10858.63,0.0,2938.87,841.41,3780.28,14638.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50650,66892.23,0.0,0.0,66892.23,0.0,5066.57,1384.27,6450.84,73343.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,37454,39869.13,0.0,1092.45,40961.58,9065.63,10641.47,3308.37,23015.47,63977.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",19381,1200.0,0.0,0.0,1200.0,0.0,0.0,94.92,94.92,1294.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7284,Utility Plumber Supervisor 2,31626,125004.02,32757.61,10329.09,168090.72,26504.48,12424.49,10602.03,49531.0,217621.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,12396,49679.0,0.0,624.0,50303.0,12065.33,12424.5,3916.72,28406.55,78709.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33935,975.15,0.0,32.51,1007.66,1070.07,71.62,414.81,1556.5,2564.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1483,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,17246,15368.96,0.0,0.0,15368.96,0.0,0.0,1215.71,1215.71,16584.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18663,56531.0,0.0,5949.88,62480.88,13341.44,12424.5,5059.82,30825.76,93306.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,38900,89712.02,0.0,0.0,89712.02,17709.07,9557.31,7200.97,34467.35,124179.37 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46615,28688.55,84.42,1377.07,30150.04,6886.37,7633.9,2430.38,16950.65,47100.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33610,68958.62,16564.23,5594.64,91117.49,20426.82,13587.87,6907.73,40922.42,132039.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,8672,82717.04,2398.19,702.17,85817.4,17110.88,12424.5,7061.57,36596.95,122414.35 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,6853,122710.45,0.0,0.0,122710.45,24768.35,11991.68,17108.0,53868.03,176578.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,4868,67894.82,0.0,1290.0,69184.82,14206.58,12421.51,5661.76,32289.85,101474.67 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),9113,119748.02,0.0,3582.46,123330.48,26141.04,8123.71,9723.54,43988.29,167318.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,6248,62811.0,0.0,1210.0,64021.0,13144.24,12424.5,5138.89,30707.63,94728.63 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,13686,75605.03,0.0,0.0,75605.03,15582.61,12424.5,6266.61,34273.72,109878.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31217,67279.57,19835.12,4000.92,91115.61,19531.22,13259.1,7079.47,39869.79,130985.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20799,22796.0,0.0,9083.49,31879.49,5001.44,1911.46,2553.85,9466.75,41346.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,13183,15742.99,0.0,177.86,15920.85,2962.87,3345.06,1304.12,7612.05,23532.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,46762,19664.11,0.0,0.0,19664.11,4410.69,4360.47,1567.81,10338.97,30003.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,42416,75927.0,23014.81,0.0,98941.81,15648.74,12424.5,8040.65,36113.89,135055.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4239,120033.26,1993.21,8706.56,130733.03,24237.51,12484.23,2224.95,38946.69,169679.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29884,68184.09,41101.08,5457.14,114742.31,20183.59,13435.32,8962.31,42581.22,157323.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,10739,127554.23,0.0,0.0,127554.23,25650.53,12424.51,17146.06,55221.1,182775.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43226,118124.6,0.0,11265.97,129390.57,26657.5,9844.03,4441.36,40942.89,170333.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,12577,169080.0,0.0,0.0,169080.0,34052.15,12185.57,17941.35,64179.07,233259.07 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,16735,61735.0,0.0,3073.36,64808.36,13358.06,12424.5,5362.96,31145.52,95953.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14569,113233.58,19585.56,18214.02,151033.16,25036.01,15196.12,2572.9,42805.03,193838.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10987,13697.02,0.0,19.32,13716.34,0.0,5254.31,1063.39,6317.7,20034.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50762,55058.1,254.22,4473.52,59785.84,13787.52,12424.5,4593.08,30805.1,90590.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27925,4242.7,0.0,129.97,4372.67,0.0,1839.78,346.0,2185.78,6558.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,32515,98157.0,0.0,0.0,98157.0,20230.58,12424.5,8028.49,40683.57,138840.57 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,8261,7253.02,0.0,54.77,7307.79,1606.99,2150.39,586.29,4343.67,11651.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,46075,54124.0,116.38,645.6,54885.98,11286.45,12424.51,4417.08,28128.04,83014.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,2868,51405.0,7599.78,3275.52,62280.3,12404.84,12424.5,5122.54,29951.88,92232.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34774,0.0,0.0,1174.46,1174.46,0.0,68.5,89.85,158.35,1332.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,22827,98670.23,0.0,0.0,98670.23,20370.57,12197.51,8065.0,40633.08,139303.31 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,23842,72153.03,620.55,2495.55,75269.13,14892.12,12424.51,6115.82,33432.45,108701.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,11439,145200.13,0.0,0.0,145200.13,29221.73,12424.51,10266.31,51912.55,197112.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31516,1886.5,0.0,0.0,1886.5,0.0,919.89,146.28,1066.17,2952.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,12218,103283.01,0.0,2968.37,106251.38,21893.85,12424.5,8660.93,42979.28,149230.66 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,50184,75094.0,0.0,0.0,75094.0,15688.3,10990.9,6053.71,32732.91,107826.91 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,32899,97424.0,52.37,2240.0,99716.37,20539.97,12424.5,8176.56,41141.03,140857.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,34068,82617.59,0.0,0.0,82617.59,4816.97,9079.45,12620.38,26516.8,109134.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,715,49679.0,0.0,5546.18,55225.18,12790.49,12424.5,4557.96,29772.95,84998.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37887,55751.59,2244.92,1038.08,59034.59,15435.1,10966.53,4451.1,30852.73,89887.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,6402,143188.03,0.0,16360.77,159548.8,28816.77,12424.5,10530.64,51771.91,211320.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,36451,14220.0,0.0,0.0,14220.0,3668.76,4300.79,1174.57,9144.12,23364.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,28288,1610.9,0.0,90.76,1701.66,329.4,353.45,146.83,829.68,2531.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,28288,24117.86,368.29,490.69,24976.84,4579.65,5256.52,2031.32,11867.49,36844.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33906,2631.63,0.0,0.0,2631.63,0.0,1105.06,212.0,1317.06,3948.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,5560,112209.01,0.0,0.0,112209.01,22582.31,12424.5,8751.18,43757.99,155967.0 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,20087,126438.8,0.0,0.0,126438.8,25770.44,12424.5,17154.32,55349.26,181788.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,24304,66580.0,11817.64,3401.21,81798.85,13824.67,12424.5,6452.83,32702.0,114500.85 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,23502,113852.0,0.0,624.0,114476.0,23038.59,12424.51,9396.57,44859.67,159335.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,31910,38736.97,0.0,343.94,39080.91,9345.7,9318.38,3125.68,21789.76,60870.67 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,27223,77688.44,0.0,1210.0,78898.44,16698.13,8993.37,6117.58,31809.08,110707.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33242,67883.12,38566.81,5147.81,111597.74,20018.76,13375.58,8636.51,42030.85,153628.59 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,31678,5721.31,0.0,0.0,5721.31,0.0,1714.34,444.07,2158.41,7879.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19733,83367.99,0.0,8122.1,91490.09,6850.99,8138.65,7905.33,22894.97,114385.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,40742,38649.38,0.0,0.0,38649.38,7192.66,4638.28,2944.59,14775.53,53424.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,22958,47308.82,0.0,0.0,47308.82,9433.13,7481.58,3787.69,20702.4,68011.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,22739,14134.99,0.0,11163.12,25298.11,3170.49,2389.33,2033.49,7593.31,32891.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,39278,42482.42,0.0,0.0,42482.42,10181.09,12424.5,3409.56,26015.15,68497.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2419,16448.82,0.0,0.0,16448.82,0.0,1442.56,1274.99,2717.55,19166.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,30781,10407.67,0.0,0.0,10407.67,0.0,3147.76,806.17,3953.93,14361.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,14831,54688.33,0.0,0.0,54688.33,12221.66,6690.11,4402.6,23314.37,78002.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43678,49511.69,0.0,0.0,49511.69,10078.56,10967.01,3975.39,25020.96,74532.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,50745,116976.07,0.0,1611.9,118587.97,23861.0,12424.49,9745.89,46031.38,164619.35 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,47113,133225.59,0.0,0.0,133225.59,26752.77,12424.51,24965.59,64142.87,197368.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30502,14504.18,0.0,0.0,14504.18,3734.51,6106.64,1140.23,10981.38,25485.56 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,28022,126002.93,0.0,0.0,126002.93,25357.5,12424.5,24778.74,62560.74,188563.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,6422,78204.02,0.0,624.0,78828.02,16246.79,12424.5,6284.47,34955.76,113783.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,28199,54124.02,0.0,1090.38,55214.4,12355.66,12424.5,4565.29,29345.45,84559.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,31050,117135.38,20394.04,851.78,138381.2,23184.69,12424.5,2310.63,37919.82,176301.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",42715,850.0,0.0,0.0,850.0,0.0,101.55,65.93,167.48,1017.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24460,39660.99,6131.56,1269.16,47061.71,10619.96,12402.09,3528.66,26550.71,73612.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,32380,74165.02,0.0,0.0,74165.02,15285.76,12424.5,5899.9,33610.16,107775.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,32389,14718.01,1120.72,300.54,16139.27,2739.01,2867.19,1282.54,6888.74,23028.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,37024,68067.07,0.0,624.0,68691.07,14157.66,12424.5,5402.02,31984.18,100675.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,7714,62545.0,14709.12,8736.36,85990.48,13738.27,9557.32,6457.43,29753.02,115743.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,12990,47104.17,619.8,2973.97,50697.94,11429.73,11334.37,4098.95,26863.05,77560.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,49135,43640.95,0.0,250.0,43890.95,5172.45,9273.58,3320.03,17766.06,61657.01 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,9574,138251.05,0.0,0.0,138251.05,27788.97,12396.73,18423.47,58609.17,196860.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,23741,68074.4,1207.01,0.0,69281.41,14010.54,12424.5,5631.56,32066.6,101348.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21283,132951.12,205.95,26760.81,159917.88,36353.74,11079.37,3249.06,50682.17,210600.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,15131,86548.46,0.0,0.0,86548.46,16982.8,9079.44,6614.32,32676.56,119225.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",35246,11138.86,0.0,0.0,11138.86,1106.81,2652.15,874.62,4633.58,15772.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,38720,117135.34,4060.65,2708.3,123904.29,23184.69,12424.5,2084.71,37693.9,161598.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,45439,0.0,0.0,7414.85,7414.85,0.0,0.0,652.88,652.88,8067.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17097,7517.44,433.45,30.91,7981.8,1783.8,2265.86,612.47,4662.13,12643.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,21417,84685.83,33015.89,13426.15,131127.87,19331.11,12430.48,9864.87,41626.46,172754.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,49374,3401.25,0.0,7.26,3408.51,0.0,896.0,264.55,1160.55,4569.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,3699,165895.9,10912.09,7205.93,184013.92,32852.93,12364.77,3039.59,48257.29,232271.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2553,56104.91,3761.71,2300.1,62166.72,11577.19,12330.42,5088.75,28996.36,91163.08 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38718,97753.85,49422.04,19110.86,166286.75,28367.23,12423.01,2788.86,43579.1,209865.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,38170,51405.0,14135.27,4135.4,69675.67,12489.08,12424.5,5707.57,30621.15,100296.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32082,113223.01,52704.54,23363.58,189291.13,24980.95,15196.12,3227.4,43404.47,232695.6 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,9754,72699.06,0.0,1035.28,73734.34,15201.31,12424.5,5689.2,33315.01,107049.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31543,97763.74,729.43,7724.98,106218.15,25657.07,12424.5,1806.52,39888.09,146106.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35321,16119.01,819.88,1250.98,18189.87,0.0,5256.52,1459.71,6716.23,24906.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,41208,75811.5,10398.77,40.0,86250.27,15616.99,12275.18,7737.49,35629.66,121879.93 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,24926,92026.12,0.0,0.0,92026.12,18971.9,12390.94,7590.3,38953.14,130979.26 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,39546,40613.0,0.0,0.0,40613.0,8474.45,8601.58,3424.56,20500.59,61113.59 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",50520,19985.0,0.0,3000.0,22985.0,0.0,3345.06,1863.95,5209.01,28194.01 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),20858,35464.0,0.0,6699.09,42163.09,7945.36,3822.92,3362.72,15131.0,57294.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7319,Electric Motor Repairer,16324,12936.0,2910.6,485.1,16331.7,2901.56,1911.46,1314.28,6127.3,22459.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2221,66969.42,1385.28,6106.92,74461.62,12747.06,7081.96,5677.76,25506.78,99968.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,8948,0.0,0.0,0.0,0.0,0.0,0.0,10.79,10.79,10.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,39820,101531.01,4835.65,6589.8,112956.46,21842.65,12424.51,9252.29,43519.45,156475.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,14136,12721.51,0.0,240.0,12961.51,2715.62,2849.1,1020.56,6585.28,19546.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,25577,102019.03,0.0,0.0,102019.03,21026.26,12424.5,8382.67,41833.43,143852.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41881,46936.2,0.0,6896.13,53832.33,12277.1,12424.5,4351.69,29053.29,82885.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,13707,84519.15,0.0,0.0,84519.15,17400.07,12418.53,6631.82,36450.42,120969.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38025,12175.63,0.0,88.94,12264.57,0.0,4031.99,951.57,4983.56,17248.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25,25969.09,0.0,4976.95,30946.04,-0.01,0.0,3598.28,3598.27,34544.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24102,12174.94,524.1,88.47,12787.51,2961.6,3762.71,976.73,7701.04,20488.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,8005,75157.31,0.0,528.0,75685.31,15615.53,12424.5,6276.68,34316.71,110002.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,49081,3257.46,0.0,4.35,3261.81,729.89,0.0,238.59,968.48,4230.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10263,11422.63,39.2,310.26,11772.09,3352.2,2271.6,877.62,6501.42,18273.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,2598,65145.03,53593.2,5731.41,124469.64,13958.23,12424.52,9724.31,36107.06,160576.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,40664,69904.81,3285.56,0.0,73190.37,14407.77,12424.5,5761.98,32594.25,105784.62 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25944,97972.88,10219.05,16450.78,124642.71,21718.42,15196.11,2120.76,39035.29,163678.0 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,45769,112776.01,23487.49,19852.15,156115.65,22808.08,12424.5,10352.19,45584.77,201700.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25060,4984.27,2.4,6610.93,11597.6,1145.02,808.49,924.7,2878.21,14475.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51212,3705.63,0.0,0.0,3705.63,0.0,1806.92,287.45,2094.37,5800.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,10934,186955.0,0.0,250.0,187205.0,37620.98,12424.5,10858.23,60903.71,248108.71 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,45150,72699.04,0.0,2602.85,75301.89,15516.61,12424.5,6148.24,34089.35,109391.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,46221,129949.51,0.0,0.0,129949.51,26197.42,11928.73,10023.18,48149.33,178098.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24468,77071.04,0.0,624.0,77695.04,16013.39,12424.5,6149.45,34587.34,112282.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12190,55865.46,0.0,6567.22,62432.68,13325.39,0.0,6874.18,20199.57,82632.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,669,36400.0,0.0,0.0,36400.0,7381.88,7167.97,3002.52,17552.37,53952.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,16097,19161.6,0.0,0.0,19161.6,0.0,2102.61,1485.9,3588.51,22750.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9770,Community Development Asst,45977,60736.25,0.0,0.0,60736.25,12499.88,12424.51,4932.21,29856.6,90592.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,30946,81942.0,23822.74,2720.74,108485.48,17451.12,12424.55,8687.07,38562.74,147048.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,17535,84599.06,0.0,624.0,85223.06,17565.03,12424.5,6972.25,36961.78,122184.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46625,796.6,0.0,0.0,796.6,0.0,334.51,61.83,396.34,1192.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,45072,56380.01,0.0,0.0,56380.01,12615.07,12424.49,4476.87,29516.43,85896.44 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,3351,142191.23,1224.59,16001.15,159416.97,28636.05,12337.47,10483.21,51456.73,210873.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,40913,93281.01,0.0,624.0,93905.01,19354.57,12424.5,7787.82,39566.89,133471.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30211,44380.4,0.0,3949.1,48329.5,4076.6,0.0,5842.91,9919.51,58249.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,3394,84644.0,16913.08,5902.04,107459.12,17560.17,12424.5,8404.61,38389.28,145848.4 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,1950,4072.9,0.0,0.0,4072.9,0.0,516.69,316.13,832.82,4905.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,29209,66102.03,0.0,1506.02,67608.05,13907.07,12424.5,5572.11,31903.68,99511.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43507,77856.3,4333.05,3643.54,85832.89,15750.04,11946.64,4430.05,32126.73,117959.62 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,49358,105218.29,0.0,0.0,105218.29,21140.04,10595.48,16767.12,48502.64,153720.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3435,Urban Forestry Inspector,32372,57206.6,0.0,0.0,57206.6,4759.89,11851.05,4531.46,21142.4,78349.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,8709,65027.76,0.0,0.0,65027.76,13386.56,12304.2,5261.73,30952.49,95980.25 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,45969,9582.07,0.0,0.0,9582.07,0.0,3557.11,776.24,4333.35,13915.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,43260,43445.19,861.38,938.48,45245.05,9624.71,7292.65,3803.87,20721.23,65966.28 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,22931,87179.88,0.0,0.0,87179.88,17484.51,9670.8,7099.42,34254.73,121434.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,92,78604.02,0.0,0.0,78604.02,15862.55,10035.19,6160.01,32057.75,110661.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,38549,56087.61,8838.39,925.0,65851.0,10980.76,7120.2,5134.12,23235.08,89086.08 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,47024,56779.0,0.0,0.0,56779.0,10293.99,3345.06,1014.46,14653.51,71432.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21281,39809.92,4612.21,997.97,45420.1,10580.81,12445.12,3195.61,26221.54,71641.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,52460,82631.62,0.0,0.0,82631.62,17005.65,12424.5,6622.72,36052.87,118684.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,32402,82406.7,437.06,0.0,82843.76,16950.49,12376.71,6578.72,35905.92,118749.68 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,8754,5880.0,0.0,0.0,5880.0,0.0,0.0,465.05,465.05,6345.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45558,56163.3,2.45,1528.33,57694.08,10885.46,8601.58,3797.68,23284.72,80978.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,4849,33843.16,0.0,1542.29,35385.45,7642.11,4535.19,2935.17,15112.47,50497.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,35893,102367.55,3890.56,2047.33,108305.44,21225.65,11293.52,8652.33,41171.5,149476.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46953,1441.75,0.0,250.0,1691.75,323.38,286.72,107.95,718.05,2409.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,34407,60191.01,0.0,623.41,60814.42,12535.42,12412.68,5041.26,29989.36,90803.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10939,97764.74,10327.07,5979.81,114071.62,24518.91,12424.5,1942.35,38885.76,152957.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,8734,16119.0,0.0,0.0,16119.0,0.0,5256.52,1298.98,6555.5,22674.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,25728,79600.01,0.0,0.0,79600.01,15628.54,9079.44,6365.05,31073.03,110673.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,732,24280.23,233.44,0.0,24513.67,6180.49,6989.56,1962.12,15132.17,39645.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22018,55.1,0.0,0.0,55.1,0.0,23.89,4.36,28.25,83.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,26407,55413.52,39.26,0.0,55452.78,8120.5,12424.49,4423.6,24968.59,80421.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40995,63544.64,18457.1,3042.51,85044.25,18181.55,12514.76,6640.83,37337.14,122381.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",43498,915.0,0.0,0.0,915.0,0.0,109.32,70.94,180.26,1095.26 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,49959,58215.63,256.28,5011.14,63483.05,12725.43,11458.56,5163.54,29347.53,92830.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,22984,47594.2,0.0,0.0,47594.2,11400.29,12424.5,3868.43,27693.22,75287.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24324,124462.43,0.0,250.0,124712.43,25042.79,12340.88,9787.63,47171.3,171883.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,35556,19483.4,0.0,47.93,19531.33,214.92,2914.98,1512.11,4642.01,24173.34 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,24296,106116.02,0.0,0.0,106116.02,21870.85,12424.5,8727.06,43022.41,149138.43 +Calendar,2015,1,Public Protection,PDR,Public Defender,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,17587,133418.25,0.0,0.0,133418.25,26845.91,12424.5,17303.78,56574.19,189992.44 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,43769,85004.0,5398.65,0.5,90403.15,17519.71,12424.5,7264.26,37208.47,127611.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,48716,4078.39,0.0,0.0,4078.39,1052.23,1233.49,341.97,2627.69,6706.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4412,7321.43,0.0,0.0,7321.43,0.0,3174.82,566.83,3741.65,11063.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18202,10080.5,0.0,1450.21,11530.71,4302.71,785.37,2168.07,7256.15,18786.86 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,49684,48169.07,0.0,94.23,48263.3,10804.3,5648.67,3820.87,20273.84,68537.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,43116,122272.69,0.0,0.0,122272.69,24312.33,10417.46,11471.2,46200.99,168473.68 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,42931,40793.47,11297.82,2165.3,54256.59,9905.48,12417.81,4360.94,26684.23,80940.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,49320,122729.62,543.98,5624.27,128897.87,24872.47,8902.39,9850.69,43625.55,172523.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,1877,87713.05,0.0,0.0,87713.05,18078.18,12424.5,7200.7,37703.38,125416.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,9348,139693.34,2949.9,2894.36,145537.6,27571.93,12424.5,2458.95,42455.38,187992.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,24288,23681.09,0.0,0.0,23681.09,0.0,5632.84,1834.92,7467.76,31148.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,29587,11528.34,0.0,0.0,11528.34,0.0,3455.56,894.78,4350.34,15878.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),33343,11556.0,0.0,368.68,11924.68,2091.56,955.73,203.72,3251.01,15175.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33887,34540.28,0.0,6601.38,41141.66,0.0,2944.73,3188.2,6132.93,47274.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,41804,28303.96,0.0,0.0,28303.96,5131.53,3077.04,2231.25,10439.82,38743.78 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,33709,74867.04,0.0,624.0,75491.04,15559.21,12424.5,6176.05,34159.76,109650.8 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",43869,105082.02,0.0,0.0,105082.02,21657.95,12424.5,8635.73,42718.18,147800.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",22016,106642.81,16926.32,304.13,123873.26,21970.31,12424.5,9791.01,44185.82,168059.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,42065,79722.05,0.0,660.5,80382.55,16569.66,12424.49,6601.49,35595.64,115978.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,17233,11493.86,0.0,0.0,11493.86,0.0,3745.28,996.71,4741.99,16235.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,19082,70245.02,565.14,874.0,71684.16,14606.45,12424.5,5920.36,32951.31,104635.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24368,56531.0,0.0,4853.39,61384.39,12649.49,12424.5,5062.76,30136.75,91521.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,28788,124205.94,24818.65,5421.76,154446.35,24551.47,12424.5,2578.3,39554.27,194000.62 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),22860,166389.53,0.0,1500.0,167889.53,33772.27,12424.5,10579.72,56776.49,224666.02 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51386,51.6,0.0,0.0,51.6,11.35,0.0,4.02,15.37,66.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45732,3383.1,0.0,30.07,3413.17,0.0,1128.98,264.42,1393.4,4806.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),34754,9768.77,46.32,0.0,9815.09,0.0,2834.34,761.63,3595.97,13411.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28464,70245.0,5594.98,3736.15,79576.13,14627.15,12424.5,6293.12,33344.77,112920.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28286,9392.6,0.0,642.25,10034.85,2206.65,2478.93,786.06,5471.64,15506.49 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,49013,27347.75,0.0,3614.46,30962.21,6134.09,3661.65,2390.19,12185.93,43148.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,38772,74165.0,0.0,624.0,74789.0,15414.45,12424.5,6196.51,34035.46,108824.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21983,29920.41,3886.01,507.16,34313.58,7737.27,9323.81,2592.31,19653.39,53966.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,7472,86887.1,0.0,3186.06,90073.16,18426.98,11569.48,7384.71,37381.17,127454.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,28810,0.0,0.0,4463.73,4463.73,0.0,0.0,341.47,341.47,4805.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,21544,65452.02,0.0,624.0,66076.02,13618.71,12281.15,5432.88,31332.74,97408.76 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0884,Mayoral Staff IV,13490,20687.39,0.0,1242.4,21929.79,5337.32,5361.05,5259.28,15957.65,37887.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51056,1294.48,0.0,50.08,1344.56,0.0,543.57,104.37,647.94,1992.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,13040,91767.1,0.0,620.5,92387.6,19031.9,12354.73,7412.12,38798.75,131186.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,2357,44541.0,0.0,3000.0,47541.0,10646.51,11707.71,3911.26,26265.48,73806.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,28402,66102.01,16448.79,6277.75,88828.55,14718.82,12424.5,7028.85,34172.17,123000.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,33463,89011.03,9466.71,7590.0,106067.74,17531.92,10035.18,7551.81,35118.91,141186.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,30484,31007.5,0.0,0.0,31007.5,5948.25,6929.06,2494.24,15371.55,46379.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,1013,58469.18,0.0,120.0,58589.18,12013.67,11833.15,4708.27,28555.09,87144.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,27589,63887.02,0.0,8036.13,71923.15,14827.65,12424.5,5904.62,33156.77,105079.92 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,19126,74412.04,0.0,3624.0,78036.04,15474.51,12424.5,6482.7,34381.71,112417.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,26854,197202.12,0.0,0.0,197202.12,39686.85,12424.5,18292.87,70404.22,267606.34 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7368,Senior Comm Systems Technican,26860,130566.04,13144.6,0.0,143710.64,26276.86,12424.5,10131.08,48832.44,192543.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,40708,62223.75,0.0,793.81,63017.56,12955.41,12424.5,5080.46,30460.37,93477.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,46422,65589.61,6571.37,0.0,72160.98,13487.86,12424.51,5679.2,31591.57,103752.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,46916,104475.03,8665.85,9583.01,122723.89,22518.11,12012.04,9816.76,44346.91,167070.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5928,39379.63,4997.78,1184.26,45561.67,10476.09,7552.3,2841.3,20869.69,66431.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,25021,85004.01,3427.35,0.0,88431.36,17519.6,12424.5,7280.83,37224.93,125656.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,25220,62468.8,2541.76,3284.1,68294.66,13153.3,12424.51,5306.48,30884.29,99178.95 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,419,6617.05,0.0,0.0,6617.05,0.0,1355.95,525.01,1880.96,8498.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7232,Hh Mechanical Shop Sprv,21966,92459.01,10162.05,600.0,103221.06,19303.89,12424.5,8278.34,40006.73,143227.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20276,43477.67,569.9,7341.03,51388.6,10764.36,3645.64,4176.31,18586.31,69974.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,36562,118104.09,0.0,0.0,118104.09,23761.97,12424.5,9283.48,45469.95,163574.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,214,50078.62,0.0,4393.64,54472.26,0.0,4002.18,1371.29,5373.47,59845.73 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1827,Administrative Services Mgr,32181,88957.34,0.0,0.0,88957.34,18251.87,11842.41,7281.55,37375.83,126333.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51347,112170.35,38640.98,16372.01,167183.34,24779.33,15052.76,2848.93,42681.02,209864.36 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,15854,27494.46,0.0,0.0,27494.46,5116.73,4699.51,2158.26,11974.5,39468.96 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,46110,70522.72,0.0,0.0,70522.72,12765.82,12328.94,5528.55,30623.31,101146.03 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),10968,109452.8,0.0,1500.0,110952.8,22591.48,12424.5,8951.86,43967.84,154920.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,35420,64463.71,23236.9,13874.08,101574.69,15102.29,12424.51,8272.88,35799.68,137374.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,15986,33415.0,234.26,0.0,33649.26,6508.73,6690.12,2758.01,15956.86,49606.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,22014,65506.86,0.0,0.0,65506.86,12238.26,6164.46,5352.79,23755.51,89262.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,25040,63887.0,1687.2,7212.52,72786.72,14650.39,12424.5,5984.0,33058.89,105845.61 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,44860,59376.88,0.0,0.0,59376.88,12199.18,12089.99,4658.77,28947.94,88324.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,932,34063.07,0.0,6814.75,40877.82,7707.08,5247.44,3338.74,16293.26,57171.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,9928,81776.03,789.21,729.0,83294.24,17006.8,12424.5,6480.79,35912.09,119206.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48397,8612.43,641.3,0.0,9253.73,1835.23,1748.69,733.07,4316.99,13570.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24618,56531.0,0.0,3737.22,60268.22,13342.36,12424.5,4888.28,30655.14,90923.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,17130,13185.43,607.65,0.0,13793.08,353.62,4309.75,1099.85,5763.22,19556.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,7966,158357.07,1335.97,19012.81,178705.85,31918.37,12424.49,2993.2,47336.06,226041.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,43541,9475.75,0.0,67.44,9543.19,0.0,3434.66,739.67,4174.33,13717.52 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,28888,44784.01,2349.93,16.16,47150.1,8337.31,5734.39,3673.47,17745.17,64895.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14416,105458.22,1692.46,24157.97,131308.65,19755.73,11080.51,9556.9,40393.14,171701.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,50354,64511.06,16339.84,2125.05,82975.95,13424.78,12424.5,6559.18,32408.46,115384.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,37297,75554.54,0.0,0.0,75554.54,15540.29,12424.51,6266.52,34231.32,109785.86 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,3988,87713.0,0.0,0.0,87713.0,18078.17,12424.5,7092.71,37595.38,125308.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42492,120610.69,80377.72,21489.04,222477.45,23868.02,12543.96,3696.08,40108.06,262585.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,38571,17498.6,0.0,0.0,17498.6,3847.95,4253.01,1249.9,9350.86,26849.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,31150,82883.0,297.0,600.0,83780.0,17194.05,12424.51,6694.53,36313.09,120093.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44431,69893.61,0.0,706.78,70600.39,0.0,6122.65,5471.99,11594.64,82195.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11963,39776.41,4269.15,2017.02,46062.58,10831.46,12439.2,3274.6,26545.26,72607.84 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,15033,3820.46,0.0,0.0,3820.46,0.0,1394.77,307.71,1702.48,5522.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,3464,"Area Sprv Parks, Squares & Fac",758,20229.89,0.0,15907.09,36136.98,4537.56,2628.26,4448.93,11614.75,47751.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39156,56531.0,0.0,4288.85,60819.85,13050.14,12424.5,4852.65,30327.29,91147.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33843,13767.77,0.0,719.01,14486.78,7260.18,1075.62,569.54,8905.34,23392.12 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,12899,91004.03,0.0,624.0,91628.03,18885.24,12424.5,7547.0,38856.74,130484.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,5613,17208.45,188.61,315.49,17712.55,0.0,5713.48,1372.52,7086.0,24798.55 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,40624,77071.02,0.0,2064.0,79135.02,16308.05,12424.5,6439.13,35171.68,114306.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,24551,20897.1,400.26,0.0,21297.36,2016.0,4444.14,1662.56,8122.7,29420.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,49079,4741.51,0.0,34696.49,39438.0,2611.44,0.0,694.82,3306.26,42744.26 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,7897,4691.96,62.93,0.0,4754.89,0.0,1167.78,368.53,1536.31,6291.2 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,30027,52288.0,0.0,40.0,52328.0,11178.43,9079.44,4260.98,24518.85,76846.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,14906,10974.0,0.0,0.0,10974.0,0.0,955.73,882.19,1837.92,12811.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,544,32537.5,217.76,21797.25,54552.51,5776.28,2867.19,879.55,9523.02,64075.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2820,Senior Health Program Planner,37465,17643.5,0.0,104.71,17748.21,3980.92,2084.87,1493.73,7559.52,25307.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,47767,55112.73,0.0,2279.4,57392.13,11395.62,12120.58,4755.83,28272.03,85664.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,7683,103363.18,761.23,8278.0,112402.41,21682.98,9079.44,1871.58,32634.0,145036.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40723,77102.11,32389.58,11830.23,121321.92,17727.72,15196.12,2017.05,34940.89,156262.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,2541,86125.8,0.0,1772.43,87898.23,18105.01,12424.5,6991.41,37520.92,125419.15 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,49469,154.88,0.0,0.0,154.88,0.0,0.0,12.24,12.24,167.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,24883,62228.12,0.0,5401.35,67629.47,13870.21,12376.71,5520.5,31767.42,99396.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9223,97390.96,8948.65,11876.74,118216.35,26601.39,12376.71,2006.04,40984.14,159200.49 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,34625,28271.02,0.0,0.0,28271.02,5261.24,3345.06,2318.89,10925.19,39196.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,51602,72522.03,0.0,0.0,72522.03,14947.06,12424.5,5856.76,33228.32,105750.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14393,63665.33,14765.28,7254.77,85685.38,17577.98,12547.67,6579.6,36705.25,122390.63 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,27555,73260.15,0.0,0.0,73260.15,9881.5,4712.95,1407.63,16002.08,89262.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25378,70334.61,773.33,0.0,71107.94,14520.34,11341.12,5628.39,31489.85,102597.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,18102,101531.03,4159.95,891.98,106582.96,20926.03,12424.5,8742.08,42092.61,148675.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,24993,21094.77,32.32,0.0,21127.09,0.0,2924.41,1639.8,4564.21,25691.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20174,54274.58,0.0,2257.78,56532.36,3703.96,0.0,6138.64,9842.6,66374.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,19643,47925.0,0.0,455.18,48380.18,9709.51,9557.31,4003.6,23270.42,71650.6 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,19054,158707.01,0.0,0.0,158707.01,31940.4,12424.5,25437.28,69802.18,228509.19 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,20019,111918.03,0.0,1040.0,112958.03,22732.09,12424.5,8906.32,44062.91,157020.94 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,16569,76556.76,0.0,0.0,76556.76,16353.39,9031.66,6301.86,31686.91,108243.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",52496,106382.72,0.0,174.01,106556.73,21881.31,12189.09,8650.74,42721.14,149277.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,39016,16961.44,0.0,0.0,16961.44,1930.85,4175.83,1350.38,7457.06,24418.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,34212,72699.05,0.0,2.78,72701.83,14994.86,12424.5,5778.38,33197.74,105899.57 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,14032,77071.01,0.0,2109.0,79180.01,16290.87,12424.5,6511.89,35227.26,114407.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",42780,12455.5,0.0,0.0,12455.5,0.0,2628.28,966.75,3595.03,16050.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47482,57952.81,10591.93,4047.49,72592.23,16741.13,11402.11,5607.13,33750.37,106342.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,684,81157.02,447.86,17545.49,99150.37,19542.87,12424.5,8080.0,40047.37,139197.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47518,119455.93,44811.73,22998.36,187266.02,23662.84,12424.5,3107.9,39195.24,226461.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",13701,93738.0,10770.66,5102.82,109611.48,19683.3,12424.51,8606.42,40714.23,150325.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,23964,56276.1,832.94,616.8,57725.84,12730.2,12424.5,4781.5,29936.2,87662.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28922,63761.47,18021.49,1654.81,83437.77,17855.29,12559.97,6471.47,36886.73,120324.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,40787,88100.48,809.06,4531.53,93441.07,17276.53,7378.23,5250.92,29905.68,123346.75 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8251,Fingerprint Technician 3,33968,56272.97,5422.44,5554.2,67249.61,12298.63,9650.31,5454.25,27403.19,94652.8 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,6833,4050.8,29.21,635.08,4715.09,1135.25,1242.45,388.5,2766.2,7481.29 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,374C,Admin Analyst 3,30324,103429.74,0.0,3000.0,106429.74,21311.8,12424.5,8807.89,42544.19,148973.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5329,11527.6,0.0,370.86,11898.46,0.0,3846.81,922.24,4769.05,16667.51 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,29374,104648.62,477.7,13313.35,118439.67,23202.13,12340.88,9745.88,45288.89,163728.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,31164,8860.0,493.06,531.67,9884.73,2013.58,2867.19,791.43,5672.2,15556.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28399,49435.35,21606.83,4014.56,75056.74,14733.97,9710.71,5856.8,30301.48,105358.22 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,18948,134615.72,0.0,0.0,134615.72,26941.89,12424.5,17594.34,56960.73,191576.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9937,17710.5,433.39,0.0,18143.89,0.0,4730.86,1406.52,6137.38,24281.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47341,66755.1,10496.24,5131.35,82382.69,19725.57,13158.02,6176.24,39059.83,121442.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,39912,39690.01,0.0,0.0,39690.01,8869.97,6690.11,3133.15,18693.23,58383.24 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,27600,115541.0,0.0,0.0,115541.0,23252.6,12424.5,9164.2,44841.3,160382.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33052,122433.89,2436.13,32414.21,157284.23,28997.86,10842.77,5520.8,45361.43,202645.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34092,3384.72,0.0,32.22,3416.94,0.0,1106.56,265.2,1371.76,4788.7 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,30766,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8496.52,42892.83,149497.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9259,7510.71,420.04,24.53,7955.28,1780.71,2263.83,610.42,4654.96,12610.24 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,23493,66495.51,4751.67,7770.0,79017.18,14100.79,9557.3,6207.21,29865.3,108882.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,33611,64648.29,348.34,484.9,65481.53,13420.74,12424.5,5031.18,30876.42,96357.95 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,41246,95283.0,0.0,0.0,95283.0,19067.96,10513.03,7683.55,37264.54,132547.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,24705,98398.91,0.0,1536.0,99934.91,20209.13,11946.64,16885.99,49041.76,148976.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52778,55641.5,0.0,6797.0,62438.5,13358.28,12376.71,5100.85,30835.84,93274.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,42455,56531.0,6036.85,2593.65,65161.5,11796.8,12424.5,5370.34,29591.64,94753.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,48139,105363.05,0.0,0.0,105363.05,21710.31,12424.5,8448.49,42583.3,147946.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48194,35271.62,413.89,314.9,36000.41,9852.4,6891.72,725.34,17469.46,53469.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,18590,97424.01,0.0,0.0,97424.01,20079.53,12424.5,7876.49,40380.52,137804.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,43938,106057.8,0.0,0.0,106057.8,21857.81,12424.5,8486.06,42768.37,148826.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42603,3027.69,794.48,259.08,4081.25,859.41,955.73,289.32,2104.46,6185.71 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,24141,212753.0,306.15,45547.95,258607.1,49221.85,12424.5,12043.97,73690.32,332297.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,52779,85723.0,11234.35,8961.7,105919.05,18457.16,12520.08,1715.03,32692.27,138611.32 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,15760,55471.01,0.0,0.0,55471.01,11126.12,9557.31,3940.23,24623.66,80094.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",52980,93738.02,20163.6,6921.11,120822.73,19860.43,12424.5,9667.22,41952.15,162774.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,48929,98755.69,4980.74,9911.78,113648.21,20522.05,12424.5,1895.8,34842.35,148490.56 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8135,Asst Chf Victim/Wit Invstgtor,27984,97712.05,0.0,0.0,97712.05,20133.15,12424.5,7824.55,40382.2,138094.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10916,454.59,0.0,0.0,454.59,981.97,39.01,0.0,1020.98,1475.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28695,63328.28,19557.4,1511.68,84397.36,17737.78,12480.24,6586.54,36804.56,121201.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,9531,61735.0,0.0,639.0,62374.0,12855.41,12424.5,4980.21,30260.12,92634.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12105,7247.01,0.0,282.07,7529.08,0.0,0.0,595.8,595.8,8124.88 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,22455,67911.02,25.15,6975.87,74912.04,14819.75,12424.5,6134.56,33378.81,108290.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,18032,118071.26,0.0,1225.0,119296.26,23936.55,12424.49,9368.48,45729.52,165025.78 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,9611,11592.27,704.25,0.0,12296.52,0.0,3536.21,953.98,4490.19,16786.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,1254,81942.03,1409.4,600.0,83951.43,17000.25,12424.5,6864.52,36289.27,120240.7 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,41109,56276.05,0.0,624.0,56900.05,12731.54,12424.5,4716.09,29872.13,86772.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,14391,48735.2,0.0,6543.31,55278.51,12748.15,12424.5,4471.43,29644.08,84922.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13953,67785.55,10131.41,3500.12,81417.08,19577.82,13362.91,6356.86,39297.59,120714.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50499,39386.22,304.95,1005.32,40696.49,9391.59,8815.6,3312.34,21519.53,62216.02 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",14013,68606.21,235.71,9927.42,78769.34,17913.87,12278.16,1553.87,31745.9,110515.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,21069,59805.91,765.67,5912.61,66484.19,14624.39,12345.0,5887.03,32856.42,99340.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27264,5210.42,0.0,0.0,5210.42,0.0,2259.4,418.34,2677.74,7888.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,28440,107978.01,1238.4,7778.02,116994.43,22255.04,12424.49,9565.53,44245.06,161239.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,5834,26640.0,152.63,2797.2,29589.83,5205.6,4300.79,2402.19,11908.58,41498.41 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,14175,9463.59,0.0,2095.56,11559.15,0.0,0.0,167.61,167.61,11726.76 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,45584,62092.8,1699.12,7444.37,71236.29,14787.12,9366.16,5786.41,29939.69,101175.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,32930,51071.17,115.57,2507.51,53694.25,10944.37,11129.78,4301.79,26375.94,80070.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37071,51256.4,0.0,7465.35,58721.75,13398.65,12424.5,4747.7,30570.85,89292.6 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,41560,105998.71,0.0,0.0,105998.71,21333.27,11740.97,8497.53,41571.77,147570.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16649,112159.75,61740.4,16328.42,190228.57,24275.19,15052.76,3190.95,42518.9,232747.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50763,56531.0,0.0,5590.82,62121.82,12312.55,12424.5,4780.13,29517.18,91639.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,39130,8632.01,0.0,137.97,8769.98,1979.92,2838.82,1048.63,5867.37,14637.35 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8262,Criminalist III,43406,143958.63,636.18,2390.0,146984.81,29432.88,12331.38,10298.84,52063.1,199047.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,27235,40.33,0.0,0.0,40.33,0.0,0.0,5.9,5.9,46.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,28976,81942.04,20213.07,18483.99,120639.1,19634.41,12424.51,9721.17,41780.09,162419.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,37100,149548.32,11223.11,8972.9,169744.33,31158.08,12424.5,2797.33,46379.91,216124.24 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,556.0,Elected Officials,1100,Administrative & Mgmt (Unrep),1190,Mayor,22433,288963.55,0.0,0.0,288963.55,58117.03,12424.5,20292.95,90834.48,379798.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,23578,54883.01,2041.03,7560.22,64484.26,13796.51,12424.5,5200.86,31421.87,95906.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,7278,14866.97,0.0,796.33,15663.3,3449.9,3384.96,1359.45,8194.31,23857.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,42791,55855.01,2211.11,1871.95,59938.07,12512.96,12424.5,4831.03,29768.49,89706.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,4559,54574.0,15575.13,3265.78,73414.91,12195.68,12137.78,5633.38,29966.84,103381.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,7862,63738.6,0.0,0.0,63738.6,12914.88,10417.47,5586.53,28918.88,92657.48 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,8071,118104.01,0.0,0.0,118104.01,23768.42,12424.52,9524.74,45717.68,163821.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38255,94522.05,8118.17,5212.58,107852.8,19646.3,12424.5,1908.76,33979.56,141832.36 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,43785,55219.79,43.44,4694.91,59958.14,13013.59,11551.44,4423.06,28988.09,88946.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,35855,17265.0,0.0,0.0,17265.0,3213.0,2389.32,1374.54,6976.86,24241.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,28415,97934.02,2963.58,5363.52,106261.12,21255.49,12424.5,8731.42,42411.41,148672.53 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,48044,28896.0,0.0,0.0,28896.0,6481.37,3345.06,2347.07,12173.5,41069.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,38652,62461.61,12187.04,1864.99,76513.64,13128.2,12424.5,5975.42,31528.12,108041.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,51670,107379.95,0.0,0.0,107379.95,21868.66,12424.5,8831.57,43124.73,150504.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15150,270.85,0.0,0.0,270.85,0.0,89.6,20.99,110.59,381.44 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",1586,7593.35,0.0,694.91,8288.26,0.0,0.0,655.68,655.68,8943.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,27939,30030.89,350.35,490.0,30871.24,6881.37,7191.87,2454.09,16527.33,47398.57 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,29778,111436.0,0.0,8271.98,119707.98,23674.78,12424.5,9808.79,45908.07,165616.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,10315,48010.04,0.0,0.0,48010.04,11515.23,12424.5,3855.2,27794.93,75804.97 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,884,50049.6,572.78,1186.3,51808.68,10571.0,10106.5,4161.68,24839.18,76647.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,24302,81738.41,3215.74,7608.27,92562.42,17922.8,12288.13,7470.18,37681.11,130243.53 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",2350,900.0,0.0,0.0,900.0,0.0,107.52,69.77,177.29,1077.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45457,756.92,227.08,0.0,984.0,214.21,0.0,77.74,291.95,1275.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,22996,168588.45,0.0,1737.94,170326.39,24802.08,11186.23,5131.72,41120.03,211446.42 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,30252,69118.79,0.0,0.0,69118.79,14518.48,10246.51,5735.66,30500.65,99619.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49284,6963.26,0.0,0.0,6963.26,0.0,3019.52,554.91,3574.43,10537.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40397,104335.76,0.0,250.0,104585.76,21118.48,9618.96,8492.58,39230.02,143815.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,42447,37183.43,0.0,0.0,37183.43,2616.14,9312.4,2853.45,14781.99,51965.42 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,6719,78963.0,457.23,208.34,79628.57,16325.12,12424.5,6225.49,34975.11,114603.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,32565,22098.36,0.0,665.75,22764.11,5456.22,6469.1,1843.04,13768.36,36532.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,49441,35937.91,0.0,1275.42,37213.33,7932.11,6665.81,3199.42,17797.34,55010.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,44646,72418.09,0.0,0.0,72418.09,14022.34,6607.87,6111.68,26741.89,99159.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,13948,30681.42,2797.67,2574.16,36053.25,5750.9,3345.06,589.61,9685.57,45738.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,50137,79957.35,3311.27,5625.59,88894.21,16887.09,12448.4,1476.72,30812.21,119706.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37831,21747.66,0.0,834.45,22582.11,1679.94,9375.12,1706.85,12761.91,35344.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,24375,61432.67,3318.11,801.12,65551.9,12824.73,11946.63,5411.63,30182.99,95734.89 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,32768,112898.0,0.0,6209.39,119107.39,23970.64,12424.5,9804.35,46199.49,165306.88 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2432,28245.02,0.0,0.0,28245.02,7193.91,7167.99,2296.56,16658.46,44903.48 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,52612,70028.01,6015.09,420.0,76463.1,14416.51,12424.5,6252.49,33093.5,109556.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41790,66820.85,18741.96,1674.63,87237.44,18747.83,13172.48,6811.95,38732.26,125969.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,8057,62499.61,15486.17,3675.25,81661.03,13389.11,12424.52,6753.44,32567.07,114228.1 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,3751,84511.35,3400.25,5142.28,93053.88,18074.55,12352.82,7505.5,37932.87,130986.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10400,736.0,0.0,12.8,748.8,0.0,274.77,58.12,332.89,1081.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41913,8022.4,0.0,0.0,8022.4,0.0,3416.73,645.56,4062.29,12084.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2140,13213.9,0.0,344.2,13558.1,118.93,3595.94,1050.04,4764.91,18323.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29851,7568.27,0.0,420.17,7988.44,597.31,0.0,218.36,815.67,8804.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,42944,157425.73,0.0,0.0,157425.73,31563.6,12424.5,17685.14,61673.24,219098.97 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,38281,67681.1,0.0,3358.45,71039.55,14437.03,12405.69,5305.03,32147.75,103187.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,28545,92026.38,48583.01,12530.63,153140.02,21252.97,12424.5,2555.99,36233.46,189373.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28715,97764.22,0.0,8769.96,106534.18,25911.4,12424.5,882.44,39218.34,145752.52 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,32590,61237.82,1450.46,4191.01,66879.29,13320.54,12424.5,5524.81,31269.85,98149.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,19170,44416.73,737.44,429.47,45583.64,8928.42,6699.07,3770.49,19397.98,64981.62 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,52350,36114.7,0.0,0.0,36114.7,6720.95,4778.65,2871.9,14371.5,50486.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,29127,133087.06,0.0,0.0,133087.06,26783.95,12424.5,10052.67,49261.12,182348.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19698,110.2,0.0,0.0,110.2,0.0,47.79,8.54,56.33,166.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35472,97765.48,100376.97,25755.81,223898.26,30042.03,12424.52,582.54,43049.09,266947.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,24650,74165.04,0.0,613.2,74778.24,15412.1,12424.5,6200.22,34036.82,108815.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,42331,14710.78,0.0,0.0,14710.78,0.0,4868.26,1140.13,6008.39,20719.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,13780,1079.1,0.0,0.0,1079.1,0.0,143.35,83.76,227.11,1306.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,24476,34880.0,2092.8,2283.99,39256.79,8580.43,9557.31,3150.91,21288.65,60545.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,5999,58782.07,0.0,624.0,59406.07,12243.99,12424.5,4924.19,29592.68,88998.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,17034,64838.5,0.0,560.0,65398.5,13455.95,12185.57,5310.85,30952.37,96350.87 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,19300,0.0,0.0,10045.17,10045.17,0.0,0.0,768.45,768.45,10813.62 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,16175,93311.71,0.0,1429.58,94741.29,19518.53,12375.22,7732.4,39626.15,134367.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,18332,63227.52,6478.2,7073.58,76779.3,14504.07,12058.93,6070.88,32633.88,109413.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,46991,100574.18,18056.7,7555.32,126186.2,21754.96,12424.49,9884.53,44063.98,170250.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15419,15106.5,0.0,1804.39,16910.89,0.0,1289.88,1309.24,2599.12,19510.01 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,31343,225676.43,0.0,33851.48,259527.91,52112.85,12143.76,11984.16,76240.77,335768.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45389,1680.55,0.0,28.69,1709.24,0.0,728.75,132.33,861.08,2570.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3215,Aquatics Facility Supervisor,36484,37362.01,0.0,14683.26,52045.27,8450.51,6212.25,4079.19,18741.95,70787.22 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26761,50810.13,40.82,561.19,51412.14,10570.22,11173.81,4283.35,26027.38,77439.52 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8193,Chief Atty1 (Civil & Criminal),20450,220560.04,0.0,1562.5,222122.54,44701.98,12424.5,11609.41,68735.89,290858.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,21936,34310.02,0.0,0.0,34310.02,8044.11,9557.31,2702.72,20304.14,54614.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44979,112690.81,404.44,5054.5,118149.75,22311.18,12424.51,2107.5,36843.19,154992.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,51821,58111.67,0.0,0.0,58111.67,12975.71,12424.5,4727.33,30127.54,88239.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",35453,5168.03,0.0,0.0,5168.03,660.2,1230.5,446.04,2336.74,7504.77 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,45091,2261.0,658.62,242.25,3161.87,0.0,669.02,245.42,914.44,4076.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36571,113233.61,53211.7,18638.34,185083.65,25036.04,15196.12,3108.93,43341.09,228424.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,24839,163755.6,12735.31,15918.34,192409.25,34779.24,11538.06,10946.58,57263.88,249673.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,33952,49393.31,0.0,355.91,49749.22,10289.88,7257.57,3902.09,21449.54,71198.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,27818,10806.22,202.52,156.34,11165.08,0.0,3339.08,865.84,4204.92,15370.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19589,137122.92,133.95,8897.62,146154.49,25343.23,12424.51,9745.25,47512.99,193667.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46277,29440.89,3691.48,847.0,33979.37,8116.87,9293.41,2552.57,19962.85,53942.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,30910,56227.6,0.0,480.0,56707.6,12056.2,9557.31,4671.03,26284.54,82992.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42812,31059.71,0.0,0.0,31059.71,5631.13,4730.87,2318.32,12680.32,43740.03 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,10235,68717.06,1913.52,5506.55,76137.13,14522.17,10029.2,6244.15,30795.52,106932.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,7632,113211.12,6747.76,4834.81,124793.69,22277.66,12422.41,2116.62,36816.69,161610.38 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30201,19442.0,0.0,0.0,19442.0,4275.3,4778.65,1497.38,10551.33,29993.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41842,7151.58,0.0,545.7,7697.28,0.0,630.19,596.17,1226.36,8923.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,349,109986.31,43.71,9855.21,119885.23,23208.56,10347.88,9210.7,42767.14,162652.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",25882,91602.22,0.0,0.0,91602.22,18773.54,11952.14,15271.63,45997.31,137599.53 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,21451,36302.81,0.0,1248.87,37551.68,8142.75,4491.93,3038.98,15673.66,53225.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,23585,25469.3,22809.2,3343.35,51621.85,6436.47,6283.93,3843.46,16563.86,68185.71 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,9080,56276.0,0.0,624.0,56900.0,12731.53,12424.5,4641.66,29797.69,86697.69 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,52157,5635.9,32.93,0.0,5668.83,0.0,1290.23,439.62,1729.85,7398.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,10398,117632.89,0.0,0.0,117632.89,23659.55,12424.5,17037.74,53121.79,170754.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,7345,53245.04,0.0,3068.11,56313.15,11942.84,6212.25,4528.28,22683.37,78996.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14916,14660.15,0.0,0.0,14660.15,0.0,6295.88,1189.99,7485.87,22146.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,36079,28281.01,0.0,264.0,28545.01,6402.66,5256.52,2381.25,14040.43,42585.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,49175,71138.77,0.0,0.0,71138.77,3827.85,8601.58,3005.15,15434.58,86573.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,7130,67261.01,0.0,624.0,67885.01,13991.51,12424.5,5627.94,32043.95,99928.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,47349,62200.86,11069.5,7379.43,80649.79,13515.31,12303.06,6227.65,32046.02,112695.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,38749,84849.09,3953.91,620.0,89423.0,17933.81,10513.04,7215.21,35662.06,125085.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,2847,37230.6,0.0,760.0,37990.6,9221.26,10035.18,2986.44,22242.88,60233.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,27503,283.15,161.8,4.05,449.0,0.0,83.62,34.76,118.38,567.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,35771,56977.52,0.0,868.35,57845.87,11928.25,10751.97,4774.64,27454.86,85300.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38068,9283.57,703.49,39.94,10027.0,2225.81,2839.17,705.52,5770.5,15797.5 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0648,"Court Invstgtor, Superior Crt",35224,103948.18,0.0,5263.0,109211.18,21482.39,12424.5,8452.72,42359.61,151570.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,31099,66594.39,0.0,200.0,66794.39,13860.67,10934.57,5305.73,30100.97,96895.36 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,42728,1677.5,0.0,0.0,1677.5,0.0,238.93,130.2,369.13,2046.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3786,149099.02,0.0,39277.96,188376.98,37944.45,12424.5,3573.48,53942.43,242319.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7360,Pipe Welder,44070,98516.93,16568.25,1980.0,117065.18,20760.26,12154.95,9365.73,42280.94,159346.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9508,Prpl Permit And Citation Clerk,1923,82064.46,5252.04,0.0,87316.5,16914.46,12418.83,7223.05,36556.34,123872.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,31670,97424.0,1908.55,1625.15,100957.7,20317.91,12424.51,8272.26,41014.68,141972.38 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,5534,25154.11,0.0,896.2,26050.31,6253.89,6212.25,2109.4,14575.54,40625.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27415,56531.0,0.0,5462.08,61993.08,12407.7,12424.5,4881.92,29714.12,91707.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,49215,44418.0,0.0,0.0,44418.0,10653.75,12424.51,3611.95,26690.21,71108.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45865,80957.68,3064.72,7517.56,91539.96,16746.17,12424.5,1712.81,30883.48,122423.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,35689,25534.91,0.0,0.0,25534.91,5466.45,3882.18,2099.76,11448.39,36983.3 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,34603,22081.53,0.0,445.58,22527.11,5379.54,6618.44,1766.1,13764.08,36291.19 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,44370,67580.32,9330.87,4375.68,81286.87,14302.8,12364.77,6397.66,33065.23,114352.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4476,67954.63,10167.4,3074.09,81196.12,19416.65,13389.43,6339.78,39145.86,120341.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,37485,112170.38,42745.62,19831.87,174747.87,25207.66,15052.76,2982.01,43242.43,217990.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38924,8010.56,0.0,0.0,8010.56,1796.77,1809.91,540.47,4147.15,12157.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,9685,73307.78,20527.39,1603.1,95438.27,15511.76,11833.15,7593.02,34937.93,130376.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33699,112685.46,22443.27,10888.44,146017.17,22330.92,12424.5,2487.21,37242.63,183259.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,43555,71685.05,4513.0,1320.0,77518.05,15067.83,11607.63,6052.22,32727.68,110245.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41102,24210.71,8.02,342.32,24561.05,6430.12,4701.78,1871.66,13003.56,37564.61 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,33096,61222.28,0.0,0.0,61222.28,12804.97,0.0,1553.16,14358.13,75580.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,41340,250.0,0.0,0.0,250.0,0.0,59.73,19.37,79.1,329.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37808,119467.32,0.0,15498.52,134965.84,24481.53,12424.5,349.79,37255.82,172221.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,18218,24046.22,0.0,314.6,24360.82,5464.14,4246.43,2026.73,11737.3,36098.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",14406,15533.56,0.0,932.01,16465.57,2906.18,1420.93,282.01,4609.12,21074.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H110,Marine Engineer Of Fire Boats,14104,29744.25,0.0,0.0,29744.25,0.0,2998.6,2308.08,5306.68,35050.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,37784,54377.71,64.64,0.0,54442.35,11140.41,9676.0,4498.87,25315.28,79757.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,12853,71330.01,0.0,920.0,72250.01,14836.35,11946.63,6000.53,32783.51,105033.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,41079,78245.74,9413.58,2990.41,90649.73,16720.83,12192.98,7473.27,36387.08,127036.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,41969,100554.0,0.0,0.0,100554.0,20724.83,12424.5,8261.64,41410.97,141964.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,9143,75927.03,0.0,160.0,76087.03,15681.57,12424.51,6301.42,34407.5,110494.53 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0904,Mayoral Staff XVI,12010,134658.44,0.0,0.0,134658.44,27113.65,12364.77,17307.7,56786.12,191444.56 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,51316,16760.75,0.0,280.0,17040.75,3171.28,3464.52,1380.13,8015.93,25056.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",2205,132038.33,0.0,0.0,132038.33,26573.05,12424.5,24817.92,63815.47,195853.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,34257,91990.2,25182.68,9802.08,126974.96,19861.89,12424.5,9858.84,42145.23,169120.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,15733,27489.0,544.81,390.0,28423.81,6170.58,6690.12,2209.28,15069.98,43493.79 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,4939,2180.25,734.32,0.0,2914.57,0.0,645.12,226.22,871.34,3785.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,28090,138368.56,17088.4,4939.34,160396.3,27342.93,12400.62,2678.62,42422.17,202818.47 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,29534,47784.07,0.0,4350.0,52134.07,10401.89,3607.89,4193.78,18203.56,70337.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23630,58929.5,61.01,3419.88,62410.39,843.27,5179.83,4663.55,10686.65,73097.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1023,IS Administrator 3,17263,55827.59,0.0,20375.0,76202.59,12522.08,6546.76,6431.9,25500.74,101703.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,17580,79722.02,2785.86,1979.25,84487.13,16848.04,12424.5,6597.39,35869.93,120357.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,36416,109251.01,0.0,960.0,110211.01,22462.0,12424.51,8969.16,43855.67,154066.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,21284,66157.8,0.0,0.0,66157.8,13630.61,12424.51,5321.18,31376.3,97534.1 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,37826,96259.55,0.0,4775.0,101034.55,19621.36,9845.7,8562.19,38029.25,139063.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,17513,62287.15,7716.0,4265.41,74268.56,13107.89,12387.88,5839.08,31334.85,105603.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5215,Fire Protection Engineer,4490,143349.44,3326.4,0.0,146675.84,28852.83,12424.5,10310.93,51588.26,198264.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,2613,96254.01,0.0,0.0,96254.01,19838.21,12424.5,7522.0,39784.71,136038.72 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,25727,74412.02,0.0,5055.0,79467.02,15474.51,12424.5,6592.18,34491.19,113958.21 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,17204,9463.59,0.0,212.16,9675.75,0.0,12424.5,140.3,12564.8,22240.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,32801,30600.76,0.0,0.0,30600.76,0.0,6092.79,2444.63,8537.42,39138.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,40194,92282.04,0.0,1164.0,93446.04,19267.83,12424.51,7234.55,38926.89,132372.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27771,65036.98,3395.51,2120.86,70553.35,18338.32,12812.53,5491.5,36642.35,107195.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",7882,150234.01,59002.65,18367.9,227604.56,32980.76,15196.12,3875.64,52052.52,279657.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6222,Depty Sealer Of Weights & Meas,2344,89210.05,0.0,1040.0,90250.05,18600.1,12424.5,7064.94,38089.54,128339.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36412,100121.06,4061.11,16313.43,120495.6,0.0,7238.82,9342.07,16580.89,137076.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,41249,8973.0,0.0,0.0,8973.0,1973.16,2150.4,712.61,4836.17,13809.17 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,21743,3006.94,0.0,0.0,3006.94,0.0,617.76,251.12,868.88,3875.82 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,22278,21098.03,0.0,0.0,21098.03,5443.27,5256.52,1675.32,12375.11,33473.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",16623,38905.05,0.0,600.0,39505.05,0.0,4922.02,3062.22,7984.24,47489.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30666,9841.6,0.0,0.0,9841.6,0.0,4205.21,794.23,4999.44,14841.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,1488,51825.02,8228.28,1403.9,61457.2,10972.88,10990.9,5026.82,26990.6,88447.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2669,30714.2,381.24,722.37,31817.81,5699.43,3201.7,2550.75,11451.88,43269.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,33641,30752.0,0.0,658.29,31410.29,7045.34,3822.91,2515.53,13383.78,44794.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12512,5580.33,0.0,18.62,5598.95,0.0,1862.18,434.1,2296.28,7895.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1467,34130.56,7789.64,826.35,42746.55,10311.84,6787.49,3324.23,20423.56,63170.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,37282,58793.34,0.0,2419.47,61212.81,12632.07,11695.52,4819.39,29146.98,90359.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,41061,36719.6,5292.5,4688.73,46700.83,7317.83,5220.68,3793.09,16331.6,63032.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7682,48518.06,2834.48,3397.58,54750.12,10974.53,6212.25,912.14,18098.92,72849.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,31293,17174.42,766.97,116.58,18057.97,0.0,4514.34,1397.95,5912.29,23970.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34628,2027.38,0.0,0.0,2027.38,0.0,988.58,157.34,1145.92,3173.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,8055,39181.0,0.0,0.0,39181.0,7867.24,7406.93,3006.64,18280.81,57461.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44544,0.0,0.0,736.14,736.14,0.0,68.5,56.31,124.81,860.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,51041,6548.28,0.0,49.05,6597.33,0.0,0.0,521.77,521.77,7119.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,5202,6345.0,0.0,0.0,6345.0,1423.17,1433.6,503.74,3360.51,9705.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,23060,77071.1,36.83,520.0,77627.93,15987.58,12424.5,6385.23,34797.31,112425.24 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,51200,101630.52,0.0,0.0,101630.52,20939.11,12424.5,8110.32,41473.93,143104.45 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,27527,140756.83,0.0,0.0,140756.83,28288.13,12424.5,17458.31,58170.94,198927.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,40244,77049.91,0.0,0.0,77049.91,15885.98,12424.51,6201.8,34512.29,111562.2 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,28081,55152.04,11443.11,7141.27,73736.42,12395.0,10859.49,5792.18,29046.67,102783.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16003,145124.27,835.36,19687.41,165647.04,29538.48,12424.5,2932.25,44895.23,210542.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,19474,17047.1,0.0,0.0,17047.1,3172.46,2341.54,1343.26,6857.26,23904.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2935,"Sr Marriage, Fam & Cld Cnslr",52836,97424.12,0.0,0.0,97424.12,20079.57,12424.5,7510.75,40014.82,137438.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11814,10958.01,0.0,0.0,10958.01,0.0,4751.78,808.01,5559.79,16517.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15629,7107.27,0.0,0.0,7107.27,0.0,3019.52,567.06,3586.58,10693.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,46948,66102.0,189.53,0.0,66291.53,13624.06,12424.5,5245.58,31294.14,97585.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,25165,119066.01,6687.42,11231.99,136985.42,29843.29,12424.5,354.45,42622.24,179607.66 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",38596,231.19,0.0,22.51,253.7,0.0,44.8,19.65,64.45,318.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31936,99390.82,1615.32,5822.15,106828.29,0.0,8174.66,8281.83,16456.49,123284.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,352.0,Municipal Executive Association - Fire,0900,Management,H053,Emergency Medical Svcs Chief,11413,231480.71,0.0,13888.84,245369.55,48210.4,12424.5,12975.53,73610.43,318979.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,46913,12813.82,0.0,242.61,13056.43,0.0,4250.02,1011.51,5261.53,18317.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,18261,15153.33,0.0,227.75,15381.08,0.0,5002.65,1192.55,6195.2,21576.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3428,Nursery Specialist,51385,2874.0,0.0,0.0,2874.0,534.85,477.86,226.7,1239.41,4113.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49564,3080.88,0.0,65.66,3146.54,0.0,1502.29,244.21,1746.5,4893.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,42477,84715.4,31169.87,1380.0,117265.27,17730.31,12328.92,9184.65,39243.88,156509.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11138,138617.08,0.0,250.0,138867.08,27889.08,12271.58,10090.43,50251.09,189118.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,47785,117129.71,39512.55,10722.47,167364.73,23205.2,12424.5,2777.73,38407.43,205772.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,9941,8929.8,0.0,0.0,8929.8,56.19,1959.25,745.96,2761.4,11691.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,POA,Q000,Police Services,0387,Crime Scene Invstgtn Mngr 3,18885,29555.5,8229.85,4201.68,41987.03,5348.7,2389.32,709.24,8447.26,50434.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,6107,52686.93,0.0,0.0,52686.93,10402.66,6397.67,3040.72,19841.05,72527.98 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,33873,113623.05,0.0,0.0,113623.05,22866.77,12424.5,9077.23,44368.5,157991.55 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,21196,99654.03,1152.01,0.0,100806.04,22731.77,12424.5,1659.65,36815.92,137621.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,14596,4658.29,0.0,0.0,4658.29,1044.84,578.04,436.88,2059.76,6718.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,5179,25384.63,0.0,0.0,25384.63,4602.24,1911.46,1740.13,8253.83,33638.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,17030,93738.08,6689.15,8854.44,109281.67,20960.56,12424.5,8580.62,41965.68,151247.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,6863,83845.71,0.0,3323.4,87169.11,17296.24,12374.93,7244.33,36915.5,124084.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",46767,132848.62,37465.35,15974.18,186288.15,28941.95,15291.7,2728.46,46962.11,233250.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,21601,43120.0,0.0,0.0,43120.0,9525.8,7167.99,3470.87,20164.66,63284.66 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,31014,88895.32,0.0,0.0,88895.32,18298.18,12424.5,7163.59,37886.27,126781.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,48402,85368.02,27057.58,60.0,112485.6,17605.78,12424.5,9175.22,39205.5,151691.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22661,112170.36,14770.19,17847.29,144787.84,24660.7,15052.76,2412.15,42125.61,186913.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1868,66102.02,126.35,0.0,66228.37,13624.06,12424.5,5479.83,31528.39,97756.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,22787,50399.65,2671.44,991.69,54062.78,11355.18,11316.04,4334.29,27005.51,81068.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13254,7251.19,0.0,650.46,7901.65,535.4,3144.35,641.03,4320.78,12222.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,1563,57217.42,0.0,0.0,57217.42,12090.21,9002.81,4691.19,25784.21,83001.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,34630,116976.02,0.0,1325.35,118301.37,23781.8,12424.49,9665.99,45872.28,164173.65 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),38654,49699.45,9819.33,3483.51,63002.29,10267.25,7581.04,1022.25,18870.54,81872.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29753,44973.2,0.0,0.0,44973.2,0.0,3934.93,3489.99,7424.92,52398.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,8898,37056.42,10116.77,1647.16,48820.35,7735.44,7339.72,3917.57,18992.73,67813.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2106,Med Staff Svcs Dept Spc,40523,69835.22,0.0,0.0,69835.22,14394.71,12412.56,5430.27,32237.54,102072.76 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48990,24765.08,0.0,1855.6,26620.68,6386.68,6301.85,2272.81,14961.34,41582.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,24699,138633.9,21265.5,4312.0,164211.4,27400.21,12424.52,2751.9,42576.63,206788.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,16939,21866.98,0.0,308.72,22175.7,891.42,4427.72,1720.27,7039.41,29215.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27016,12422.61,0.0,170.7,12593.31,0.0,5325.22,1022.46,6347.68,18940.99 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,23013,9723.0,0.0,0.0,9723.0,2180.88,1433.6,805.5,4419.98,14142.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33034,43778.74,9818.51,2111.2,55708.45,10334.03,11838.11,4221.94,26394.08,82102.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47045,66438.02,7076.46,1220.24,74734.72,18532.98,13090.59,5797.66,37421.23,112155.95 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,32643,36842.31,0.0,4495.01,41337.32,8219.84,2162.35,6497.7,16879.89,58217.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,9536,9223.55,0.0,0.0,9223.55,0.0,3052.36,715.9,3768.26,12991.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,53180,22635.02,0.0,0.0,22635.02,5077.01,4300.79,1853.84,11231.64,33866.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,2394,34636.5,0.0,4218.13,38854.63,7838.43,6164.46,3175.55,17178.44,56033.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",37156,94716.89,12786.28,0.0,107503.17,19521.36,12424.5,8614.01,40559.87,148063.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,2286,77071.03,2016.17,420.0,79507.2,15978.91,12424.5,6055.28,34458.69,113965.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,10336,9024.61,0.0,0.0,9024.61,2024.22,1063.25,743.62,3831.09,12855.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,10386,8474.68,70.54,193.9,8739.12,0.0,2149.37,778.86,2928.23,11667.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,38863,88474.53,0.0,9310.21,97784.74,18428.67,11229.83,8018.17,37676.67,135461.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,4992,145317.69,61877.89,18182.07,225377.65,30451.46,12424.5,577.64,43453.6,268831.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,45471,23500.44,0.0,366.16,23866.6,5745.88,6917.1,1908.28,14571.26,38437.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,10281,20835.56,0.0,0.0,20835.56,2561.42,6851.39,1625.24,11038.05,31873.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36873,11336.85,0.0,0.0,11336.85,909.81,4916.05,907.59,6733.45,18070.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",26530,130329.32,70614.44,20430.04,221373.8,29361.55,15052.74,3777.13,48191.42,269565.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7484,Sr Power Generation Tech,16425,42170.88,14908.6,4113.28,61192.76,9564.48,4593.47,4890.21,19048.16,80240.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",53003,130341.62,2021.43,19090.72,151453.77,29339.23,15052.76,2573.04,46965.03,198418.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,52886,77071.1,0.0,664.0,77735.1,16020.83,12424.5,6393.69,34839.02,112574.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,14012,19634.99,0.0,163.34,19798.33,4839.65,5775.11,1437.84,12052.6,31850.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,21321,72337.73,0.0,796.87,73134.6,14986.94,11884.28,6015.17,32886.39,106020.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9183,"Deputy Dir I, MTA",4272,196387.05,0.0,0.0,196387.05,39524.0,12424.5,18388.28,70336.78,266723.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,6277,88858.53,0.0,0.0,88858.53,18269.11,12086.05,7097.39,37452.55,126311.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,46348,1577.13,0.0,26.04,1603.17,0.0,607.79,124.41,732.2,2335.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,2637,68120.55,2830.43,1618.54,72569.52,13849.12,9510.24,5792.44,29151.8,101721.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,6284,65463.53,0.0,0.0,65463.53,13224.88,10200.1,4735.87,28160.85,93624.38 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,23115,120802.72,0.0,525.0,121327.72,23224.09,8037.04,9662.39,40923.52,162251.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,42880,88831.0,23851.62,6172.02,118854.64,18661.04,12424.5,9726.16,40811.7,159666.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,5476,62889.28,0.0,401.64,63290.92,11401.84,5734.36,7544.12,24680.32,87971.24 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,27553,248574.02,0.0,6645.0,255219.02,50177.45,12424.5,12013.83,74615.78,329834.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31568,37680.24,1743.56,4651.51,44075.31,0.0,3260.72,3420.94,6681.66,50756.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1535,5375.71,0.0,700.87,6076.58,932.02,2331.09,484.74,3747.85,9824.43 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,44779,56120.04,0.0,0.0,56120.04,12556.8,12424.5,4602.03,29583.33,85703.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,21483,159010.38,0.0,0.0,159010.38,32001.18,12424.5,17770.23,62195.91,221206.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37714,126155.8,356.03,5339.87,131851.7,17209.62,12424.5,5956.56,35590.68,167442.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",27416,93738.02,7476.98,2788.62,104003.62,19655.5,12424.5,8336.72,40416.72,144420.34 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,10383,104629.06,0.0,0.0,104629.06,21560.7,12424.51,16879.0,50864.21,155493.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43188,93029.48,26625.05,4180.73,123835.26,19276.78,12424.5,2069.02,33770.3,157605.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,49841,75605.01,17841.4,4417.0,97863.41,15711.25,12424.5,7759.78,35895.53,133758.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",6264,34745.48,0.0,0.0,34745.48,7051.58,7305.37,2884.33,17241.28,51986.76 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,1454,12240.57,0.0,0.0,12240.57,3158.06,2867.19,982.67,7007.92,19248.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2189,112159.77,29175.57,19472.59,160807.93,24576.42,15052.76,2694.96,42324.14,203132.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37167,56531.0,0.0,3594.0,60125.0,11788.47,12424.5,4920.46,29133.43,89258.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34129,1820.8,0.0,0.0,1820.8,0.0,764.58,141.32,905.9,2726.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",44943,84814.54,0.0,1595.73,86410.27,17789.19,12361.19,6953.6,37103.98,123514.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,12709,85368.01,4998.2,0.0,90366.21,17594.59,12424.5,7477.03,37496.12,127862.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,29286,70245.0,9189.37,8979.14,88413.51,15640.76,12424.5,7187.33,35252.59,123666.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,16339,67261.02,0.0,624.0,67885.02,13991.51,12424.5,5627.94,32043.95,99928.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,29000,20295.6,0.0,6884.25,27179.85,4552.31,3727.35,2355.54,10635.2,37815.05 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,19173,173440.65,0.0,0.0,173440.65,34905.08,12424.5,17980.86,65310.44,238751.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33944,43138.02,4202.38,1368.8,48709.2,11563.32,13129.94,3640.69,28333.95,77043.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12274,1508.63,0.0,25.14,1533.77,0.0,0.0,0.01,0.01,1533.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,29136,71311.02,4851.44,624.0,76786.46,14826.41,12424.5,6347.97,33598.88,110385.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,31557,70245.01,405.15,5687.4,76337.56,14918.38,12424.5,6036.79,33379.67,109717.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,33007,74664.7,8850.53,7147.21,90662.44,16788.59,12424.5,7142.28,36355.37,127017.81 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",6516,2712.6,3380.88,38.85,6132.33,0.0,0.0,104.67,104.67,6237.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,42876,94096.83,0.0,192.0,94288.83,19410.12,12233.36,7169.12,38812.6,133101.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,14835,22702.19,0.0,0.0,22702.19,4224.9,3344.94,1805.03,9374.87,32077.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,18068,143231.68,9694.49,3108.96,156035.13,28256.41,12424.5,2604.54,43285.45,199320.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,30369,166171.01,3548.63,1047.92,170767.56,33490.27,12424.5,10518.65,56433.42,227200.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42346,64833.31,11152.46,2108.99,78094.76,18300.76,12772.63,6049.27,37122.66,115217.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25900,124727.5,267.02,7515.08,132509.6,25570.72,12424.5,9918.42,47913.64,180423.24 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23821,5669.0,0.0,126.65,5795.65,1274.46,1672.53,462.39,3409.38,9205.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19275,70558.51,44711.76,5488.6,120758.87,20870.05,13906.6,9394.19,44170.84,164929.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,28398,116976.08,0.0,0.0,116976.08,23541.49,12424.46,9551.89,45517.84,162493.92 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2326,Nursing Supervisor Psychiatric,13738,211551.0,0.0,36614.57,248165.57,46832.38,12424.5,11968.32,71225.2,319390.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,397,80512.26,0.0,3549.88,84062.14,16520.65,8802.28,6701.87,32024.8,116086.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20262,43234.25,1596.71,655.73,45486.69,11348.19,12737.08,3436.88,27522.15,73008.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47459,66445.23,8646.54,797.05,75888.82,15307.65,13093.1,5793.01,34193.76,110082.58 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39135,97181.82,30833.27,12880.34,140895.43,26194.21,12352.82,2397.59,40944.62,181840.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8644,119461.62,11475.96,3679.97,134617.55,23641.9,12424.51,2246.55,38312.96,172930.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,21423,73388.47,2176.63,7133.82,82698.92,15866.11,12421.52,6807.64,35095.27,117794.19 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,14750,87938.82,0.0,0.0,87938.82,18097.86,12424.5,7044.64,37567.0,125505.82 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,18748,106116.03,0.0,0.0,106116.03,21870.85,12424.5,8123.08,42418.43,148534.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,51727,71311.03,0.0,1676.0,72987.03,15038.52,12424.52,6047.33,33510.37,106497.4 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",48241,105082.01,0.0,0.0,105082.01,21657.95,12424.5,8346.19,42428.64,147510.65 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,17076,23606.4,0.0,0.0,23606.4,4393.17,3249.49,1871.01,9513.67,33120.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,1659,93036.0,37611.37,11691.65,142339.02,20769.82,12567.87,10074.88,43412.57,185751.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,21705,79514.55,0.0,0.0,79514.55,16090.58,10250.21,6270.48,32611.27,112125.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,40765,8791.03,0.0,61.31,8852.34,0.0,0.0,700.1,700.1,9552.44 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,8725,57383.02,0.0,1040.0,58423.02,13022.67,12387.16,4697.84,30107.67,88530.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",5300,Sub-Professional Engineering,5322,Graphic Artist,18504,19359.59,0.0,0.0,19359.59,259.81,4593.48,1498.82,6352.11,25711.7 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,9474,87408.12,1706.03,0.0,89114.15,19949.62,12424.5,1468.77,33842.89,122957.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,23190,102018.55,0.0,0.0,102018.55,21026.17,12424.44,7866.84,41317.45,143336.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4620,12207.0,0.0,0.0,12207.0,1759.16,1863.67,942.66,4565.49,16772.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42620,79904.45,0.0,9255.52,89159.97,2758.73,0.0,9316.5,12075.23,101235.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,17493,1857.0,0.0,0.0,1857.0,416.53,238.93,150.14,805.6,2662.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39584,17829.87,0.0,606.49,18436.36,0.0,5904.63,1429.64,7334.27,25770.63 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,17436,85004.0,10014.12,3641.7,98659.82,18037.92,12424.5,7682.78,38145.2,136805.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16928,1157.1,0.0,0.0,1157.1,0.0,501.76,89.58,591.34,1748.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",38197,150233.98,0.0,19236.36,169470.34,33357.78,15196.12,2641.75,51195.65,220665.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,49182,133912.2,0.0,3047.39,136959.59,27485.05,12285.19,10060.76,49831.0,186790.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28029,48282.34,17469.87,6393.76,72145.97,11382.37,8593.1,5706.06,25681.53,97827.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,28836,43900.88,0.0,1360.0,45260.88,9457.33,8875.93,3757.64,22090.9,67351.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4210,124714.91,55999.18,9443.44,190157.53,24681.49,12424.5,3187.78,40293.77,230451.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23649,2523.51,0.0,10.29,2533.8,0.0,1230.5,196.6,1427.1,3960.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,21444,95558.04,616.44,0.0,96174.48,19695.12,12424.5,7736.58,39856.2,136030.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,387,59949.64,407.75,190.0,60547.39,12366.18,12424.5,4820.29,29610.97,90158.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2416,Laboratory Technician II,11323,54591.43,0.0,0.0,54591.43,12201.41,12401.15,4188.85,28791.41,83382.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,36690,33792.0,0.0,0.0,33792.0,7755.39,7884.78,2722.68,18362.85,52154.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27300,59352.89,1937.56,8527.36,69817.81,12536.26,9127.23,3001.32,24664.81,94482.62 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,19145,102491.03,0.0,0.0,102491.03,21104.67,12424.5,8375.64,41904.81,144395.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,50594,118378.3,0.0,0.0,118378.3,23823.07,12424.5,9201.69,45449.26,163827.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14,70262.1,38497.44,1805.97,110565.51,19756.02,0.0,8702.02,28458.04,139023.55 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,5010,74412.02,0.0,3624.0,78036.02,15474.52,12424.5,6358.92,34257.94,112293.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,22575,63887.02,967.15,2712.69,67566.86,13726.51,12424.5,5337.91,31488.92,99055.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,12269,88600.02,613.34,2164.55,91377.91,18167.36,11739.24,7371.61,37278.21,128656.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,44369,91331.03,0.0,0.0,91331.03,18823.67,12424.5,7248.13,38496.3,129827.33 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",30640,1196.0,0.0,0.0,1196.0,0.0,71.44,94.53,165.97,1361.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13629,34583.19,3670.39,622.19,38875.77,9816.89,6954.73,2956.93,19728.55,58604.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,47885,75550.31,18315.53,1500.0,95365.84,15852.57,12424.5,7823.71,36100.78,131466.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,2458,14367.0,0.0,0.0,14367.0,2673.69,2867.19,1177.57,6718.45,21085.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,46707,0.0,0.0,566.67,566.67,0.0,0.0,43.35,43.35,610.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1029,66379.64,3896.25,691.5,70967.39,18359.78,13080.31,5528.62,36968.71,107936.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47544,23694.94,2850.28,584.53,27129.75,5990.81,7359.43,2068.36,15418.6,42548.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,48266,64560.07,4099.72,90.0,68749.79,13320.78,12134.8,5679.39,31134.97,99884.76 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,26176,65162.6,0.0,0.0,65162.6,13408.42,12424.5,5335.08,31168.0,96330.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19452,10989.85,0.0,0.0,10989.85,0.0,4705.48,898.28,5603.76,16593.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,33072,85653.83,15683.56,12088.14,113425.53,17519.6,12520.08,9212.81,39252.49,152678.02 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,7594,66377.57,3734.91,7687.7,77800.18,14729.15,12143.75,6242.38,33115.28,110915.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,19287,6345.0,0.0,0.0,6345.0,1423.17,1433.6,524.15,3380.92,9725.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,20318,2685.0,0.0,24.0,2709.0,504.14,477.86,214.37,1196.37,3905.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11942,4110.0,3796.94,166.4,8073.34,770.74,477.86,133.86,1382.46,9455.8 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",50904,110335.99,0.0,0.0,110335.99,22740.85,12424.5,8911.55,44076.9,154412.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,37721,58482.03,0.0,12556.56,71038.59,13090.61,8601.58,5783.72,27475.91,98514.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H032,"Capt,Fire Prev Or Fire Invsgtn",40957,168860.3,84092.61,10131.62,263084.53,35181.5,12424.5,4490.77,52096.77,315181.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22275,71400.75,845.57,4968.63,77214.95,15724.64,6736.82,6379.92,28841.38,106056.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46988,62468.88,7699.55,1755.08,71923.51,13166.24,12424.5,5667.35,31258.09,103181.6 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,18159,50781.26,1088.16,0.0,51869.42,10715.89,10035.18,4166.58,24917.65,76787.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7692,22774.46,0.0,761.95,23536.41,0.0,2000.04,1824.21,3824.25,27360.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,27860,80112.65,0.0,0.0,80112.65,16301.29,11047.54,6306.13,33654.96,113767.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,35163,52080.85,17550.38,8856.54,78487.77,12357.17,11579.76,6217.87,30154.8,108642.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,41463,67261.08,0.0,624.0,67885.08,13989.03,12424.5,5452.79,31866.32,99751.4 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,44939,22200.0,0.0,0.0,22200.0,4131.4,2389.33,1698.22,8218.95,30418.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,14412,60852.71,959.97,1500.0,63312.68,13943.09,12424.5,5092.81,31460.4,94773.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,41478,51365.2,0.0,0.0,51365.2,9539.67,5686.6,4130.85,19357.12,70722.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,2825,83148.02,0.0,0.0,83148.02,17137.11,12424.51,6777.8,36339.42,119487.44 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6124,Pr Environmental Hlth Insp,6595,90282.21,0.0,130.5,90412.71,17562.6,9015.24,7243.0,33820.84,124233.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11823,52463.77,3382.83,809.13,56655.73,12098.84,10355.82,4268.55,26723.21,83378.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39560,113233.58,38103.99,20929.59,172267.16,25481.14,15196.12,2926.11,43603.37,215870.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,16479,67355.37,303.86,616.36,68275.59,13996.33,12293.81,5618.58,31908.72,100184.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,718.0,"Glaziers, Metal, and Glass Workers, Local 718",7300,Journeyman Trade,7326,Glazier,40842,87196.44,0.0,2114.5,89310.94,18398.06,12376.72,7109.21,37883.99,127194.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,22635,83380.0,0.0,0.0,83380.0,17179.57,12216.45,6406.32,35802.34,119182.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,35149,9616.69,0.0,0.0,9616.69,0.0,2132.47,745.98,2878.45,12495.14 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1031,IS Trainer-Assistant,46468,58159.7,0.0,0.0,58159.7,9938.14,12149.73,4644.35,26732.22,84891.92 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,27672,0.0,0.0,210.58,210.58,0.0,0.0,16.11,16.11,226.69 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,39601,76792.5,0.0,0.0,76792.5,15480.82,10035.18,5892.33,31408.33,108200.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16810,12731.0,0.0,729.41,13460.41,2838.9,3345.06,1075.84,7259.8,20720.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44039,40985.84,5604.84,1136.62,47727.3,12255.45,8150.77,3644.25,24050.47,71777.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,37007,12004.63,0.0,1890.77,13895.4,3133.01,3433.94,1092.7,7659.65,21555.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,21180,118104.03,0.0,0.0,118104.03,23768.42,12424.5,9839.75,46032.67,164136.7 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,1284,4968.21,0.0,0.0,4968.21,1090.03,477.86,384.64,1952.53,6920.74 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,36523,42432.28,0.0,1000.0,43432.28,0.0,5241.59,3366.96,8608.55,52040.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,10070,116324.02,0.0,1843.2,118167.22,23730.83,12418.53,9460.04,45609.4,163776.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14653,70728.6,674.91,1055.21,72458.72,14081.08,10847.55,5103.8,30032.43,102491.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18205,62745.2,0.0,2829.9,65575.1,13219.64,11098.43,5358.01,29676.08,95251.18 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,16342,41992.01,0.0,637.26,42629.27,8787.67,7175.81,3509.48,19472.96,62102.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5304,Materials Testing Aide,45819,69419.01,1001.48,0.0,70420.49,14307.81,12424.49,5722.82,32455.12,102875.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,20390,138637.99,2288.65,8661.77,149588.41,27385.65,12424.5,2537.55,42347.7,191936.11 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,25416,53353.59,201.65,2650.91,56206.15,12155.98,11780.16,4409.35,28345.49,84551.64 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",37478,112273.99,0.0,0.0,112273.99,22052.83,12424.5,24875.94,59353.27,171627.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,46229,68067.05,3783.39,0.0,71850.44,14029.01,12424.5,5935.26,32388.77,104239.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47990,67871.74,9122.57,5031.76,82026.07,19986.63,13373.6,6374.07,39734.3,121760.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1249,Personnel Trainee,1820,33885.02,0.0,0.0,33885.02,7488.19,7167.99,2683.01,17339.19,51224.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19467,0.0,0.0,1870.94,1870.94,0.0,68.5,0.01,68.51,1939.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43090,66073.65,8729.49,584.95,75388.09,18259.82,13020.76,5622.44,36903.02,112291.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,45832,21201.58,6734.79,3067.78,31004.15,5471.18,4778.65,2461.56,12711.39,43715.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,28124,119467.38,3611.04,6430.6,129509.02,23620.97,12424.5,2150.18,38195.65,167704.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,7512,75028.0,1559.48,0.0,76587.48,15463.6,12424.5,6032.34,33920.44,110507.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,47970,8351.53,0.0,0.0,8351.53,0.0,0.0,660.47,660.47,9012.0 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,1696,53937.04,0.0,0.0,53937.04,10506.17,7645.85,4338.63,22490.65,76427.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,4564,112209.01,0.0,0.0,112209.01,22582.31,12424.5,8606.7,43613.51,155822.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,17657,16845.6,20.11,654.0,17519.71,3704.36,3679.56,1376.41,8760.33,26280.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,37109,6119.0,0.0,0.0,6119.0,1345.57,1672.53,483.05,3501.15,9620.15 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,18791,93738.0,11988.17,5119.44,110845.61,20135.85,12424.5,8702.3,41262.65,152108.26 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,12205,37756.06,0.0,0.0,37756.06,8437.01,6529.98,2988.54,17955.53,55711.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52296,1321.39,0.0,22.32,1343.71,0.0,509.22,104.02,613.24,1956.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",9784,93281.0,0.0,1000.0,94281.0,19430.34,12424.5,7623.46,39478.3,133759.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,38180,111166.48,8285.58,11832.45,131284.51,22564.18,12424.5,2190.42,37179.1,168463.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43710,6328.55,0.0,0.0,6328.55,0.0,2711.88,514.09,3225.97,9554.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,47059,59626.71,16259.14,14255.41,90141.26,14301.18,11798.68,7325.93,33425.79,123567.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,48615,150115.0,6385.78,10971.96,167472.74,30633.97,12376.71,10558.48,53569.16,221041.9 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0891,Mayoral Staff XI,32718,88831.0,0.0,0.0,88831.0,18080.75,12424.5,15196.77,45702.02,134533.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,40301,70791.0,20622.87,1817.08,93230.95,14990.77,12424.5,7353.62,34768.89,127999.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,7669,3915.0,0.0,31.54,3946.54,734.45,477.86,66.18,1278.49,5225.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,45278,53808.0,32186.79,7437.29,93432.08,11628.36,5734.39,1581.23,18943.98,112376.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,25116,98228.71,0.0,0.0,98228.71,20234.59,12424.5,7913.68,40572.77,138801.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7943,69121.72,1215.45,3334.04,73671.21,14356.41,12224.87,6028.36,32609.64,106280.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,27233,80495.7,9316.42,3705.08,93517.2,17281.34,12281.15,7676.46,37238.95,130756.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12942,119053.74,5848.0,250.0,125151.74,23965.0,11204.75,9860.51,45030.26,170182.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,11480,14544.0,0.0,0.0,14544.0,3262.2,2867.2,1172.32,7301.72,21845.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,18996,15380.99,0.0,55.41,15436.4,0.0,3966.3,1162.75,5129.05,20565.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,46687,63887.01,11118.77,1673.66,76679.44,13441.5,12424.5,6158.97,32024.97,108704.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,14558,64463.71,47.27,0.0,64510.98,13274.71,12424.5,5346.08,31045.29,95556.27 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,17182,91378.02,0.0,561.6,91939.62,18948.44,11182.04,7511.3,37641.78,129581.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,51483,41686.33,0.0,0.0,41686.33,7557.72,4031.98,2877.04,14466.74,56153.07 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,30098,92085.0,0.0,0.0,92085.0,18979.21,12424.5,7416.29,38820.0,130905.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,40923,80804.98,2437.34,10316.57,93558.89,17687.12,10231.21,7465.82,35384.15,128943.04 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,41924,93769.0,0.0,0.0,93769.0,19185.0,11468.77,7710.08,38363.85,132132.85 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,34263,6177.09,0.0,0.0,6177.09,0.0,2275.84,479.44,2755.28,8932.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,30399,56334.53,0.0,624.0,56958.53,12751.91,12472.29,4720.09,29944.29,86902.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6479,20214.35,0.0,3366.09,23580.44,373.96,0.0,5359.83,5733.79,29314.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,36058,100554.02,0.0,633.55,101187.57,20842.74,12424.51,8249.17,41516.42,142703.99 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,6140,61735.0,0.0,0.0,61735.0,12724.0,12424.5,4827.04,29975.54,91710.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1935,12552.34,921.29,68.01,13541.64,3026.84,3869.99,1036.51,7933.34,21474.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,27726,7474.18,0.0,6.11,7480.29,0.0,1762.13,580.58,2342.71,9823.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,50913,56531.0,0.0,3930.9,60461.9,11780.12,12424.5,4947.13,29151.75,89613.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,36748,44294.73,0.0,502.73,44797.46,9706.29,10009.91,3732.27,23448.47,68245.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,42961,9519.81,1327.48,538.27,11385.56,0.0,1355.95,883.7,2239.65,13625.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,31571,97934.03,0.0,1440.0,99374.03,20479.13,12424.5,8238.33,41141.96,140515.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,2787,36400.0,6835.22,7372.06,50607.28,7931.66,7167.97,4047.3,19146.93,69754.21 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,23988,186119.0,0.0,35296.51,221415.51,41202.31,12424.5,11505.9,65132.71,286548.22 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,41864,50389.4,0.0,0.0,50389.4,0.0,5973.32,3906.54,9879.86,60269.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47502,93562.88,17715.62,7457.24,118735.74,23925.48,11885.4,1967.66,37778.54,156514.28 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,33024,9180.61,0.0,0.0,9180.61,0.0,2802.98,712.14,3515.12,12695.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,37199,62468.8,0.0,947.16,63415.96,12999.79,12424.5,5208.45,30632.74,94048.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35954,32485.18,0.0,12213.8,44698.98,592.48,0.0,3942.94,4535.42,49234.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,37938,46870.02,558.67,0.0,47428.69,10197.58,10513.04,3822.3,24532.92,71961.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,44464,120111.08,0.0,7969.18,128080.26,24172.55,12424.48,9883.31,46480.34,174560.6 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,24100,85328.9,6573.99,0.0,91902.89,17592.48,12472.29,7479.59,37544.36,129447.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15003,6585.38,0.0,302.2,6887.58,0.0,2522.23,534.36,3056.59,9944.17 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,45266,71218.03,0.0,0.0,71218.03,15567.11,6690.12,5765.67,28022.9,99240.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30732,30956.41,0.0,4462.14,35418.55,9270.28,2336.11,5655.21,17261.6,52680.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47946,68522.24,41662.92,6526.5,116711.66,20581.42,13506.39,9149.11,43236.92,159948.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,22324,138623.97,25858.54,47067.61,211550.12,29073.04,12424.5,538.89,42036.43,253586.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36991,69738.47,27320.92,9007.79,106067.18,21571.1,13742.63,8090.65,43404.38,149471.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,5435,117139.21,55316.85,14665.81,187121.87,23170.33,12424.49,3144.24,38739.06,225860.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28457,10009.2,1045.71,1187.05,12241.96,2741.84,2723.83,982.52,6448.19,18690.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7398,Apprentice Cement Mason I,31908,11500.0,92.25,0.0,11592.25,0.0,2807.45,933.08,3740.53,15332.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,4954,112209.02,0.0,0.0,112209.02,22582.31,12424.5,8819.9,43826.71,156035.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1626,112159.76,28559.71,10336.29,151055.76,23388.63,15052.76,2466.38,40907.77,191963.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,29088,77104.76,1203.19,6070.19,84378.14,16071.13,11260.84,1433.06,28765.03,113143.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23123,83418.08,0.0,1513.68,84931.76,0.0,0.0,6717.74,6717.74,91649.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,15741,61428.07,0.0,1668.22,63096.29,12963.11,12424.5,5167.39,30555.0,93651.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,26128,97424.09,560.29,2224.0,100208.38,20536.14,12424.5,8023.45,40984.09,141192.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,34793,108015.65,29098.82,9017.47,146131.94,21583.21,11462.8,2405.62,35451.63,181583.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,30077,7471.0,263.66,190.96,7925.62,0.0,2879.14,614.63,3493.77,11419.39 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,37900,99783.18,0.0,480.0,100263.18,20644.89,12424.5,7852.68,40922.07,141185.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,47071,52985.11,0.0,920.0,53905.11,12927.47,12376.71,4355.26,29659.44,83564.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36191,113222.99,0.0,18647.29,131870.28,25097.42,15196.12,2199.57,42493.11,174363.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,46001,81628.84,8127.92,2343.76,92100.52,17035.23,12376.71,7509.86,36921.8,129022.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,47068,14591.68,1061.73,485.86,16139.27,0.0,3670.6,1250.51,4921.11,21060.38 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,6510,9080.63,1702.85,0.0,10783.48,0.0,2508.8,836.96,3345.76,14129.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28058,47044.2,0.0,5451.79,52495.99,12295.02,12424.5,4182.4,28901.92,81397.91 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,47751,43037.61,2613.97,2786.64,48438.22,2818.5,9647.15,3801.03,16266.68,64704.9 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,48612,9535.0,0.0,0.0,9535.0,2096.74,2389.33,745.07,5231.14,14766.14 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),23269,148538.77,0.0,1562.5,150101.27,30185.01,12351.33,10271.79,52808.13,202909.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21162,1322.4,0.0,63.23,1385.63,0.0,573.44,107.27,680.71,2066.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,10714,51989.11,0.0,0.0,51989.11,12445.6,12424.5,4233.61,29103.71,81092.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3359,8314.09,0.0,138.69,8452.78,0.0,3545.17,679.66,4224.83,12677.61 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,7155,102019.02,0.0,0.0,102019.02,21026.27,12424.5,8293.3,41744.07,143763.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,42300,3035.0,0.0,0.0,3035.0,680.75,477.86,239.77,1398.38,4433.38 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,22172,62736.52,0.0,34423.38,97159.9,15829.06,3584.0,7729.3,27142.36,124302.26 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,39430,113623.09,2883.51,0.0,116506.6,22860.58,12424.51,9372.89,44657.98,161164.58 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,50777,24431.0,0.0,0.0,24431.0,5479.87,5256.52,1918.25,12654.64,37085.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41135,10596.16,1653.0,543.42,12792.58,3062.15,3344.82,948.25,7355.22,20147.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29741,2027.38,0.0,0.0,2027.38,0.0,988.58,157.2,1145.78,3173.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,11346,73584.54,0.0,940.0,74524.54,15351.11,12424.5,6095.77,33871.38,108395.92 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27534,97354.37,9887.46,8494.68,115736.51,25744.5,12424.51,1288.93,39457.94,155194.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47983,66564.57,8034.98,2763.31,77362.86,18942.26,13114.19,5914.12,37970.57,115333.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,9979,34316.8,705.53,860.0,35882.33,2985.98,5208.74,2805.78,11000.5,46882.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,42034,25177.0,0.0,2447.08,27624.08,5942.24,6690.11,2217.61,14849.96,42474.04 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,7963,57662.25,0.0,4496.37,62158.62,13879.69,12424.5,5039.55,31343.74,93502.36 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,15702,89534.41,0.0,1000.0,90534.41,18210.29,9939.6,7223.41,35373.3,125907.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26446,39804.86,921.13,1105.85,41831.84,9725.72,7725.47,2365.32,19816.51,61648.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,12495,32576.51,0.0,817.73,33394.24,7459.45,5284.18,2787.25,15530.88,48925.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,29616,12064.0,0.0,0.0,12064.0,2705.96,1911.46,898.34,5515.76,17579.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34326,6859.95,0.0,0.0,6859.95,1115.92,2974.72,553.51,4644.15,11504.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,29844,56531.0,0.0,4887.62,61418.62,12290.89,12424.5,5065.55,29780.94,91199.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35184,10934.43,0.0,1785.22,12719.65,0.0,0.0,1265.39,1265.39,13985.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8694,17760.87,3077.06,536.9,21374.83,4385.75,5482.24,1616.03,11484.02,32858.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,34973,117140.96,1235.55,11184.54,129561.05,23164.17,12424.5,2160.09,37748.76,167309.81 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10029,92832.41,17923.19,14829.24,125584.84,26210.87,11792.46,2093.34,40096.67,165681.51 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,14434,68067.05,6445.94,0.0,74512.99,14029.01,12424.5,6053.39,32506.9,107019.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,32751,16569.0,0.0,0.0,16569.0,3716.42,2150.39,1387.87,7254.68,23823.68 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,24518,14102.04,0.0,0.0,14102.04,13354.1,0.0,281.13,13635.23,27737.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5130,Sewage Treatment Plant Supt,7797,137450.03,0.0,0.0,137450.03,27662.65,12424.5,10156.11,50243.26,187693.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45026,125207.5,0.0,8908.13,134115.63,26923.18,12376.71,10081.23,49381.12,183496.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43357,14152.01,0.0,351.01,14503.02,729.67,0.0,585.88,1315.55,15818.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5573,95788.77,2719.12,4004.07,102511.96,24267.03,12171.95,1741.29,38180.27,140692.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",21515,7959.46,0.0,0.0,7959.46,0.0,1684.47,617.6,2302.07,10261.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7071,0.0,0.0,8296.91,8296.91,0.0,68.5,615.59,684.09,8981.0 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,41222,86155.82,0.0,0.0,86155.82,17720.72,12418.53,6653.16,36792.41,122948.23 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,44437,253057.0,0.0,0.0,253057.0,50828.56,12424.5,19290.48,82543.54,335600.54 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,372C,Administrative Analyst II,22046,12045.6,0.0,0.0,12045.6,2241.67,2007.04,975.88,5224.59,17270.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,10605,11455.01,0.0,0.0,11455.01,318.47,3464.52,910.95,4693.94,16148.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,32893,145200.01,0.0,0.0,145200.01,29594.37,12424.51,10234.91,52253.79,197453.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,14472,74165.03,0.0,624.0,74789.03,15414.45,12424.5,6149.32,33988.27,108777.3 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,31677,9463.59,0.0,4539.84,14003.43,0.0,0.0,203.05,203.05,14206.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40377,3470.91,0.0,45.51,3516.42,0.0,1457.49,280.64,1738.13,5254.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,43436,116384.04,0.0,0.0,116384.04,23422.64,12424.5,9337.82,45184.96,161569.0 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,10815,72824.65,0.0,826.37,73651.02,15088.79,11653.95,5885.4,32628.14,106279.16 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,26802,54633.77,0.0,586.68,55220.45,11336.78,11681.36,4538.93,27557.07,82777.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,37287,75037.0,0.0,0.0,75037.0,15452.3,12305.04,5965.34,33722.68,108759.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32470,57098.64,2777.72,1431.22,61307.58,12120.34,10321.9,982.19,23424.43,84732.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,15149,42107.0,0.0,0.0,42107.0,7997.1,6212.25,3395.35,17604.7,59711.7 +Calendar,2015,1,Public Protection,SHF,Sheriff,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,48485,54807.12,0.0,21754.74,76561.86,11843.22,4997.22,10183.99,27024.43,103586.29 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,15644,125815.09,0.0,0.0,125815.09,25320.91,12424.5,9808.08,47553.49,173368.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,35757,81264.92,0.0,760.0,82024.92,16595.85,10345.79,6613.43,33555.07,115579.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40829,147665.0,1104.72,35280.53,184050.25,33180.36,12305.04,4211.6,49697.0,233747.25 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,25555,51152.13,607.52,0.0,51759.65,12266.72,12424.5,4207.18,28898.4,80658.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,13753,77640.0,0.0,0.0,77640.0,16777.79,7167.94,6073.93,30019.66,107659.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18825,51099.99,0.0,0.0,51099.99,10454.94,11468.76,4155.48,26079.18,77179.17 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,1809,61841.84,0.0,22570.0,84411.84,13568.07,6546.75,6760.59,26875.41,111287.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22285,66616.44,1637.83,1066.61,69320.88,15856.82,13127.14,5250.38,34234.34,103555.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,24592,138623.31,18597.37,5129.99,162350.67,27439.02,12424.51,2480.29,42343.82,204694.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42194,112159.77,19245.59,18541.46,149946.82,24822.83,15052.76,2508.56,42384.15,192330.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43707,65344.41,1928.59,1420.0,68693.0,13733.29,12378.92,5372.49,31484.7,100177.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10836,43472.02,2470.15,1633.95,47576.12,11714.93,13236.1,3560.28,28511.31,76087.43 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,27554,14839.17,0.0,0.0,14839.17,0.0,3694.49,1151.4,4845.89,19685.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50057,66651.83,2605.28,801.87,70058.98,18492.96,13135.09,5332.11,36960.16,107019.14 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,41237,37725.01,0.0,13324.11,51049.12,8526.31,5973.32,4324.2,18823.83,69872.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1550,41367.65,3419.47,812.26,45599.38,10962.18,12877.23,3453.0,27292.41,72891.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,18970,58011.65,343.05,1286.64,59641.34,12041.92,12288.02,4791.73,29121.67,88763.01 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,24506,45477.09,6356.49,2016.76,53850.34,10941.61,10829.64,4301.7,26072.95,79923.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47127,112159.76,2390.11,18935.27,133485.14,24822.81,15052.76,339.03,40214.6,173699.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25051,10290.6,0.0,249.39,10539.99,0.0,3431.68,816.67,4248.35,14788.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,2309,5912.63,0.0,48.5,5961.13,0.0,2274.34,462.6,2736.94,8698.07 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,52426,121.13,0.0,0.0,121.13,0.0,35.84,9.4,45.24,166.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,41337,95225.46,7800.09,3558.95,106584.5,20171.88,12142.35,8588.15,40902.38,147486.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,356,117135.34,35979.92,12917.1,166032.36,23184.7,12424.5,2759.83,38369.03,204401.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1608,57543.71,2564.87,1587.81,61696.39,13127.9,12424.5,4989.78,30542.18,92238.57 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,5076,10766.08,116.87,0.0,10882.95,0.0,0.0,860.3,860.3,11743.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,8830,13778.05,6372.7,1217.12,21367.87,3317.59,4229.11,1529.16,9075.86,30443.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,4473,14800.0,1050.79,239.4,16090.19,2798.85,2389.32,1474.85,6663.02,22753.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,8609,32483.0,0.0,0.0,32483.0,7285.96,5256.53,2447.96,14990.45,47473.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39907,0.0,0.0,584.34,584.34,0.0,68.5,44.7,113.2,697.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6044,65589.6,13121.64,0.0,78711.24,13487.86,12424.5,6272.58,32184.94,110896.18 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8149,Asst Chf Dist Atty's Invstgtor,24120,126833.0,0.0,8519.98,135352.98,30875.32,12424.5,2250.32,45550.14,180903.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,29833,10476.19,0.0,0.0,10476.19,0.0,2867.2,840.89,3708.09,14184.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,34218,30369.2,0.0,0.0,30369.2,5395.64,6672.2,2453.49,14521.33,44890.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,9953,4206.01,0.0,24433.54,28639.55,928.06,477.86,2201.5,3607.42,32246.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,49735,136247.75,33360.6,14357.14,183965.49,26917.89,12424.5,3101.39,42443.78,226409.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,36473,63887.01,1709.4,1385.0,66981.41,13426.27,12424.5,5086.03,30936.8,97918.21 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),18246,95234.91,0.0,950.0,96184.91,20393.74,6460.75,7524.61,34379.1,130564.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,6536,103571.1,0.0,0.0,103571.1,20863.32,11420.98,8306.56,40590.86,144161.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18279,67684.61,12426.37,3898.16,84009.14,19622.65,13339.43,6358.71,39320.79,123329.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33461,51526.94,0.0,2558.79,54085.73,10649.41,11317.95,4239.57,26206.93,80292.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,37680,67261.0,0.0,624.0,67885.0,13991.51,12424.5,5627.94,32043.95,99928.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,13456,62187.0,200.07,7636.74,70023.81,13921.38,12424.5,5732.4,32078.28,102102.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43113,8892.62,0.0,0.0,8892.62,0.0,3794.25,713.1,4507.35,13399.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14445,0.0,0.0,169.68,169.68,0.0,0.0,12.98,12.98,182.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44702,77856.3,677.31,2885.48,81419.09,15750.04,11946.64,4357.25,32053.93,113473.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,775,216.6,0.0,0.0,216.6,0.0,71.68,16.77,88.45,305.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,31233,56225.19,0.0,0.0,56225.19,12536.3,12222.42,4531.65,29290.37,85515.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51516,11312.72,0.0,2338.8,13651.52,202.26,0.0,4172.24,4374.5,18026.02 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,42521,95803.5,4346.03,15270.28,115419.81,27008.73,12174.1,1963.35,41146.18,156565.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",52907,28811.46,0.0,0.0,28811.46,3555.2,6782.7,2235.71,12573.61,41385.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,45019,63887.06,347.11,73.26,64307.43,13183.84,12424.5,5319.21,30927.55,95234.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7299,69273.51,20072.16,7790.54,97136.21,21130.48,13654.94,7593.94,42379.36,139515.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35273,95052.45,16060.02,8552.35,119664.82,25207.06,12077.76,1992.61,39277.43,158942.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,14592,62154.73,11288.93,984.34,74428.0,13006.75,12085.52,6091.51,31183.78,105611.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8211,Supv Bldg Grounds Patrol Ofcr,19106,67365.4,1069.33,1604.6,70039.33,14203.24,12424.5,5529.17,32156.91,102196.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14479,87027.09,1993.83,4794.8,93815.72,18008.42,12343.86,1508.28,31860.56,125676.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9871,1724.37,0.0,0.88,1725.25,0.0,934.82,133.58,1068.4,2793.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28260,63887.0,3626.61,1028.68,68542.29,13378.23,12424.5,5648.34,31451.07,99993.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48251,140334.0,0.0,7968.6,148302.6,21497.18,12424.5,6760.23,40681.91,188984.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,38199,135756.76,0.0,920.0,136676.76,27460.93,10656.22,9926.61,48043.76,184720.52 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,36358,104811.02,20016.38,2808.4,127635.8,22057.06,12424.5,9865.92,44347.48,171983.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48163,47664.0,4283.63,2154.37,54102.0,11841.39,10990.9,4142.43,26974.72,81076.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,33351,88088.31,29571.85,5787.11,123447.27,18705.04,9676.3,2049.16,30430.5,153877.77 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,36279,3981.0,0.0,0.0,3981.0,740.86,716.79,308.99,1766.64,5747.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,26855,53760.0,3660.12,2085.15,59505.27,13100.56,12376.71,4913.54,30390.81,89896.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2991,"Coord, Human Rights Comm",44442,14356.0,0.0,0.0,14356.0,2671.64,1911.46,1142.46,5725.56,20081.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10584,29149.19,925.26,3790.5,33864.95,7079.45,6445.8,2774.34,16299.59,50164.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19662,2422.16,283.85,0.0,2706.01,685.47,764.58,207.67,1657.72,4363.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,16444,58630.42,4982.81,7056.15,70669.38,17590.98,11039.35,6544.12,35174.45,105843.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,21760,66580.02,1119.81,1670.3,69370.13,13898.34,12424.5,5712.18,32035.02,101405.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12800,36218.7,0.0,3609.44,39828.14,7572.51,2732.73,4345.1,14650.34,54478.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,1460,12256.57,0.0,0.0,12256.57,0.0,2717.87,951.31,3669.18,15925.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,4999,35348.01,0.0,0.0,35348.01,6836.31,6690.11,2768.98,16295.4,51643.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,22200,97764.46,215.34,8794.68,106774.48,25911.0,12424.52,1770.64,40106.16,146880.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,22490,113900.01,0.0,0.0,113900.01,22840.53,11946.64,16966.49,51753.66,165653.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,49474,98157.01,0.0,0.0,98157.01,20225.21,12424.5,7847.8,40497.51,138654.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,21061,57453.97,0.0,100.58,57554.55,11820.93,10789.13,4787.82,27397.88,84952.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50016,66941.88,9010.5,3393.37,79345.75,19233.84,13191.13,5853.98,38278.95,117624.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,34447,38366.0,0.0,640.0,39006.0,2746.35,9079.45,3127.23,14953.03,53959.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,15874,33679.11,0.0,0.0,33679.11,0.0,3670.61,2460.87,6131.48,39810.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6115,Wastewater Control Inspector,8985,45893.54,262.73,950.0,47106.27,9001.66,6213.02,3815.85,19030.53,66136.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51953,56531.0,648.32,2624.25,59803.57,12664.6,12424.5,4600.39,29689.49,89493.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,24781,53219.14,0.0,0.0,53219.14,12754.1,12424.5,4283.59,29462.19,82681.33 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16637,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10991.88,60805.21,246594.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",8339,117786.58,0.0,0.0,117786.58,23069.86,9557.31,13869.19,46496.36,164282.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,1702,117129.66,6301.88,8263.19,131694.73,23205.2,12424.5,2242.18,37871.88,169566.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22851,33413.66,14.69,1183.16,34611.51,7143.44,5361.23,2904.97,15409.64,50021.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,46842,325.08,0.0,0.0,325.08,0.0,114.99,25.23,140.22,465.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,34760,47142.1,0.0,2445.0,49587.1,11301.34,12424.5,3978.45,27704.29,77291.39 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,19305,0.0,0.0,3605.79,3605.79,0.0,0.0,275.84,275.84,3881.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,41567,104275.18,0.0,0.0,104275.18,20964.61,10962.83,8493.36,40420.8,144695.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,25568,66102.02,337.25,1854.24,68293.51,13840.04,12424.5,5643.29,31907.83,100201.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,15323,25566.0,16556.0,3443.98,45565.98,5283.91,3822.92,3535.85,12642.68,58208.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45021,64699.33,18066.93,1609.38,84375.64,18119.78,12747.79,6374.44,37242.01,121617.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,48389,112776.03,3358.19,6175.96,122310.18,23928.77,12424.5,9728.75,46082.02,168392.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25641,41247.05,6032.58,1131.67,48411.3,11002.8,12846.64,3584.02,27433.46,75844.76 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,38358,9438.98,0.0,0.0,9438.98,0.0,0.0,746.65,746.65,10185.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13468,60992.6,3370.38,3690.26,68053.24,17794.65,12033.14,5185.79,35013.58,103066.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43695,34643.27,2308.02,1032.59,37983.88,7459.46,6767.59,2773.01,17000.06,54983.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,13462,68185.92,0.0,95.95,68281.87,12900.75,7167.99,5563.68,25632.42,93914.29 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,36925,113818.27,0.0,0.0,113818.27,22905.62,12420.8,8918.54,44244.96,158063.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27950,56163.3,26.9,699.37,56889.57,10885.46,8601.58,3963.33,23450.37,80339.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26374,5907.0,0.0,24.35,5931.35,0.0,1971.21,460.36,2431.57,8362.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10444,17884.4,0.0,801.47,18685.87,0.0,1385.75,1448.6,2834.35,21520.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,35098,14367.0,48.35,10.0,14425.35,3161.79,2867.19,1148.52,7177.5,21602.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,1578,63887.0,1465.21,639.12,65991.33,13299.96,12424.5,5941.22,31665.68,97657.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,5060,56508.35,24626.74,5417.6,86552.69,13793.87,12385.68,6634.5,32814.05,119366.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29544,1046.9,0.0,883.67,1930.57,270.1,453.97,156.12,880.19,2810.76 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,1851,99654.0,0.0,0.0,99654.0,22731.77,12424.5,1684.31,36840.58,136494.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,26382,57995.0,2765.61,2757.74,63518.35,13527.0,12424.51,5111.09,31062.6,94580.95 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,19092,66967.02,0.0,0.0,66967.02,13774.61,12424.5,5489.0,31688.11,98655.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,38801,6845.29,0.0,49.82,6895.11,0.0,2266.87,432.0,2698.87,9593.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,25911,54406.01,0.0,1304.0,55710.01,11242.25,10035.17,4560.0,25837.42,81547.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48714,124653.69,23900.08,5690.76,154244.53,24647.55,12424.5,2573.43,39645.48,193890.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16,64785.84,9459.73,672.61,74918.18,17918.63,12770.65,5626.25,36315.53,111233.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1936,Senior Storekeeper,45521,27762.45,0.0,0.0,27762.45,6227.09,5500.3,2232.69,13960.08,41722.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30678,22002.9,0.0,0.0,22002.9,4827.43,3392.84,1692.28,9912.55,31915.45 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),11463,198139.05,0.0,5462.78,203601.83,40974.08,12424.5,11294.99,64693.57,268295.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,28663,64511.07,46.24,80.0,64637.31,13310.91,12424.5,5115.64,30851.05,95488.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8996,45158.4,0.0,11334.36,56492.76,7521.86,0.0,8403.31,15925.17,72417.93 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",10885,68239.73,32771.74,7198.15,108209.62,17198.46,12214.24,2120.92,31533.62,139743.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46112,8229.17,0.0,170.7,8399.87,0.0,3509.32,675.55,4184.87,12584.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,34022,0.0,0.0,0.0,0.0,0.0,45.68,148.85,194.53,194.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,37175,176736.33,3071.16,10992.89,190800.38,35230.74,12424.5,3246.52,50901.76,241702.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,12546,204086.9,0.0,9689.28,213776.18,41135.87,12424.5,992.28,54552.65,268328.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21157,60755.29,8760.85,3952.26,73468.4,17808.39,11979.07,5512.19,35299.65,108768.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,17447,63322.34,0.0,0.0,63322.34,13000.57,11898.85,5233.24,30132.66,93455.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,6003,255.85,0.0,0.0,255.85,0.0,83.62,19.82,103.44,359.29 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,38563,67261.02,216.93,125.0,67602.95,13862.82,12424.5,5550.8,31838.12,99441.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),21915,6238.01,46.32,0.0,6284.33,0.0,1809.92,487.6,2297.52,8581.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48870,56531.0,0.0,6290.92,62821.92,12652.75,12424.5,5185.55,30262.8,93084.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,78,1570.36,0.0,0.0,1570.36,0.0,680.96,121.39,802.35,2372.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44894,31628.51,0.0,19921.3,51549.81,7885.36,4061.86,824.98,12772.2,64322.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39209,140334.0,0.0,290.23,140624.23,27074.33,12424.5,9561.98,49060.81,189685.04 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,40704,78963.1,0.0,624.0,79587.1,16403.15,12424.5,6554.4,35382.05,114969.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,29696,120820.81,0.0,0.0,120820.81,24441.01,11804.12,17075.26,53320.39,174141.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1694,114781.7,9073.95,12910.76,136766.41,23230.95,12424.5,2227.67,37883.12,174649.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,17920,49773.2,1377.21,1755.65,52906.06,12212.7,12424.52,4222.41,28859.63,81765.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21048,113233.61,63938.87,13918.72,191091.2,24034.6,15196.11,3213.55,42444.26,233535.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,42362,81144.55,15771.29,10964.25,107880.09,16917.98,5152.88,8757.39,30828.25,138708.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44675,302.77,113.54,0.0,416.31,85.68,95.58,32.23,213.49,629.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,42669,52107.57,7411.59,6186.59,65705.75,12698.89,7944.11,5471.01,26114.01,91819.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,41178,6371.44,0.0,100.0,6471.44,1451.54,1439.57,516.04,3407.15,9878.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42004,1680.55,0.0,46.83,1727.38,0.0,728.75,133.74,862.49,2589.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,27288,60587.28,0.0,0.0,60587.28,12482.64,12338.49,5380.84,30201.97,90789.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,26950,5601.5,1894.63,0.0,7496.13,1042.44,812.37,581.45,2436.26,9932.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30945,70245.0,17736.07,3344.05,91325.12,14606.45,12424.5,7222.19,34253.14,125578.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,40029,16378.0,0.0,0.0,16378.0,0.0,3631.78,1268.62,4900.4,21278.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,40098,126994.07,0.0,0.0,126994.07,25553.08,12424.5,9883.21,47860.79,174854.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28060,614.21,0.0,1.86,616.07,0.0,49.28,47.81,97.09,713.16 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,28411,143188.0,0.0,0.0,143188.0,28816.76,12424.5,10218.13,51459.39,194647.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6266,Senior Plan Checker,7187,80570.01,0.0,4357.11,84927.12,16922.84,8362.65,6854.0,32139.49,117066.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2820,Senior Health Program Planner,50579,47123.0,0.0,0.0,47123.0,8985.62,6690.12,3825.26,19501.0,66624.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,38612,45122.6,0.0,0.0,45122.6,10843.72,12137.78,3673.73,26655.23,71777.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,20575,61635.89,3753.08,8844.69,74233.66,13846.23,10892.28,5829.6,30568.11,104801.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,2911,37779.0,87.99,0.0,37866.99,9061.33,12424.5,3082.97,24568.8,62435.79 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,3556,2053.0,0.0,40.0,2093.0,460.25,477.86,162.45,1100.56,3193.56 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,355C,Ct Comp Facilities Coord,22660,68289.02,0.0,3000.0,71289.02,13429.76,8123.71,5865.39,27418.86,98707.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,11020,25868.79,175.6,3338.01,29382.4,6954.93,7035.02,2347.46,16337.41,45719.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7408,Assistant Power House Operator,31445,28730.0,5472.65,0.0,34202.65,5346.7,5734.39,2718.43,13799.52,48002.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,13751,33244.87,37.55,1518.4,34800.82,7095.49,6140.57,2822.96,16059.02,50859.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,10381,52533.99,391.09,1547.31,54472.39,12599.27,12423.49,4255.19,29277.95,83750.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",18857,136097.37,11726.63,0.0,147824.0,26496.89,11301.52,2468.57,40266.98,188090.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11111,1460.15,0.0,35.13,1495.28,0.0,633.17,130.77,763.94,2259.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9799,61214.88,8899.18,1839.19,71953.25,17137.9,12052.47,5611.23,34801.6,106754.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,23347,67871.91,1268.3,1014.9,70155.11,14121.01,12388.67,5810.46,32320.14,102475.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,3539,81697.89,0.0,1020.0,82717.89,17045.82,12412.55,6713.83,36172.2,118890.09 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",1751,93281.0,0.0,624.0,93905.0,19354.57,12424.5,7787.82,39566.89,133471.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,45541,81196.09,0.0,1376.42,82572.51,16969.34,11921.67,6806.36,35697.37,118269.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,7228,52840.58,34.73,7233.14,60108.45,11935.2,11610.82,4971.0,28517.02,88625.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38911,56531.0,0.0,2289.75,58820.75,11667.81,12424.5,4826.48,28918.79,87739.54 +Calendar,2015,1,Public Protection,POL,Police,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8126,"Sr Investigator, OCC",26670,26217.06,0.0,0.0,26217.06,4879.0,3133.0,2144.74,10156.74,36373.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14512,67727.44,2754.65,2314.28,72796.37,16429.91,13348.04,5560.34,35338.29,108134.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,9069,75550.3,54.2,960.0,76564.5,15742.03,12424.5,6346.4,34512.93,111077.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1802,Research Assistant,45817,67168.81,518.18,0.0,67686.99,13816.46,12285.68,5348.9,31451.04,99138.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,24289,70211.44,0.0,8381.61,78593.05,16867.55,12418.53,6415.07,35701.15,114294.2 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,15285,80826.19,0.0,3000.0,83826.19,16609.76,12205.75,6931.94,35747.45,119573.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18316,111593.76,62.93,25487.24,137143.93,0.0,8154.36,9644.42,17798.78,154942.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,9421,18305.11,0.0,0.0,18305.11,4701.57,4730.87,1447.43,10879.87,29184.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,50663,109948.94,6621.48,9940.43,126510.85,22829.41,12211.32,9884.9,44925.63,171436.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,307,0.0,0.0,867.0,867.0,0.0,68.5,66.32,134.82,1001.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5320,Illustrator And Art Designer,5307,83148.04,0.0,0.0,83148.04,17137.11,12424.5,6483.26,36044.87,119192.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",13973,10411.31,0.0,0.0,10411.31,0.0,2478.94,807.96,3286.9,13698.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,32818,3027.0,0.0,0.0,3027.0,563.32,477.86,234.94,1276.12,4303.12 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8135,Asst Chf Victim/Wit Invstgtor,11095,13944.0,0.0,160.0,14104.0,2624.76,1911.46,1137.54,5673.76,19777.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15439,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3296.85,18122.7,61890.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26403,113233.58,54685.75,10631.55,178550.88,23589.52,15196.12,2990.47,41776.11,220326.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7219,Maintenance Scheduler,22830,65754.17,0.0,0.0,65754.17,13556.04,0.0,5463.9,19019.94,84774.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44053,105695.22,26833.74,14659.2,147188.16,23139.68,14182.03,2453.29,39775.0,186963.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,48419,63887.02,45.79,0.0,63932.81,13167.4,12424.5,5283.62,30875.52,94808.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",3096,517.46,0.0,0.0,517.46,0.0,0.0,40.92,40.92,558.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,28689,175.0,0.0,0.0,175.0,0.0,0.0,13.85,13.85,188.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,37907,75927.02,2207.71,1837.07,79971.8,15648.74,12424.5,6613.03,34686.27,114658.07 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,41630,93681.0,42280.71,6088.5,142050.21,29123.54,12424.5,10130.8,51678.84,193729.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35411,119465.58,25790.19,14416.09,159671.86,23627.2,12424.5,2640.21,38691.91,198363.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,31328,5803.2,0.0,731.95,6535.15,1301.66,740.69,536.47,2578.82,9113.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,18327,13285.55,0.0,0.0,13285.55,0.0,4815.98,1029.66,5845.64,19131.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4708,9292.68,0.0,364.13,9656.81,0.0,3972.26,779.88,4752.14,14408.95 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,13954,99077.74,0.0,0.0,99077.74,20520.0,11695.75,7524.71,39740.46,138818.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,4441,17308.5,0.0,1381.92,18690.42,0.0,5208.74,1450.67,6659.41,25349.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,46164,45173.0,340.55,3372.05,48885.6,11372.26,12424.5,3896.46,27693.22,76578.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,50159,129604.94,74548.54,13846.13,217999.61,27749.09,15052.75,3563.95,46365.79,264365.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,32820,48710.0,0.0,0.0,48710.0,9612.77,8362.58,3895.56,21870.91,70580.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43905,121045.63,4479.05,5031.73,130556.41,0.0,10505.46,9534.76,20040.22,150596.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,37691,31213.03,0.0,0.0,31213.03,7001.05,6212.25,2415.65,15628.95,46841.98 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,34262,86442.29,0.0,0.0,86442.29,17985.1,11219.51,1467.44,30672.05,117114.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",27910,130329.29,33838.56,12401.93,176569.78,27864.67,15052.76,2955.28,45872.71,222442.49 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,43010,43538.62,0.0,15772.02,59310.64,9765.77,6546.76,4768.16,21080.69,80391.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",1400,"Clerical, Secretarial & Steno",1466,Meter Reader,14271,18339.48,0.0,0.0,18339.48,3956.83,3533.75,1507.49,8998.07,27337.55 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,45563,180520.0,0.0,24996.8,205516.8,39962.93,12424.5,11154.62,63542.05,269058.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5508,Project Manager 4,22385,206529.0,0.0,0.0,206529.0,41564.09,12424.5,11289.67,65278.26,271807.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,23221,79951.0,4377.09,0.0,84328.09,16478.21,12424.5,6656.17,35558.88,119886.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,39740,102402.93,0.0,0.0,102402.93,20786.4,11373.2,8139.08,40298.68,142701.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,15659,25991.77,0.0,306.42,26298.19,5354.82,1780.05,2056.68,9191.55,35489.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,34355,61616.8,2141.29,0.0,63758.09,12548.76,10942.76,5261.06,28752.58,92510.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,38901,60803.54,945.59,0.0,61749.13,12735.67,10638.6,4909.78,28284.05,90033.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,19153,81157.0,18906.79,20648.09,120711.88,20019.97,12424.5,9610.52,42054.99,162766.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24458,113233.6,30988.28,21493.12,165715.0,25481.14,15196.12,2768.91,43446.17,209161.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,23607,89210.03,0.0,1060.0,90270.03,18604.57,12424.51,7341.58,38370.66,128640.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,2537,1232.79,0.0,13.29,1246.08,0.0,576.42,96.72,673.14,1919.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,38912,74619.93,2643.76,680.0,77943.69,15473.59,12081.08,6085.58,33640.25,111583.94 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),3114,184289.06,0.0,5248.28,189537.34,38144.36,12424.5,11019.79,61588.65,251125.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,20900,29190.01,9613.17,3713.07,42516.25,6958.11,4778.65,3275.09,15011.85,57528.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38639,124660.38,79927.76,6944.85,211532.99,24646.69,12424.5,3510.62,40581.81,252114.8 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,5578,4782.5,246.06,140.7,5169.26,0.0,1131.95,400.2,1532.15,6701.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8204,Institutional Police Officer,18544,73583.04,2986.55,9117.82,85687.41,18867.85,12424.5,502.02,31794.37,117481.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14151,70309.16,3633.92,8126.06,82069.14,13890.11,8123.71,1368.93,23382.75,105451.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9775,139747.32,0.0,18847.39,158594.71,30800.64,12372.23,10435.0,53607.87,212202.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,32547,3881.0,0.0,465.72,4346.72,974.97,477.86,336.53,1789.36,6136.08 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,53202,55845.56,0.0,0.0,55845.56,12360.65,11583.4,4558.18,28502.23,84347.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,24461,54428.16,0.0,0.0,54428.16,12182.06,12316.98,4429.12,28928.16,83356.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,40528,136804.0,0.0,0.0,136804.0,27549.53,12424.46,10133.95,50107.94,186911.94 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),13201,160542.91,0.0,1500.0,162042.91,32582.63,12424.5,10436.89,55444.02,217486.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35502,55708.47,10173.55,982.3,66864.32,15237.73,10956.38,5219.41,31413.52,98277.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25401,96728.44,7190.8,10228.07,114147.31,25305.06,12346.85,1849.14,39501.05,153648.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,29886,87500.2,560.76,295.15,88356.11,17705.12,7741.42,6643.22,32089.76,120445.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35967,58571.43,15375.52,539.2,74486.15,16215.8,11555.56,5809.16,33580.52,108066.67 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,36447,118104.07,0.0,0.0,118104.07,23768.42,12424.5,8928.38,45121.3,163225.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,27290,112209.0,5257.4,0.0,117466.4,22870.16,12424.5,9591.13,44885.79,162352.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,35242,8832.94,0.0,0.0,8832.94,0.0,1224.53,685.58,1910.11,10743.05 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,30403,133087.04,0.0,11480.68,144567.72,26783.95,12424.5,10230.96,49439.41,194007.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,40899,62789.0,0.0,0.0,62789.0,11383.63,5256.52,8141.79,24781.94,87570.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23768,17686.06,2736.86,589.04,21011.96,4677.99,5459.72,1520.88,11658.59,32670.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,42289,83979.65,4724.32,5816.23,94520.2,18442.24,12242.32,7362.8,38047.36,132567.56 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,38592,106605.07,0.0,0.0,106605.07,21971.81,12424.5,8761.55,43157.86,149762.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,46715,111918.01,0.0,0.0,111918.01,23066.89,12424.5,9200.5,44691.89,156609.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,50371,12953.0,0.0,444.52,13397.52,2946.13,3345.06,1070.22,7361.41,20758.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32855,6931.59,0.0,0.0,6931.59,0.0,3005.78,559.05,3564.83,10496.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,48242,158998.57,1363.95,820.05,161182.57,31400.26,12424.5,2736.39,46561.15,207743.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,45752,57995.02,1596.33,877.77,60469.12,12945.03,12424.48,4896.36,30265.87,90734.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31054,95252.1,27010.7,15486.68,137749.48,26912.08,12105.59,2298.98,41316.65,179066.13 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,16627,93435.4,0.0,0.0,93435.4,19100.94,11372.48,7322.71,37796.13,131231.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14969,454.15,0.0,11.54,465.69,128.52,143.35,35.14,307.01,772.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,8424,63887.0,0.0,1938.68,65825.68,13561.3,12424.5,5439.35,31425.15,97250.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40516,7307.36,0.0,0.0,7307.36,0.0,567.46,457.72,1025.18,8332.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45345,63394.97,15237.03,6340.23,84972.23,19052.34,0.0,6678.1,25730.44,110702.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1662,79749.98,0.0,250.0,79999.98,16043.93,7282.67,5806.61,29133.21,109133.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,14843,80511.03,7012.65,4353.24,91876.92,17017.65,12520.08,1523.18,31060.91,122937.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29812,4098.53,0.0,0.0,4098.53,0.0,1579.47,317.91,1897.38,5995.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,13190,117026.02,24728.12,6739.72,148493.86,23204.52,12414.05,2487.22,38105.79,186599.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19873,8190.0,0.0,0.0,8190.0,0.0,2150.39,651.09,2801.48,10991.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15623,138338.13,0.0,22927.45,161265.58,0.0,0.0,10104.46,10104.46,171370.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",9087,36414.37,0.0,1022.21,37436.58,8108.75,5512.96,2982.66,16604.37,54040.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,33465,0.0,0.0,735.04,735.04,0.0,68.5,56.23,124.73,859.77 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1280,Employee Relations Representat,48260,21287.01,0.0,4158.19,25445.2,4774.7,3345.06,2052.64,10172.4,35617.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,18573,24768.0,671.84,23096.32,48536.16,5980.37,2867.2,3852.97,12700.54,61236.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,41656,6418.95,0.0,3710.36,10129.31,1447.62,925.86,929.12,3302.6,13431.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,52752,90241.03,990.6,5016.15,96247.78,18611.85,12424.5,7536.7,38573.05,134820.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37770,33747.37,1949.63,439.53,36136.53,8198.88,12413.99,2898.54,23511.41,59647.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,15174,59313.76,1001.47,915.3,61230.53,12325.32,11529.57,4962.55,28817.44,90047.97 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,50744,127060.12,0.0,2880.0,129940.12,25503.93,8422.39,9861.72,43788.04,173728.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,2809,149797.61,0.0,250.0,150047.61,30157.86,9939.6,10137.01,50234.47,200282.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,14915,5221.11,0.0,0.0,5221.11,1171.09,612.27,437.67,2221.03,7442.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6735,145325.08,0.0,16840.47,162165.55,31454.28,12293.09,4490.32,48237.69,210403.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,13832,119199.37,0.0,250.0,119449.37,23887.88,7909.03,9653.24,41450.15,160899.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,8186,65592.04,382.21,1380.4,67354.65,13762.79,12424.5,5518.68,31705.97,99060.62 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,1285,118052.46,0.0,5902.62,123955.08,24929.93,6845.42,9702.46,41477.81,165432.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,16008,43384.6,480.24,900.0,44764.84,9453.44,7891.89,3581.58,20926.91,65691.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49345,47495.3,4.84,997.69,48497.83,10110.4,7311.34,3731.84,21153.58,69651.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,47709,117140.94,39631.65,21998.65,178771.24,23164.17,12424.5,2969.83,38558.5,217329.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,45551,112951.96,338.61,4299.67,117590.24,22782.88,12392.66,1946.91,37122.45,154712.69 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,52389,31388.82,1814.09,1225.45,34428.36,6711.94,6076.36,2785.36,15573.66,50002.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,51651,77071.0,6676.61,1500.0,85247.61,16192.17,12424.5,6982.79,35599.46,120847.07 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,42664,100554.02,0.0,2200.0,102754.02,21153.49,12424.5,8429.44,42007.43,144761.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,24598,61735.0,177.0,1.18,61913.18,12724.26,12424.5,5061.84,30210.6,92123.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7646,35352.04,0.0,55.0,35407.04,7941.8,5734.39,2929.18,16605.37,52012.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,48171,112776.0,0.0,0.0,112776.0,22696.41,12424.5,9219.89,44340.8,157116.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39036,35778.35,2342.76,0.0,38121.11,8393.48,9539.39,3077.65,21010.52,59131.63 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,49651,72522.26,36.02,0.0,72558.28,14899.76,11970.53,5733.24,32603.53,105161.81 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,16898,222297.0,0.0,3555.0,225852.0,44720.81,12424.5,11505.86,68651.17,294503.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,14930,46989.88,2081.04,396.07,49466.99,9963.43,7886.09,4006.62,21856.14,71323.13 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",39417,131881.83,21860.35,16696.57,170438.75,29189.36,15148.33,2886.44,47224.13,217662.88 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,32504,78291.54,0.0,0.0,78291.54,16105.01,12424.5,5649.52,34179.03,112470.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,28088,1988.1,0.0,464.17,2452.27,445.93,430.07,192.57,1068.57,3520.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26665,187.95,0.0,0.0,187.95,0.0,62.72,14.55,77.27,265.22 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,32330,11284.7,0.0,0.0,11284.7,2100.09,2341.54,888.08,5329.71,16614.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4585,1966.13,0.0,0.0,1966.13,0.0,958.72,152.46,1111.18,3077.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,42610,13690.56,0.0,208.76,13899.32,0.0,4533.75,1077.71,5611.46,19510.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,11720,6345.0,0.0,0.0,6345.0,1423.17,1433.6,522.15,3378.92,9723.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35934,114367.59,4946.88,22065.2,141379.67,0.0,0.0,9765.26,9765.26,151144.93 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,13709,77245.75,40020.36,7376.27,124642.38,16897.25,10243.34,9781.64,36922.23,161564.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38403,56615.04,12025.14,2535.12,71175.3,15983.46,11140.53,5517.26,32641.25,103816.55 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,47193,75558.0,15077.14,78.13,90713.27,15506.87,11707.71,7192.11,34406.69,125119.96 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,46757,133087.01,0.0,16487.11,149574.12,26783.95,12424.5,10237.79,49446.24,199020.36 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33295,95223.16,45100.03,16809.32,157132.51,27251.61,12103.96,2677.85,42033.42,199165.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,40644,62465.2,761.89,3430.89,66657.98,13374.35,12424.51,4847.83,30646.69,97304.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",38261,15798.85,0.0,0.0,15798.85,0.0,3761.71,1224.5,4986.21,20785.06 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,23518,4870.94,0.0,242.25,5113.19,0.0,1463.46,396.87,1860.33,6973.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11028,67915.26,10373.59,1316.6,79605.45,18966.65,13380.89,5829.82,38177.36,117782.81 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,31805,55146.2,12448.4,7842.99,75437.59,12410.55,10858.0,5885.49,29154.04,104591.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,52466,85004.0,52759.81,12206.9,149970.71,17519.6,12424.5,10189.01,40133.11,190103.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,10950,138629.33,2021.99,4318.19,144969.51,27962.31,12424.5,2468.84,42855.65,187825.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7112,1910.0,0.0,145.16,2055.16,0.0,477.87,159.11,636.98,2692.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,41591,113127.3,6323.34,14555.07,134005.71,24993.59,12412.56,2173.61,39579.76,173585.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),40826,168735.7,0.0,1500.0,170235.7,34227.76,12424.5,10673.82,57326.08,227561.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,494,119455.88,20626.44,12913.08,152995.4,23662.82,12424.5,2552.56,38639.88,191635.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,37783,91161.21,0.0,6418.83,97580.04,23673.58,11610.28,100.61,35384.47,132964.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2615,65776.11,17774.8,1695.69,85246.6,18507.84,12964.25,6650.79,38122.88,123369.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2520,Morgue Attendant,22030,2885.86,0.0,0.0,2885.86,0.0,0.0,227.97,227.97,3113.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,21094,30864.91,7274.24,2775.49,40914.64,5785.04,3345.06,678.82,9808.92,50723.56 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,20464,68617.1,945.0,0.0,69562.1,14121.48,12424.5,1157.31,27703.29,97265.39 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,36374,10915.87,642.67,663.4,12221.94,0.0,3031.46,948.62,3980.08,16202.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",48173,52069.86,0.0,207.09,52276.95,10667.65,6917.09,4344.48,21929.22,74206.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,46025,71495.1,1828.2,0.0,73323.3,14585.59,11134.25,5887.5,31607.34,104930.64 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,45883,118104.11,0.0,0.0,118104.11,23768.42,12424.5,9460.14,45653.06,163757.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,11918,46205.0,9792.94,551.0,56548.94,9020.45,7167.99,4544.37,20732.81,77281.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",4100,Property Administration,4119,Events & Facilities Specialist,37496,41910.24,0.0,0.0,41910.24,8636.45,6245.11,3488.76,18370.32,60280.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,23304,62988.35,0.0,0.0,62988.35,13553.88,7946.13,5159.69,26659.7,89648.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,52957,2273.27,0.0,102.36,2375.63,0.0,498.78,183.92,682.7,3058.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,42137,63347.99,10951.65,2329.63,76629.27,2135.85,8114.16,6126.24,16376.25,93005.52 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,50548,66645.52,47.72,0.0,66693.24,13734.55,12424.5,5364.19,31523.24,98216.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,30254,8158.8,0.0,424.53,8583.33,0.0,1624.74,666.2,2290.94,10874.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,18730,14295.75,0.0,0.0,14295.75,3495.28,4324.68,1152.37,8972.33,23268.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,48694,44428.5,0.0,1407.33,45835.83,9791.74,8257.81,3747.05,21796.6,67632.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9894,5380.76,0.0,261.54,5642.3,1341.43,1070.06,412.98,2824.47,8466.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,30955,61317.64,178.85,1660.0,63156.49,12934.97,12402.04,5215.33,30552.34,93708.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,31012,13755.7,0.0,0.0,13755.7,0.0,1906.98,1067.67,2974.65,16730.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34477,8926.2,0.0,826.22,9752.42,1862.25,3870.71,776.68,6509.64,16262.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23455,80953.75,7140.03,3359.67,91453.45,16570.71,12424.51,3396.39,32391.61,123845.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,49826,108038.0,20095.91,15378.8,143512.71,24240.02,12424.51,10127.86,46792.39,190305.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,5429,130629.01,0.0,0.0,130629.01,26219.25,12424.5,17269.56,55913.31,186542.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37510,556.31,0.0,56.57,612.88,634.84,44.74,12.26,691.84,1304.72 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,9284,47371.26,1618.65,9280.12,58270.03,10867.06,6321.44,4797.2,21985.7,80255.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45053,8771.91,0.0,19.1,8791.01,2135.36,2189.22,681.29,5005.87,13796.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,30074,12812.0,2041.91,1806.67,16660.58,2407.61,1911.46,1289.45,5608.52,22269.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,16440,60652.6,2670.73,490.0,63813.33,12360.22,9805.39,5207.22,27372.83,91186.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,51918,111441.32,0.0,266.94,111708.26,22502.87,12281.15,9010.36,43794.38,155502.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,12920,200107.1,0.0,14394.8,214501.9,40264.74,12424.5,925.29,53614.53,268116.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,39866,154.3,0.0,0.0,154.3,0.0,47.79,11.95,59.74,214.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,10713,51510.05,10262.85,0.0,61772.9,10521.44,11280.37,4852.27,26654.08,88426.98 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,16124,87930.98,0.0,5319.42,93250.4,18255.39,12373.13,7739.31,38367.83,131618.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,10375,99162.91,31940.77,7249.22,138352.9,20494.76,9067.49,2364.89,31927.14,170280.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,5668,5880.0,0.0,0.0,5880.0,1318.88,955.74,479.35,2753.97,8633.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,37613,10479.74,0.0,40.0,10519.74,2359.57,1910.68,874.91,5145.16,15664.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,29122,14310.23,1240.69,1088.59,16639.51,3386.21,3327.14,1255.16,7968.51,24608.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26158,27174.81,1465.52,587.71,29228.04,7118.22,8482.28,2254.69,17855.19,47083.23 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5256,97769.92,24128.8,14950.04,136848.76,26699.85,12424.5,2124.66,41249.01,178097.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,38331,58607.89,204.45,0.0,58812.34,11848.3,10197.65,4791.17,26837.12,85649.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,24784,58743.84,1973.76,4928.75,65646.35,13120.23,8649.79,5207.06,26977.08,92623.43 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",26872,175152.02,0.0,3365.42,178517.44,35523.41,10990.9,9397.26,55911.57,234429.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,34247,16824.0,0.0,1135.63,17959.63,3130.96,1911.46,1432.42,6474.84,24434.47 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,20121,62222.02,0.0,247.85,62469.87,12742.13,11488.01,5162.68,29392.82,91862.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,2499,20552.33,0.0,25.23,20577.56,0.0,0.0,1628.3,1628.3,22205.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,35699,36286.6,271.1,183.95,36741.65,5294.52,10513.04,2967.79,18775.35,55517.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",26735,150234.02,32351.0,23017.81,205602.83,33843.91,15196.12,2461.54,51501.57,257104.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,8454,79286.48,1551.52,1281.0,82119.0,16290.85,9096.17,6799.0,32186.02,114305.02 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),2415,184289.05,0.0,5248.28,189537.33,38144.36,12424.5,11054.61,61623.47,251160.8 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0964,Dept Head IV,20347,168372.21,0.0,0.0,168372.21,32899.0,9079.44,15961.99,57940.43,226312.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,11418,16236.0,0.0,0.0,16236.0,2744.57,0.0,4838.02,7582.59,23818.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15873,68506.19,0.0,406.04,68912.23,10399.98,6257.05,2658.13,19315.16,88227.39 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,42543,69247.03,0.0,1420.0,70667.03,14563.89,12424.5,5810.75,32799.14,103466.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",8452,9031.5,0.0,0.0,9031.5,0.0,2150.4,700.59,2850.99,11882.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33569,13263.5,0.0,57.7,13321.2,0.0,5083.29,1032.59,6115.88,19437.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,14876,82632.95,0.0,0.0,82632.95,17070.52,12137.78,6166.95,35375.25,118008.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,893,182293.0,0.0,0.0,182293.0,36686.83,12424.5,28382.98,77494.31,259787.31 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,13530,32652.02,0.0,0.0,32652.02,7323.82,4300.79,2566.45,14191.06,46843.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3546,Curator 4,19307,72401.23,0.0,0.0,72401.23,14340.83,8601.58,5809.99,28752.4,101153.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17751,1929.38,0.0,9.8,1939.18,0.0,940.79,150.5,1091.29,3030.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,17833,90064.44,0.0,0.0,90064.44,18522.03,12424.5,7277.56,38224.09,128288.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,30861,22792.23,0.0,0.0,22792.23,0.0,3918.5,1763.9,5682.4,28474.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15468,66155.98,3863.99,1331.49,71351.46,15381.4,13035.93,5231.02,33648.35,104999.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40131,14411.63,1097.76,213.29,15722.68,3830.42,4549.22,1178.03,9557.67,25280.35 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,29727,53131.86,0.0,16041.15,69173.01,11917.49,6542.1,5571.11,24030.7,93203.71 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,18319,85559.21,0.0,0.0,85559.21,17618.77,12424.5,6808.27,36851.54,122410.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,26584,2870.18,0.0,108.34,2978.52,0.0,424.1,230.59,654.69,3633.21 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",38725,91836.26,0.0,375.0,92211.26,16717.91,5718.08,2923.88,25359.87,117571.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22750,2044.2,0.0,68.15,2112.35,0.0,0.0,37.27,37.27,2149.62 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,37053,123776.02,16654.69,24714.7,165145.41,25654.15,12424.5,10552.24,48630.89,213776.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45136,12220.65,0.0,362.69,12583.34,485.05,0.0,3224.49,3709.54,16292.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8407,28446.07,0.0,1579.75,30025.82,0.0,0.0,507.96,507.96,30533.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7308,72664.26,24728.18,4697.81,102090.25,15558.36,15052.75,1703.19,32314.3,134404.55 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,46556,111621.2,0.0,0.0,111621.2,22178.42,11420.99,8918.13,42517.54,154138.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45442,1318.58,0.0,232.13,1550.71,0.0,101.55,119.36,220.91,1771.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,25216,1302.28,0.0,2.16,1304.44,0.0,433.07,0.0,433.07,1737.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,32129,112690.83,1295.89,7430.44,121417.16,22311.19,12424.5,2128.71,36864.4,158281.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,48536,39229.5,0.0,0.0,39229.5,7300.58,5017.58,3015.91,15334.07,54563.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,48820,75863.44,5595.8,7591.52,89050.76,11150.11,11274.64,7045.82,29470.57,118521.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47695,67511.14,3383.38,6296.44,77190.96,8.67,5059.4,2143.19,7211.26,84402.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",39438,135109.01,19356.26,8106.54,162571.81,28262.89,12424.5,2724.34,43411.73,205983.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,21330,68067.05,0.0,624.0,68691.05,14157.66,12424.5,5648.61,32230.77,100921.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2770,Senior Laundry Worker,48487,54909.0,4797.57,6857.22,66563.79,13014.65,12424.5,5207.52,30646.67,97210.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,46288,85330.1,0.0,0.0,85330.1,17581.42,12418.94,7022.28,37022.64,122352.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,34283,59179.1,4901.27,608.82,64689.19,12483.24,10990.9,5130.86,28605.0,93294.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,37754,101752.51,3650.45,10318.26,115721.22,22324.26,15052.76,1929.85,39306.87,155028.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26210,56531.0,0.0,7130.82,63661.82,12386.2,12424.5,5200.24,30010.94,93672.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17352,148484.93,0.0,17735.21,166220.14,32487.22,12373.01,7622.4,52482.63,218702.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,15761,10216.8,0.0,175.05,10391.85,2468.34,3082.23,837.11,6387.68,16779.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,12557,63076.33,6811.59,1600.0,71487.92,13303.22,11951.12,5571.86,30826.2,102314.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49137,20541.18,3159.25,533.62,24234.05,5105.5,6369.18,1871.81,13346.49,37580.54 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,48004,101531.03,0.0,608.93,102139.96,21051.77,12424.5,8396.46,41872.73,144012.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49966,66429.67,10017.69,1574.38,78021.74,18608.33,13087.72,5945.64,37641.69,115663.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,41140,49679.0,0.0,5823.15,55502.15,12730.74,12424.5,4530.22,29685.46,85187.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,34152,54544.1,0.0,651.17,55195.27,11286.03,10970.71,4381.4,26638.14,81833.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27354,129495.52,0.0,10486.99,139982.51,24899.66,12185.81,3943.82,41029.29,181011.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,28995,50260.65,0.0,0.0,50260.65,9915.32,8253.62,3969.7,22138.64,72399.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,19104,100761.01,0.0,1479.01,102240.02,21072.11,12424.5,8432.27,41928.88,144168.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,46068,101531.01,8368.41,0.0,109899.42,20926.02,12424.51,8792.99,42143.52,152042.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,41830,84157.08,4378.15,3604.89,92140.12,17868.34,12424.5,7561.16,37854.0,129994.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41041,68690.79,15478.56,2626.92,86796.27,19552.84,13537.45,6732.2,39822.49,126618.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",43110,185060.0,0.0,0.0,185060.0,37236.94,12424.51,28258.87,77920.32,262980.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46558,50938.6,520.1,14441.93,65900.63,10920.82,4680.21,4768.88,20369.91,86270.54 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,52453,44239.0,0.0,0.0,44239.0,9922.77,6212.25,3558.66,19693.68,63932.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,30404,129617.3,73410.87,16202.11,219230.28,28633.41,15052.76,3695.19,47381.36,266611.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,51778,117129.68,27906.56,8876.08,153912.32,23771.41,12424.5,2522.45,38718.36,192630.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50708,102411.0,335.7,12060.83,114807.53,24095.78,10990.9,8803.25,43889.93,158697.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49941,33785.39,3646.09,1635.43,39066.91,9064.97,10540.57,2948.94,22554.48,61621.39 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,14516,2887.5,0.0,2622.47,5509.97,719.89,334.51,7.65,1062.05,6572.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,25585,71330.03,4059.52,40.0,75429.55,14657.3,11946.64,6168.92,32772.86,108202.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,36646,41837.6,0.0,473.52,42311.12,9113.13,8413.9,3502.53,21029.56,63340.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50327,0.0,0.0,35.76,35.76,0.0,0.0,2.74,2.74,38.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38976,119461.63,4441.57,8929.84,132833.04,23641.93,12424.5,2262.6,38329.03,171162.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,46604,30488.0,4252.69,1912.91,36653.6,5804.92,4922.02,2801.04,13527.98,50181.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,7494,14101.13,0.0,68.36,14169.49,3100.84,3739.29,1062.23,7902.36,22071.85 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2462,Microbiologist,12767,25640.0,0.0,0.0,25640.0,4771.61,4061.86,1994.73,10828.2,36468.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,46925,15777.53,0.0,0.0,15777.53,0.0,3781.11,1158.38,4939.49,20717.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,47366,12331.72,0.0,20.45,12352.17,0.0,3076.25,957.75,4034.0,16386.17 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,22432,13484.82,0.0,444.71,13929.53,3063.11,2347.52,1126.74,6537.37,20466.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,46987,84270.08,36287.31,7530.16,128087.55,17910.47,12369.26,9769.32,40049.05,168136.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,48145,129271.01,0.0,0.0,129271.01,26015.92,12424.5,9939.93,48380.35,177651.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,28078,75074.96,35221.18,11304.04,121600.18,16626.92,12337.05,9677.78,38641.75,160241.93 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,12093,56983.85,1719.32,4519.56,63222.73,13534.85,12243.57,4828.96,30607.38,93830.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14257,1673.66,0.0,0.0,1673.66,0.0,725.76,129.57,855.33,2528.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,18383,56472.18,0.0,0.0,56472.18,12594.2,11822.87,4385.3,28802.37,85274.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35436,56120.02,0.0,624.0,56744.02,12696.57,12424.5,4653.64,29774.71,86518.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47464,134174.9,0.0,0.0,134174.9,0.0,11751.43,9595.64,21347.07,155521.97 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),41472,131527.0,0.0,1562.5,133089.5,26774.16,12424.5,10029.78,49228.44,182317.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51295,77856.3,89.2,1442.73,79388.23,15750.04,11946.64,4323.02,32019.7,111407.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35321,8261.56,0.0,802.81,9064.37,1535.3,3582.49,734.63,5852.42,14916.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44149,42239.93,63.11,363.48,42666.52,9245.45,3288.25,1450.6,13984.3,56650.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,46440,76872.32,15383.54,8982.54,101238.4,17303.77,10414.6,8259.62,35977.99,137216.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,15817,97887.2,0.0,0.0,97887.2,20169.07,12418.53,8120.74,40708.34,138595.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",29819,118059.18,0.0,0.0,118059.18,23787.53,12385.67,17748.81,53922.01,171981.19 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,25775,17453.82,0.0,3753.0,21206.82,4990.86,1036.37,6834.04,12861.27,34068.09 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,50191,51120.09,0.0,0.0,51120.09,10147.79,3387.65,4023.3,17558.74,68678.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29191,66496.21,23319.27,5048.15,94863.63,19591.79,13101.45,7364.4,40057.64,134921.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26873,77856.3,894.92,3276.73,82027.95,15750.04,11946.64,4394.61,32091.29,114119.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22408,63574.32,13024.56,1711.63,78310.51,17827.63,12518.52,6110.6,36456.75,114767.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25660,61201.14,5346.34,570.82,67118.3,15033.67,12942.27,4958.12,32934.06,100052.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6403,103526.93,26273.52,11292.11,141092.56,21508.59,12424.5,2300.85,36233.94,177326.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,38019,108373.2,17357.79,16660.66,142391.65,30402.8,12424.5,2152.43,44979.73,187371.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,13329,72795.37,0.0,0.0,72795.37,14983.57,12294.94,5716.12,32994.63,105790.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,22497,136152.9,24702.83,11358.17,172213.9,26746.64,12424.51,2936.66,42107.81,214321.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2650,Assistant Cook,18009,50075.88,0.0,317.2,50393.08,12037.84,11813.02,4187.21,28038.07,78431.15 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,35384,31351.81,640.5,3000.0,34992.31,6338.77,6976.83,2899.99,16215.59,51207.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,18191,66102.01,8886.93,3180.51,78169.45,13950.16,12424.5,6402.74,32777.4,110946.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,26987,26235.83,0.0,600.0,26835.83,0.0,3876.68,2077.75,5954.43,32790.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,9408,68067.02,146.37,0.0,68213.39,14029.01,12424.5,5364.24,31817.75,100031.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",17684,451.6,0.0,0.0,451.6,0.0,95.58,34.97,130.55,582.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,41582,28877.34,0.0,0.0,28877.34,5439.5,4151.46,2324.09,11915.05,40792.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7259,Water & Power Maint Sprv 1,17408,63922.49,674.74,1200.32,65797.55,13571.69,8031.9,5531.94,27135.53,92933.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,8539,109076.04,0.0,0.0,109076.04,21787.68,11468.77,9092.88,42349.33,151425.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,49908,23162.2,9452.62,30517.61,63132.43,5691.35,2867.19,1003.62,9562.16,72694.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",6618,69511.08,30842.26,7486.2,107839.54,15394.53,10513.04,8552.86,34460.43,142299.97 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",2800,Public Health,2806,Disease Control Investigator,29478,73406.03,0.0,0.0,73406.03,15129.45,12424.5,5915.13,33469.08,106875.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4934,38735.44,6212.81,625.7,45573.95,11191.19,7703.24,3540.36,22434.79,68008.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,1934,64345.05,0.0,470.15,64815.2,13441.99,9361.2,5366.81,28170.0,92985.2 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,20389,4084.72,0.0,0.0,4084.72,0.0,1490.35,328.22,1818.57,5903.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,35605,29896.0,1843.5,2134.18,33873.68,5708.16,4826.44,2685.98,13220.58,47094.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",20746,8830.8,0.0,0.0,8830.8,0.0,2102.62,685.3,2787.92,11618.72 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,33535,74412.04,0.0,5055.0,79467.04,15474.54,12424.5,6592.18,34491.22,113958.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2552,"Dir Of Act, Therapy & Vol Svcs",24025,88368.0,0.0,1964.0,90332.0,18617.23,12424.51,7486.0,38527.74,128859.74 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,927,9463.59,0.0,0.0,9463.59,0.0,12424.5,137.22,12561.72,22025.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46695,98459.42,11920.64,5714.47,116094.53,20431.05,12424.5,1891.23,34746.78,150841.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,19619,68067.04,8534.21,3561.17,80162.42,14587.22,12424.5,6550.46,33562.18,113724.6 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,7074,4965.8,0.0,0.0,4965.8,0.0,669.02,385.14,1054.16,6019.96 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,19161,5724.0,0.0,48.0,5772.0,1294.66,955.73,484.96,2735.35,8507.35 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,28691,57794.0,0.0,0.0,57794.0,11527.42,9079.44,4596.89,25203.75,82997.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,20663,85368.03,0.0,120.0,85488.03,17616.84,12424.5,6927.74,36969.08,122457.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2039,16741.4,0.0,3588.74,20330.14,8915.68,0.0,348.62,9264.3,29594.44 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),41680,184289.05,0.0,1562.5,185851.55,37402.56,12424.5,10968.85,60795.91,246647.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39490,32289.0,2234.05,1920.11,36443.16,7700.01,8601.58,2923.2,19224.79,55667.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,33125,31305.04,603.38,33843.44,65751.86,5884.69,2389.33,104.55,8378.57,74130.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,44742,12108.0,0.0,0.0,12108.0,0.0,1911.46,964.86,2876.32,14984.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,17126,30906.01,4015.38,6437.08,41358.47,8122.03,6690.11,3320.67,18132.81,59491.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,12550,56531.0,0.0,2289.75,58820.75,11667.81,12424.5,4733.43,28825.74,87646.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,20250,107416.01,5365.48,26733.45,139514.94,22196.56,12424.5,10065.33,44686.39,184201.33 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,351.0,Municipal Executive Association - Miscellaneous,8200,Protection & Apprehension,8229,Manager Of Museum Security Services,18494,49639.5,0.0,0.0,49639.5,9637.42,7406.91,8710.07,25754.4,75393.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,32230,48430.01,0.0,0.0,48430.01,9009.29,10990.9,3867.92,23868.11,72298.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,32318,77760.94,0.0,2124.0,79884.94,16448.39,12424.5,6565.11,35438.0,115322.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32697,58468.05,0.0,4234.48,62702.53,873.14,0.0,1937.1,2810.24,65512.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1931,Senior Parts Storekeeper,6458,70961.01,20463.66,1028.81,92453.48,14600.54,12328.94,7147.75,34077.23,126530.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,33054,74664.72,2903.6,4702.33,82270.65,16262.54,12424.5,6773.28,35460.32,117730.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,34920,87077.0,7393.31,998.1,95468.41,17935.49,12424.48,7450.48,37810.45,133278.86 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,38557,64615.6,69.88,3059.79,67745.27,13555.29,12424.5,5499.05,31478.84,99224.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46151,55944.0,433.8,2384.35,58762.15,10881.61,6092.8,4756.51,21730.92,80493.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27482,61350.25,10463.24,6006.53,77820.02,18608.27,12117.35,6071.47,36797.09,114617.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25118,100045.21,0.0,6747.21,106792.42,22474.95,10943.12,8520.64,41938.71,148731.13 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,12311,36728.0,0.0,0.0,36728.0,8058.16,3822.92,2914.99,14796.07,51524.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,21876,137004.2,14638.39,14696.86,166339.45,27070.42,12424.5,2789.0,42283.92,208623.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,9254,"Asst To Dir, Public Affairs",18091,101275.82,0.0,0.0,101275.82,20826.15,12424.5,15977.06,49227.71,150503.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,20693,145200.06,0.0,0.0,145200.06,29221.73,12424.52,10202.07,51848.32,197048.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",6607,93738.02,9232.07,2300.33,105270.42,19670.94,12424.49,8601.56,40696.99,145967.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,39923,51925.02,321.86,1124.0,53370.88,12714.08,12424.5,4222.33,29360.91,82731.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,46748,52066.6,5786.08,921.24,58773.92,12670.57,12089.99,4765.03,29525.59,88299.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,937,119461.66,309.19,4524.0,124294.85,23788.71,12424.5,2116.38,38329.59,162624.44 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,42940,64511.03,1179.06,0.0,65690.09,13295.99,12424.5,5156.1,30876.59,96566.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",34493,139108.02,22135.34,15230.45,176473.81,30234.39,13284.66,2928.81,46447.86,222921.67 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4334,"Investigator, Tax Collector",25266,90151.0,646.12,0.0,90797.12,18580.57,12424.5,7529.63,38534.7,129331.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,44903,56614.0,0.0,941.83,57555.83,12852.42,12424.5,4678.14,29955.06,87510.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,11482,60636.7,5371.51,2991.36,68999.57,13005.1,11946.63,5349.82,30301.55,99301.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1265,119455.94,0.0,820.04,120275.98,23662.84,12424.5,2044.87,38132.21,158408.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,10227,104148.25,10716.88,9825.14,124690.27,22494.39,12400.61,9845.4,44740.4,169430.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48377,153511.8,0.0,12.19,153523.99,0.0,0.0,9831.66,9831.66,163355.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18916,67556.52,18591.24,7098.79,93246.55,20476.21,13311.06,7277.72,41064.99,134311.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,28525,56276.0,0.0,624.0,56900.0,12731.53,12424.5,4590.3,29746.33,86646.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",27849,22635.0,0.0,0.0,22635.0,4966.1,2389.33,3094.53,10449.96,33084.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,48786,79395.09,0.0,0.0,79395.09,16372.48,12424.5,6540.84,35337.82,114732.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3596,66072.39,7358.29,2607.18,76037.86,16744.95,13096.61,5811.24,35652.8,111690.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,9127,77071.03,0.0,754.0,77825.03,16039.3,12424.5,6452.57,34916.37,112741.4 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,42575,56730.51,0.0,1119.22,57849.73,11918.23,11418.01,4692.08,28028.32,85878.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,52137,109527.61,141.8,15280.42,124949.83,24936.35,12159.94,9869.43,46965.72,171915.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,26184,139597.07,0.0,0.0,139597.07,28044.65,12424.5,17405.04,57874.19,197471.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,31883,113525.48,0.0,0.0,113525.48,23090.55,12424.49,8487.91,44002.95,157528.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,5726,8670.0,0.0,0.0,8670.0,1613.49,1433.59,669.72,3716.8,12386.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45460,113233.6,56080.36,18617.22,187931.18,25053.96,15196.12,3198.55,43448.63,231379.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49576,58520.39,4215.18,973.84,63709.41,15452.73,13212.74,4597.84,33263.31,96972.72 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,41777,20610.03,0.0,16530.25,37140.28,4622.83,2389.33,2977.75,9989.91,47130.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3188,15397.52,0.0,32.48,15430.0,0.0,5117.94,1195.74,6313.68,21743.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,1157,94015.8,0.0,0.0,94015.8,19338.56,12424.51,7362.51,39125.58,133141.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16190,52267.09,515.54,0.0,52782.63,10694.92,11481.62,4392.11,26568.65,79351.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,13170,67435.02,0.0,166.24,67601.26,13897.56,9079.44,5417.63,28394.63,95995.89 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,29784,77064.02,0.0,0.0,77064.02,16460.39,9079.44,6259.09,31798.92,108862.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,25038,7702.5,0.0,0.0,7702.5,1987.25,1863.67,629.23,4480.15,12182.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,16427,49679.02,0.0,2069.4,51748.42,12065.35,12424.5,4183.58,28673.43,80421.85 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,30247,47.95,0.0,0.0,47.95,0.0,11.94,3.71,15.65,63.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32353,431.31,0.0,0.0,431.31,0.0,139.38,33.48,172.86,604.17 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,8018,2261.0,696.47,242.25,3199.72,0.0,669.02,248.35,917.37,4117.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,19109,20481.3,0.0,0.0,20481.3,4386.26,3153.91,1525.14,9065.31,29546.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48066,112143.33,113.71,13536.9,125793.94,24420.84,10879.8,9835.3,45135.94,170929.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,41209,100761.02,4249.48,4982.83,109993.33,21792.57,12424.5,8909.33,43126.4,153119.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7104,30576.09,2082.73,701.48,33360.3,8391.44,9651.76,2494.05,20537.25,53897.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22426,66237.26,6817.24,2598.93,75653.43,16141.03,13052.89,5770.32,34964.24,110617.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,29561,17728.2,0.0,162.08,17890.28,4012.77,3345.06,1428.53,8786.36,26676.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,41900,63307.02,13756.88,1860.61,78924.51,13216.61,12424.5,6108.66,31749.77,110674.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38287,112170.36,1523.96,18348.05,132042.37,24779.34,15052.77,2249.63,42081.74,174124.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,2467,85368.0,63.17,885.0,86316.17,17789.29,12424.5,6888.65,37102.44,123418.61 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,15592,67846.13,0.0,4375.8,72221.93,14372.81,12412.56,5964.46,32749.83,104971.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,24723,7203.01,0.0,0.0,7203.01,1615.63,1433.6,597.98,3647.21,10850.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15101,68213.47,18986.22,8249.77,95449.46,20967.45,13441.47,7466.93,41875.85,137325.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,5158,127129.07,0.0,0.0,127129.07,25584.75,12424.51,17173.19,55182.45,182311.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,29395,74968.22,3749.8,0.0,78718.02,15430.48,12137.8,6355.84,33924.12,112642.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H032,"Capt,Fire Prev Or Fire Invsgtn",20336,19587.0,8304.89,1175.22,29067.11,3664.53,1433.6,506.63,5604.76,34671.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26605,1469.93,0.0,293.99,1763.92,0.01,0.0,17.29,17.3,1781.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25323,40281.54,3978.37,1272.09,45532.0,10766.05,12593.59,3410.03,26769.67,72301.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24971,149045.57,3504.11,23672.71,176222.39,19564.25,12420.02,4399.19,36383.46,212605.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,43032,72153.05,172.38,0.0,72325.43,14871.07,12424.5,5677.3,32972.87,105298.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30905,56163.3,19.56,1278.9,57461.76,10885.46,8601.58,3969.29,23456.33,80918.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,31688,119455.9,14386.78,8868.08,142710.76,23662.81,12424.5,2376.3,38463.61,181174.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,21255,118104.0,0.0,0.0,118104.0,23768.42,12424.5,9404.78,45597.7,163701.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,30833,74296.92,0.0,60.0,74356.92,15309.23,12330.42,6051.34,33690.99,108047.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,17326,71016.2,5192.07,796.16,77004.43,14552.16,10417.47,5969.12,30938.75,107943.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41287,3435.34,0.0,0.0,3435.34,0.0,1442.56,274.35,1716.91,5152.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,50227,100858.12,0.0,0.0,100858.12,20788.82,12424.5,8319.37,41532.69,142390.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3194,119450.18,12042.36,4258.42,135750.96,23683.74,12424.5,2266.21,38374.45,174125.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,48162,85421.72,0.0,0.0,85421.72,17758.91,11468.77,6664.07,35891.75,121313.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,53054,4204.2,0.0,1139.99,5344.19,890.73,621.23,414.79,1926.75,7270.94 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,32449,4836.01,0.0,0.0,4836.01,1063.44,955.73,375.34,2394.51,7230.52 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,10026,42901.5,0.0,3000.0,45901.5,8533.26,8840.51,3657.91,21031.68,66933.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43185,17692.21,0.0,184.65,17876.86,4262.05,0.0,1414.23,5676.28,23553.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6436,130299.25,0.0,16117.23,146416.48,28604.29,11046.46,9366.14,49016.89,195433.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,25535,69336.79,0.0,0.0,69336.79,14286.22,9234.75,5460.61,28981.58,98318.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32679,142334.61,0.0,8534.54,150869.15,30274.58,12424.51,10302.93,53002.02,203871.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,35731,116274.88,30501.37,11044.31,157820.56,23016.51,12316.98,2339.66,37673.15,195493.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,551,62473.36,0.0,0.0,62473.36,12858.93,12411.36,5035.67,30305.96,92779.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,31750,84522.75,56089.85,10940.21,151552.81,19034.89,12406.58,10214.93,41656.4,193209.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22627,15565.75,41.33,1337.89,16944.97,1819.81,6749.85,1364.37,9934.03,26879.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43125,143603.77,705.25,14154.03,158463.05,19734.73,11966.05,5024.73,36725.51,195188.56 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,17912,969.0,211.97,0.0,1180.97,0.0,286.72,91.66,378.38,1559.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,1245,28769.85,0.0,363.6,29133.45,7263.26,7562.23,2436.58,17262.07,46395.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47870,26631.59,0.0,3303.82,29935.41,0.0,2017.43,2319.26,4336.69,34272.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,496,87359.05,193.95,600.0,88153.0,18116.64,12424.49,7170.33,37711.46,125864.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13835,56531.0,0.0,7286.44,63817.44,12428.96,12424.5,5012.51,29865.97,93683.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33742,68965.92,10059.19,3864.54,82889.65,19973.82,13590.79,6341.92,39906.53,122796.18 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,24647,31525.92,0.0,0.0,31525.92,1336.98,5686.6,2508.24,9531.82,41057.74 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,35227,33073.25,0.0,0.0,33073.25,0.0,4251.51,2545.93,6797.44,39870.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1474,Claims Process Clerk,53164,63887.04,0.0,0.0,63887.04,13167.4,12424.5,5005.74,30597.64,94484.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,32944,51405.0,0.0,2125.16,53530.16,12430.64,12424.5,4178.74,29033.88,82564.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,26661,61339.97,472.45,4739.44,66551.86,13285.33,12406.58,5438.81,31130.72,97682.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,18525,14480.0,0.0,0.0,14480.0,3247.85,2389.33,1139.79,6776.97,21256.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,22856,51974.12,1213.37,872.8,54060.29,11039.67,10146.11,5262.85,26448.63,80508.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5211,605.54,227.08,0.0,832.62,171.37,191.14,65.77,428.28,1260.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8500,107500.03,31217.05,19241.59,157958.67,24376.92,14428.25,2666.85,41472.02,199430.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,14056,108127.32,0.0,0.0,108127.32,21983.24,12281.15,8306.69,42571.08,150698.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,29788,59141.5,0.0,0.0,59141.5,0.0,5847.88,4584.03,10431.91,69573.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,39056,111953.03,0.0,0.0,111953.03,22805.51,12424.5,9020.49,44250.5,156203.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47760,63976.21,20384.12,552.15,84912.48,17641.04,12605.01,6633.25,36879.3,121791.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,28470,76427.75,14545.88,5630.02,96603.65,16272.48,12376.71,7628.12,36277.31,132880.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12692,14800.0,178.11,178.53,15156.64,2787.51,2389.33,1174.14,6350.98,21507.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16921,229.46,0.0,15.3,244.76,0.0,0.0,19.39,19.39,264.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48205,66300.65,5147.02,3968.65,75416.32,15975.35,13061.2,5723.14,34759.69,110176.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5817,2156.95,178.94,263.68,2599.57,448.99,411.74,178.2,1038.93,3638.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,22528,65452.11,16504.7,624.0,82580.81,13615.1,12424.5,6491.2,32530.8,115111.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,32764,50577.62,5412.38,7106.84,63096.84,11299.13,9633.89,5211.81,26144.83,89241.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,44165,81157.01,2945.88,1414.5,85517.39,17006.64,12424.5,6690.18,36121.32,121638.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9508,Prpl Permit And Citation Clerk,45773,82152.05,503.01,0.0,82655.06,16930.7,12431.97,5651.22,35013.89,117668.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,49256,50263.56,0.0,200.0,50463.56,12044.94,11848.02,4097.2,27990.16,78453.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,48277,15494.4,0.0,58.06,15552.46,0.0,4765.22,1206.05,5971.27,21523.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44560,129829.81,6241.2,250.0,136321.01,26015.11,11851.06,10049.43,47915.6,184236.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",8097,17427.0,0.0,0.0,17427.0,3159.51,1433.6,2424.94,7018.05,24445.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9128,92001.3,3407.39,5333.81,100742.5,19925.28,12424.5,8289.18,40638.96,141381.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,45227,100554.02,0.0,0.0,100554.02,20724.83,0.0,8307.58,29032.41,129586.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34889,97759.61,7118.91,15916.03,120794.55,26923.74,12424.5,2010.4,41358.64,162153.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1520,77102.16,4152.23,7441.23,88695.62,16928.94,15196.11,1478.17,33603.22,122298.84 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,38521,99654.04,0.0,0.0,99654.04,22731.78,12424.5,249.37,35405.65,135059.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,2752,59463.4,0.0,0.0,59463.4,11828.83,8888.3,4798.13,25515.26,84978.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38837,14593.5,0.0,0.0,14593.5,3216.75,3297.27,1147.24,7661.26,22254.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49793,56531.0,0.0,724.2,57255.2,11817.65,12424.5,4719.99,28962.14,86217.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4349,55562.8,5109.69,1934.7,62607.19,12399.22,12424.5,4813.78,29637.5,92244.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3974,138732.36,24487.06,13133.92,176353.34,27405.9,12424.5,2950.4,42780.8,219134.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,15417,84456.41,0.0,0.0,84456.41,17394.32,12424.5,6976.26,36795.08,121251.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,52421,70827.03,0.0,0.0,70827.03,14029.88,8601.58,5704.59,28336.05,99163.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,34373,100761.02,5244.5,590.0,106595.52,20879.5,12424.44,8525.04,41828.98,148424.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43362,119467.41,14140.61,6060.54,139668.56,23621.0,12424.5,2324.42,38369.92,178038.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,440,61703.89,0.0,0.0,61703.89,12869.57,10906.38,4706.78,28482.73,90186.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,21763,75550.3,25578.71,1525.0,102654.01,15856.65,12424.5,8093.18,36374.33,139028.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,16321,56531.0,0.0,5193.59,61724.59,12430.31,12424.5,5053.88,29908.69,91633.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,34085,85368.0,0.0,880.0,86248.0,17776.34,12424.5,7137.0,37337.84,123585.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,41235,50112.03,540.28,15895.54,66547.85,12605.7,7645.85,5422.64,25674.19,92222.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19503,77071.03,17083.52,1500.0,95654.55,16192.94,12424.5,7687.86,36305.3,131959.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,33302,35159.35,384.96,2277.31,37821.62,8020.81,5728.42,3056.09,16805.32,54626.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,48585,78630.02,0.0,0.0,78630.02,16340.65,11468.77,6502.39,34311.81,112941.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48806,119461.69,14758.15,20788.86,155008.7,23641.95,12424.5,2562.82,38629.27,193637.97 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51658,51477.0,0.0,0.0,51477.0,12342.84,12424.5,4267.59,29034.93,80511.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46790,32875.43,4546.55,1115.66,38537.64,8698.08,10255.78,2912.24,21866.1,60403.74 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,10137,58359.06,1673.88,486.05,60518.99,13029.45,12283.18,4655.89,29968.52,90487.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,21787,84639.98,1940.4,1115.1,87695.48,17587.13,12423.91,7214.43,37225.47,124920.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,26812,135421.0,0.0,2979.06,138400.06,27860.6,12424.51,10175.77,50460.88,188860.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17687,11604.83,0.0,0.0,11604.83,600.6,4969.8,946.01,6516.41,18121.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,17706,117140.98,0.0,13779.71,130920.69,23164.17,12424.5,2174.61,37763.28,168683.97 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50255,97762.36,47294.41,24108.21,169164.98,28900.15,12424.52,2884.02,44208.69,213373.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,16388,23319.23,0.0,289.11,23608.34,5630.88,5756.31,1680.4,13067.59,36675.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,30721,8725.62,0.0,61.31,8786.93,0.0,3162.87,681.08,3843.95,12630.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6303,56531.0,26570.22,7239.55,90340.77,12532.08,12424.5,7305.95,32262.53,122603.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38668,56314.9,5960.23,5388.99,67664.12,12275.76,12376.71,5568.29,30220.76,97884.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,16513,13755.0,37.14,9786.52,23578.66,3633.97,3345.06,1907.6,8886.63,32465.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,42308,43731.01,162.36,546.68,44440.05,8627.27,7645.85,3419.08,19692.2,64132.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,47091,51405.0,0.0,3331.1,54736.1,12491.65,12424.5,4474.23,29390.38,84126.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,49631,24424.22,221.53,5.69,24651.44,1082.4,7799.2,1988.38,10869.98,35521.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,64,87845.03,0.0,0.0,87845.03,18088.06,12424.5,7035.04,37547.6,125392.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,6490,150710.01,108.3,2478.9,153297.21,30668.82,12424.5,10350.79,53444.11,206741.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1893,3884.15,0.0,437.37,4321.52,0.01,0.0,115.32,115.33,4436.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24155,55366.07,5088.21,799.33,61253.61,14576.96,13169.2,4448.67,32194.83,93448.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,9785,84971.18,1615.33,5957.8,92544.31,17768.63,12410.83,1491.45,31670.91,124215.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45881,94137.1,11946.62,4001.26,110084.98,19559.95,12424.5,1543.85,33528.3,143613.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30800,108739.76,41559.14,18157.24,168456.14,25200.35,15052.75,2740.47,42993.57,211449.71 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",23632,20157.06,3853.81,0.0,24010.87,0.0,0.0,1899.46,1899.46,25910.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29949,24331.9,0.0,3670.48,28002.38,779.89,0.0,1188.41,1968.3,29970.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,2426,141531.52,4552.72,5070.32,151154.56,28014.79,12424.5,2520.57,42959.86,194114.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41367,112696.73,61.19,25637.45,138395.37,17172.51,10934.75,5918.02,34025.28,172420.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,14186,85004.01,0.0,0.0,85004.01,17519.6,12424.5,6758.52,36702.62,121706.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,19988,97174.06,0.0,0.0,97174.06,20028.47,12424.5,7795.05,40248.02,137422.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,377.0,"Iron Workers, Local 377",7200,Supervisory-Labor & Trade,9346,Fusion Welder,2374,34191.01,0.0,720.0,34911.01,7830.54,4300.78,2857.57,14988.89,49899.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,53044,3650.5,0.0,55.86,3706.36,0.0,1780.05,287.52,2067.57,5773.93 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,49985,72846.32,0.0,0.0,72846.32,14961.65,11943.66,5843.06,32748.37,105594.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36882,80946.09,4911.81,5947.64,91805.54,16876.69,12424.51,1483.23,30784.43,122589.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,41661,21596.9,180.6,0.0,21777.5,4691.25,3928.59,1831.06,10450.9,32228.4 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23113,24917.09,0.0,0.0,24917.09,5620.7,6920.09,1901.82,14442.61,39359.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,52204,93281.02,0.0,2084.0,95365.02,19654.56,12424.51,7487.35,39566.42,134931.44 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,34924,19767.26,0.0,0.0,19767.26,4346.84,5408.84,1569.73,11325.41,31092.67 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,38476,4715.68,0.0,127.27,4842.95,0.0,1036.37,375.89,1412.26,6255.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,50076,82883.01,3728.52,4804.5,91416.03,18023.79,12424.5,7368.68,37816.97,129233.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43801,77071.06,3134.74,0.0,80205.8,15884.7,12424.5,6589.33,34898.53,115104.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,38914,17193.17,0.0,223.81,17416.98,2008.9,5689.77,1397.35,9096.02,26513.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,9926,117137.5,0.0,1257.05,118394.55,23176.47,12424.5,458.59,36059.56,154454.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22157,55743.53,0.0,7827.46,63570.99,13454.79,12399.59,5190.44,31044.82,94615.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,45446,14094.21,0.0,0.0,14094.21,1491.97,1024.43,883.95,3400.35,17494.56 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,45898,9006.51,0.0,0.0,9006.51,1976.02,955.73,734.06,3665.81,12672.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,32538,75006.06,12224.35,0.0,87230.41,15451.57,12358.02,7153.6,34963.19,122193.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5963,67967.79,1833.44,3404.89,73206.12,19542.85,13392.9,5655.39,38591.14,111797.26 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,27260,1780.15,0.0,0.0,1780.15,0.0,0.0,140.99,140.99,1921.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26724,100889.91,67.05,24361.9,125318.86,21341.47,8931.01,9119.08,39391.56,164710.42 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,20642,96612.71,0.0,0.0,96612.71,19915.52,12424.5,7783.37,40123.39,136736.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43257,78928.04,0.0,0.0,78928.04,0.0,5435.72,6118.05,11553.77,90481.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,17586,4754.4,254.7,0.0,5009.1,0.0,1338.02,387.8,1725.82,6734.92 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23120,36012.01,0.0,0.0,36012.01,8483.21,10035.18,2919.3,21437.69,57449.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16932,113233.6,38900.44,19153.06,171287.1,25036.03,15196.12,2865.34,43097.49,214384.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2582,56531.01,0.0,1965.6,58496.61,11651.3,12424.5,4705.94,28781.74,87278.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,6926,97934.04,25795.33,7256.68,130986.05,21603.6,12424.5,9924.77,43952.87,174938.92 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,51585,63444.09,8343.36,2855.28,74642.73,13537.66,9079.44,5791.16,28408.26,103050.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,11254,70245.0,0.0,4141.3,74386.3,14616.8,12424.5,6089.09,33130.39,107516.69 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,5640,87961.52,0.0,3621.64,91583.16,18262.3,12377.43,7611.87,38251.6,129834.76 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50711,5970.36,0.0,4772.08,10742.44,1558.23,1378.94,879.6,3816.77,14559.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37419,121064.1,0.0,16101.74,137165.84,15243.64,12376.71,9747.08,37367.43,174533.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,24972,42221.42,511.84,5747.65,48480.91,9967.77,6496.46,4046.57,20510.8,68991.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,30891,104811.01,0.0,0.0,104811.01,21601.92,12424.5,8677.0,42703.42,147514.43 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8143,Sr Public Defenders Invstgtor,43115,101531.02,0.0,0.0,101531.02,20926.02,12424.5,7864.4,41214.92,142745.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,12724,32.7,0.0,0.0,32.7,0.0,11.94,2.53,14.47,47.17 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,29583,122908.76,0.0,6145.44,129054.2,25945.69,7394.96,9890.75,43231.4,172285.6 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,16300,68067.08,0.0,1664.0,69731.08,14353.12,12424.5,5777.11,32554.73,102285.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,17947,83726.55,8489.91,4974.46,97190.92,17855.44,12361.78,7953.39,38170.61,135361.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41022,936.7,0.0,0.0,936.7,0.0,406.19,72.51,478.7,1415.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,3119,45178.01,0.0,0.0,45178.01,8407.66,5734.38,3608.91,17750.95,62928.96 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1752,Sr Microphoto/Imaging Tech,43725,62257.83,0.0,615.61,62873.44,12944.19,12257.25,5170.37,30371.81,93245.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,845,78610.0,0.0,624.0,79234.0,16330.59,12424.5,6553.49,35308.58,114542.58 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,52854,2574.0,0.0,13.46,2587.46,667.56,776.54,213.01,1657.11,4244.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,15581,29993.49,13877.61,3316.47,47187.57,6714.46,6170.43,3845.55,16730.44,63918.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15364,82278.69,0.0,15296.65,97575.34,16555.19,7067.63,7908.99,31531.81,129107.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28247,49804.43,7569.8,1393.45,58767.68,11936.18,12353.83,4754.63,29044.64,87812.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42951,62881.84,2256.8,2708.94,67847.58,15989.71,13316.44,5131.74,34437.89,102285.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44602,2985.2,0.0,210.75,3195.95,0.0,813.86,247.43,1061.29,4257.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51613,117759.66,732.54,29101.27,147593.47,26343.78,11081.7,5680.69,43106.17,190699.64 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,53132,1588.75,18.56,0.0,1607.31,0.0,392.75,124.64,517.39,2124.7 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,8926,152248.04,0.0,0.0,152248.04,30613.96,12424.5,17602.67,60641.13,212889.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,40379,75927.06,0.0,0.0,75927.06,15648.75,12424.5,6252.95,34326.2,110253.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,51482,20991.34,0.0,0.0,20991.34,971.05,6836.46,1727.71,9535.22,30526.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7688,62461.1,437.26,0.0,62898.36,12844.46,12424.5,5114.71,30383.67,93282.03 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,43340,28896.0,0.0,45.0,28941.0,6491.46,3345.06,2299.65,12136.17,41077.17 +Calendar,2015,1,Public Protection,ADP,Adult Probation,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,20468,84227.01,0.0,0.0,84227.01,17357.02,12424.5,6776.8,36558.32,120785.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",17025,20429.24,301.04,0.0,20730.28,0.0,4820.47,1608.41,6428.88,27159.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16121,1015.92,0.0,816.31,1832.23,262.11,440.54,156.04,858.69,2690.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,29559,75301.4,0.0,0.0,75301.4,15514.5,12424.5,6126.89,34065.89,109367.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33180,2352.0,0.0,0.0,2352.0,0.0,1146.88,182.41,1329.29,3681.29 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,52044,9463.59,0.0,2095.56,11559.15,0.0,12424.5,167.61,12592.11,24151.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,12525,31320.0,9302.04,6951.81,47573.85,8178.66,4778.65,3798.81,16756.12,64329.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",2230,137832.34,42655.7,24469.5,204957.54,31866.4,14144.82,3394.59,49405.81,254363.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37352,13466.87,0.0,119.5,13586.37,0.0,5165.89,1053.24,6219.13,19805.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30204,56531.0,4361.55,4712.64,65605.19,11810.46,12424.5,5356.7,29591.66,95196.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,27973,80183.34,66601.57,12834.61,159619.52,18370.01,11792.17,10395.29,40557.47,200176.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,13480,107973.15,0.0,515.0,108488.15,22350.0,12424.47,8967.88,43742.35,152230.5 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30940,5310.0,238.95,341.96,5890.91,1051.83,1194.67,437.78,2684.28,8575.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,6628,56531.0,0.0,6891.78,63422.78,12357.19,12424.5,5183.6,29965.29,93388.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,48878,0.0,0.0,6494.95,6494.95,0.0,68.5,497.58,566.08,7061.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,39994,98157.02,0.0,0.0,98157.02,20230.59,12424.5,8025.22,40680.31,138837.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,46586,148815.52,0.0,0.0,148815.52,29915.85,12424.5,17682.17,60022.52,208838.04 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,17185,81157.0,6019.83,12727.02,99903.85,19336.97,12424.5,7804.56,39566.03,139469.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36732,775.93,0.0,3.53,779.46,0.0,421.12,60.35,481.47,1260.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,22732,64808.88,0.0,0.0,64808.88,13342.58,12424.5,5020.05,30787.13,95596.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",18439,93281.04,0.0,1168.0,94449.04,19464.65,12424.5,7774.55,39663.7,134112.74 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,1684,111918.02,0.0,0.0,111918.02,22531.83,12424.5,8949.06,43905.39,155823.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49068,61322.0,223.8,2900.93,64446.73,11851.38,6481.06,5498.07,23830.51,88277.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42934,113222.99,1707.41,18686.45,133616.85,25097.42,15196.12,2266.8,42560.34,176177.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,12359,772.12,0.0,51.55,823.67,0.0,252.37,63.77,316.14,1139.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36298,46289.83,3261.8,1370.2,50921.83,11068.58,12230.37,4106.34,27405.29,78327.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19796,89462.31,1846.08,15484.58,106792.97,19790.16,8405.0,8899.44,37094.6,143887.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17379,141009.58,29230.89,12496.37,182736.84,27900.14,12424.5,3209.63,43534.27,226271.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41629,25583.58,0.0,1271.39,26854.97,1946.24,0.0,773.85,2720.09,29575.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,21585,61235.03,0.0,0.0,61235.03,13693.0,12424.5,4860.38,30977.88,92212.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,26207,81942.0,8483.53,9034.2,99459.73,18751.09,12424.5,7930.79,39106.38,138566.11 +Calendar,2015,1,Public Protection,ADP,Adult Probation,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,34274,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8715.76,43112.07,149717.1 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46788,169958.5,0.0,1562.5,171521.0,34463.15,12409.57,10611.41,57484.13,229005.13 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,51710,49817.13,1944.97,0.0,51762.1,11928.87,12423.01,4157.43,28509.31,80271.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,3973,1731.01,0.0,55.7,1786.71,0.0,809.38,138.33,947.71,2734.42 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,14350,129895.04,0.0,0.0,129895.04,26141.49,12424.5,9999.65,48565.64,178460.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,21470,143436.92,5485.89,14889.71,163812.52,28311.76,12424.51,2746.38,43482.65,207295.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,9281,71293.4,0.0,0.0,71293.4,14448.25,10513.04,5733.91,30695.2,101988.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41189,129178.72,12992.97,7580.8,149752.49,26097.85,12424.5,2496.07,41018.42,190770.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,38252,147149.0,0.0,0.0,147149.0,29613.71,12424.5,17567.43,59605.64,206754.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36662,119461.66,0.0,1133.47,120595.13,23641.91,12424.5,2053.57,38119.98,158715.11 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,7489,66182.88,1086.39,6624.36,73893.63,14670.54,12107.92,5736.97,32515.43,106409.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16222,94773.59,3744.51,2348.27,100866.37,19691.49,12400.61,1556.35,33648.45,134514.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5827,117873.38,587.15,21719.3,140179.83,26527.54,10615.72,7341.24,44484.5,184664.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21751,111061.6,15036.54,12018.07,138116.21,23016.53,12184.73,2306.17,37507.43,175623.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36820,55712.14,1962.92,904.2,58579.26,11609.33,12245.3,4850.1,28704.73,87283.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,33743,71378.8,420.9,4080.8,75880.5,14966.64,12090.0,6239.93,33296.57,109177.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,5179,123028.4,0.0,0.0,123028.4,25168.09,10513.04,9691.71,45372.84,168401.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,36308,49068.89,4634.91,2059.6,55763.4,11914.99,12000.87,4511.16,28427.02,84190.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12619,1489.23,0.0,16.78,1506.01,0.0,0.0,404.6,404.6,1910.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,14098,11001.38,0.0,395.61,11396.99,0.0,2956.79,882.35,3839.14,15236.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,12976,63571.91,0.0,0.0,63571.91,13479.2,9509.54,5144.82,28133.56,91705.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,53224,146144.42,9328.37,2919.4,158392.19,0.0,0.0,9946.24,9946.24,168338.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,47186,88135.96,17554.31,11293.85,116984.12,19658.73,12358.8,9411.21,41428.74,158412.86 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19058,97761.66,22250.37,18616.63,138628.66,28294.0,12424.5,2366.6,43085.1,181713.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42320,95449.05,63.18,8715.37,104227.6,20243.53,9248.19,8187.54,37679.26,141906.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,51930,0.0,0.0,107.98,107.98,0.0,68.5,8.26,76.76,184.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,15510,109964.93,7918.17,808.7,118691.8,21658.07,12066.76,2122.24,35847.07,154538.87 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,30808,87531.04,0.0,0.0,87531.04,18040.63,12424.5,7261.18,37726.31,125257.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),2683,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,11038.93,60852.26,246641.26 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,23682,11157.19,0.0,1.87,11159.06,0.0,2855.72,864.36,3720.08,14879.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,14576,99098.03,0.0,0.0,99098.03,20424.58,12424.5,7579.94,40429.02,139527.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,4499,3616.2,0.0,0.0,3616.2,932.98,860.16,296.62,2089.76,5705.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17383,120782.13,2271.06,14395.68,137448.87,24416.83,10881.53,6902.7,42201.06,179649.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",382,74357.69,1620.91,6030.86,82009.46,15933.91,11189.94,6724.2,33848.05,115857.51 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,22861,9690.14,0.0,0.0,9690.14,0.0,1212.58,750.96,1963.54,11653.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,2226,89028.01,0.0,0.0,89028.01,18349.03,12424.48,6932.74,37706.25,126734.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,9173,203450.58,0.0,0.0,203450.58,40921.8,12424.5,19483.54,72829.84,276280.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,208,68301.65,3879.19,7200.66,79381.5,14990.34,12520.08,1281.43,28791.85,108173.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17355,58970.71,41.64,0.0,59012.35,13150.24,12280.47,4757.88,30188.59,89200.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,1912,78071.93,836.59,0.0,78908.52,16067.76,12424.54,6345.08,34837.38,113745.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,42182,21891.01,0.0,40.0,21931.01,4934.52,5991.18,1755.28,12680.98,34611.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2787,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21973,109751.55,1704.51,20850.97,132307.03,0.0,8912.01,9564.08,18476.09,150783.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,14146,196584.03,0.0,0.0,196584.03,39562.78,12424.47,11119.61,63106.86,259690.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,17235,62963.7,0.0,0.0,62963.7,2739.87,7374.06,4950.4,15064.33,78028.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43067,68201.71,19115.06,3638.24,90955.01,19679.46,13441.4,6894.75,40015.61,130970.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,20308,48185.23,0.0,0.0,48185.23,10767.52,6690.11,3822.57,21280.2,69465.43 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,9938,74866.02,4393.34,0.0,79259.36,14830.04,8601.58,6467.59,29899.21,109158.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",41794,6704.69,0.0,0.0,6704.69,1503.87,894.21,711.95,3110.03,9814.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5856,119465.6,5144.52,12016.78,136626.9,23627.23,12424.5,2296.94,38348.67,174975.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3260,11460.81,0.0,0.0,11460.81,0.0,4969.8,917.18,5886.98,17347.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15438,25124.39,6719.19,1537.5,33381.08,7863.63,4996.45,2483.52,15343.6,48724.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34824,9587.4,0.0,0.0,9587.4,0.0,4157.43,742.26,4899.69,14487.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,654,56531.0,3970.42,3452.98,63954.4,11903.28,12424.5,5023.53,29351.31,93305.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,9394,93281.06,0.0,624.0,93905.06,19354.57,12424.5,7743.95,39523.02,133428.08 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,32742,66249.2,3464.57,3171.89,72885.66,13917.74,12423.01,5946.41,32287.16,105172.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,21115,6534.0,0.0,180.0,6714.0,1505.94,1433.6,556.34,3495.88,10209.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3178,5675.3,0.0,1026.68,6701.98,1504.25,2461.01,547.94,4513.2,11215.18 +Calendar,2015,1,Public Protection,DAT,District Attorney,556.0,Elected Officials,8100,Legal & Court,8198,District Attorney,28051,255329.14,0.0,0.0,255329.14,51352.43,12424.5,18644.4,82421.33,337750.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49027,112159.75,13291.95,18753.61,144205.31,24822.8,15052.76,2441.02,42316.58,186521.89 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,6923,74248.86,0.0,3000.0,77248.86,15309.33,12424.5,6340.73,34074.56,111323.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,35035,17258.19,4907.16,1878.03,24043.38,4554.88,4696.52,1919.13,11170.53,35213.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42323,129484.71,23993.33,8806.81,162284.85,25724.92,12424.5,2691.64,40841.06,203125.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3522,Senior Museum Preparator,1842,10035.2,0.0,0.0,10035.2,2206.76,2341.54,795.52,5343.82,15379.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,352.0,Municipal Executive Association - Fire,0900,Management,H051,Assistant Deputy Chief 2,4055,53700.0,0.0,5340.59,59040.59,10046.76,2867.19,3794.68,16708.63,75749.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2931,621.35,0.0,54.25,675.6,3256.69,47.9,24.96,3329.55,4005.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,44909,8217.13,0.0,323.91,8541.04,0.0,0.0,675.91,675.91,9216.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17115,126873.62,0.0,25624.06,152497.68,27222.95,10895.34,4968.27,43086.56,195584.24 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34502,54131.49,0.0,1069.41,55200.9,11332.28,11893.9,4538.03,27764.21,82965.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24811,66607.74,25592.28,1704.33,93904.35,18675.27,13123.38,7087.14,38885.79,132790.14 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2566,Rehabilitation Counselor,42676,77669.01,0.0,5868.94,83537.95,16304.22,12424.5,6835.16,35563.88,119101.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,39812,2711.0,0.0,0.0,2711.0,504.52,477.86,210.43,1192.81,3903.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,46115,60168.92,0.0,1480.0,61648.92,12677.51,12424.5,5008.4,30110.41,91759.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,22759,70245.03,0.0,4154.35,74399.38,14606.45,12424.5,6101.01,33131.96,107531.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,13679,70673.9,0.0,1250.0,71923.9,14746.5,12424.5,5895.75,33066.75,104990.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,15186,45388.11,1615.07,6370.73,53373.91,10585.41,6546.76,4374.66,21506.83,74880.74 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,19598,109356.0,0.0,13038.6,122394.6,24223.83,12424.5,9854.99,46503.32,168897.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49499,64721.54,822.0,3782.13,69325.67,0.0,4695.5,1165.35,5860.85,75186.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25863,43582.15,3744.38,1270.46,48596.99,11623.99,13244.94,3677.84,28546.77,77143.76 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,38681,151038.42,0.0,0.0,151038.42,30549.79,11840.07,17258.26,59648.12,210686.54 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2107,Med Staff Svcs Dept Anl,3,88293.82,0.0,623.48,88917.3,18325.46,12414.05,7087.82,37827.33,126744.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37046,130296.11,214.16,33888.67,164398.94,30925.91,11186.83,4374.16,46486.9,210885.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,26284,30852.2,8306.61,2845.09,42003.9,5782.68,3345.06,626.6,9754.34,51758.24 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,7661,72153.0,0.0,0.0,72153.0,14871.04,12424.5,5869.35,33164.89,105317.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",22240,93738.03,1566.92,0.0,95304.95,19319.82,12424.5,7825.09,39569.41,134874.36 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,135,56531.0,0.0,4156.38,60687.38,12506.26,12424.5,4967.05,29897.81,90585.19 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,38060,13255.79,1434.47,321.75,15012.01,0.0,3000.1,1165.17,4165.27,19177.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,27992,62468.8,3184.0,926.93,66579.73,12997.98,12424.5,5438.45,30860.93,97440.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9041,2560.5,0.0,107.55,2668.05,0.0,1075.2,207.08,1282.28,3950.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30492,110271.91,2174.68,24940.5,137387.09,20561.12,10086.55,7670.27,38317.94,175705.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,46957,109482.4,0.0,0.0,109482.4,22286.29,12424.51,8881.43,43592.23,153074.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,3460,49706.63,4614.99,5985.27,60306.89,11820.91,9539.39,4680.67,26040.97,86347.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,36220,179753.47,0.0,0.0,179753.47,36133.02,12424.5,18061.74,66619.26,246372.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48412,113233.61,13276.19,23200.87,149710.67,25036.04,15196.12,2417.96,42650.12,192360.79 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,3163,79088.45,0.0,0.0,79088.45,16263.82,12424.5,6171.81,34860.13,113948.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2456,Asst Forensic Toxicologist 1,7273,110338.04,0.0,0.0,110338.04,22205.96,12424.5,8859.52,43489.98,153828.02 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,42425,206537.0,0.0,0.0,206537.0,41550.23,12424.53,11051.53,65026.29,271563.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,3357,56120.0,0.0,624.0,56744.0,12696.57,12424.52,4601.83,29722.92,86466.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38977,24717.13,0.0,294.0,25011.13,4082.89,6254.06,2053.51,12390.46,37401.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,2423,78837.51,0.0,0.0,78837.51,16232.52,12424.5,6414.62,35071.64,113909.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21930,80957.65,6892.13,4570.42,92420.2,16556.63,12424.5,3394.52,32375.65,124795.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40697,56531.0,0.0,1130.57,57661.57,11884.6,12424.5,4484.55,28793.65,86455.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,25258,176257.04,0.0,0.0,176257.04,35471.94,12424.51,10916.21,58812.66,235069.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41316,50885.04,0.0,1125.0,52010.04,0.0,3950.81,4031.85,7982.66,59992.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,51357,7434.34,0.0,2075.86,9510.2,1558.29,1078.19,734.17,3370.65,12880.85 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),44697,123213.91,0.0,1562.5,124776.41,25083.24,12424.5,9517.47,47025.21,171801.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,5025,107978.01,7746.1,2034.0,117758.11,22676.74,12424.5,9262.42,44363.66,162121.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28306,107135.26,13055.58,28953.87,149144.71,25363.18,10950.88,10221.31,46535.37,195680.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16949,95550.85,1331.12,6134.13,103016.1,19980.17,9863.14,8139.5,37982.81,140998.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,17101,99835.52,0.0,9507.23,109342.75,21827.67,12424.5,8872.28,43124.45,152467.2 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,28919,57635.51,258.56,5240.43,63134.5,13625.98,12424.5,5114.32,31164.8,94299.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,47250,16942.4,0.0,13154.17,30096.57,3800.2,2106.19,2473.19,8379.58,38476.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",29652,64980.5,0.0,434.7,65415.2,13490.34,8655.34,5086.38,27232.06,92647.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11671,13004.45,0.0,163.5,13167.95,0.0,3228.57,593.21,3821.78,16989.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",47712,1199.9,0.0,0.0,1199.9,0.0,155.31,32.83,188.14,1388.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44416,54923.7,364.97,308.11,55596.78,10613.49,8410.43,3866.46,22890.38,78487.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,18779,76728.0,5462.01,1884.0,84074.01,16197.33,12424.46,6652.67,35274.46,119348.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,16741,97755.88,2348.55,10824.56,110928.99,26384.35,12424.5,1877.16,40686.01,151615.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,48150,82285.59,0.0,0.0,82285.59,16755.4,10925.19,6876.12,34556.71,116842.3 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,43510,72153.0,2035.32,8469.99,82658.31,16003.63,12424.5,6494.96,34923.09,117581.4 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2802,Epidemiologist 1,52360,0.0,0.0,573.8,573.8,0.0,0.0,43.9,43.9,617.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",29719,91655.39,20087.22,3443.76,115186.37,19322.77,12146.74,9414.25,40883.76,156070.13 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,18119,8557.9,1282.32,5785.81,15626.03,0.0,525.65,1146.94,1672.59,17298.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,44974,64455.8,7218.49,14145.84,85820.13,15796.21,12424.5,6958.45,35179.16,120999.29 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2785,Asst General Services Manager,52793,45319.99,0.0,17.59,45337.58,9043.33,9079.44,9398.88,27521.65,72859.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6152,67764.64,40058.54,4154.11,111977.29,19744.96,13356.88,8558.13,41659.97,153637.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27484,3728.32,0.0,47.45,3775.77,0.0,328.54,291.43,619.97,4395.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,33235,97793.04,20618.46,4391.8,122803.3,20282.47,12424.5,9808.8,42515.77,165319.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,15291,50115.63,0.0,220.0,50335.63,12048.06,12424.5,4093.24,28565.8,78901.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),41403,82259.71,16823.61,9465.6,108548.92,18217.04,12424.51,1802.58,32444.13,140993.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,18778,72643.6,1936.8,5682.73,80263.13,15634.06,12397.63,6337.73,34369.42,114632.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,11461,38446.23,0.0,13619.0,52065.23,8747.58,6522.86,4139.97,19410.41,71475.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38201,128065.0,0.0,5252.03,133317.03,26762.75,12424.5,9942.44,49129.69,182446.72 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,33967,136466.01,11155.64,22335.77,169957.42,37621.39,12424.5,2896.9,52942.79,222900.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19568,7858.66,0.0,0.0,7858.66,0.0,3407.78,630.82,4038.6,11897.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5314,52543.42,160.13,2756.2,55459.75,12615.61,12085.46,4436.58,29137.65,84597.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12406,36003.51,4686.1,2109.73,42799.34,10028.79,10542.0,2945.7,23516.49,66315.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,49249,75554.48,4487.18,1520.0,81561.66,15853.01,12424.51,6741.56,35019.08,116580.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,10289,97720.5,17802.59,29789.29,145312.38,22993.2,10751.98,10138.63,43883.81,189196.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16777,52840.66,0.0,6226.76,59067.42,11542.61,0.0,1606.24,13148.85,72216.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,1565,97424.03,0.0,1314.48,98738.51,20351.45,12424.5,7632.0,40407.95,139146.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,53090,19536.0,0.0,2633.84,22169.84,4972.7,3822.92,1816.74,10612.36,32782.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,23692,160.25,0.0,2017.35,2177.6,35.94,19.77,166.99,222.7,2400.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,50341,56276.0,3781.41,624.0,60681.41,12731.53,12424.5,5015.31,30171.34,90852.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26013,70245.0,0.0,3650.85,73895.85,14488.1,12424.5,6070.1,32982.7,106878.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21334,68957.84,30113.18,5931.55,105002.57,20554.92,13591.09,7965.54,42111.55,147114.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,14024,29435.26,37.14,1322.95,30795.35,7647.71,7158.31,2565.75,17371.77,48167.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,32934,55403.53,39704.52,7056.49,102164.54,13403.9,6451.18,1714.76,21569.84,123734.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2915,Program Specialist Supervisor,28172,98812.04,0.0,0.0,98812.04,20365.54,12424.51,8059.5,40849.55,139661.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,43120,138637.93,15936.71,10149.36,164724.0,27385.65,12424.5,2752.56,42562.71,207286.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24582,146892.62,0.0,1006.95,147899.57,0.0,10743.49,9824.26,20567.75,168467.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5215,Fire Protection Engineer,39311,143346.52,25571.7,0.0,168918.22,28862.75,12424.5,10580.63,51867.88,220786.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,41916,57651.24,3796.14,6466.0,67913.38,12534.36,11397.57,5561.97,29493.9,97407.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,11506,9532.98,0.0,67.44,9600.42,0.0,0.0,759.27,759.27,10359.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,16345,54379.4,9239.08,1904.11,65522.59,12457.76,12376.71,5268.05,30102.52,95625.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,15615,58637.97,1462.41,4811.23,64911.61,12387.59,8546.56,5221.4,26155.55,91067.16 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,15484,85265.23,9547.13,4136.35,98948.71,17581.08,12424.5,8016.18,38021.76,136970.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,36684,61978.51,0.0,1444.96,63423.47,13076.25,12472.29,5253.4,30801.94,94225.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47546,34916.02,3010.6,2240.78,40167.4,10119.1,7009.21,3041.22,20169.53,60336.93 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,271,56276.04,0.0,624.0,56900.04,12731.55,12424.5,4464.3,29620.35,86520.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14225,49264.01,11373.92,3245.36,63883.29,14819.93,9788.0,4945.09,29553.02,93436.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,43293,94692.39,20600.36,15371.88,130664.63,22197.18,12180.79,9893.95,44271.92,174936.55 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,11032,170574.01,0.0,3332.14,173906.15,33399.99,9557.31,7708.92,50666.22,224572.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,17130,11595.02,0.0,0.0,11595.02,2549.75,2389.33,926.13,5865.21,17460.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1326,Customer Service Agent Supv,37614,72252.25,0.0,2294.79,74547.04,15037.33,10745.88,6152.32,31935.53,106482.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45799,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2429.38,12882.73,44182.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,2699,62811.0,295.46,6235.41,69341.87,13758.75,12424.5,5716.66,31899.91,101241.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39094,10036.5,0.0,129.2,10165.7,0.0,3849.81,788.14,4637.95,14803.65 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,33765,98157.02,0.0,0.0,98157.02,20241.35,12424.5,7434.67,40100.52,138257.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,42796,30341.9,0.0,128.75,30470.65,5748.96,6039.03,2417.93,14205.92,44676.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49148,85.75,0.0,3.92,89.67,0.0,41.82,6.96,48.78,138.45 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8564,"Counselor,Log Cabin Rnch SFERS",44990,22226.06,8357.44,1514.49,32097.99,0.0,4285.86,2487.2,6773.06,38871.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,10201,131984.2,555.71,0.0,132539.91,26554.16,9867.93,9778.72,46200.81,178740.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,17065,81942.05,151.6,1789.8,83883.45,17142.63,12424.5,6699.11,36266.24,120149.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,42402,59732.43,0.0,0.0,59732.43,11066.17,4993.7,4798.32,20858.19,80590.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48411,68499.84,48.21,177.85,68725.9,14123.13,12357.59,5340.69,31821.41,100547.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12237,688.39,0.0,70.75,759.14,0.0,0.0,423.1,423.1,1182.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23210,113223.01,67058.75,20509.67,200791.43,24634.05,15196.12,3371.93,43202.1,243993.53 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,19459,85004.0,6124.67,2083.42,93212.09,17656.49,12424.5,7625.42,37706.41,130918.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,20675,30867.51,0.0,0.0,30867.51,6361.39,6212.25,2508.19,15081.83,45949.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,49592,68610.01,0.0,0.0,68610.01,13769.28,9557.31,5519.04,28845.63,97455.64 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),7355,119253.62,0.0,1312.5,120566.12,24107.36,11653.35,9514.47,45275.18,165841.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,45678,70931.01,0.0,874.0,71805.01,14747.71,12424.5,5932.62,33104.83,104909.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,51107,97766.19,23913.48,14292.74,135972.41,27258.74,12424.5,2308.26,41991.5,177963.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1131,8614.28,0.0,1399.84,10014.12,3753.94,609.34,224.21,4587.49,14601.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,12978,92818.64,0.0,1991.55,94810.19,19712.45,11447.6,7592.27,38752.32,133562.51 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,15894,67128.6,149.29,1425.0,68702.89,14104.96,12399.89,5633.3,32138.15,100841.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15617,105061.14,0.0,11321.5,116382.64,21353.06,10919.46,301.87,32574.39,148957.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17744,14150.5,0.0,177.8,14328.3,0.0,5417.8,1110.81,6528.61,20856.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,23790,58528.98,3436.54,1480.0,63445.52,13353.08,12302.22,5144.85,30800.15,94245.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7669,93194.84,12180.58,4692.55,110067.97,19450.2,11946.64,1835.8,33232.64,143300.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,26406,36086.92,0.0,0.0,36086.92,8253.21,7984.12,3011.54,19248.87,55335.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,46599,71612.06,0.0,624.0,72236.06,14888.01,12424.51,5989.16,33301.68,105537.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,8015,8603.61,0.0,0.0,8603.61,0.0,3113.59,691.62,3805.21,12408.82 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,31421,78079.06,17450.22,9853.64,105382.92,17346.92,12098.95,8185.15,37631.02,143013.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16396,72315.53,0.0,0.0,72315.53,14870.94,12424.51,5831.37,33126.82,105442.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,29157,57687.01,1081.53,6107.12,64875.66,15335.41,6663.96,1095.3,23094.67,87970.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8312,Sheriff's Captain,4715,109379.5,5790.24,12796.4,127966.14,29342.61,8601.58,2792.99,40737.18,168703.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6158,55562.8,3633.05,6054.32,65250.17,13169.43,12424.5,5270.04,30863.97,96114.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,41272,61735.01,12567.56,3780.48,78083.05,12852.62,12424.5,6413.41,31690.53,109773.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,10574,37037.5,0.0,318.73,37356.23,8686.58,8840.51,3029.44,20556.53,57912.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12787,62036.63,7727.48,1401.48,71165.59,17526.23,12246.74,5511.25,35284.22,106449.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,4132,107781.0,0.0,0.0,107781.0,21779.51,11946.64,8677.44,42403.59,150184.59 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,52342,87531.01,0.0,624.0,88155.01,18169.31,12424.5,7017.72,37611.53,125766.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,12216,101323.04,16131.93,1560.5,119015.47,21214.44,0.0,9771.82,30986.26,150001.73 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,40160,88996.58,0.0,2200.0,91196.58,18828.93,11946.64,7915.92,38691.49,129888.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,2964,79395.02,0.0,1480.0,80875.02,16675.39,12424.51,5941.66,35041.56,115916.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27546,10428.0,73.32,0.0,10501.32,2293.13,1911.46,830.49,5035.08,15536.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,14419,28281.0,0.0,440.0,28721.0,6442.15,5256.52,2331.28,14029.95,42750.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",10988,550.0,0.0,0.0,550.0,0.0,65.71,42.62,108.33,658.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,32681,68571.01,6351.44,4252.94,79175.39,14262.52,12424.5,6474.7,33161.72,112337.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,37574,76338.02,0.0,692.78,77030.8,15876.15,12424.5,6377.74,34678.39,111709.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4486,11336.84,0.0,0.0,11336.84,0.0,4916.05,907.59,5823.64,17160.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,15041,20571.42,0.0,0.0,20571.42,3828.36,3557.11,1670.09,9055.56,29626.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,48082,75911.59,556.0,7139.21,83606.8,16945.29,9364.64,6814.34,33124.27,116731.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13908,31094.33,6219.81,1071.58,38385.72,7973.68,6063.94,2887.17,16924.79,55310.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,42869,130552.1,0.0,17978.07,148530.17,26050.33,11468.77,9595.27,47114.37,195644.54 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8312,Sheriff's Captain,40266,156528.0,3690.2,13472.24,173690.44,41336.46,12424.5,1475.16,55236.12,228926.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13672,143674.46,0.0,250.0,143924.46,26509.31,12337.71,6239.29,45086.31,189010.77 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),3491,184289.0,0.0,1562.5,185851.5,37402.55,12424.5,10934.18,60761.23,246612.73 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,2027,79847.6,172.35,0.0,80019.95,16451.51,12376.71,6436.45,35264.67,115284.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",48500,30989.1,0.0,0.0,30989.1,0.0,4061.86,2405.26,6467.12,37456.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,34410,97424.01,1291.76,800.0,99515.77,20250.12,12424.52,7838.54,40513.18,140028.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45097,18103.5,0.0,3721.3,21824.8,0.0,0.0,1724.16,1724.16,23548.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,5031,142648.65,0.0,0.0,142648.65,28694.61,11916.36,17420.57,58031.54,200680.19 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,22885,17489.89,0.0,770.87,18260.76,3363.1,0.0,7672.19,11035.29,29296.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,7053,7232.99,0.0,508.23,7741.22,1702.29,1909.85,608.05,4220.19,11961.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6579,67504.36,34249.16,2133.74,103887.26,19070.07,13302.28,7970.3,40342.65,144229.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7227,Cement Finisher Supervisor 1,15710,96325.16,6804.64,570.69,103700.49,19843.19,11582.19,8537.89,39963.27,143663.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,49551,76338.01,0.0,1301.99,77640.0,16002.18,12424.5,6390.09,34816.77,112456.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,44487,60505.51,0.0,515.51,61021.02,12556.9,12175.66,5011.69,29744.25,90765.27 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1767,Media Programming Spec,23383,14030.01,0.0,0.0,14030.01,2611.0,2389.33,1120.63,6120.96,20150.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,32828,159800.56,67727.83,5197.17,232725.56,31530.19,12424.5,3998.68,47953.37,280678.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,45600,75397.99,2379.71,0.0,77777.7,15539.45,12423.01,6190.57,34153.03,111930.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,11628,78645.0,0.0,0.0,78645.0,14417.71,6212.25,6098.05,26728.01,105373.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,9609,47823.75,5320.78,3151.6,56296.13,9965.51,8864.4,1479.93,20309.84,76605.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,40776,26591.0,22.51,435.0,27048.51,6061.93,5256.52,2207.82,13526.27,40574.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,52470,8394.0,0.0,0.0,8394.0,1841.64,955.71,696.53,3493.88,11887.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,37027,14861.12,0.0,259.51,15120.63,0.0,3563.08,1172.3,4735.38,19856.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26200,56531.0,0.0,2930.55,59461.55,11796.81,12424.5,4919.8,29141.11,88602.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,35208,28467.16,0.0,270.93,28738.09,6864.2,7173.95,2365.15,16403.3,45141.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26549,20020.55,0.0,2349.61,22370.16,2851.29,1954.47,1296.44,6102.2,28472.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24128,11503.62,0.0,3367.83,14871.45,4390.78,0.0,4922.84,9313.62,24185.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,10066,75016.38,0.0,0.0,75016.38,15360.3,11562.85,5905.89,32829.04,107845.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,180,97765.11,4241.92,18307.25,120314.28,28235.75,12424.5,2047.83,42708.08,163022.36 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,37796,123776.01,0.0,0.0,123776.01,24910.01,12424.5,9837.36,47171.87,170947.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41289,63283.01,19884.53,1573.24,84740.78,17818.8,12483.7,6363.69,36666.19,121406.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31985,112159.76,26260.82,10492.55,148913.13,23388.64,15052.76,2491.17,40932.57,189845.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,24245,118104.03,0.0,0.0,118104.03,23768.42,12424.5,9081.86,45274.78,163378.81 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,26436,4332.47,0.0,0.0,4332.47,643.28,0.0,919.0,1562.28,5894.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5962,98397.8,3322.32,23777.86,125497.98,21367.42,9605.99,9783.73,40757.14,166255.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,39403,212039.16,0.0,0.0,212039.16,42673.1,12424.5,26371.51,81469.11,293508.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,4329,8860.0,431.29,904.31,10195.6,1948.31,2867.19,765.15,5580.65,15776.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29443,67142.49,5786.37,2521.31,75450.17,19105.8,13235.02,5668.24,38009.06,113459.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,11657,47136.39,0.0,4082.81,51219.2,10777.64,10392.91,4144.87,25315.42,76534.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,44843,23159.8,36.58,2738.89,25935.27,5968.81,6212.25,2051.3,14232.36,40167.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40893,12348.0,0.0,1362.92,13710.92,3449.8,2867.19,1103.9,7420.89,21131.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,27322,140076.26,0.0,0.0,140076.26,28131.49,12424.5,18461.13,59017.12,199093.38 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,29651,57813.91,0.0,1403.18,59217.09,12313.7,9606.59,4942.78,26863.07,86080.16 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,22718,93191.86,0.0,403.76,93595.62,19292.37,12412.57,7470.53,39175.47,132771.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,49517,71676.82,0.0,7806.0,79482.82,16371.13,10527.25,6577.84,33476.22,112959.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42341,41289.77,6351.27,684.42,48325.46,12142.14,8211.23,3610.17,23963.54,72289.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51642,69967.8,25591.27,4894.75,100453.82,14677.57,12376.71,8195.97,35250.25,135704.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,85,47399.2,5257.1,5554.18,58210.48,12195.47,12424.5,4673.06,29293.03,87503.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,12500,29468.73,0.0,3696.52,33165.25,7687.76,6546.76,2671.21,16905.73,50070.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,43835,33951.27,0.0,5199.82,39151.09,8343.79,8930.52,3176.88,20451.19,59602.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",30472,151022.94,65753.49,30670.22,247446.65,33495.94,14383.75,635.35,48515.04,295961.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,8036,117124.04,5015.64,11757.65,133897.33,23225.7,12424.5,2279.6,37929.8,171827.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48224,21573.46,3387.69,587.65,25548.8,5810.2,6809.94,1932.05,14552.19,40100.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,5791,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8320.16,42716.47,149321.5 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1369,Special Assistant 10,2775,7650.3,0.0,0.0,7650.3,0.0,1003.51,592.28,1595.79,9246.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,15524,56156.75,10425.42,914.5,67496.67,11701.13,7896.73,5445.26,25043.12,92539.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,22559,97424.0,1117.2,927.0,99468.2,20266.18,12424.55,7992.17,40682.9,140151.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30353,17906.61,98.86,11978.46,29983.93,5612.58,3561.05,2255.02,11428.65,41412.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,39661,51405.0,1399.3,2757.59,55561.89,12552.08,12424.5,4591.29,29567.87,85129.76 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,28861,106089.6,0.0,6660.53,112750.13,22772.48,12281.15,9335.14,44388.77,157138.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,2969,58273.92,0.0,200.0,58473.92,11987.23,11701.91,4794.98,28484.12,86958.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,23979,0.0,0.0,0.0,0.0,0.0,0.0,151.23,151.23,151.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,23993,260.2,0.0,0.0,260.2,0.0,47.79,20.15,67.94,328.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,40621,9702.0,0.0,2571.04,12273.04,2076.36,1433.6,948.91,4458.87,16731.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,17272,56531.0,6506.33,4498.76,67536.09,11955.71,12424.5,5306.45,29686.66,97222.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,43711,31224.04,85.91,288.0,31597.95,7068.12,5734.39,2515.82,15318.33,46916.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,31449,48349.7,71.21,0.0,48420.91,11572.63,12089.99,3726.98,27389.6,75810.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,34939,34910.01,0.0,0.0,34910.01,7830.97,4778.65,2791.89,15401.51,50311.52 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,35630,32804.0,0.0,447.84,33251.84,6188.17,4300.79,2575.33,13064.29,46316.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,8476,18012.0,0.0,1494.48,19506.48,4647.1,5447.67,1578.93,11673.7,31180.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10900,101926.02,1757.83,25653.24,129337.09,24018.16,11076.92,9816.7,44911.78,174248.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,2760,36279.61,441.0,0.0,36720.61,8137.49,5734.39,2964.35,16836.23,53556.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37753,68343.54,22853.97,2168.7,93366.21,19328.77,13470.73,7045.43,39844.93,133211.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,3313,139415.56,39499.12,29687.66,208602.34,27698.58,12358.8,3502.41,43559.79,252162.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,38701,85134.74,0.0,940.0,86074.74,17732.51,12390.33,6844.68,36967.52,123042.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47715,10393.24,0.0,0.0,10393.24,0.0,4506.86,834.52,5341.38,15734.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28155,2906.31,0.0,50.96,2957.27,0.0,1417.17,229.39,1646.56,4603.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,36623,76585.9,0.0,30.14,76616.04,15724.83,11755.19,6109.86,33589.88,110205.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26495,1878.55,0.0,6.69,1885.24,0.0,465.92,146.1,612.02,2497.26 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),565,184289.05,0.0,5248.28,189537.33,38144.35,12424.5,11008.24,61577.09,251114.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,3587,70245.0,20789.39,4154.35,95188.74,14616.8,12424.5,7528.12,34569.42,129758.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37280,4469.99,0.0,879.81,5349.8,1153.26,1938.34,435.79,3527.39,8877.19 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,36871,106116.01,0.0,0.0,106116.01,21870.85,12424.5,8342.77,42638.12,148754.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17043,112156.95,34900.29,18383.9,165441.14,22174.86,12364.77,2768.42,37308.05,202749.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50121,57807.56,4726.25,957.46,63491.27,15660.67,13044.77,4798.82,33504.26,96995.53 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,18535,37041.01,0.0,10.62,37051.63,7634.98,7454.7,3001.91,18091.59,55143.22 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,20255,29262.81,920.13,10314.0,40496.94,2416.27,6056.94,3236.29,11709.5,52206.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6381,66358.16,19247.75,9785.15,95391.06,20812.09,13070.82,7245.74,41128.65,136519.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,16816,54876.01,3045.92,94376.5,152298.43,12093.12,5734.39,147.22,17974.73,170273.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,49946,40175.87,275.18,3161.01,43612.06,9832.59,10599.0,3521.96,23953.55,67565.61 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,17184,86692.76,17134.73,5639.29,109466.78,18312.65,11492.72,8633.54,38438.91,147905.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,45683,22689.0,724.79,5624.98,29038.77,5089.14,4300.79,2313.06,11702.99,40741.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,41544,183257.46,0.0,0.0,183257.46,36792.47,12424.5,28402.15,77619.12,260876.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,52501,55234.89,0.0,160.0,55394.89,10974.64,8620.46,4689.8,24284.9,79679.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,36.0,"Hod Carriers, Local 166",7400,Skilled Labor,7428,Hodcarrier,35200,76850.06,552.38,1022.0,78424.44,16053.79,12388.69,6424.78,34867.26,113291.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,50445,68713.81,2798.28,0.0,71512.09,14162.18,12423.01,5307.65,31892.84,103404.93 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,23597,8277.8,2718.32,291.9,11288.02,0.0,2054.82,876.13,2930.95,14218.97 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20917,22170.11,0.0,1439.73,23609.84,0.0,0.0,1867.37,1867.37,25477.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,43099,57726.95,0.0,1474.21,59201.16,12852.57,8123.71,4818.87,25795.15,84996.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",47535,89001.8,0.0,0.0,89001.8,18429.39,11851.06,7316.72,37597.17,126598.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,43286,50115.64,0.0,0.0,50115.64,11999.69,12424.5,4031.22,28455.41,78571.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,29709,10539.0,0.0,434.73,10973.73,2042.21,1433.6,873.73,4349.54,15323.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,46689,76329.53,0.0,835.0,77164.53,15868.44,11116.34,6118.45,33103.23,110267.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34598,125860.5,0.0,5288.27,131148.77,0.0,10966.24,9545.0,20511.24,151660.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,6506,97763.83,51275.54,13192.34,162231.71,26348.95,12424.52,2703.5,41476.97,203708.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46090,62454.03,8965.51,3231.39,74650.93,13308.57,12421.53,6121.62,31851.72,106502.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",14991,82535.01,1486.55,4443.74,88465.3,17151.73,12424.5,7282.55,36858.78,125324.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,9994,64064.66,0.0,110.0,64174.66,13248.13,12039.22,5288.35,30575.7,94750.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47786,65475.6,17201.97,4095.58,86773.15,19039.5,12902.32,6728.68,38670.5,125443.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,6707,63887.04,2313.11,2140.0,68340.15,13608.05,12424.5,5625.95,31658.5,99998.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,7184,30379.0,0.0,0.0,30379.0,5507.73,2867.2,2428.08,10803.01,41182.01 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,22022,8037.0,0.0,0.0,8037.0,1802.7,1433.6,656.74,3893.04,11930.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39052,146797.4,1244.48,2394.3,150436.18,29948.49,12424.5,10270.4,52643.39,203079.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",4682,121170.51,77059.32,15333.89,213563.72,26653.67,13989.69,3600.67,44244.03,257807.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,36876,3493.0,0.0,0.0,3493.0,783.48,477.86,270.43,1531.77,5024.77 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",4059,1260.6,0.0,11.46,1272.06,0.0,0.0,100.49,100.49,1372.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,24757,106605.06,0.0,0.0,106605.06,21971.81,12424.5,8423.79,42820.1,149425.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,25111,112776.04,0.0,1615.0,114391.04,23049.61,12424.5,9347.49,44821.6,159212.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34051,108339.21,13227.21,7578.23,129144.65,21516.88,11946.64,2190.66,35654.18,164798.83 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,19518,64862.74,0.0,0.0,64862.74,4794.3,10943.12,5099.66,20837.08,85699.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5215,Fire Protection Engineer,15806,10949.4,0.0,0.0,10949.4,1985.13,943.78,495.81,3424.72,14374.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,30561,14739.27,0.0,666.04,15405.31,3496.74,3589.96,1185.09,8271.79,23677.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,25825,11305.2,0.0,20.0,11325.2,0.0,1959.23,879.02,2838.25,14163.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20829,66493.56,9186.61,4011.78,79691.95,19311.56,13104.51,6168.29,38584.36,118276.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,48318,2115.0,0.0,0.0,2115.0,393.6,477.86,164.16,1035.62,3150.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6858,11569.7,0.0,0.0,11569.7,0.0,4954.87,935.83,5890.7,17460.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,2034,188063.54,0.0,1425.0,189488.54,38061.72,12424.5,10925.78,61412.0,250900.54 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,42226,64353.66,0.0,3267.94,67621.6,13984.29,11784.22,5502.43,31270.94,98892.54 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,52326,35422.53,793.6,586.9,36803.03,8335.73,8904.73,2938.69,20179.15,56982.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2650,Assistant Cook,32407,2487.0,621.75,0.0,3108.75,0.0,716.79,240.69,957.48,4066.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,21779,70245.0,5350.14,3516.55,79111.69,14625.69,12424.5,6235.52,33285.71,112397.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,53066,62811.01,681.98,1934.0,65426.99,13292.29,12424.5,5346.84,31063.63,96490.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,26709,61735.08,0.0,875.52,62610.6,12904.72,12424.5,5189.13,30518.35,93128.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45889,3093.13,0.0,0.0,3093.13,0.0,1508.26,239.99,1748.25,4841.38 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,26318,118264.9,0.0,0.0,118264.9,23806.38,7383.02,9281.25,40470.65,158735.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51419,63398.61,0.0,812.39,64211.0,13225.53,12328.93,5031.41,30585.87,94796.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43811,0.0,0.0,2132.91,2132.91,0.0,34.25,163.17,197.42,2330.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0951,Dep Dir I,36064,127279.97,0.0,0.0,127279.97,25527.19,12427.49,17185.61,55140.29,182420.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26024,112685.44,25567.13,10068.97,148321.54,22330.91,12424.5,2527.96,37283.37,185604.91 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,25107,16565.01,0.0,0.0,16565.01,3082.75,2389.32,1298.16,6770.23,23335.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,4579,43915.0,504.88,3402.56,47822.44,1093.03,7311.35,3703.77,12108.15,59930.59 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,37781,92419.6,12629.76,2720.25,107769.61,19052.55,12256.17,8886.58,40195.3,147964.91 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,7464,3643.99,19.99,0.0,3663.98,0.0,0.0,289.88,289.88,3953.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47772,40431.64,4853.72,2384.21,47669.57,11086.98,12638.22,3555.3,27280.5,74950.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46963,63977.32,22194.58,1591.81,87763.71,17923.91,12604.83,6602.16,37130.9,124894.61 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,39349,78022.1,1153.05,4289.79,83464.94,16569.55,12424.5,6770.82,35764.87,119229.81 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,42929,14957.25,0.0,1445.68,16402.93,3417.08,2320.63,1319.76,7057.47,23460.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,41972,96678.61,0.0,0.0,96678.61,19137.9,10417.47,7446.35,37001.72,133680.33 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",17354,105082.03,0.0,0.0,105082.03,21656.06,12424.5,8405.99,42486.55,147568.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32436,16322.43,0.0,2.93,16325.36,350.34,7023.13,1265.39,8638.86,24964.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27537,14911.58,2478.34,450.19,17840.11,3761.31,4672.21,1363.88,9797.4,27637.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,20386,73957.02,4227.66,1030.0,79214.68,15461.7,12424.5,6480.1,34366.3,113580.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22580,67286.61,12270.12,1124.83,80681.56,18746.12,13258.2,6165.0,38169.32,118850.88 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,45900,2049.03,847.87,242.25,3139.15,0.0,606.3,243.65,849.95,3989.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,33044,71064.41,0.0,0.0,71064.41,14637.15,12424.5,5607.7,32669.35,103733.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,52053,17745.2,0.0,0.0,17745.2,3324.51,1768.11,1377.56,6470.18,24215.38 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,30627,798.08,0.0,0.0,798.08,0.0,107.52,61.94,169.46,967.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29267,115601.31,93.89,24643.99,140339.19,25796.34,10751.97,9716.09,46264.4,186603.59 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4267,Pr Real Property Appraiser,34008,109497.52,0.0,2100.0,111597.52,22577.71,11707.71,8874.74,43160.16,154757.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,25678,7995.58,0.0,61.31,8056.89,0.0,2895.56,624.51,3520.07,11576.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,47993,2326.5,0.0,0.0,2326.5,0.0,525.65,180.58,706.23,3032.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24943,97303.33,11358.14,7313.35,115974.82,20233.89,12424.5,1933.12,34591.51,150566.33 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,12830,132180.05,0.0,0.0,132180.05,25446.93,8362.64,17144.05,50953.62,183133.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,856.0,"Teamsters - Miscellaneous, Local 856",6100,Health & Sanitation Inspection,6139,Senior Industrial Hygienist,53120,130910.05,0.0,0.0,130910.05,26341.75,12424.5,9966.66,48732.91,179642.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17264,99996.67,1114.04,3695.12,104805.83,20768.95,12424.5,1746.64,34940.09,139745.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,10979,85286.53,0.0,623.4,85909.93,17704.9,12412.56,7124.46,37241.92,123151.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30965,49952.55,4955.18,570.25,55477.98,11166.9,11109.95,4220.87,26497.72,81975.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,34489,95053.01,8341.79,5490.77,108885.57,20500.06,12424.51,9279.23,42203.8,151089.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,28949,107397.42,0.0,2040.24,109437.66,22578.16,12358.8,9033.81,43970.77,153408.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,7005,128129.03,0.0,0.0,128129.03,25766.0,12424.5,17195.42,55385.92,183514.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,37477,54617.7,11004.15,6788.09,72409.94,14432.93,12424.5,5809.46,32666.89,105076.83 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,9643,380.9,0.0,0.0,380.9,85.44,47.79,29.91,163.14,544.04 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,41483,65392.17,0.0,0.0,65392.17,13407.09,11392.19,5195.14,29994.42,95386.59 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,1448,67911.04,25.15,9831.83,77768.02,15488.85,12424.5,6037.34,33950.69,111718.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,20280,87531.04,0.0,0.0,87531.04,18040.65,12424.5,7113.6,37578.75,125109.79 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,45459,111409.48,0.0,0.0,111409.48,25410.85,12424.5,1840.83,39676.18,151085.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,2629,176257.01,0.0,0.0,176257.01,35471.94,12424.49,10772.0,58668.43,234925.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6823,3664.15,0.0,0.0,3664.15,0.0,1588.91,283.68,1872.59,5536.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,2031,11397.0,0.0,0.0,11397.0,0.0,1433.6,880.91,2314.51,13711.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35134,54873.29,283.86,10763.75,65920.9,0.0,4156.6,5103.59,9260.19,75181.09 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,24845,2482.2,0.0,0.0,2482.2,556.76,430.07,203.96,1190.79,3672.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,8284,4356.01,0.0,181.56,4537.57,0.0,955.73,352.19,1307.92,5845.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",16890,77778.01,811.93,7969.81,86559.75,16779.73,11710.16,7111.09,35600.98,122160.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,48456,81157.0,60.51,1326.75,82544.26,16988.24,12424.5,6797.33,36210.07,118754.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,47124,72570.32,0.0,0.0,72570.32,14928.07,12155.7,5773.93,32857.7,105428.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,27872,101531.01,509.38,0.0,102040.39,20926.03,12424.5,7923.1,41273.63,143314.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,39649,84644.0,32441.65,7354.16,124439.81,17581.16,12424.51,9785.48,39791.15,164230.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,12774,27939.22,0.0,1123.25,29062.47,0.0,2034.03,2252.62,4286.65,33349.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,25601,97669.01,15679.65,0.0,113348.66,20130.42,12424.5,9217.7,41772.62,155121.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,36753,150710.01,0.0,682.55,151392.56,30467.67,12424.5,10325.88,53218.05,204610.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,23507,85368.01,3699.18,0.0,89067.19,17594.59,12424.5,7374.17,37393.26,126460.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,14912,86800.43,0.0,600.0,87400.43,17973.87,12424.5,6857.84,37256.21,124656.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,42856,77306.29,0.0,0.0,77306.29,15933.23,9318.37,6167.23,31418.83,108725.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,28747,11978.33,0.0,0.0,11978.33,2147.15,3595.94,938.05,6681.14,18659.47 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,19607,56803.58,0.0,1481.3,58284.88,12171.32,10976.87,4790.5,27938.69,86223.57 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,6755,3714.5,1695.75,242.25,5652.5,0.0,1099.09,438.73,1537.82,7190.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23555,7186.85,0.0,153.22,7340.07,0.0,2398.29,569.18,2967.47,10307.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,28873,15923.24,0.0,2954.8,18878.04,3571.59,3327.14,1511.55,8410.28,27288.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,47359,69902.0,0.0,0.0,69902.0,14407.12,12424.5,5505.03,32336.65,102238.65 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,42789,43243.2,0.0,0.0,43243.2,0.0,5591.03,3424.52,9015.55,52258.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,22646,64045.02,0.0,1060.0,65105.02,14164.67,10513.04,5223.12,29900.83,95005.85 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,45797,57391.1,0.0,0.0,57391.1,10536.2,6212.24,12609.1,29357.54,86748.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,53222,26895.02,486.64,0.0,27381.66,5005.2,4778.65,2157.07,11940.92,39322.58 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,48417,19656.39,0.0,0.0,19656.39,0.0,3347.5,1586.06,4933.56,24589.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,50718,143188.01,0.0,0.0,143188.01,28816.76,12424.51,10094.76,51336.03,194524.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33308,22100.25,0.0,1426.74,23526.99,0.0,1886.85,1822.83,3709.68,27236.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,4074,53324.77,4780.6,1654.85,59760.22,12227.33,12066.1,4837.37,29130.8,88891.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,29587,7779.58,0.0,0.0,7779.58,0.0,2574.5,602.3,3176.8,10956.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,2073,104719.2,0.0,0.0,104719.2,21557.58,12424.51,8439.14,42421.23,147140.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",5200,Professional Engineering,5264,Airport Noise Abatement Spec,37557,81942.02,0.0,0.0,81942.02,16888.59,12424.5,6667.57,35980.66,117922.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51989,9328.33,598.59,44.22,9971.14,2238.69,2854.83,753.47,5846.99,15818.13 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,37537,74700.05,0.0,0.0,74700.05,15373.89,12424.5,6007.94,33806.33,108506.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,44490,72153.02,361.99,403.36,72918.37,14871.05,12424.5,5929.81,33225.36,106143.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",48270,134634.46,31481.28,3974.77,170090.51,26560.94,12424.5,2854.05,41839.49,211930.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",21998,20295.79,0.0,0.0,20295.79,0.0,4832.41,1573.14,6405.55,26701.34 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,26791,133085.0,0.0,24991.28,158076.28,29371.9,11946.62,10075.54,51394.06,209470.34 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3525,Chief Preparator,47503,76110.75,0.0,0.0,76110.75,15638.07,12421.52,6189.64,34249.23,110359.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29669,2637.91,0.0,0.0,2637.91,0.0,1143.89,204.74,1348.63,3986.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,21887,29113.07,0.0,20.0,29133.07,6189.74,4199.24,2501.38,12890.36,42023.43 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,33613,61428.0,0.0,0.0,61428.0,12660.59,12424.5,4963.56,30048.65,91476.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,5452,14160.0,0.0,144.0,14304.0,3208.38,2867.19,1180.1,7255.67,21559.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,8602,135421.01,0.0,1965.61,137386.62,27649.12,12424.49,10106.09,50179.7,187566.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,41331,8932.71,0.0,0.0,8932.71,1964.31,2341.54,708.03,5013.88,13946.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,36015,139468.45,9774.19,16840.89,166083.53,27532.22,12424.5,2776.04,42732.76,208816.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,10764,74274.11,7507.78,2539.37,84321.26,15365.72,12424.5,6680.1,34470.32,118791.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32649,50862.06,18199.11,1367.72,70428.89,13952.86,10000.95,5499.36,29453.17,99882.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,48006,6345.0,0.0,0.0,6345.0,1423.17,1433.6,520.2,3376.97,9721.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26759,63895.79,18352.48,5697.53,87945.8,19273.66,12622.45,6322.98,38219.09,126164.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37856,889.59,0.0,17.38,906.97,0.0,221.01,70.34,291.35,1198.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21885,3627.38,0.0,0.0,3627.38,0.0,1523.19,288.7,1811.89,5439.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52686,67472.74,2636.51,2416.91,72526.16,19098.21,13294.34,5139.73,37532.28,110058.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,50410,83699.04,0.0,0.0,83699.04,17250.56,12424.5,6819.84,36494.9,120193.94 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,42133,434.04,340.66,0.0,774.7,0.0,128.42,60.13,188.55,963.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",37802,106090.05,27119.36,17726.5,150935.91,21865.57,12424.51,10310.14,44600.22,195536.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25994,3389.29,0.0,533.66,3922.95,3070.48,280.8,1073.19,4424.47,8347.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28220,2383.01,0.0,0.0,2383.01,0.0,591.37,184.93,776.3,3159.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16970,56531.01,271.33,3785.9,60588.24,11956.3,12424.5,4958.79,29339.59,89927.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,21584,137574.54,17148.08,813.73,155536.35,27163.81,12328.93,2643.2,42135.94,197672.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6268,6501.82,0.0,0.0,6501.82,0.0,2819.41,508.4,3327.81,9829.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41279,19192.61,0.0,4550.13,23742.74,519.84,0.0,4622.76,5142.6,28885.34 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,18801,122217.01,0.0,0.0,122217.01,24596.62,12424.5,9739.65,46760.77,168977.78 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2453,Supervising Pharmacist,27485,173297.83,0.0,1200.0,174497.83,34899.69,12424.5,10666.46,57990.65,232488.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21401,67060.52,24371.2,6563.25,97994.97,20271.43,13222.0,7663.9,41157.33,139152.3 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,46708,29233.8,5337.52,2743.85,37315.17,6961.58,4778.65,2874.57,14614.8,51929.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,31981,63642.8,2341.26,589.99,66574.05,14381.67,12376.7,5498.28,32256.65,98830.7 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,22301,97439.65,1079.09,10379.31,108898.05,26233.4,12424.5,1812.77,40470.67,149368.72 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,49044,70180.32,1164.0,5891.01,77235.33,14861.74,11823.4,6141.39,32826.53,110061.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,16253,66114.94,0.0,22355.0,88469.94,14505.65,6588.58,7148.08,28242.31,116712.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44788,4324.4,0.0,159.32,4483.72,0.0,1815.89,355.71,2171.6,6655.32 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,50254,63705.06,0.0,624.0,64329.06,13258.51,12424.5,5281.05,30964.06,95293.12 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,45663,0.0,0.0,2006.02,2006.02,0.0,0.0,153.46,153.46,2159.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,51496,7605.66,0.0,0.0,7605.66,0.0,2747.73,610.59,3358.32,10963.98 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,25343,118411.06,0.0,0.0,118411.06,23830.3,12424.5,9053.61,45308.41,163719.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,9045,138629.96,49769.37,20645.74,209045.07,27414.76,12424.5,3562.8,43402.06,252447.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26823,70245.0,8780.13,3749.2,82774.33,14616.8,12424.5,6753.21,33794.51,116568.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,23994,15694.7,240.23,0.0,15934.93,2920.79,2341.54,1216.29,6478.62,22413.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,24249,46358.04,0.0,0.0,46358.04,10398.09,6212.25,3699.16,20309.5,66667.54 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,25023,145200.01,0.0,0.0,145200.01,29221.73,12424.5,10231.49,51877.72,197077.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,34436,8514.99,0.0,61.31,8576.3,0.0,3085.22,664.74,3749.96,12326.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,18926,103451.1,0.0,0.0,103451.1,20655.66,11420.99,7923.1,39999.75,143450.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,39456,53996.63,0.0,1420.0,55416.63,12346.29,12424.5,4441.61,29212.4,84629.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,9835,68429.0,27874.74,2471.85,98775.59,13809.49,10035.18,7769.46,31614.13,130389.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,3774,123338.78,112804.17,20350.99,256493.94,28239.85,15196.12,662.72,44098.69,300592.63 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,39535,72040.91,17383.61,6944.15,96368.67,16501.78,9582.99,7688.06,33772.83,130141.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",20117,1107.6,0.0,0.0,1107.6,0.0,0.0,87.62,87.62,1195.22 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,20516,53169.72,0.0,14215.62,67385.34,11925.99,6546.76,5347.32,23820.07,91205.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22450,60751.7,10.93,120.0,60882.63,13615.65,12424.5,4951.48,30991.63,91874.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45444,111075.32,56722.9,24103.99,191902.21,25752.97,14909.4,3220.35,43882.72,235784.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41813,39878.0,0.0,4831.06,44709.06,2010.68,0.0,6780.37,8791.05,53500.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,12966,70245.0,0.0,4154.35,74399.35,14616.8,12424.5,6090.21,33131.51,107530.86 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,43948,37474.01,1689.02,1512.43,40675.46,6872.96,10990.91,3247.34,21111.21,61786.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11592,113559.66,6173.11,9699.09,129431.86,23520.53,10365.8,9560.09,43446.42,172878.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,11547,9889.53,0.0,0.0,9889.53,0.0,3585.48,766.52,4352.0,14241.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49711,119467.37,2706.3,15016.12,137189.79,23620.98,12424.5,2325.8,38371.28,175561.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,4851,2556.83,0.0,0.0,2556.83,659.65,773.3,219.36,1652.31,4209.14 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,24964,104856.35,8205.07,14662.32,127723.74,23785.18,12364.77,9857.94,46007.89,173731.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,27446,49557.27,1029.54,2093.17,52679.98,7457.48,10942.76,4284.9,22685.14,75365.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8703,27407.9,0.0,169.2,27577.1,1576.66,0.0,5057.18,6633.84,34210.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51759,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2414.98,12868.33,44168.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,17691,100761.0,13856.88,12289.03,126906.91,20887.13,12424.48,9843.74,43155.35,170062.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0490,Commander 3,35892,104316.3,0.0,6646.92,110963.22,19585.04,5877.74,295.84,25758.62,136721.84 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,17110,50904.3,0.0,0.0,50904.3,11407.14,8507.74,840.77,20755.65,71659.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,7387,3988.0,0.0,0.0,3988.0,0.0,955.73,309.36,1265.09,5253.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",7910,1404.9,0.0,0.0,1404.9,0.0,334.51,3.44,337.95,1742.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,982,39790.39,3671.75,1425.52,44887.66,10665.81,12437.87,3363.23,26466.91,71354.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12007,97762.87,1162.19,9252.78,108177.84,26024.62,12424.5,1800.2,40249.32,148427.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,27053,75457.35,0.0,1830.75,77288.1,15857.06,11755.68,6412.15,34024.89,111312.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32874,26046.4,0.0,2098.7,28145.1,0.0,0.0,464.89,464.89,28609.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,45283,26859.64,126.06,1397.53,28383.23,6670.79,6182.86,2307.21,15160.86,43544.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,23619,102561.02,0.0,0.0,102561.02,21138.64,12425.08,8277.38,41841.1,144402.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51014,55281.54,0.0,6356.89,61638.43,13400.57,0.0,5093.97,18494.54,80132.97 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,30397,76066.19,0.0,1165.0,77231.19,15885.96,12262.32,6343.98,34492.26,111723.45 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,36035,22546.01,0.0,80.0,22626.01,4210.69,2867.19,1778.13,8856.01,31482.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",30543,140298.84,0.0,0.0,140298.84,28235.42,12424.5,25096.73,65756.65,206055.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48011,74780.77,16732.86,3866.49,95380.12,15829.98,15052.77,1580.14,32462.89,127843.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47630,112690.83,14140.57,18940.08,145771.48,22311.19,12424.5,2436.53,37172.22,182943.7 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,13676,64382.35,0.0,125.0,64507.35,14368.68,12423.01,5192.14,31983.83,96491.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,25056,200107.1,585.99,19185.75,219878.84,40920.18,12424.5,569.71,53914.39,273793.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",36941,15087.13,0.0,0.0,15087.13,0.0,3555.62,1170.74,4726.36,19813.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2810,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2413.37,12866.72,44166.72 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1436,Braillist,45846,25283.35,0.0,0.0,25283.35,4861.54,6212.25,2009.31,13083.1,38366.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39794,3182.03,0.0,0.0,3182.03,0.0,1379.84,253.83,1633.67,4815.7 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,12440,71305.96,0.0,0.0,71305.96,14704.26,12423.6,5862.59,32990.45,104296.41 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,29391,71903.06,0.0,0.0,71903.06,14799.96,12424.5,5850.03,33074.49,104977.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",4661,93738.0,10348.08,3120.07,107206.15,19319.82,12424.5,8756.57,40500.89,147707.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,24496,85004.05,4966.24,852.86,90823.15,17519.6,12424.51,7424.18,37368.29,128191.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,39943,1522.28,0.0,16.94,1539.22,0.0,450.99,210.54,661.53,2200.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7254,Automotive Machinist Sprv 1,49999,107816.02,8786.34,600.0,117202.36,22332.94,12424.5,9878.17,44635.61,161837.97 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,5032,55488.83,347.67,0.0,55836.5,12378.31,12116.88,4252.7,28747.89,84584.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",2343,135109.02,22328.78,10808.72,168246.52,28680.7,12424.5,2868.92,43974.12,212220.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,51212,735.32,0.0,0.0,735.32,0.0,236.79,57.07,293.86,1029.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,22941,158351.66,34293.43,12540.98,205186.07,31315.08,12424.5,3445.09,47184.67,252370.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,2822,104354.05,2708.64,5505.84,112568.53,21654.78,12424.5,8800.12,42879.4,155447.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,6330,89894.72,0.0,0.0,89894.72,18492.58,12424.5,7126.88,38043.96,127938.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51182,56531.0,0.0,2289.75,58820.75,11667.81,12424.5,4726.54,28818.85,87639.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,45124,55227.7,2753.13,1659.73,59640.56,12574.45,12424.5,4811.11,29810.06,89450.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,41605,2546.19,1215.65,87.46,3849.3,0.0,758.62,298.77,1057.39,4906.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,19250,75742.5,25110.05,10246.23,111098.78,16780.65,6243.62,9078.77,32103.04,143201.82 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,24142,77071.02,14642.85,4901.85,96615.72,16219.3,12424.5,7924.71,36568.51,133184.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42648,2989.0,0.0,21.56,3010.56,0.0,1457.49,233.54,1691.03,4701.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43579,119450.07,6336.31,5207.08,130993.46,23683.69,12424.49,2222.64,38330.82,169324.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,17715,84644.01,22058.15,2339.85,109042.01,17556.45,12424.5,8744.0,38724.95,147766.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22284,112607.26,1477.39,6606.95,120691.6,22272.2,12414.64,2035.9,36722.74,157414.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,26935,61102.02,323.44,428.79,61854.25,12592.97,0.0,5113.34,17706.31,79560.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,35603,112479.04,0.0,0.0,112479.04,22925.04,12424.5,9150.78,44500.32,156979.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,46877,26091.24,0.0,0.0,26091.24,5737.44,5877.74,1990.21,13605.39,39696.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,38972,176257.0,0.0,0.0,176257.0,35471.94,12424.49,10773.06,58669.49,234926.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,15650,60095.47,34028.23,9267.92,103391.62,14136.13,11884.03,8419.37,34439.53,137831.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,14437,10953.0,37.85,1930.8,12921.65,2633.41,2867.19,1033.11,6533.71,19455.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,34171,89955.66,43423.97,4220.63,137600.26,18375.56,9557.31,2300.04,30232.91,167833.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41785,38571.39,1724.25,1450.6,41746.24,9199.41,9227.35,3401.24,21828.0,63574.24 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1164,"Adm, SFGH Medical Center",1523,256098.01,0.0,82292.31,338390.32,51977.53,11468.77,20963.32,84409.62,422799.94 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36476,50480.94,0.0,0.0,50480.94,12123.8,12189.2,4059.34,28372.34,78853.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21626,64535.1,2404.65,1842.5,68782.25,15187.55,12738.99,5212.26,33138.8,101921.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,3882,59229.0,0.0,125.0,59354.0,12243.73,12424.5,4782.92,29451.15,88805.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8239,119459.83,35585.53,9687.37,164732.73,23648.13,12424.5,2807.38,38880.01,203612.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10516,3839.55,0.0,93.09,3932.64,0.0,1281.28,304.57,1585.85,5518.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34177,49083.14,810.99,1080.0,50974.13,10213.57,10990.9,4124.14,25328.61,76302.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46477,55423.49,0.0,8435.42,63858.91,13464.19,12179.6,5121.73,30765.52,94624.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",6156,93738.01,574.53,6299.83,100612.37,19851.72,12424.5,8027.16,40303.38,140915.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,782,117321.7,34036.88,7039.32,158397.9,24470.31,15021.69,2600.67,42092.67,200490.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18733,63928.84,0.0,2011.5,65940.34,0.0,0.0,1829.51,1829.51,67769.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,9831,64463.7,818.71,14060.69,79343.1,15098.37,12424.49,6523.84,34046.7,113389.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",52851,93738.04,0.0,0.0,93738.04,19319.84,12424.5,7730.4,39474.74,133212.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2436,Electroencephalograph Tech 1,8215,72699.0,0.0,810.0,73509.0,15095.51,12424.5,6029.33,33549.34,107058.34 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",6295,1086.04,0.0,39.29,1125.33,0.0,237.74,87.12,324.86,1450.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26946,64513.33,4931.93,1403.36,70848.62,18078.99,12716.6,5520.51,36316.1,107164.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7319,Electric Motor Repairer,16997,89156.45,17128.2,5144.15,111428.8,18677.93,12424.5,9072.69,40175.12,151603.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28023,117.03,0.0,0.0,117.03,0.0,37.81,9.08,46.89,163.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38872,54193.99,2332.0,320.0,56845.99,11107.42,10886.37,4608.09,26601.88,83447.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23448,63731.01,5154.41,4931.78,73817.2,13365.83,9796.24,3092.11,26254.18,100071.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,718.0,"Glaziers, Metal, and Glass Workers, Local 718",7300,Journeyman Trade,7326,Glazier,4911,84164.14,501.9,2251.5,86917.54,17729.46,11943.65,7025.16,36698.27,123615.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44125,45497.08,2964.63,2558.02,51019.73,12729.95,10768.34,3872.69,27370.98,78390.71 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2802,Epidemiologist 1,23151,50476.38,0.0,0.0,50476.38,10403.4,7765.3,4124.26,22292.96,72769.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,47436,23754.57,0.0,2960.38,26714.95,6445.97,5277.31,2215.17,13938.45,40653.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,1650,15885.09,103.22,300.16,16288.47,0.0,4205.21,1262.98,5468.19,21756.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,46641,111482.7,584.66,5574.15,117641.51,23585.16,12281.15,9398.94,45265.25,162906.76 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,46153,39751.28,0.0,0.0,39751.28,7483.1,5871.77,3053.38,16408.25,56159.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,27073,95608.0,0.0,0.0,95608.0,20269.34,8123.71,17296.76,45689.81,141297.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7294,43792.23,6767.78,811.74,51371.75,11541.78,13031.39,3889.85,28463.02,79834.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,4701,124848.66,0.0,0.0,124848.66,25125.95,12424.5,17127.62,54678.07,179526.73 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,27391,100554.04,0.0,480.0,101034.04,20823.31,12424.5,8109.63,41357.44,142391.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,12208,0.0,0.0,3339.86,3339.86,0.0,68.5,255.5,324.0,3663.86 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25917,97770.68,72356.84,13900.52,184028.04,27154.63,12424.52,3136.37,42715.52,226743.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,24644,150566.01,0.0,7893.1,158459.11,31736.14,12412.56,10446.01,54594.71,213053.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,40878,32830.8,0.0,104.13,32934.93,8493.81,0.0,5002.03,13495.84,46430.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",35839,5060.0,98.83,183.34,5342.17,898.66,477.86,89.78,1466.3,6808.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,33455,19864.75,0.0,0.0,19864.75,2806.65,6008.02,1568.6,10383.27,30248.02 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,46701,4220.0,0.0,0.0,4220.0,0.0,0.0,333.76,333.76,4553.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),26281,11556.0,0.0,99.2,11655.2,2050.76,955.73,195.3,3201.79,14856.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",14603,93281.03,0.0,0.0,93281.03,19225.76,12424.5,7518.74,39169.0,132450.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,17814,116666.94,25914.71,3492.37,146074.02,23647.83,12400.61,2441.42,38489.86,184563.88 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,47397,86850.03,0.0,480.0,87330.03,18000.35,12424.5,6694.01,37118.86,124448.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,19926,138635.29,34326.76,1336.63,174298.68,27395.36,12424.5,2960.51,42780.37,217079.05 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",17167,54245.0,0.0,1427.5,55672.5,4545.01,9079.44,4612.48,18236.93,73909.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48710,58166.23,1608.88,3282.99,63058.1,17185.07,11522.17,4908.02,33615.26,96673.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22211,67900.71,17671.76,5032.49,90604.96,19966.35,13377.07,7068.42,40411.84,131016.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40013,63729.15,7549.54,708.63,71987.32,17560.22,12550.59,5281.0,35391.81,107379.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45528,56120.02,0.0,0.0,56120.02,12556.8,12424.51,4565.0,29546.31,85666.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45516,19789.91,12639.53,6226.71,38656.15,6241.41,3935.59,3224.82,13401.82,52057.97 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,6210,74372.41,0.0,0.0,74372.41,15329.29,12316.98,5802.04,33448.31,107820.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,23278,3496.54,0.0,0.0,3496.54,0.0,1254.4,282.01,1536.41,5032.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,44514,4861.5,0.0,64.8,4926.3,916.78,716.79,380.5,2014.07,6940.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14733,112170.34,30274.29,18294.41,160739.04,24680.76,15052.76,2738.4,42471.92,203210.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27248,131467.97,0.0,759.95,132227.92,0.0,11384.06,9562.69,20946.75,153174.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,19620,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38978,94491.01,14400.48,15064.46,123955.95,26679.31,12003.92,2065.15,40748.38,164704.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,5051,59520.69,10492.18,5848.27,75861.14,13235.94,11833.68,5964.95,31034.57,106895.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35962,8868.66,0.0,0.0,8868.66,0.0,3784.1,711.24,4495.34,13364.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,43370,5229.4,0.0,118.85,5348.25,0.0,1051.3,415.11,1466.41,6814.66 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,15779,4985.0,0.0,0.0,4985.0,1096.2,1194.66,383.71,2674.57,7659.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23194,117137.51,3713.99,2670.7,123522.2,23176.49,12424.5,1501.32,37102.31,160624.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,32672,130537.84,55145.77,15055.43,200739.04,28623.37,15108.62,3369.53,47101.52,247840.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33811,1811.41,0.0,0.0,1811.41,0.0,785.49,140.24,925.73,2737.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",43919,17029.25,0.0,0.0,17029.25,0.0,4026.01,1321.55,5347.56,22376.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2626,Chief Dietitian,1710,96098.19,0.0,200.0,96298.19,19857.72,12472.29,7926.66,40256.67,136554.86 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,40035,40606.01,0.0,0.0,40606.01,8472.64,8600.09,3363.24,20435.97,61041.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,22619,79395.05,0.0,0.0,79395.05,16372.43,12424.51,6534.03,35330.97,114726.02 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,37854,137101.07,0.0,0.0,137101.07,27592.11,12424.5,27565.52,67582.13,204683.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,43641,40872.0,0.0,1316.8,42188.8,7648.83,3345.05,2033.73,13027.61,55216.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7283,124896.19,26170.18,8809.88,159876.25,24713.47,12424.5,2752.95,39890.92,199767.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48741,4168.57,0.0,172.1,4340.67,6937.85,0.0,3202.19,10140.04,14480.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28048,67296.64,7768.03,4710.85,79775.52,19674.1,13260.23,6081.09,39015.42,118790.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18530,67073.35,57.48,10280.78,77411.61,15180.43,11860.02,6373.35,33413.8,110825.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",5689,7132.0,0.0,17974.22,25106.22,1610.48,955.73,1958.55,4524.76,29630.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,45997,64447.91,5070.38,15129.97,84648.26,15727.09,12424.51,6939.02,35090.62,119738.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,38446,56541.13,0.0,1291.73,57832.86,11482.48,9272.26,4799.37,25554.11,83386.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",42302,11905.85,0.0,0.0,11905.85,0.0,2822.41,923.86,3746.27,15652.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,47596,168343.38,787.27,12619.97,181750.62,36432.53,11170.1,10805.38,58408.01,240158.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,20130,81157.01,19710.54,14201.71,115069.26,18695.15,12424.5,9006.47,40126.12,155195.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,44777,43068.8,0.0,0.0,43068.8,8391.9,7642.86,3455.47,19490.23,62559.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,37216,91043.17,0.0,0.0,91043.17,18759.11,12423.73,7476.85,38659.69,129702.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,6338,30032.0,0.0,0.0,30032.0,5588.93,3822.91,2393.88,11805.72,41837.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",42552,142957.84,0.0,9183.5,152141.34,30057.55,12520.62,2516.91,45095.08,197236.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,18053,20887.26,0.0,0.0,20887.26,0.0,5585.05,1621.19,7206.24,28093.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,1677,31552.0,355.63,0.0,31907.63,5871.8,5256.51,2616.02,13744.33,45651.96 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,8480,93681.01,7104.46,8541.49,109326.96,20352.89,12424.5,9009.87,41787.26,151114.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,51497,135421.01,0.0,0.0,135421.01,27248.57,12424.51,10128.14,49801.22,185222.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14053,68127.44,2835.07,6000.05,76962.56,20300.97,13423.66,5788.18,39512.81,116475.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,46837,100554.01,0.0,0.0,100554.01,20724.83,12424.49,7928.46,41077.78,141631.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25300,146728.04,0.0,24754.47,171482.51,32712.78,12225.89,6731.22,51669.89,223152.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42119,2232.79,0.0,0.0,2232.79,0.0,555.52,172.99,728.51,2961.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,16287,119461.69,17238.13,9785.76,146485.58,23641.92,12424.5,2440.63,38507.05,184992.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48958,7534.93,0.0,0.0,7534.93,1489.09,3267.41,605.76,5362.26,12897.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,36317,71479.62,22613.45,11307.65,105400.72,15735.68,10479.29,8270.21,34485.18,139885.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,17574,65768.74,10591.52,11244.05,87604.31,15010.77,12389.98,7023.92,34424.67,122028.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,50090,56531.0,20.41,4280.78,60832.19,12180.6,12424.5,5028.14,29633.24,90465.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26775,63365.26,8271.76,574.96,72211.98,15737.08,12566.43,5514.24,33817.75,106029.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,14798,59659.9,192.54,1914.27,61766.71,13814.58,12328.92,4897.85,31041.35,92808.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46370,9541.19,524.25,33.44,10098.88,2286.49,2918.98,763.38,5968.85,16067.73 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,967,118104.06,0.0,0.0,118104.06,23768.42,12424.5,9480.58,45673.5,163777.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,16717,75605.0,7640.91,10983.89,94229.8,16822.79,12424.5,7432.56,36679.85,130909.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,9891,109761.36,45148.35,13225.92,168135.63,24179.41,15196.12,2756.11,42131.64,210267.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8312,Sheriff's Captain,13499,95728.03,3118.07,52411.08,151257.18,24563.08,7645.85,275.89,32484.82,183742.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50389,2507.05,0.0,294.1,2801.15,0.0,1087.14,216.86,1304.0,4105.15 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,20199,24510.88,0.0,2815.34,27326.22,5497.79,3161.38,2247.57,10906.74,38232.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10582,33585.02,2491.34,2545.67,38622.03,6926.41,7167.97,2956.59,17050.97,55673.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",42726,93738.13,1699.67,10899.64,106337.44,21240.47,12424.5,8542.4,42207.37,148544.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6177,3532.84,0.0,13.32,3546.16,0.0,1152.85,275.23,1428.08,4974.24 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,47774,53975.76,0.0,1065.51,55041.27,11340.82,11863.55,4570.14,27774.51,82815.78 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,1883,28109.5,0.0,0.0,28109.5,6181.3,4300.79,2197.2,12679.29,40788.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,27799,84644.0,1364.34,2002.18,88010.52,17556.45,12424.49,7153.31,37134.25,125144.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,6335,33459.32,185.29,1282.0,34926.61,7697.79,6809.65,2893.97,17401.41,52328.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31820,76918.34,37799.95,9316.29,124034.58,17227.25,15196.12,2069.22,34492.59,158527.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11477,67739.72,31279.3,1792.22,100811.24,19043.61,13352.46,7814.42,40210.49,141021.73 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46491,97802.93,208668.82,23733.83,330205.58,29556.45,12424.51,5628.99,47609.95,377815.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11026,123274.29,1381.51,27749.63,152405.43,29115.84,11090.06,7995.77,48201.67,200607.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,22823,138635.25,64729.44,3684.94,207049.63,27395.36,12424.5,3476.4,43296.26,250345.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,48418,56279.4,504.66,2871.55,59655.61,11492.43,10751.97,4849.33,27093.73,86749.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,49301,139474.09,5549.99,9028.04,154052.12,27594.86,12424.5,2614.1,42633.46,196685.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1041,IS Engineer-Assistant,374,113806.2,0.0,0.0,113806.2,23196.29,12424.5,9780.77,45401.56,159207.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,8939,117129.7,175.16,10796.54,128101.4,23205.2,12424.5,2124.92,37754.62,165856.02 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,39304,99654.0,5271.1,0.0,104925.1,22731.77,12424.5,265.05,35421.32,140346.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46021,68087.78,34235.01,2075.64,104398.43,19228.99,13420.2,7916.91,40566.1,144964.53 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,14835,52523.48,0.0,0.0,52523.48,11177.94,8503.67,4145.68,23827.29,76350.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37284,65168.47,7826.46,1039.59,74034.52,18129.14,12840.78,5655.72,36625.64,110660.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,21332,70833.01,1554.76,1215.67,73603.44,14339.23,9079.44,5856.96,29275.63,102879.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18713,49083.1,0.0,80.0,49163.1,10016.77,10990.9,3987.82,24995.49,74158.59 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,15805,81157.1,0.0,8892.8,90049.9,18550.47,12424.5,7348.38,38323.35,128373.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,46895,84644.0,11697.0,4803.75,101144.75,17575.53,12424.5,8079.01,38079.04,139223.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,1308,73815.51,866.25,0.0,74681.76,15202.42,12424.5,6007.98,33634.9,108316.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45525,112690.79,10505.86,8863.87,132060.52,22311.18,12424.5,2203.15,36938.83,168999.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23351,6298.72,0.0,32.34,6331.06,0.0,3153.91,490.86,3644.77,9975.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6333,Senior Building Inspector,12270,124338.0,28483.35,6216.91,159038.26,26274.56,12424.51,10392.8,49091.87,208130.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,8103,111421.9,0.0,0.0,111421.9,22964.41,12424.5,9094.93,44483.84,155905.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,12460,54124.0,2298.24,4429.96,60852.2,12576.97,12424.5,5020.62,30022.09,90874.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,10014,56413.85,0.0,0.0,56413.85,11287.92,6314.52,4599.54,22201.98,78615.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,4843,70245.0,1342.06,3511.47,75098.53,14627.15,12424.5,6210.41,33262.06,108360.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,8435,117138.64,7084.28,3622.54,127845.46,23172.37,12424.5,2121.89,37718.76,165564.22 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,17080,97755.08,11237.84,6085.85,115078.77,25233.0,12424.5,1957.55,39615.05,154693.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,32866,35763.33,0.0,594.34,36357.67,7976.72,7191.03,3034.55,18202.3,54559.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",15149,4516.01,0.0,0.0,4516.01,1165.13,955.73,346.43,2467.29,6983.3 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,36827,126116.72,0.0,28210.74,154327.46,25381.16,12424.5,10338.85,48144.51,202471.97 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,11308,19455.38,0.0,0.0,19455.38,4363.86,3345.06,1617.68,9326.6,28781.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,27102,70245.0,32395.17,10087.39,112727.56,15635.79,12424.5,9166.39,37226.68,149954.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40830,112690.83,15748.44,1503.06,129942.33,22311.21,12424.5,2157.74,36893.45,166835.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,18124,32177.0,27.91,0.0,32204.91,0.0,5256.48,2542.09,7798.57,40003.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,10458,106605.0,0.0,0.0,106605.0,21971.81,12424.5,8715.76,43112.07,149717.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1594,66102.03,12146.23,3235.88,81484.14,13974.54,12424.5,6686.04,33085.08,114569.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,21405,92282.01,0.0,0.0,92282.01,19019.5,12424.51,7257.71,38701.72,130983.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",48077,147002.71,4530.6,10843.0,162376.31,30691.5,13024.83,2273.51,45989.84,208366.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,48825,2772.0,0.0,0.0,2772.0,515.87,477.86,215.15,1208.88,3980.88 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),40402,184061.78,0.0,5243.73,189305.51,38102.33,12409.57,10998.96,61510.86,250816.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2535,56531.0,0.0,2277.45,58808.45,11796.81,12424.5,4816.38,29037.69,87846.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,40929,93281.03,0.0,624.0,93905.03,19354.57,12424.5,7787.82,39566.89,133471.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49839,124599.95,13321.0,7702.37,145623.32,25125.51,12424.5,2424.65,39974.66,185597.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46851,33435.24,183.21,8437.92,42056.37,6870.04,3199.6,2208.24,12277.88,54334.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18005,25877.96,1596.96,940.5,28415.42,5868.92,5722.44,2352.68,13944.04,42359.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,4822,3614.25,79.0,0.0,3693.25,0.0,1093.13,285.93,1379.06,5072.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,52008,116684.6,10229.53,816.89,127731.02,23095.97,12376.71,2164.26,37636.94,165367.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14871,69827.06,45021.82,6241.66,121090.54,20827.89,13761.98,9399.92,43989.79,165080.33 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),2215,171082.0,0.0,1500.0,172582.0,34653.11,12424.5,10718.04,57795.65,230377.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,31866,63039.67,7297.14,2818.17,73154.98,13564.15,12260.23,5999.52,31823.9,104978.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,21072,93766.5,48620.85,12599.42,154986.77,21187.6,12663.43,10293.58,44144.61,199131.38 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,20884,98746.45,0.0,0.0,98746.45,20234.64,10442.85,7817.96,38495.45,137241.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,8781,18628.33,0.0,310.62,18938.95,4031.03,4119.31,1609.43,9759.77,28698.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",8969,84086.66,0.0,0.0,84086.66,17607.85,8838.66,14740.87,41187.38,125274.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40086,81840.14,0.0,4000.0,85840.14,0.0,0.0,6404.22,6404.22,92244.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,22773,55338.8,890.61,1925.52,58154.93,12676.61,12424.51,4651.6,29752.72,87907.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,43598,9339.0,3320.87,1120.68,13780.55,2441.46,2628.26,1098.23,6167.95,19948.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50122,437.36,0.0,0.0,437.36,0.0,0.0,34.55,34.55,471.91 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,51303,17465.0,0.0,0.0,17465.0,0.0,5256.52,1409.44,6665.96,24130.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,12119,54083.33,232.23,200.0,54515.56,12063.07,11970.77,4424.91,28458.75,82974.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13137,1577.0,0.0,31.54,1608.54,198.03,0.0,0.0,198.03,1806.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,13535,86722.41,0.0,0.0,86722.41,19349.19,12197.51,6924.26,38470.96,125193.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,229,45318.6,1621.56,956.03,47896.19,10554.68,10212.82,3888.61,24656.11,72552.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,14584,1507.83,0.0,21.77,1529.6,0.0,498.78,118.59,617.37,2146.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,8715,64037.87,4698.15,7870.27,76606.29,14652.28,9787.28,5992.9,30432.46,107038.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27302,120593.39,520.1,11149.2,132262.69,23777.58,10986.12,9855.98,44619.68,176882.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24733,113233.6,64020.33,17788.05,195041.98,24937.47,15196.12,3284.61,43418.2,238460.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,8294,97578.15,6938.91,16926.62,121443.68,27143.58,12400.62,2021.39,41565.59,163009.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,34035,7148.0,234.54,0.0,7382.54,1844.2,1911.46,559.62,4315.28,11697.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,49697,12822.48,0.0,3044.39,15866.87,2900.2,2140.96,1325.36,6366.52,22233.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,13828,114824.7,0.0,4633.68,119458.38,24008.51,12424.5,9575.15,46008.16,165466.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7211,Cement Finisher Supervisor 2,1528,87381.52,15870.91,0.0,103252.43,18266.72,9955.07,8520.47,36742.26,139994.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,41640,98568.61,0.0,0.0,98568.61,12100.68,8506.01,7634.01,28240.7,126809.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,45815,5021.15,0.0,73.03,5094.18,0.0,1481.39,394.68,1876.07,6970.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,34088,56885.0,10018.62,989.94,67893.56,11275.24,7645.84,5373.81,24294.89,92188.45 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,20902,58334.31,848.38,1204.55,60387.24,12295.57,11489.62,5023.08,28808.27,89195.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,13527,77496.0,22665.8,10159.56,110321.36,17232.64,12567.86,8972.6,38773.1,149094.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,30124,181945.0,0.0,0.0,181945.0,36616.95,12424.5,10840.49,59881.94,241826.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5213,66554.53,5186.9,4423.37,76164.8,19466.95,13122.19,5780.96,38370.1,114534.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2282,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2400.62,12853.97,44153.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,27459,32160.0,4239.85,5303.58,41703.43,5709.66,2867.19,695.04,9271.89,50975.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31707,50421.57,833.22,0.0,51254.79,10357.4,9539.63,4224.49,24121.52,75376.31 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,39891,6184.38,794.88,0.0,6979.26,0.0,1851.73,541.71,2393.44,9372.7 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,13496,396.0,18.56,0.0,414.56,0.0,95.58,32.18,127.76,542.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,34894,86738.0,0.0,0.0,86738.0,17875.87,11229.84,6667.55,35773.26,122511.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,34223,93395.7,60901.89,12300.74,166598.33,20891.15,12615.64,10484.01,43990.8,210589.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10620,67197.97,23712.04,1927.42,92837.43,18916.68,13240.88,7241.29,39398.85,132236.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21634,10070.3,0.0,834.19,10904.49,1213.47,0.0,481.98,1695.45,12599.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29205,12360.59,0.0,319.91,12680.5,0.0,3074.76,982.81,4057.57,16738.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24462,148244.17,1549.42,29963.32,179756.91,31502.44,12352.82,4290.2,48145.46,227902.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,46597,23576.0,0.0,3490.72,27066.72,4274.32,1911.46,2205.37,8391.15,35457.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1416,55634.6,0.0,4088.0,59722.6,12814.03,12376.71,4892.77,30083.51,89806.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41157,343.0,0.0,0.0,343.0,0.0,167.25,26.55,193.8,536.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25985,9525.13,256.95,96.5,9878.58,2297.62,2914.14,755.85,5967.61,15846.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),51005,149444.32,2541.68,8041.34,160027.34,29535.32,12424.5,2220.05,44179.87,204207.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,47147,40765.3,0.0,330.74,41096.04,9803.19,9939.6,3405.59,23148.38,64244.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,3842,10775.01,0.0,88.62,10863.63,2005.25,2389.32,875.97,5270.54,16134.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,30706,54760.36,0.0,588.74,55349.1,11475.34,11722.58,4470.62,27668.54,83017.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40599,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2414.98,12868.33,44168.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20825,3195.8,0.0,31.62,3227.42,0.0,1385.81,257.97,1643.78,4871.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,47887,26678.01,0.0,0.0,26678.01,5866.47,5734.39,2204.84,13805.7,40483.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,19326,23741.0,149.18,439.0,24329.18,0.0,2867.16,1953.5,4820.66,29149.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38394,97769.04,16822.98,12026.87,126618.89,26702.12,12424.5,2156.37,41282.99,167901.88 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,25605,86733.26,0.0,0.0,86733.26,17887.33,12128.82,7007.69,37023.84,123757.1 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,49041,205167.0,0.0,38908.86,244075.86,45419.07,12424.5,11893.41,69736.98,313812.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11711,72734.28,165.49,11978.43,84878.2,20290.95,0.0,8865.54,29156.49,114034.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44582,0.0,0.0,250.0,250.0,0.0,34.25,0.0,34.25,284.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,13184,86047.41,10182.9,10538.53,106768.84,19253.54,12424.5,8520.97,40199.01,146967.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",46885,52240.0,6876.09,4179.2,63295.29,9995.59,4778.65,1065.89,15840.13,79135.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45908,11914.7,0.0,254.9,12169.6,0.0,3960.32,943.46,4903.78,17073.38 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,44687,86861.82,0.0,619.2,87481.02,18043.88,12328.92,7252.6,37625.4,125106.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,18774,14483.0,0.0,0.0,14483.0,3248.56,3345.06,1204.44,7798.06,22281.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38111,670.5,0.0,0.0,670.5,-353.07,0.0,172.93,-180.14,490.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26058,98238.44,1831.92,7175.33,107245.69,20425.05,12364.76,1787.35,34577.16,141822.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,48633,84644.0,131.59,11699.61,96475.2,19078.78,12424.51,7890.47,39393.76,135868.96 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2802,Epidemiologist 1,27475,14374.5,0.0,0.0,14374.5,2675.1,2628.26,1127.68,6431.04,20805.54 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13063,55573.1,17918.14,2098.92,75590.16,12519.14,12424.5,6025.88,30969.52,106559.68 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,35175,98754.62,0.0,3500.0,102254.62,20504.17,7454.7,8429.3,36388.17,138642.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20471,13410.0,0.0,22210.32,35620.32,2850.82,1194.67,2282.72,6328.21,41948.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,51149,11920.0,2639.66,1342.77,15902.43,2115.02,955.72,268.34,3339.08,19241.51 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,354C,Ct Comp App Programmer,34938,41850.0,0.0,2541.0,44391.0,9229.32,4300.79,3654.67,17184.78,61575.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,7990,101434.09,9498.34,3268.69,114201.12,21155.73,12412.55,9299.76,42868.04,157069.16 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,8137,18879.8,0.0,337.15,19216.95,3805.45,4172.37,1573.75,9551.57,28768.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,45965,94794.01,0.0,0.0,94794.01,19542.32,10035.18,7761.04,37338.54,132132.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,19,35418.74,0.0,0.0,35418.74,8533.57,11655.07,2888.38,23077.02,58495.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,7026,84644.0,42832.57,12369.41,139845.98,19423.98,12424.5,10004.85,41853.33,181699.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,41126,70737.98,1536.14,5031.97,77306.09,14570.82,7854.44,6366.73,28791.99,106098.08 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,472C,Fiscal Technician,38370,14310.0,0.0,0.0,14310.0,3209.75,2389.33,1212.24,6811.32,21121.32 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,38495,60641.13,0.0,0.0,60641.13,6787.03,12424.5,4774.27,23985.8,84626.93 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,32831,86558.15,0.0,0.0,86558.15,17935.72,10596.66,7072.93,35605.31,122163.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32464,2725.63,0.0,0.0,2725.63,0.0,1329.06,211.41,1540.47,4266.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,12633,26147.0,0.0,1340.85,27487.85,5923.94,5256.52,2192.03,13372.49,40860.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37707,56531.0,0.0,4433.06,60964.06,12428.98,12424.5,4786.79,29640.27,90604.33 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,21795,43540.03,0.0,0.0,43540.03,8102.83,5734.39,3454.89,17292.11,60832.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2487,Chemist III,36158,118979.0,0.0,0.0,118979.0,23934.18,12388.66,9737.01,46059.85,165038.85 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,31517,2099.5,1127.97,242.25,3469.72,0.0,621.23,269.3,890.53,4360.25 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,6401,19153.8,0.0,118.58,19272.38,0.0,4396.36,1494.3,5890.66,25163.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39988,16121.22,1370.25,351.56,17843.03,3424.76,3100.87,1267.99,7793.62,25636.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25800,148992.14,0.0,29378.69,178370.83,33714.93,12415.54,4578.35,50708.82,229079.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,11727,46325.0,0.0,0.0,46325.0,8715.19,6212.25,3438.44,18365.88,64690.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,48733,82103.01,3722.22,529.2,86354.43,17025.01,12424.5,7138.68,36588.19,122942.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,23580,49583.71,7378.68,1689.64,58652.03,12154.66,12376.73,4400.37,28931.76,87583.79 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,40677,77440.58,0.0,0.0,77440.58,0.0,4479.99,6002.09,10482.08,87922.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44368,47053.43,7720.34,2696.17,57469.94,13895.82,9318.97,4335.43,27550.22,85020.16 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,1492,63094.46,10474.73,2890.21,76459.4,13105.63,12423.01,6290.05,31818.69,108278.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",16562,147858.36,40406.83,8871.5,197136.69,30805.85,12424.5,3316.8,46547.15,243683.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34045,0.0,0.0,10989.78,10989.78,0.0,0.0,840.72,840.72,11830.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4364,112833.11,21911.36,25143.82,159888.29,26393.16,15100.55,2652.41,44146.12,204034.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator, Taxi And Accessible Servic",36192,1148.5,0.0,28.77,1177.27,216.96,238.93,89.6,545.49,1722.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,11819,14972.08,149.5,500.11,15621.69,3644.72,3981.99,1276.82,8903.53,24525.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36815,77856.3,644.28,2359.73,80860.31,15750.04,11946.64,4347.83,32044.51,112904.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,31103,92085.01,0.0,0.0,92085.01,18979.21,12424.5,7528.11,38931.82,131016.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42146,3347.15,0.0,0.0,3347.15,0.0,1405.52,260.26,1665.78,5012.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,29672,63176.54,15893.39,1848.57,80918.5,13428.12,12287.1,6633.91,32349.13,113267.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9690,0.0,0.0,3221.06,3221.06,0.0,0.0,246.42,246.42,3467.48 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,42340,82948.69,0.0,3264.01,86212.7,17175.65,11672.04,7027.2,35874.89,122087.59 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,34625,70162.74,0.0,812.07,70974.81,15194.87,9031.66,5828.86,30055.39,101030.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27436,97775.19,18357.47,14781.21,130913.87,26682.29,12424.52,2175.32,41282.13,172196.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,19689,82643.19,3837.88,230.0,86711.07,17025.82,11996.93,7111.52,36134.27,122845.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,26803,100761.0,16765.7,11578.03,129104.73,23161.06,12424.5,9862.2,45447.76,174552.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21963,64556.65,4960.2,827.19,70344.04,16451.22,12841.38,5112.17,34404.77,104748.81 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,40443,97787.43,115655.82,19572.55,233015.8,28556.38,12424.5,3969.8,44950.68,277966.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,16379,8451.4,259.99,1233.94,9945.33,2129.81,1959.26,782.65,4871.72,14817.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,50764,3137.69,0.0,0.0,3137.69,668.96,27.4,242.93,939.29,4076.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45256,80953.78,4324.98,4376.15,89654.91,16730.9,12424.5,1680.88,30836.28,120491.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,46893,116976.01,0.0,0.0,116976.01,23541.49,12424.51,9618.36,45584.36,162560.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2070,117630.58,18542.41,12717.69,148890.68,23269.53,12424.5,2491.08,38185.11,187075.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1802,Research Assistant,44064,72319.0,0.0,0.0,72319.0,14905.16,12424.5,5746.69,33076.35,105395.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,6257,62468.84,2236.71,1312.38,66017.93,12996.94,12424.5,5386.46,30807.9,96825.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,25748,23765.89,0.0,819.6,24585.49,5878.22,5867.29,2038.62,13784.13,38369.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,45166,80485.33,0.0,0.0,80485.33,16577.07,12327.32,6382.08,35286.47,115771.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,19347,104082.33,0.0,0.0,104082.33,21434.63,12424.5,8572.43,42431.56,146513.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9669,147389.3,655.25,38476.2,186520.75,32625.03,12281.15,6722.23,51628.41,238149.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43013,119465.02,1795.26,4688.95,125949.23,23629.31,12424.5,2089.15,38142.96,164092.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",31770,131577.1,14279.24,18070.25,163926.59,29270.89,15196.12,2740.36,47207.37,211133.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11455,112170.35,12174.16,19330.19,143674.7,24942.06,15052.75,2380.3,42375.11,186049.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13128,30727.63,4466.9,1168.1,36362.63,8093.87,9576.64,2776.65,20447.16,56809.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,13827,6737.0,0.0,5040.96,11777.96,1478.1,477.88,907.22,2863.2,14641.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,8670,19536.0,4441.4,679.73,24657.13,4472.77,3822.92,2017.79,10313.48,34970.61 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,27492,150799.97,0.0,0.0,150799.97,30298.73,12424.5,17619.88,60343.11,211143.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,52367,57783.63,0.0,247.3,58030.93,12063.55,6116.69,4727.79,22908.03,80938.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,34637,106953.0,2962.3,0.0,109915.3,9481.34,12424.51,8561.02,30466.87,140382.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,21320,63886.68,10646.16,5244.22,79777.06,13622.02,12424.46,6542.71,32589.19,112366.25 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,45262,11364.0,0.0,0.0,11364.0,2114.84,1911.46,900.15,4926.45,16290.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,51765,97934.0,8096.38,1959.32,107989.7,20275.82,12424.5,8913.01,41613.33,149603.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49855,13408.02,0.0,123.11,13531.13,0.0,5147.52,1049.02,6196.54,19727.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1936,Senior Storekeeper,12004,63102.0,0.0,0.0,63102.0,13005.54,12424.5,5133.49,30563.53,93665.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,17764,100554.03,0.0,20544.62,121098.65,20724.83,12424.51,9732.15,42881.49,163980.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,18147,65355.62,7388.2,0.0,72743.82,13271.85,10572.78,5703.57,29548.2,102292.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,24974,45479.31,0.0,0.0,45479.31,10902.06,12309.04,3632.17,26843.27,72322.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,49579,62660.43,0.0,419.77,63080.2,13257.64,9685.32,5278.93,28221.89,91302.09 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,51536,25154.01,0.0,312.0,25466.01,6115.49,6212.25,2108.13,14435.87,39901.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37627,946.2,0.0,31.54,977.74,0.0,0.0,66.56,66.56,1044.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16584,56531.0,0.0,2614.35,59145.35,11780.12,12424.5,4849.86,29054.48,88199.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39900,9028.37,0.0,379.9,9408.27,0.0,3004.58,728.71,3733.29,13141.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,52831,114878.5,25421.46,6272.72,146572.68,22547.05,12603.7,2404.63,37555.38,184128.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,73,29456.0,1118.92,2874.56,33449.48,5872.42,6451.18,2606.92,14930.52,48380.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,24,96254.06,0.0,1180.0,97434.06,20102.9,12424.52,7929.38,40456.8,137890.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,25309,107416.0,15277.92,6964.3,129658.22,22436.61,12424.5,9935.49,44796.6,174454.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,821,32642.18,4189.32,346.48,37177.98,8481.04,10187.74,2792.89,21461.67,58639.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15304,917.85,0.0,152.98,1070.83,1146.5,71.8,0.0,1218.3,2289.13 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,41086,68424.0,0.0,0.0,68424.0,13877.51,10513.04,5293.25,29683.8,98107.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,47178,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19444,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1850.29,10264.06,34268.06 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,29212,2946.01,0.0,0.0,2946.01,660.79,477.86,232.74,1371.39,4317.4 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,24509,71479.75,0.0,0.0,71479.75,14856.3,11289.57,5721.93,31867.8,103347.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,16702,98157.0,0.0,5917.54,104074.54,20227.0,12424.5,8537.75,41189.25,145263.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,17108,104811.03,0.0,0.0,104811.03,21601.92,12424.5,8648.9,42675.32,147486.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,11635,140141.42,17025.52,14479.86,171646.8,27705.17,12424.5,2915.61,43045.28,214692.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28773,111303.91,15796.21,18423.57,145523.69,24679.18,14938.3,2406.8,42024.28,187547.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,26344,62792.15,654.24,3193.03,66639.42,13559.41,12421.52,5380.87,31361.8,98001.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,20424,41548.5,360.0,4618.08,46526.58,10190.96,10943.11,3748.05,24882.12,71408.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,48519,4310.0,0.0,0.0,4310.0,1111.98,955.72,332.58,2400.28,6710.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5048,67108.69,26191.88,5714.67,99015.24,19888.39,13218.78,7492.22,40599.39,139614.63 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",25819,198139.05,0.0,5525.28,203664.33,40987.8,12424.5,11239.33,64651.63,268315.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,16612,20550.52,201.04,4171.02,24922.58,5405.27,5495.46,1904.76,12805.49,37728.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15983,38737.53,3795.07,8022.93,50555.53,8673.68,5973.32,1015.88,15662.88,66218.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43396,6524.54,0.0,764.51,7289.05,1322.61,2829.26,586.03,4737.9,12026.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,10408,107946.3,0.0,167.32,108113.62,22244.83,12424.51,8698.65,43367.99,151481.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,41697,75927.13,0.0,0.0,75927.13,15648.75,12422.35,6297.9,34369.0,110296.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,24195,61676.01,0.0,1583.4,63259.41,13041.55,12412.56,5190.95,30645.06,93904.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48174,69039.28,18868.51,8870.29,96778.08,21364.69,13603.75,7322.24,42290.68,139068.76 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,15606,177921.6,0.0,32715.13,210636.73,39335.73,12424.5,11229.23,62989.46,273626.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,34106,135421.0,0.0,0.0,135421.0,27253.5,12424.5,10124.88,49802.88,185223.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,2246,153253.89,0.0,0.0,153253.89,30743.95,12424.5,25295.06,68463.51,221717.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",24092,50.0,0.0,0.0,50.0,0.0,11.94,3.87,15.81,65.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18152,129326.39,0.0,17451.14,146777.53,27463.01,11443.87,8848.74,47755.62,194533.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,44004,66102.0,0.0,75.6,66177.6,13638.12,12424.5,5458.82,31521.44,97699.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6252,Line Inspector,11105,86220.04,202.08,6028.93,92451.05,17881.86,9557.31,7213.77,34652.94,127103.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,3638,18263.91,0.0,321.67,18585.58,4386.25,5465.59,1466.39,11318.23,29903.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38375,38305.85,0.0,13632.01,51937.86,8753.16,3211.97,4163.36,16128.49,68066.35 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,625,396.0,18.56,0.0,414.56,0.0,95.58,32.18,127.76,542.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50681,56531.0,3025.84,1317.3,60874.14,11651.3,12424.5,4779.91,28855.71,89729.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7702,119999.02,1385.5,19997.96,141382.48,26359.5,10958.53,10140.68,47458.71,188841.19 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,52981,11077.31,0.0,642.95,11720.26,0.0,2502.83,908.92,3411.75,15132.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,51839,6144.0,0.0,28.67,6172.67,1357.38,1433.6,447.86,3238.84,9411.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,15312,133087.05,0.0,0.0,133087.05,26783.95,12424.5,10009.35,49217.8,182304.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14121,74525.94,9844.27,7174.8,91545.01,13604.99,6690.11,1537.25,21832.35,113377.36 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",26504,19985.01,0.0,3000.0,22985.01,0.0,3345.06,1824.35,5169.41,28154.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21393,11480.76,0.0,506.05,11986.81,208.23,0.0,402.15,610.38,12597.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5593,123252.04,1743.51,36042.26,161037.81,28974.16,10913.25,7184.2,47071.61,208109.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,3837,85014.6,4627.19,8650.91,98292.7,18568.99,12424.5,8027.7,39021.19,137313.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,41932,5111.13,0.0,139.84,5250.97,0.0,1957.76,407.15,2364.91,7615.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42029,49083.11,855.44,0.0,49938.55,9998.83,10990.9,3971.71,24961.44,74899.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,40945,200107.13,6079.9,5712.54,211899.57,39478.37,12424.51,3568.0,55470.88,267370.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31178,93543.65,10486.24,6130.13,110160.02,24251.89,11884.69,1558.23,37694.81,147854.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47992,267.15,0.0,35.62,302.77,299.92,0.0,495.34,795.26,1098.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18046,24621.26,16.67,539.0,25176.93,7424.56,4896.39,1858.61,14179.56,39356.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,33067,59342.21,1068.76,621.6,61032.57,12356.7,12424.5,5009.69,29790.89,90823.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,998,13831.04,0.0,0.0,13831.04,0.0,2096.63,1073.51,3170.14,17001.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,51311,117372.67,28.31,1090.99,118491.97,23224.07,12418.53,1970.84,37613.44,156105.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,793,119467.36,18345.58,8976.55,146789.49,23621.0,12424.5,1659.95,37705.45,184494.94 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21574,5130.0,0.0,4643.16,9773.16,1207.8,477.86,761.41,2447.07,12220.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28369,5928.98,642.69,63.32,6634.99,1614.64,1871.56,503.86,3990.06,10625.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,291,66381.44,8445.26,919.53,75746.23,18420.68,13080.25,5868.26,37369.19,113115.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,31611,137307.15,4.15,6504.72,143816.02,27113.8,12305.04,2314.45,41733.29,185549.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",6100,Health & Sanitation Inspection,6139,Senior Industrial Hygienist,16667,130910.02,0.0,0.0,130910.02,26346.51,12424.5,9876.7,48647.71,179557.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,22654,69876.0,0.0,45308.12,115184.12,15680.12,6451.18,9086.87,31218.17,146402.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3260,Crafts Instructor,32105,22769.07,0.0,1183.96,23953.03,0.0,0.0,1894.78,1894.78,25847.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51767,2548.37,0.0,0.0,2548.37,0.0,1105.06,197.29,1302.35,3850.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2270,56531.0,0.0,555.17,57086.17,11787.24,12424.5,4682.34,28894.08,85980.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4292,53724.88,10129.97,678.85,64533.7,14637.47,10569.61,4966.11,30173.19,94706.89 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,4529,179449.73,0.0,0.0,179449.73,36241.51,9492.74,10796.18,56530.43,235980.16 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,32439,14871.8,0.0,0.0,14871.8,3335.76,2532.69,1207.59,7076.04,21947.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,21459,47811.85,1402.85,614.74,49829.44,11658.74,11777.05,4055.09,27490.88,77320.32 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4334,"Investigator, Tax Collector",29863,47210.23,0.0,16824.75,64034.98,10662.98,6546.76,5219.48,22429.22,86464.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,27028,91948.17,198.0,0.0,92146.17,18953.74,12384.96,7427.0,38765.7,130911.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,36955,31837.96,2162.36,466.78,34467.1,6014.84,4724.89,2665.05,13404.78,47871.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16858,0.0,0.0,840.41,840.41,0.0,68.5,64.3,132.8,973.21 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,556.0,Elected Officials,8100,Legal & Court,8197,City Attorney,17534,237630.9,0.0,0.0,237630.9,47793.01,12424.5,28723.34,88940.85,326571.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45508,8882.41,0.0,874.16,9756.57,2064.19,3851.71,784.42,6700.32,16456.89 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,9601,110915.43,0.0,0.0,110915.43,22341.93,12312.5,8910.66,43565.09,154480.52 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,44655,3214.0,0.0,32.14,3246.14,222.21,0.0,2370.81,2593.02,5839.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",26505,29398.8,541.2,0.0,29940.0,5705.41,3870.71,2411.99,11988.11,41928.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,13650,62468.82,26648.51,1476.44,90593.77,12878.58,12424.52,7234.5,32537.6,123131.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,33346,131963.0,0.0,0.0,131963.0,26497.67,12424.55,10000.41,48922.63,180885.63 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0902,Mayoral Staff XIV,37343,128050.01,0.0,0.0,128050.01,25770.47,12424.5,18255.51,56450.48,184500.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38453,117926.0,569.73,26640.51,145136.24,21503.06,11067.96,9759.78,42330.8,187467.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29167,119461.63,40691.57,12282.07,172435.27,24111.54,12424.5,2892.2,39428.24,211863.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,37055,84644.05,5611.84,4564.0,94819.89,17982.68,12424.5,7735.15,38142.33,132962.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,42898,130845.86,101511.18,8135.33,240492.37,27311.37,15196.12,4049.25,46556.74,287049.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25010,112159.76,31139.63,21278.14,164577.53,24894.54,15052.76,2795.64,42742.94,207320.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,15734,70600.78,0.0,0.0,70600.78,14541.39,12424.04,5640.86,32606.29,103207.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,14033,97424.0,8571.83,2423.0,108418.83,20575.34,12424.5,8528.68,41528.52,149947.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49693,4178.78,0.0,138.12,4316.9,1964.45,356.9,259.5,2580.85,6897.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,50709,71186.35,5834.42,7780.28,84801.05,15813.53,11644.74,6747.8,34206.07,119007.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,27689,46149.63,0.0,561.87,46711.5,10124.54,6789.81,3964.38,20878.73,67590.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",22493,98501.37,6568.83,280.4,105350.6,20263.44,12424.52,8278.23,40966.19,146316.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,49814,75550.33,0.0,240.0,75790.33,15597.39,12424.5,5963.78,33985.67,109776.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32630,117407.98,0.0,6675.25,124083.23,24249.61,10280.86,9331.28,43861.75,167944.98 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,26401,71997.0,0.0,1020.0,73017.0,15048.6,12424.5,6052.36,33525.46,106542.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,8960,45374.28,0.0,4184.13,49558.41,5868.05,6331.71,4022.67,16222.43,65780.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,7096,55001.03,0.0,1488.42,56489.45,11652.9,12086.18,4639.66,28378.74,84868.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,31935,15559.2,0.0,13106.58,28665.78,3656.64,3440.63,2298.5,9395.77,38061.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,44267,81386.27,4699.19,9133.64,95219.1,18668.21,12340.85,7809.96,38819.02,134038.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3561,108687.52,12584.62,18315.45,139587.59,25189.42,15052.75,2233.31,42475.48,182063.07 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,38696,0.0,0.0,272.01,272.01,0.0,0.0,3.95,3.95,275.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,48278,20589.4,0.0,138.25,20727.65,831.96,6227.18,1596.06,8655.2,29382.85 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,7950,87531.03,0.0,624.0,88155.03,18169.32,12424.5,7308.75,37902.57,126057.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,38953,80357.0,3294.11,0.0,83651.11,16562.14,12424.5,6884.59,35871.23,119522.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31610,41663.95,4246.49,3511.43,49421.87,0.0,3610.87,3835.92,7446.79,56868.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,34012,6852.71,0.0,65.39,6918.1,0.0,2278.82,536.7,2815.52,9733.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,6238,117113.51,0.0,3168.12,120281.63,24140.91,12381.98,9779.31,46302.2,166583.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9142,17616.3,2558.22,800.5,20975.02,4413.25,5441.27,1592.4,11446.92,32421.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,30350,17964.37,0.0,0.0,17964.37,0.0,5871.77,1435.68,7307.45,25271.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,37401,135421.0,0.0,0.0,135421.0,27253.5,12424.5,10128.14,49806.14,185227.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,40779,19035.0,0.0,0.0,19035.0,3841.33,4300.79,1546.4,9688.52,28723.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,37558,86153.44,365.51,2290.0,88808.95,17933.05,12424.5,6934.48,37292.03,126100.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,6005,83148.0,1330.79,0.0,84478.79,17137.11,12424.52,6677.36,36238.99,120717.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,51399,132130.29,0.0,0.0,132130.29,26569.33,12424.5,10045.45,49039.28,181169.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,31827,51265.73,6470.9,770.0,58506.63,11784.05,11690.5,4730.72,28205.27,86711.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,25435,52733.0,0.0,0.0,52733.0,10517.95,9079.44,4251.57,23848.96,76581.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1567,4545.02,133.35,334.27,5012.64,0.0,1221.54,388.08,1609.62,6622.26 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,48435,28690.17,191.03,842.53,29723.73,6165.84,6391.63,2406.8,14964.27,44688.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,52256,77147.06,2138.2,2244.0,81529.26,16357.99,12424.5,6452.56,35235.05,116764.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31540,113233.61,1761.1,17357.77,132352.48,24789.65,15196.12,2208.0,42193.77,174546.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20078,4692.93,1064.42,342.32,6099.67,1328.1,1481.39,437.27,3246.76,9346.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,50414,137101.05,0.0,0.0,137101.05,27592.09,12424.5,25043.14,65059.73,202160.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33008,4538.86,0.0,0.0,4538.86,0.0,1968.21,374.1,2342.31,6881.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",46702,460.0,0.0,0.0,460.0,0.0,27.48,35.62,63.1,523.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",9155,130329.3,44103.82,7819.77,182252.89,27177.54,15052.76,3009.7,45240.0,227492.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,872,42045.8,175.6,2906.29,45127.69,10297.02,11062.58,3595.37,24954.97,70082.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",13997,106815.97,15682.49,11192.93,133691.39,23802.98,12424.52,9960.36,46187.86,179879.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,12636,50443.0,0.0,0.0,50443.0,10655.43,9079.43,4412.54,24147.4,74590.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,22148,173284.0,0.0,0.0,173284.0,34873.98,12424.5,10775.83,58074.31,231358.31 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7418,Senior Book Repairer,31450,76338.09,0.0,216.0,76554.09,15773.86,12424.5,6320.69,34519.05,111073.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",15360,22936.67,0.0,0.0,22936.67,0.0,5399.88,1780.25,7180.13,30116.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",3542,94788.71,18308.37,165876.19,278973.27,24507.9,7693.64,4319.5,36521.04,315494.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13903,33525.07,4371.06,3622.99,41519.12,7583.31,4300.79,691.4,12575.5,54094.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,32870,2574.17,0.0,17.37,2591.54,0.0,1203.61,201.15,1404.76,3996.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,760,67036.66,23238.65,2135.18,92410.49,18913.71,13207.91,6968.65,39090.27,131500.76 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,19665,104229.32,0.0,4590.0,108819.32,14011.85,6310.04,5914.7,26236.59,135055.91 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,15596,127338.76,0.0,0.0,127338.76,25919.18,12424.5,9954.23,48297.91,175636.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,40552,97934.01,3341.84,1996.13,103271.98,20462.32,12424.5,8253.85,41140.67,144412.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,1933,84644.0,6621.63,13248.17,104513.8,19510.98,12424.5,8432.82,40368.3,144882.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,3459,2376.0,0.0,36.43,2412.43,0.0,716.79,186.77,903.56,3315.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21771,78959.69,0.0,8832.55,87792.24,16593.52,7210.99,7299.73,31104.24,118896.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32561,47531.2,2950.4,2990.2,53471.8,11394.53,12424.5,4189.18,28008.21,81480.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,10329,1596.5,0.0,3.19,1599.69,358.82,238.93,138.09,735.84,2335.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2650,Assistant Cook,25332,49970.11,440.31,1464.67,51875.09,12175.12,11779.39,4052.42,28006.93,79882.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,3201,27629.58,276.75,418.25,28324.58,6745.86,9027.18,2287.46,18060.5,46385.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,34095,126916.0,0.0,0.0,126916.0,24719.74,9079.44,7231.83,41031.01,167947.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31141,149049.72,0.0,41139.94,190189.66,34029.41,12420.5,4380.89,50830.8,241020.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38679,118448.57,117.23,21860.28,140426.08,17529.46,11147.4,9606.88,38283.74,178709.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,35519,33296.58,0.0,2363.61,35660.19,8063.59,8302.02,2954.61,19320.22,54980.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26985,48099.34,13036.79,3016.61,64152.74,14498.91,9072.63,4181.12,27752.66,91905.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1246,46168.66,0.0,0.0,46168.66,0.0,5686.6,3579.77,9266.37,55435.03 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,38530,67003.9,28372.87,1385.0,96761.77,14064.8,12376.71,7828.13,34269.64,131031.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50030,6402.25,1639.12,44.22,8085.59,1821.08,2020.96,625.08,4467.12,12552.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30289,59511.9,0.0,2663.06,62174.96,11644.63,6283.93,4979.89,22908.45,85083.41 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,12032,88296.03,0.0,4698.0,92994.03,18209.19,12424.5,7719.02,38352.71,131346.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,45260,10713.5,0.0,0.0,10713.5,2764.1,2867.19,864.97,6496.26,17209.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,36888,74165.09,0.0,0.0,74165.09,15285.8,12424.5,6095.42,33805.72,107970.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",20433,10837.8,0.0,0.0,10837.8,0.0,2580.46,840.6,3421.06,14258.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,23172,26586.0,0.0,0.0,26586.0,6837.46,6690.11,2210.93,15738.5,42324.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,33585,121958.01,0.0,0.0,121958.01,24473.92,12424.5,17108.84,54007.26,175965.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,43183,56938.01,5642.96,51.0,62631.97,12736.04,6690.11,4923.35,24349.5,86981.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",843,63214.22,3385.57,110.03,66709.82,13005.49,12376.71,4724.71,30106.91,96816.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36910,7910.04,1648.49,294.03,9852.56,2244.47,2496.91,728.45,5469.83,15322.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23449,55612.97,8794.61,4622.13,69029.71,11866.36,5922.54,1162.9,18951.8,87981.51 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,49698,77463.29,1813.45,0.0,79276.74,17676.61,12424.5,1275.62,31376.73,110653.47 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,38917,59646.46,0.0,0.0,59646.46,12072.22,9835.07,4651.73,26559.02,86205.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29283,67129.04,8451.41,2200.75,77781.2,19017.98,13226.24,5852.67,38096.89,115878.09 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,1341,105801.2,0.0,0.0,105801.2,21485.63,10748.99,8522.45,40757.07,146558.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32432,2089.09,0.0,124.15,2213.24,0.0,522.66,171.35,694.01,2907.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,14547,5579.38,0.0,0.0,5579.38,681.53,1349.97,431.95,2463.45,8042.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50399,67064.33,174.97,1185.3,68424.6,18664.34,13213.04,5071.62,36949.0,105373.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,38316,98489.3,4387.6,974.0,103850.9,20544.26,12081.04,8348.14,40973.44,144824.34 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,30632,75605.02,0.0,624.0,76229.02,15711.25,12424.5,6273.07,34408.82,110637.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,36145,5496.53,0.0,41.67,5538.2,0.0,1827.84,308.28,2136.12,7674.32 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,6552,3718.13,0.0,0.0,3718.13,0.0,887.04,288.28,1175.32,4893.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3035,102904.48,6343.54,12817.89,122065.91,21122.66,9079.44,2035.86,32237.96,154303.87 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,40141,211551.0,0.0,18457.4,230008.4,44074.25,12424.5,3644.99,60143.74,290152.14 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,34790,123808.0,0.0,5336.0,129144.0,24461.52,12424.5,10033.2,46919.22,176063.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,43131,147149.01,0.0,0.0,147149.01,29613.71,12424.5,27767.14,69805.35,216954.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,36465,71407.12,2131.61,0.0,73538.73,14684.02,12424.5,5722.14,32830.66,106369.39 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,49726,125386.73,0.0,0.0,125386.73,25468.3,11119.87,17109.17,53697.34,179084.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,36154,76617.01,0.0,282.72,76899.73,15835.49,12424.5,6374.72,34634.71,111534.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,44513,83148.08,0.0,0.0,83148.08,17132.56,12424.51,6777.8,36334.87,119482.95 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,29732,176047.7,0.0,0.0,176047.7,35350.03,12424.5,18001.79,65776.32,241824.02 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,41907,73186.5,0.0,915.53,74102.03,15079.7,12082.17,5877.27,33039.14,107141.17 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,29618,74214.0,0.0,0.0,74214.0,15423.09,11468.77,5696.23,32588.09,106802.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,13548,79722.0,12023.94,1354.5,93100.44,16712.55,12424.5,7446.69,36583.74,129684.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2065,116302.67,504.6,10351.26,127158.53,24483.73,10840.79,9600.14,44924.66,172083.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6677,51015.0,7188.18,2886.9,61090.08,10996.47,9079.44,4850.05,24925.96,86016.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,5018,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5006.55,30283.67,92642.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4688,847.38,0.0,177.38,1024.76,192.18,187.38,80.54,460.1,1484.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35720,11818.01,0.0,0.0,11818.01,2598.77,2867.19,949.7,6415.66,18233.67 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,15432,80391.36,0.0,0.0,80391.36,5642.94,10265.14,6406.25,22314.33,102705.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,21096,60664.25,6895.32,40.0,67599.57,13575.86,12406.59,5419.92,31402.37,99001.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,22746,81157.0,3812.58,22298.71,107268.29,20349.65,12424.5,8722.23,41496.38,148764.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,50580,114059.9,8003.95,16244.6,138308.45,31655.27,11898.85,2308.98,45863.1,184171.55 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,50873,69647.61,0.0,0.0,69647.61,15626.27,8737.77,1173.79,25537.83,95185.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52658,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,14441,95364.16,0.0,0.0,95364.16,19617.11,12285.63,15666.31,47569.05,142933.21 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,39137,55090.65,10376.72,2128.19,67595.56,11446.26,10847.08,5558.21,27851.55,95447.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18621,64045.44,22163.61,555.07,86764.12,17654.0,12619.11,6739.97,37013.08,123777.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4533,125587.8,100.58,11231.63,136920.01,26972.53,11119.63,10209.93,48302.09,185222.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,36171,84599.05,0.0,1490.61,86089.66,17752.4,12424.5,6903.56,37080.46,123170.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,37924,5619.27,0.0,193.53,5812.8,0.0,828.79,450.39,1279.18,7091.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",4972,16457.4,0.0,0.0,16457.4,0.0,3918.5,1275.59,5194.09,21651.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,20757,120186.67,67490.22,8578.84,196255.73,24265.31,12424.5,3494.63,40184.44,236440.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,39369,1584.5,0.0,0.0,1584.5,355.41,238.93,122.69,717.03,2301.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,32613,32432.4,0.0,3841.59,36273.99,8414.62,8697.15,2940.54,20052.31,56326.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,23307,10722.57,0.0,384.76,11107.33,2468.06,2057.83,937.74,5463.63,16570.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,51312,75347.01,1575.0,0.0,76922.01,15500.76,12424.5,6126.46,34051.72,110973.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43709,67908.31,4420.32,1877.94,74206.57,15898.4,13382.09,5452.52,34733.01,108939.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,48809,25945.78,0.0,0.0,25945.78,4828.52,3787.09,2070.9,10686.51,36632.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23408,80953.77,2696.6,5235.03,88885.4,16570.71,12424.5,3350.21,32345.42,121230.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,50385,88296.05,0.0,3340.8,91636.85,18274.28,12424.5,7444.64,38143.42,129780.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,14703,66102.04,473.81,750.0,67325.85,13778.18,12424.5,5537.77,31740.45,99066.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,49370,83148.02,0.0,0.0,83148.02,17137.11,12424.5,6777.8,36339.41,119487.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,13078,19434.04,0.0,0.0,19434.04,4263.84,1911.46,3356.05,9531.35,28965.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13048,20876.03,3099.76,285.17,24260.96,5122.89,6467.61,1835.55,13426.05,37687.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14375,119450.12,5595.95,14582.99,139629.06,23683.73,12424.5,2376.74,38484.97,178114.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44578,112690.86,1160.0,16050.04,129900.9,22311.19,12424.5,2166.03,36901.72,166802.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47311,64648.24,2368.13,1478.63,68495.0,15036.62,12735.89,5170.85,32943.36,101438.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,42781,87359.0,7596.4,600.0,95555.4,18116.64,12424.48,8230.21,38771.33,134326.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39756,115128.56,0.0,12129.08,127257.64,23045.74,12125.18,9555.23,44726.15,171983.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11962,140839.06,858.33,32413.21,174110.6,32676.1,11735.0,7422.83,51833.93,225944.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42916,1720.7,0.0,0.0,1720.7,0.0,931.84,133.22,1065.06,2785.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,39758,33455.41,0.0,11131.42,44586.83,7577.76,6546.76,3637.81,17762.33,62349.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,36861,145200.04,0.0,0.0,145200.04,29221.73,12424.53,10267.52,51913.78,197113.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,30957,44840.0,3327.98,1369.54,49537.52,9690.3,4778.66,839.05,15308.01,64845.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,11103,119220.8,0.0,0.0,119220.8,24458.02,12424.5,9739.48,46622.0,165842.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",24776,109101.6,8105.3,8392.77,125599.67,22872.65,12424.5,9787.64,45084.79,170684.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,23366,6170.22,0.0,148.57,6318.79,1398.06,1249.38,535.74,3183.18,9501.97 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,20272,8370.11,164.63,0.0,8534.74,0.0,2305.7,662.43,2968.13,11502.87 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,19066,88296.01,0.0,5322.0,93618.01,18337.86,12424.5,7613.04,38375.4,131993.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,47982,10625.21,0.0,46.34,10671.55,2645.58,3129.73,899.25,6674.56,17346.11 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,8237,87366.4,0.0,3624.0,90990.4,18029.98,8936.08,7341.43,34307.49,125297.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,4606,56120.05,0.0,1764.0,57884.05,12948.95,12424.5,4797.89,30171.34,88055.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,43207,129964.91,0.0,24825.96,154790.87,26489.0,12424.5,10312.17,49225.67,204016.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28859,46010.57,729.64,2440.23,49180.44,11045.16,12168.97,3926.32,27140.45,76320.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23721,914.5,0.0,12.4,926.9,0.0,352.43,71.76,424.19,1351.09 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,52929,74412.1,0.0,3000.0,77412.1,15345.94,12424.5,6433.2,34203.64,111615.74 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8183,Assistant Chief Attorney 2,40025,198817.55,0.0,1562.5,200380.05,40718.32,11301.53,11172.73,63192.58,263572.63 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,13867,24980.04,44.44,0.0,25024.48,5984.11,7509.96,2087.51,15581.58,40606.06 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,730,115823.01,0.0,0.0,115823.01,22812.86,10035.18,8093.39,40941.43,156764.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6673,67665.27,10256.14,2817.97,80739.38,19321.4,13333.64,6046.01,38701.05,119440.43 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,50323,61735.01,0.0,624.0,62359.01,12852.62,12424.5,4917.42,30194.54,92553.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,32202,88829.05,2462.58,4004.56,95296.19,18153.8,9437.84,1584.54,29176.18,124472.37 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,23838,96332.04,3957.73,0.0,100289.77,19854.28,12424.5,8104.86,40383.64,140673.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7270,124599.97,9725.23,5452.03,139777.23,24636.03,12424.5,2287.29,39347.82,179125.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,38195,55425.84,0.0,0.0,55425.84,10048.72,5256.52,7560.24,22865.48,78291.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,44249,130845.86,52467.11,16355.7,199668.67,28930.04,15196.12,3350.58,47476.74,247145.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,14105,34735.01,0.0,0.0,34735.01,8143.68,9557.31,2820.87,20521.86,55256.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43971,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2414.98,12868.33,44168.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,30882,77071.02,0.0,1260.0,78331.02,16139.08,12424.5,6199.78,34763.36,113094.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,28052,132610.46,0.0,0.0,132610.46,26611.36,12424.5,24991.34,64027.2,196637.66 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,33301,62257.08,7489.8,4577.51,74324.39,12476.71,7311.34,6109.64,25897.69,100222.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,42837,106116.0,0.0,0.0,106116.0,21876.66,12424.5,8548.74,42849.9,148965.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9843,65143.28,20870.39,2192.75,88206.42,18405.11,12832.84,6680.06,37918.01,126124.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,34153,22531.0,0.0,0.0,22531.0,4193.03,4300.79,1826.44,10320.26,32851.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22728,3362.63,0.0,0.0,3362.63,0.0,1639.68,260.76,1900.44,5263.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7583,4573.0,1958.09,88926.55,95457.64,1047.02,477.86,17.29,1542.17,96999.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,48072,67741.8,0.0,0.0,67741.8,13956.06,12364.77,5219.79,31540.62,99282.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,46230,140672.43,53705.46,12084.99,206462.88,27765.73,12424.5,3465.91,43656.14,250119.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,4670,32061.01,0.0,181.12,32242.13,6290.03,6690.12,2666.86,15647.01,47889.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,34671,59802.09,0.0,0.0,59802.09,12314.85,12188.55,4637.56,29140.96,88943.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33951,21746.23,418.56,319.82,22484.61,6059.77,0.0,1755.75,7815.52,30300.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,16392,84288.77,50779.4,6369.09,141437.26,18496.64,9855.91,10076.5,38429.05,179866.31 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,30052,9980.17,0.0,798.43,10778.6,0.0,2254.93,835.11,3090.04,13868.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52438,64578.94,4527.46,2210.95,71317.35,18229.84,12719.95,5301.57,36251.36,107568.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,26841,72137.42,0.0,0.0,72137.42,14857.19,12424.5,5868.48,33150.17,105287.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,22934,71612.03,0.0,1060.0,72672.03,14976.5,12424.5,6019.06,33420.06,106092.09 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,45814,89920.3,0.0,0.0,89920.3,18495.16,12068.97,7247.64,37811.77,127732.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,12855,84644.01,4999.19,11649.98,101293.18,19169.59,12424.5,8045.87,39639.96,140933.14 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,811,29070.92,0.0,18377.89,47448.81,6626.74,3870.71,3726.56,14224.01,61672.82 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8135,Asst Chf Victim/Wit Invstgtor,53145,53567.03,0.0,6557.07,60124.1,12015.07,6546.75,4959.09,23520.91,83645.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37306,1358.49,0.0,36.27,1394.76,0.0,570.45,115.97,686.42,2081.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,6062,11364.0,0.0,0.0,11364.0,2114.84,1911.46,887.22,4913.52,16277.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,28860,1053.03,0.0,61.83,1114.86,0.0,0.0,500.38,500.38,1615.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,44940,3258.63,0.0,7.6,3266.23,0.0,1252.92,253.51,1506.43,4772.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22982,10804.71,0.0,61.71,10866.42,2682.41,4832.05,877.84,8392.3,19258.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7235,Transit Power Line Sprv1,44555,43526.4,35673.59,8160.07,87360.06,8786.95,4706.98,2871.82,16365.75,103725.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,47412,87713.03,0.0,13442.36,101155.39,18085.68,12424.5,8264.59,38774.77,139930.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35201,67425.5,2625.88,5386.97,75438.35,19930.79,13284.48,5844.13,39059.4,114497.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,3065,191042.3,0.0,0.0,191042.3,38555.27,12424.51,18310.54,69290.32,260332.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,5774,55604.85,0.0,1112.4,56717.25,11819.3,6301.85,4739.77,22860.92,79578.17 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0889,Mayoral Staff IX,37635,72699.01,0.0,0.0,72699.01,14983.61,12424.5,13718.71,41126.82,113825.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,4361,47824.94,1259.7,0.0,49084.64,11503.62,11946.64,3879.77,27330.03,76414.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,32231,60018.0,540.27,9602.7,70160.97,13878.18,9079.44,5615.59,28573.21,98734.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6557,67028.22,2791.36,1999.38,71818.96,18928.33,13209.93,5267.44,37405.7,109224.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34847,57008.07,0.0,0.0,57008.07,0.0,4802.55,4424.73,9227.28,66235.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,11267,52744.91,0.0,0.0,52744.91,11747.08,11707.71,4264.04,27718.83,80463.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42020,113943.36,14976.71,9091.15,138011.22,23915.84,14097.03,1625.89,39638.76,177649.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10302,56531.0,1642.76,670.6,58844.36,11662.16,12424.5,4619.12,28705.78,87550.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,7266,20070.01,0.0,0.0,20070.01,4501.71,4300.79,1646.82,10449.32,30519.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,43041,50274.41,2468.76,8228.58,60971.75,11787.9,5543.24,4881.77,22212.91,83184.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,32042,75605.0,37477.58,11498.32,124580.9,17022.04,12424.5,9712.79,39159.33,163740.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",37605,99098.0,26258.42,2221.21,127577.63,20882.24,12424.5,9857.78,43164.52,170742.15 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,27223,26400.43,0.0,240.0,26640.43,4957.8,2780.4,2036.1,9774.3,36414.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31666,551.0,0.0,838.21,1389.21,142.16,238.93,106.78,487.87,1877.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,38824,13474.0,0.0,0.0,13474.0,2956.2,955.72,1069.07,4980.99,18454.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,5811,117140.96,21146.92,10646.11,148933.99,23164.17,12424.5,2534.82,38123.49,187057.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,4449,35800.03,8642.47,2929.39,47371.89,7547.65,7645.9,3775.1,18968.65,66340.54 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,19523,64951.01,0.0,0.0,64951.01,14077.02,8123.71,5190.8,27391.53,92342.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",50411,110745.03,8171.47,66568.2,185484.7,25479.66,12615.64,2964.76,41060.06,226544.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,14893,67346.43,0.0,0.0,67346.43,14122.55,9253.57,5454.61,28830.73,96177.16 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0903,Mayoral Staff XV,13236,5601.61,0.0,5801.17,11402.78,1228.99,477.86,1204.25,2911.1,14313.88 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,43173,80793.03,0.0,0.0,80793.03,16790.36,11468.77,6419.17,34678.3,115471.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41906,119723.25,520.1,8946.92,129190.27,25077.09,10931.17,9942.89,45951.15,175141.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42788,1760.06,0.0,318.49,2078.55,388.4,0.0,682.49,1070.89,3149.44 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,50427,62056.8,0.0,0.0,62056.8,11373.97,6212.25,8543.6,26129.82,88186.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,13675,7668.21,0.0,0.0,7668.21,0.0,2269.86,595.18,2865.04,10533.25 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,20645,77071.04,0.0,7445.34,84516.38,16678.19,12424.5,6557.75,35660.44,120176.82 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,32983,14413.0,0.0,0.0,14413.0,3232.85,2389.32,1175.31,6797.48,21210.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,25189,124124.52,0.0,15218.85,139343.37,25794.64,7796.38,10051.42,43642.44,182985.81 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0903,Mayoral Staff XV,1401,125408.99,0.0,0.0,125408.99,25238.77,12424.5,27224.52,64887.79,190296.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,49442,18951.0,378.15,0.0,19329.15,3526.76,4300.79,1569.85,9397.4,28726.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,30193,72794.91,23126.9,3203.09,99124.9,15181.42,12111.92,8105.71,35399.05,134523.95 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,42123,13581.69,0.0,44439.84,58021.53,3047.74,746.66,4507.47,8301.87,66323.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,26686,39831.01,3992.02,1017.91,44840.94,8519.26,9079.44,3315.72,20914.42,65755.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,26712,133636.46,0.0,0.0,133636.46,26801.36,12406.58,17323.52,56531.46,190167.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,51687,67911.04,3698.17,1167.99,72777.2,14191.83,12424.5,5997.8,32614.13,105391.33 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,23458,8692.46,0.0,12575.28,21267.74,1417.1,0.0,3401.03,4818.13,26085.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,44083,12812.0,1561.46,1803.07,16176.53,2406.94,1911.46,1251.88,5570.28,21746.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8932,33311.25,611.9,5551.92,39475.07,0.0,2580.65,3055.91,5636.56,45111.63 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,47770,13646.38,0.0,10.12,13656.5,0.0,2263.88,1096.03,3359.91,17016.41 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),52122,147936.05,0.0,1562.5,149498.55,30018.97,12424.5,10265.3,52708.77,202207.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40475,120238.93,5403.51,47354.39,172996.83,23832.97,10981.35,9930.72,44745.04,217741.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,6943,76728.02,2791.28,340.0,79859.3,15890.28,12424.5,6206.53,34521.31,114380.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,31752,65302.91,34027.51,15645.96,114976.38,15632.29,9997.73,9091.5,34721.52,149697.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44897,1194.9,0.0,0.0,1194.9,0.0,501.76,92.74,594.5,1789.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,26099,2179.0,0.0,98.16,2277.16,500.75,477.86,176.56,1155.17,3432.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H110,Marine Engineer Of Fire Boats,51671,150234.0,17548.22,23440.34,191222.56,34181.8,15196.12,3253.61,52631.53,243854.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,41580,56360.76,647.98,6838.39,63847.13,13174.15,10951.73,5252.96,29378.84,93225.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,13906,14517.72,0.0,868.04,15385.76,0.0,5562.16,1192.66,6754.82,22140.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45546,20160.61,0.0,833.74,20994.35,0.0,1574.5,1626.94,3201.44,24195.79 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,34177,4230.0,0.0,0.0,4230.0,948.78,955.73,341.76,2246.27,6476.27 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),23622,25040.0,0.0,8102.37,33142.37,5704.63,2389.33,2574.76,10668.72,43811.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",37956,94388.0,5547.32,810.0,100745.32,19628.25,12424.51,8080.99,40133.75,140879.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,34852,81059.77,928.84,474.3,82462.91,16721.95,12179.0,6721.91,35622.86,118085.77 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,34943,113572.93,0.0,0.0,113572.93,22851.79,12393.85,9167.61,44413.25,157986.18 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,19575,54899.98,2253.97,4521.15,61675.1,11363.44,8828.57,4956.83,25148.84,86823.94 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,474C,Senior Fiscal Technician,27373,88296.01,0.0,3624.0,91920.01,18782.46,12424.5,7638.64,38845.6,130765.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1534,67841.33,4247.61,3753.41,75842.35,19591.33,13367.27,5755.95,38714.55,114556.9 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,52665,53598.04,0.0,845.0,54443.04,10977.49,10035.18,4313.54,25326.21,79769.25 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,11800,1327.11,0.0,0.0,1327.11,0.0,173.23,103.0,276.23,1603.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,29580,56120.01,0.0,1000.0,57120.01,12777.47,12424.5,4642.52,29844.49,86964.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23300,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,8374,128959.04,0.0,2159.06,131118.1,26349.57,12424.49,10020.17,48794.23,179912.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,2984,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5169.23,30446.35,92805.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,14824,27697.65,0.0,4707.93,32405.58,6975.06,3540.88,2769.47,13285.41,45690.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35660,43622.06,0.0,0.0,43622.06,0.0,5722.44,3381.55,9103.99,52726.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,10791,50188.2,4792.41,300.04,55280.65,10580.93,9993.96,4535.42,25110.31,80390.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29034,40057.15,165.72,456.14,40679.01,8702.47,6497.6,3412.07,18612.14,59291.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,24543,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,19581,108368.52,30880.98,22670.66,161920.16,31857.51,12424.5,2701.93,46983.94,208904.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,226,51405.0,184.82,4339.73,55929.55,12647.41,12424.5,4575.42,29647.33,85576.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",38903,190607.73,85389.22,31205.5,307202.45,43364.26,15052.76,5197.93,63614.95,370817.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,46138,43213.87,0.0,9648.6,52862.47,9926.5,6804.09,4332.21,21062.8,73925.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52900,140334.0,0.0,20934.88,161268.88,30948.61,12424.5,10478.81,53851.92,215120.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,46624,84644.08,7900.87,4531.2,97076.15,17556.45,12424.5,7599.56,37580.51,134656.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,31303,79551.0,0.0,11120.69,90671.69,18159.42,12424.5,7106.53,37690.45,128362.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,27963,24996.0,0.0,0.0,24996.0,4651.77,2867.19,1992.94,9511.9,34507.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13983,33768.93,14535.19,6610.89,54915.01,10867.74,6715.56,4174.62,21757.92,76672.93 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,42886,116735.44,0.0,0.0,116735.44,23747.91,12424.5,9541.06,45713.47,162448.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,28965,35922.0,0.0,120.0,36042.0,6868.18,6690.12,2925.16,16483.46,52525.46 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,21052,20176.6,0.0,0.0,20176.6,3657.78,1146.88,1566.02,6370.68,26547.28 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,26341,89375.8,0.0,0.0,89375.8,17994.68,9921.69,7188.14,35104.51,124480.31 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,48250,118914.72,0.0,0.0,118914.72,24139.32,11450.85,9587.12,45177.29,164092.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,6577,37661.7,2721.05,0.0,40382.75,9035.53,12385.67,3273.34,24694.54,65077.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,44160,1827.0,0.0,0.0,1827.0,471.37,477.86,141.45,1090.68,2917.68 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,38696,2445.0,0.0,0.0,2445.0,548.4,286.72,217.14,1052.26,3497.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10977,76342.5,17279.43,12887.55,106509.48,17692.69,15052.75,1775.96,34521.4,141030.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9104,Transit Car Cleaner Asst Sprv,29270,25949.91,528.71,6391.67,32870.29,6136.7,4657.75,2620.95,13415.4,46285.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",28666,16457.82,0.0,0.0,16457.82,0.0,3894.61,1277.0,5171.61,21629.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,13445,181945.02,0.0,0.0,181945.02,36616.95,12424.5,10900.06,59941.51,241886.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,39090,61694.15,7944.78,3576.84,73215.77,12859.14,11628.73,5805.54,30293.41,103509.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),42453,7102.69,46.32,0.0,7149.01,0.0,2060.8,554.72,2615.52,9764.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11073,97780.73,99730.88,14743.37,212254.98,27373.33,12424.5,3610.08,43407.91,255662.89 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,47263,100.0,0.0,0.0,100.0,0.0,5.97,7.75,13.72,113.72 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26596,13363.48,0.0,815.67,14179.15,3117.98,3521.27,1129.74,7768.99,21948.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13944,113223.0,51811.4,17477.64,182512.04,24968.62,15196.12,3112.79,43277.53,225789.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,41802,80977.03,0.0,0.0,80977.03,16658.14,12424.5,6609.79,35692.43,116669.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,43307,82717.02,828.87,3714.5,87260.39,17177.09,12424.5,6964.7,36566.29,123826.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,38049,51639.42,0.0,0.0,51639.42,7809.44,12350.85,4117.79,24278.08,75917.5 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",2331,20444.51,4355.64,1038.67,25838.82,0.0,0.0,2044.59,2044.59,27883.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,50168,61563.43,0.0,622.25,62185.68,12820.35,12389.74,5155.49,30365.58,92551.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4468,80949.9,2413.68,3148.53,86512.11,16584.79,12424.5,3144.14,32153.43,118665.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,44081,21173.4,291.66,741.7,22206.76,4764.16,4810.49,1766.05,11340.7,33547.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9538,97768.57,20566.83,8769.96,127105.36,25912.49,12424.51,2118.88,40455.88,167561.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,35590,103437.2,0.0,0.0,103437.2,21295.87,12424.5,8030.25,41750.62,145187.82 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,8019,40360.2,27.62,15080.27,55468.09,9212.04,6546.76,4518.85,20277.65,75745.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39486,79290.32,16121.91,14553.35,109965.58,22788.44,10083.74,1859.73,34731.91,144697.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,24911,43727.3,2288.5,619.33,46635.13,7091.81,12376.75,3760.83,23229.39,69864.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14609,135109.89,0.0,4028.01,139137.9,27909.79,11963.19,10113.27,49986.25,189124.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,22244,119467.4,70346.61,19507.96,209321.97,23620.98,12424.5,3570.94,39616.42,248938.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2622,Dietetic Technician,14192,58403.2,0.0,341.43,58744.63,12046.3,12424.5,4858.86,29329.66,88074.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,22591,38489.76,0.0,5486.65,43976.41,8485.52,6269.18,3558.34,18313.04,62289.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),7310,12895.2,0.0,0.0,12895.2,0.0,3727.35,1000.87,4728.22,17623.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,45654,53271.88,0.0,0.0,53271.88,11863.72,12255.45,4335.41,28454.58,81726.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,874,120111.07,0.0,0.0,120111.07,24172.55,12424.5,9916.51,46513.56,166624.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,34883,64463.71,4334.99,12627.13,81425.83,15212.59,12424.5,6611.7,34248.79,115674.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10269,100479.0,986.9,5113.38,106579.28,20304.15,10990.9,8333.97,39629.02,146208.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,40884,11982.01,0.0,1230.56,13212.57,2898.84,955.73,1056.56,4911.13,18123.7 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,6947,12029.05,0.0,0.0,12029.05,0.0,4462.07,932.76,5394.83,17423.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,31049,61592.0,2857.19,510.97,64960.16,12492.16,10513.04,5040.8,28046.0,93006.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,37951,51543.82,41.64,0.0,51585.46,11780.09,10990.9,4158.16,26929.15,78514.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41670,11536.03,0.0,0.0,11536.03,991.92,4940.53,934.52,6866.97,18403.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,35496,85188.57,0.0,0.0,85188.57,17551.24,12398.22,6897.43,36846.89,122035.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42239,43587.11,7325.86,993.01,51905.98,11560.71,12981.88,3896.02,28438.61,80344.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19081,20686.05,0.0,3244.07,23930.12,3185.7,0.0,3796.12,6981.82,30911.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,40843,73659.21,0.0,0.0,73659.21,15148.18,12424.51,5769.22,33341.91,107001.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,21916,3566.74,0.0,0.0,3566.74,0.0,1281.27,287.45,1568.72,5135.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",5992,130333.45,0.0,8509.01,138842.46,27132.13,12567.87,1553.69,41253.69,180096.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7192,91736.1,16342.41,16750.53,124829.04,18758.81,9557.31,2088.77,30404.89,155233.93 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,23836,45168.04,0.0,0.0,45168.04,8188.96,0.0,3653.82,11842.78,57010.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,40150,33840.0,0.0,0.0,33840.0,6297.61,5567.12,2667.8,14532.53,48372.53 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,50081,74412.08,0.0,5975.0,80387.08,15661.04,12424.5,6600.42,34685.96,115073.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,38683,1248.0,0.0,0.0,1248.0,0.0,238.93,96.62,335.55,1583.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,37604,11143.19,0.0,85.58,11228.77,0.0,2364.53,869.33,3233.86,14462.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,18445,102019.03,0.0,0.0,102019.03,21026.28,12425.65,7632.9,41084.83,143103.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,47314,154629.06,0.0,0.0,154629.06,31080.74,12255.62,10405.04,53741.4,208370.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",44995,21424.72,0.0,0.0,21424.72,5527.61,5101.22,1726.99,12355.82,33780.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49644,4087.55,0.0,54.02,4141.57,138.41,0.0,542.03,680.44,4822.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50836,30218.11,0.0,3951.34,34169.45,0.0,2660.68,2648.32,5309.0,39478.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45398,11494.53,0.0,829.66,12324.19,2308.42,0.0,364.62,2673.04,14997.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",9681,135115.5,21189.5,8106.93,164411.93,28155.46,12424.5,2736.95,43316.91,207728.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,10990,4397.0,0.0,0.0,4397.0,818.28,477.86,322.75,1618.89,6015.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2935,"Sr Marriage, Fam & Cld Cnslr",20079,97424.0,0.0,624.0,98048.0,20208.21,12424.5,8010.8,40643.51,138691.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),10651,11556.0,0.0,903.6,12459.6,2091.56,955.73,213.51,3260.8,15720.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50603,8731.73,0.0,70.67,8802.4,0.0,2171.32,682.25,2853.57,11655.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,32556,80953.81,2224.4,4027.55,87205.76,16760.25,12424.51,1639.96,30824.72,118030.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,43506,65817.7,29371.95,6398.82,101588.47,13929.77,12424.5,8060.34,34414.61,136003.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45989,147924.0,0.0,4458.48,152382.48,31405.79,10035.18,10341.4,51782.37,204164.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,49247,49578.86,579.21,1833.06,51991.13,12003.51,11739.48,4155.66,27898.65,79889.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38967,67741.73,7517.37,1425.47,76684.57,18937.93,13348.28,5942.4,38228.61,114913.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,22613,125815.04,0.0,0.0,125815.04,25320.89,12424.5,9885.56,47630.95,173445.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12362,6901.28,0.0,0.0,6901.28,0.0,2992.63,549.24,3541.87,10443.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,25112,106924.9,15311.24,4544.89,126781.03,22139.28,12421.26,9841.96,44402.5,171183.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,41554,84626.65,2331.45,11479.34,98437.44,18625.84,12360.77,1605.66,32592.27,131029.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11213,97763.77,1361.74,6814.98,105940.49,25435.89,12424.5,1801.86,39662.25,145602.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39163,1514.36,0.0,34.26,1548.62,1154.96,125.44,903.49,2183.89,3732.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2858,134497.05,0.0,16847.15,151344.2,27124.47,12279.89,9165.29,48569.65,199913.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,733,108038.02,0.0,5476.82,113514.84,22891.9,12424.5,9323.56,44639.96,158154.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11716,23608.5,3837.7,1002.38,28448.58,6070.89,7335.23,2176.62,15582.74,44031.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,51061,54921.37,1082.03,2493.66,58497.06,10414.65,6212.25,981.5,17608.4,76105.46 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2785,Asst General Services Manager,31780,25668.9,0.0,10996.83,36665.73,5757.56,3870.71,5746.5,15374.77,52040.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,20542,68867.75,0.0,0.0,68867.75,14161.84,12424.51,5450.08,32036.43,100904.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,1677,37702.32,388.35,0.0,38090.67,8328.02,6958.89,3122.75,18409.66,56500.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28024,49142.2,19820.16,7462.15,76424.51,12852.71,12424.5,5797.99,31075.2,107499.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4837,11549.7,0.0,0.0,11549.7,0.0,4945.91,941.74,5887.65,17437.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,16880,2092.8,0.0,0.0,2092.8,0.0,764.58,162.03,926.61,3019.41 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17254,5540.5,0.0,309.75,5850.25,1429.44,2363.94,452.92,4246.3,10096.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52914,11984.25,0.0,0.0,11984.25,2038.66,5196.78,946.18,8181.62,20165.87 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,8361,64032.6,7720.9,4672.18,76425.68,13586.02,11710.57,6013.42,31310.01,107735.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43491,0.0,0.0,840.22,840.22,0.0,68.5,45.15,113.65,953.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,30104,100761.0,56402.2,11650.79,168813.99,22041.53,12424.49,10605.94,45071.96,213885.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,32661,4341.03,0.0,0.0,4341.03,0.0,1436.58,336.85,1773.43,6114.46 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,682,13499.49,181.49,0.0,13680.98,0.0,3071.77,1060.73,4132.5,17813.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1344,112016.43,54901.88,17821.28,184739.59,24698.79,14574.9,3094.22,42367.91,227107.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,39396,97793.0,10958.05,11814.0,120565.05,22647.58,12424.5,9662.27,44734.35,165299.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25616,97763.74,0.0,6814.98,104578.72,25435.88,12424.5,1733.07,39593.45,144172.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,28896,59405.94,0.0,0.0,59405.94,12936.15,7813.93,4620.43,25370.51,84776.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,11184,33179.0,0.0,0.0,33179.0,0.0,6642.34,2645.09,9287.43,42466.43 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,52282,184293.0,0.0,0.0,184293.0,37049.43,12424.5,18052.02,67525.95,251818.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26840,79932.6,0.0,2437.92,82370.52,0.0,6976.96,6389.44,13366.4,95736.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50069,69849.82,10084.21,10286.3,90220.33,15858.4,12354.32,7133.76,35346.48,125566.81 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,14505,67385.59,7207.37,9695.46,84288.42,15131.8,12328.92,6749.84,34210.56,118498.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,24160,49679.0,0.0,4253.13,53932.13,12560.4,12424.5,4308.89,29293.79,83225.92 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,35931,99654.03,0.0,0.0,99654.03,22731.78,12424.5,244.22,35400.5,135054.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,10100,69490.05,6835.42,607.97,76933.44,14484.53,12105.28,6354.57,32944.38,109877.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,36116,135421.01,0.0,5302.72,140723.73,28321.92,12424.51,10008.4,50754.83,191478.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",3230,8467.5,0.0,0.0,8467.5,0.0,1792.0,656.78,2448.78,10916.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,12815,84644.0,58950.24,14556.14,158150.38,19177.65,12424.52,10255.7,41857.87,200008.25 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,44674,58652.0,424.44,1627.58,60704.02,12152.48,12424.5,4939.04,29516.02,90220.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13948,72462.94,5764.73,5832.22,84059.89,15608.3,9079.44,1359.53,26047.27,110107.16 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",43273,84175.5,0.0,3463.49,87638.99,17531.24,11241.79,7246.37,36019.4,123658.39 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,169,61735.02,0.0,690.03,62425.05,12861.74,12424.5,5122.72,30408.96,92834.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37683,2999.75,0.0,0.0,2999.75,0.0,1378.34,232.68,1611.02,4610.77 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,25247,98157.02,0.0,0.0,98157.02,20230.58,12424.5,7655.44,40310.52,138467.54 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,34830,25041.19,0.0,1340.98,26382.17,5792.37,5337.34,2177.39,13307.1,39689.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,31857,79551.02,1686.29,0.0,81237.31,16395.96,12424.5,6455.13,35275.59,116512.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25476,117823.46,57846.35,8252.04,183921.85,23326.8,12424.5,476.68,36227.98,220149.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",10141,73312.68,2602.97,4361.92,80277.57,15533.5,9700.38,6669.66,31903.54,112181.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,24546,128129.07,0.0,0.0,128129.07,25766.03,12424.5,17159.09,55349.62,183478.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,10616,107789.19,25657.55,10384.84,143831.58,21439.76,11886.91,2396.3,35722.97,179554.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,154,73161.3,1827.82,4846.61,79835.73,14876.31,11229.83,4326.97,30433.11,110268.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,11872,101531.04,1752.59,2580.95,105864.58,21331.43,12424.51,8691.26,42447.2,148311.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,38384,2541.7,0.0,36.64,2578.34,0.0,845.23,200.06,1045.29,3623.63 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,48717,112413.82,0.0,0.0,112413.82,22898.98,12424.5,9037.15,44360.63,156774.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25072,115026.41,10326.54,16961.39,142314.34,24175.95,10503.78,10092.05,44771.78,187086.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,46285,76139.13,0.0,561.6,76700.73,15804.74,11182.06,6249.12,33235.92,109936.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31797,124331.85,586.69,12705.94,137624.48,23514.98,11057.81,7792.96,42365.75,179990.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,12561,77349.9,0.0,0.0,77349.9,15926.4,12287.95,6091.7,34306.05,111655.95 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,44091,63903.31,0.0,0.0,63903.31,13167.91,12393.15,5037.45,30598.51,94501.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",3231,26490.35,0.0,0.0,26490.35,0.0,6236.16,2055.8,8291.96,34782.31 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,5034,170335.05,0.0,0.0,170335.05,34279.73,12424.5,19022.34,65726.57,236061.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,3486,Watershed Forester,29192,104838.9,0.0,0.0,104838.9,21571.03,12370.74,16260.95,50202.72,155041.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,5875,144372.05,0.0,24560.4,168932.45,32266.18,11468.76,10635.11,54370.05,223302.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,50150,52310.08,2330.29,5142.11,59782.48,7523.06,11632.57,4733.28,23888.91,83671.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43767,56531.0,1228.55,982.8,58742.35,12680.14,12424.5,4720.47,29825.11,88567.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,36903,86663.01,8209.96,4305.0,99177.97,18749.23,12424.5,7769.95,38943.68,138121.65 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16966,53135.25,20.41,1076.03,54231.69,11206.99,11733.63,4505.72,27446.34,81678.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,4994,30061.01,0.0,0.0,30061.01,0.0,6594.54,2332.63,8927.17,38988.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,11252,44892.4,1111.22,1847.8,47851.42,10580.43,12137.78,3786.17,26504.38,74355.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42064,5926.83,0.0,29.94,5956.77,0.0,2989.65,461.75,3451.4,9408.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,5157,11284.83,0.0,0.0,11284.83,0.0,3688.52,929.43,4617.95,15902.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,9666,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51691,113233.59,10848.63,15328.81,139411.03,24863.3,15196.12,1401.25,41460.67,180871.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",9805,78332.4,6020.86,60.0,84413.26,12883.17,10298.01,6586.27,29767.45,114180.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12574,7374.66,0.0,250.0,7624.66,2113.01,1466.57,721.52,4301.1,11925.76 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),31796,184289.06,0.0,5248.28,189537.34,38144.37,12424.5,11010.14,61579.01,251116.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,6705,126603.5,0.0,0.0,126603.5,25449.77,12424.5,9926.95,47801.22,174404.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,32498,87531.02,0.0,0.0,87531.02,18040.64,12424.5,6885.99,37351.13,124882.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51507,68504.86,32484.48,4117.55,105106.89,19904.46,13502.56,8015.28,41422.3,146529.19 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,24823,0.0,0.0,26.4,26.4,0.0,0.0,2.02,2.02,28.42 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,42700,174939.14,0.0,733.73,175672.87,36174.77,11345.0,7624.68,55144.45,230817.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27598,24097.84,23.8,1278.75,25400.39,5619.99,6275.45,2048.89,13944.33,39344.72 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,22224,99373.52,0.0,0.0,99373.52,20437.08,12424.5,8117.97,40979.55,140353.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4402,20527.4,0.0,619.89,21147.29,1402.42,8840.51,1639.53,11882.46,33029.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,48771,61574.07,0.0,0.0,61574.07,13160.93,9017.5,4643.12,26821.55,88395.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29905,3311.7,0.0,0.0,3311.7,170.95,250.88,1843.52,2265.35,5577.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",23571,106090.05,10329.4,3925.69,120345.14,22401.79,12424.5,9613.64,44439.93,164785.07 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,9902,85004.0,7387.07,1963.11,94354.18,17545.17,12424.5,7368.13,37337.8,131691.98 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,19721,93681.01,5869.98,11846.75,111397.74,21127.07,12424.5,8826.89,42378.46,153776.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,23037,13965.01,0.0,0.0,13965.01,3132.35,2389.33,1108.82,6630.5,20595.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,32714,67261.04,72.31,0.0,67333.35,13862.82,12424.5,5405.45,31692.77,99026.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30529,56531.01,2865.56,1298.06,60694.63,11848.42,12424.5,4765.52,29038.44,89733.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25451,857.5,0.0,20.09,877.59,0.0,418.13,68.11,486.24,1363.83 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,2252,1503.97,688.9,0.0,2192.87,0.0,445.01,170.2,615.21,2808.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,43481,115889.71,0.0,4671.85,120561.56,24243.65,12424.49,9631.94,46300.08,166861.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,15421,5953.16,62.09,190.08,6205.33,0.0,2783.56,481.26,3264.82,9470.15 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,4687,29673.96,0.0,818.18,30492.14,6302.1,5980.25,2527.89,14810.24,45302.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17584,56531.0,0.0,5653.73,62184.73,12663.95,12424.5,5135.24,30223.69,92408.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50829,42676.84,4939.95,1365.59,48982.38,11444.47,13123.97,3713.59,28282.03,77264.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,3024,47758.2,0.0,21909.51,69667.71,11767.73,6546.76,5651.72,23966.21,93633.92 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,31551,98515.5,0.0,0.0,98515.5,20267.98,12424.5,7877.16,40569.64,139085.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,19624,16061.5,0.0,0.0,16061.5,0.0,4348.58,1243.48,5592.06,21653.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,50289,28142.0,1140.75,0.0,29282.75,5237.22,3345.06,2276.36,10858.64,40141.39 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,42103,88296.02,0.0,5362.78,93658.8,18417.67,12424.5,7772.76,38614.93,132273.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23303,113233.59,40717.25,18852.04,172802.88,25036.03,15196.12,2918.91,43151.06,215953.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,24887,51597.6,0.0,3817.22,55414.82,12700.26,12376.71,4337.7,29414.67,84829.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,31082,119351.94,9948.92,5323.08,134623.94,23600.47,12412.56,2239.1,38252.13,172876.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",25108,130782.64,19332.81,19189.22,169304.67,29503.98,14813.83,2733.57,47051.38,216356.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,9020,29233.8,9870.25,1592.32,40696.37,6816.08,4778.65,3134.19,14728.92,55425.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,13729,50932.0,2318.16,211.65,53461.81,12244.73,12257.25,4312.41,28814.39,82276.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22314,72271.64,0.0,13418.23,85689.87,10142.29,6200.25,6425.59,22768.13,108458.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,12200,138.38,0.0,83.03,221.41,27.6,0.0,581.82,609.42,830.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,37766,60380.27,268.5,6157.52,66806.29,12734.69,10680.05,5511.53,28926.27,95732.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8270,26808.2,4213.28,657.78,31679.26,7162.2,8346.27,2393.62,17902.09,49581.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50971,7643.52,0.0,85.19,7728.71,4215.52,0.0,3097.77,7313.29,15042.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,11264,8892.02,0.0,0.0,8892.02,1654.8,1433.6,705.67,3794.07,12686.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,2004,120111.0,0.0,888.75,120999.75,24172.55,12424.5,9586.06,46183.11,167182.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52354,122701.56,276.58,19824.18,142802.32,12410.04,0.0,3426.33,15836.37,158638.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16744,10782.38,0.0,482.95,11265.33,0.0,4675.61,902.04,5577.65,16842.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,34701,32160.0,5272.62,16095.11,53527.73,5709.66,2867.19,871.5,9448.35,62976.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,46438,73181.59,0.0,0.0,73181.59,0.0,0.0,5788.03,5788.03,78969.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28596,96129.03,1437.05,11008.41,108574.49,0.0,7242.65,1678.69,8921.34,117495.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35612,119455.91,3288.07,8387.47,131131.45,23662.82,12424.5,2163.69,38251.01,169382.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,7496,75586.94,32771.25,10857.32,119215.51,17074.15,12421.52,9677.04,39172.71,158388.22 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,756,63984.63,0.0,0.0,63984.63,13758.61,8601.58,5171.52,27531.71,91516.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,23713,50050.25,0.0,468.12,50518.37,10120.79,9320.77,4189.43,23630.99,74149.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40839,113233.6,12818.16,18422.97,144474.73,25036.03,15196.12,2453.2,42685.35,187160.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,7345,60428.03,0.0,3238.44,63666.47,11093.78,6212.25,5133.07,22439.1,86105.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,8683,34559.68,609.44,12.5,35181.62,1200.9,7848.93,2728.5,11778.33,46959.95 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,40376,84354.2,1382.65,10610.68,96347.53,19031.75,12328.92,7761.09,39121.76,135469.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,34554,114803.43,0.0,0.0,114803.43,23354.29,12424.5,8881.7,44660.49,159463.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,15005,56456.45,0.0,17045.97,73502.42,12758.58,6546.76,5988.45,25293.79,98796.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11662,562.87,0.0,0.0,562.87,0.0,138.89,43.69,182.58,745.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,38224,112209.02,0.0,0.0,112209.02,22582.31,12424.5,9076.74,44083.55,156292.57 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,27251,88296.03,0.0,4473.0,92769.03,18337.86,12424.5,7703.59,38465.95,131234.98 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",44736,105082.02,0.0,0.0,105082.02,21657.97,12424.5,8510.12,42592.59,147674.61 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,30691,26439.24,0.0,130.28,26569.52,5149.43,5531.89,2032.57,12713.89,39283.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12288,90245.67,14423.49,2723.76,107392.92,19117.51,12183.84,8598.84,39900.19,147293.11 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,27301,319.8,0.0,0.0,319.8,57.96,35.84,24.76,118.56,438.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,16460,56531.0,218.5,1277.1,58026.6,11788.47,12424.5,4554.42,28767.39,86793.99 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,2089,63002.87,0.0,2091.53,65094.4,13112.36,12404.91,5390.85,30908.12,96002.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,41068,22758.4,0.0,0.0,22758.4,0.0,6116.67,1764.43,7881.1,30639.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,36686,23972.0,0.0,0.0,23972.0,0.0,5293.85,1952.06,7245.91,31217.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3536,63220.51,3083.67,4032.69,70336.87,13804.31,11182.06,5729.38,30715.75,101052.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,35748,101531.05,0.0,0.0,101531.05,20920.45,12424.5,8110.73,41455.68,142986.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26883,52938.65,17788.97,4353.71,75081.33,15367.67,10408.99,5819.49,31596.15,106677.48 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,28790,63895.08,0.0,6717.8,70612.88,13869.05,11686.02,5735.11,31290.18,101903.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,12083,65145.0,25603.55,6463.71,97212.26,14689.29,12424.51,7686.04,34799.84,132012.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,15088,20826.65,0.0,211.74,21038.39,4835.81,6242.13,1694.19,12772.13,33810.52 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,19672,90775.02,0.0,0.0,90775.02,18709.2,12424.5,7235.47,38369.17,129144.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",31585,13264.84,0.0,0.0,13264.84,0.0,3133.0,1029.21,4162.21,17427.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35012,90065.55,0.0,7650.08,97715.63,0.0,0.0,1670.95,1670.95,99386.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,9444,130682.24,6590.94,27091.49,164364.67,30622.84,11306.0,10339.2,52268.04,216632.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,3585,61557.0,0.0,1560.0,63117.0,10354.62,12424.5,5125.97,27905.09,91022.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",12444,0.0,0.0,9058.72,9058.72,0.0,0.0,692.99,692.99,9751.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6250,Chief Electrical Inspector,20877,137101.02,0.0,2742.02,139843.04,28143.88,12424.5,10109.53,50677.91,190520.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,47997,22127.61,654.0,3399.77,26181.38,7126.16,4206.06,2131.11,13463.33,39644.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,41621,97934.01,5354.21,5727.03,109015.25,21319.02,12424.5,8398.79,42142.31,151157.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1920,Inventory Clerk,42949,53973.03,0.0,0.0,53973.03,12945.44,12424.5,4439.8,29809.74,83782.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,21904,246372.0,9559.92,33017.34,288949.26,56274.08,12424.5,12638.28,81336.86,370286.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1802,Research Assistant,23805,53075.0,0.0,0.0,53075.0,10651.5,9557.3,4252.9,24461.7,77536.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,25427,33674.96,11313.01,2937.56,47925.53,5982.61,3345.06,805.4,10133.07,58058.6 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,43354,101047.01,0.0,1962.75,103009.76,21191.28,12424.5,8248.98,41864.76,144874.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,2827,47700.9,1669.08,2954.08,52324.06,9915.12,8816.61,1422.03,20153.76,72477.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46007,119455.93,3428.38,4957.37,127841.68,23662.84,12424.5,2177.27,38264.61,166106.29 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,52152,148523.69,0.0,0.0,148523.69,29871.45,12424.5,17503.28,59799.23,208322.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,46342,92085.0,0.0,0.0,92085.0,18979.21,12424.5,7461.09,38864.8,130949.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,44744,32163.51,707.71,4096.09,36967.31,5710.28,2867.19,610.48,9187.95,46155.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,9552,26837.2,0.0,0.0,26837.2,4994.41,2371.4,2927.14,10292.95,37130.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6690,68461.79,33793.87,702.49,102958.15,18954.15,13491.94,7844.41,40290.5,143248.65 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,42344,125815.09,0.0,0.0,125815.09,25316.34,12424.5,9889.41,47630.25,173445.34 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,17733,92959.16,26617.56,7320.9,126897.62,19853.57,12328.92,9827.55,42010.04,168907.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,8853,77724.01,0.0,0.0,77724.01,15502.53,9079.44,6091.36,30673.33,108397.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40970,64758.83,1027.43,1871.95,67658.21,18241.55,12760.98,5263.3,36265.83,103924.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,40749,70791.0,72181.54,10449.82,153422.36,16111.04,12424.5,10237.23,38772.77,192195.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,10407,14382.42,34.18,0.0,14416.6,3162.7,3815.45,1163.51,8141.66,22558.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,52457,23058.5,215.5,0.0,23274.0,5949.09,5113.16,1884.55,12946.8,36220.8 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,17604,99654.03,0.0,0.0,99654.03,22733.36,12424.5,1639.84,36797.7,136451.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38014,0.0,0.0,881.32,881.32,0.0,0.0,67.42,67.42,948.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,23652,50752.9,0.0,0.0,50752.9,12170.35,12424.5,4128.68,28723.53,79476.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45187,97764.77,7083.4,9767.52,114615.69,26167.1,12424.5,1135.22,39726.82,154342.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,29059,56531.01,0.0,4621.15,61152.16,12460.53,12424.5,4801.6,29686.63,90838.79 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7416,Book Repairer,48276,58922.01,0.0,624.0,59546.01,12272.68,12424.5,4833.87,29531.05,89077.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,16105,34636.5,2189.25,12987.77,49813.52,8262.38,6164.46,4026.53,18453.37,68266.89 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,53167,2071.13,0.0,403.96,2475.09,464.55,268.8,220.84,954.19,3429.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14583,3633.91,0.0,0.0,3633.91,1176.84,0.0,195.43,1372.27,5006.18 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,14386,94039.11,0.0,2400.53,96439.64,19863.88,12472.29,7904.52,40240.69,136680.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,48403,2512.8,0.0,0.0,2512.8,559.54,573.44,171.21,1304.19,3816.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31604,23652.9,0.0,1730.7,25383.6,506.28,1959.25,1718.73,4184.26,29567.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,19245,113774.65,9293.66,6733.47,129801.78,22522.89,12543.97,1176.97,36243.83,166045.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",42250,20105.9,0.0,0.0,20105.9,0.0,4745.79,1560.14,6305.93,26411.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,28733,77071.01,33473.86,1716.8,112261.67,16234.07,12424.5,9120.05,37778.62,150040.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,19389,100761.03,2913.58,6380.83,110055.44,22100.17,12424.5,8666.11,43190.78,153246.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,46937,32073.0,1825.2,0.0,33898.2,5968.78,3822.92,2715.91,12507.61,46405.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12754,117139.22,20576.29,5747.49,143463.0,23170.33,12424.51,2240.8,37835.64,181298.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35891,97599.09,107402.36,15795.67,220797.12,27583.74,12400.6,3671.41,43655.75,264452.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41706,56531.0,751.86,5645.29,62928.15,12188.71,12424.5,4942.3,29555.51,92483.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,42504,56531.0,0.0,5475.53,62006.53,12359.31,12424.5,5076.1,29859.91,91866.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39540,11357.49,0.0,0.0,11357.49,1114.16,4925.0,909.18,6948.34,18305.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7559,57569.32,693.56,2169.25,60432.13,13280.66,12418.53,4597.41,30296.6,90728.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47143,12822.77,0.0,3405.23,16228.0,2837.55,1075.2,1327.1,5239.85,21467.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46554,112696.21,13781.57,13631.85,140109.63,22291.43,12424.5,2376.45,37092.38,177202.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,28365,27125.01,0.0,0.0,27125.01,4632.95,5734.39,2157.94,12525.28,39650.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,45287,41404.01,0.0,0.0,41404.01,8746.29,9079.44,3195.84,21021.57,62425.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,47155,59920.6,0.0,78.0,59998.6,12338.73,12424.5,4821.6,29584.83,89583.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28038,7034.21,0.0,105.61,7139.82,0.0,3533.21,553.6,4086.81,11226.63 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,17611,84599.14,0.0,1086.18,85685.32,17672.06,12424.5,6866.29,36962.85,122648.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,52018,119455.9,24389.11,7452.63,151297.64,23662.83,12424.5,2533.27,38620.6,189918.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,32313,6534.0,0.0,0.0,6534.0,1465.59,1433.6,542.4,3441.59,9975.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,6446,104118.09,0.0,0.0,104118.09,21228.46,10990.9,8544.06,40763.42,144881.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,12900,49352.94,0.0,1823.25,51176.19,0.0,0.0,4048.78,4048.78,55224.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43001,117382.75,0.0,20742.57,138125.32,0.0,10160.26,2315.97,12476.23,150601.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,5782,9868.51,603.08,29.24,10500.83,377.2,3225.59,838.17,4440.96,14941.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,41760,62453.83,4891.94,1380.0,68725.77,13127.15,12423.01,5401.23,30951.39,99677.16 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,44024,165069.34,0.0,6410.32,171479.66,33260.22,8732.99,10598.16,52591.37,224071.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,41161,58239.0,3012.99,4325.14,65577.13,13592.59,12424.5,5306.23,31323.32,96900.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,2586,45378.54,0.0,0.0,45378.54,10867.19,12424.5,3638.33,26930.02,72308.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,3436,57995.0,6652.55,3013.68,67661.23,13263.77,12424.5,5388.58,31076.85,98738.08 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2326,Nursing Supervisor Psychiatric,48964,105867.0,0.0,55509.6,161376.6,25549.96,6451.18,10133.88,42135.02,203511.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23908,47553.42,0.0,0.0,47553.42,11383.0,12376.71,3868.28,27627.99,75181.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,40791,56191.47,1340.08,4340.99,61872.54,11808.68,12349.42,5043.03,29201.13,91073.67 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39914,3724.0,0.0,0.0,3724.0,0.0,1588.91,288.31,1877.22,5601.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",6970,41251.71,1343.63,15713.25,58308.59,9252.78,5495.46,4727.0,19475.24,77783.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",10056,131577.09,26567.41,16303.62,174448.12,28909.31,15196.12,2928.83,47034.26,221482.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",33366,18632.0,728.39,824.45,20184.84,4279.07,3822.93,1630.06,9732.06,29916.9 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,22376,34498.52,1395.72,713.58,36607.82,7135.41,7699.61,2991.07,17826.09,54433.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11906,97765.4,8624.71,18351.26,124741.37,28228.62,12424.5,2077.84,42730.96,167472.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,15954,62594.0,0.0,0.0,62594.0,13682.06,6690.13,5114.76,25486.95,88080.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11839,68304.62,1071.49,2812.28,72188.39,16188.77,13459.32,5472.57,35120.66,107309.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8156,3257.53,0.0,0.0,3257.53,0.0,1367.89,254.19,1622.08,4879.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17834,113233.62,25222.76,19519.14,157975.52,25342.85,15196.12,2691.84,43230.81,201206.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,31682,84175.87,9459.46,3085.9,96721.23,17471.54,12357.48,7724.24,37553.26,134274.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14137,27713.13,1123.99,1632.14,30469.26,7877.37,8631.68,2326.59,18835.64,49304.9 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,22838,77071.01,0.0,1445.0,78516.01,16151.78,12424.5,6287.4,34863.68,113379.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,13692,71543.2,0.0,0.0,71543.2,14744.54,12424.5,5642.63,32811.67,104354.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39532,3044.15,0.0,270.45,3314.6,0.0,1278.29,264.98,1543.27,4857.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43981,67681.51,11482.07,2380.51,81544.09,19185.39,13337.94,6109.34,38632.67,120176.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29944,140401.06,2373.99,13386.54,156161.59,29775.85,12430.47,7685.37,49891.69,206053.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43324,80957.66,11820.76,6503.98,99282.4,16746.17,12424.5,1843.79,31014.46,130296.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50633,28872.98,9765.03,8465.11,47103.12,9491.52,5741.91,3564.7,18798.13,65901.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,38738,12381.68,0.0,0.0,12381.68,0.0,3903.56,959.88,4863.44,17245.12 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,19069,199320.63,0.0,0.0,199320.63,40015.43,12424.5,28676.9,81116.83,280437.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,15672,29642.38,0.0,660.02,30302.4,6590.95,5730.2,2395.82,14716.97,45019.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,47606,3131.1,0.0,5837.46,8968.56,707.15,430.07,693.97,1831.19,10799.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,15178,7015.28,0.0,424.15,7439.43,0.0,1878.61,577.41,2456.02,9895.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6359,82025.53,3585.19,4346.21,89956.93,17127.15,12424.5,1497.9,31049.55,121006.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,16264,215611.14,0.0,725.32,216336.46,44175.62,11373.2,3680.13,59228.95,275565.41 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,14428,198991.0,0.0,16538.7,215529.7,43858.42,12424.5,8304.82,64587.74,280117.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,42685,51079.23,0.0,3021.5,54100.73,12325.23,12346.85,4151.63,28823.71,82924.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18615,114678.19,14576.59,14372.68,143627.46,23212.21,12424.51,2397.55,38034.27,181661.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48513,70212.25,40170.1,7224.81,117607.16,21270.13,13835.28,9218.3,44323.71,161930.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,13562,47003.2,10708.1,2524.3,60235.6,11266.01,12424.5,4622.55,28313.06,88548.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,40072,36043.0,0.0,0.0,36043.0,7241.87,6212.25,2924.22,16378.34,52421.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15826,5179.41,0.0,0.0,5179.41,0.0,2245.97,402.08,2648.05,7827.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34785,77856.3,2756.44,1469.64,82082.38,15750.04,11946.64,4362.55,32059.23,114141.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,28356,68622.78,8068.93,6480.44,83172.15,14226.3,12433.94,6582.28,33242.52,116414.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5667,1173.38,0.0,2665.64,3839.02,0.0,0.0,177.63,177.63,4016.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28097,2816.56,0.0,0.0,2816.56,0.0,1182.72,226.31,1409.03,4225.59 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,23534,37632.6,0.0,3000.0,40632.6,8857.23,9891.81,3345.5,22094.54,62727.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17629,41820.0,16185.8,442.0,58447.8,10058.72,12412.56,4659.5,27130.78,85578.58 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,8519,74412.0,0.0,4431.0,78843.0,15345.94,12424.5,6542.66,34313.1,113156.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,19057,13052.0,0.0,0.0,13052.0,2428.96,1911.47,1023.24,5363.67,18415.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,51861,0.0,0.0,451.97,451.97,0.0,34.25,34.57,68.82,520.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38348,6002.38,0.0,22.32,6024.7,0.0,2313.16,467.29,2780.45,8805.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7285,112685.43,12030.82,7949.85,132666.1,22330.91,12424.5,1603.06,36358.47,169024.57 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,28032,71616.59,0.0,0.0,71616.59,14751.96,12149.55,5804.6,32706.11,104322.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5349,950.3,0.0,0.0,950.3,0.0,513.71,73.57,587.28,1537.58 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,15922,86850.01,0.0,480.0,87330.01,18000.35,12424.5,7004.17,37429.02,124759.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,1837,7271.6,0.0,953.47,8225.07,1654.51,2341.54,609.89,4605.94,12831.01 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,7051,55281.88,566.83,945.07,56793.78,11450.96,10884.88,4618.39,26954.23,83748.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,47372,110041.14,0.0,0.0,110041.14,22141.92,12376.71,8797.89,43316.52,153357.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,14396,67094.15,0.0,5549.7,72643.85,14174.47,12394.64,5553.33,32122.44,104766.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46015,53180.01,126.25,323.64,53629.9,10913.39,10576.84,4220.9,25711.13,79341.03 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,34854,58782.03,0.0,1664.0,60446.03,12457.44,12424.5,4954.69,29836.63,90282.66 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,7206,90775.06,0.0,760.0,91535.06,18859.79,12424.5,7105.7,38389.99,129925.05 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,16807,37014.85,11175.58,3592.43,51782.86,8513.21,8017.86,4062.0,20593.07,72375.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,23013,86901.0,0.0,0.0,86901.0,17705.87,10990.9,6990.11,35686.88,122587.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",11503,150261.55,0.0,15004.95,165266.5,32542.66,15148.33,43.65,47734.64,213001.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,21804,18799.3,184.19,0.0,18983.49,0.0,5017.58,1473.43,6491.01,25474.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,4161,15644.75,0.0,37.93,15682.68,2918.53,2771.62,1261.01,6951.16,22633.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12834,58518.71,5091.68,1293.31,64903.7,16163.7,11514.88,4919.17,32597.75,97501.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,34766,65882.4,10191.81,0.0,76074.21,13553.54,12424.51,6149.05,32127.1,108201.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,35832,51628.5,0.0,6256.08,57884.58,13503.55,12424.5,4674.57,30602.62,88487.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3220,97764.4,2028.71,11172.84,110965.95,26490.29,12424.52,1887.88,40802.69,151768.64 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,12275,2956.5,0.0,0.0,2956.5,2169.47,0.0,383.09,2552.56,5509.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,42946,41405.0,0.0,0.0,41405.0,0.0,4778.66,3294.53,8073.19,49478.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16521,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1850.29,10264.07,34268.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50938,5151.37,579.96,10.02,5741.35,0.0,1641.16,445.16,2086.32,7827.67 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,38119,182719.18,0.0,5885.0,188604.18,37007.74,12119.86,10871.83,59999.43,248603.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,26306,143295.36,2089.64,10541.62,155926.62,28452.19,12424.5,2586.98,43463.67,199390.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,51270,150710.0,0.0,12909.18,163619.18,32935.76,12424.5,10517.84,55878.1,219497.28 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,28514,45378.17,0.0,0.0,45378.17,2718.27,8434.33,3691.05,14843.65,60221.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,29053,78610.0,0.0,480.0,79090.0,16298.32,12424.5,6506.9,35229.72,114319.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,32817,88831.02,19763.67,5527.68,114122.37,18650.86,12424.5,9324.42,40399.78,154522.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,41413,141293.16,1534.35,8208.26,151035.77,28599.93,11651.14,10300.55,50551.62,201587.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",9573,127129.0,0.0,0.0,127129.0,25584.69,12424.5,18222.97,56232.16,183361.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2547,68870.36,23075.95,8087.96,100034.27,21098.12,13570.48,7613.84,42282.44,142316.71 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",43212,60371.96,5540.24,1868.85,67781.05,14126.33,10840.56,1428.44,26395.33,94176.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50216,21271.04,0.0,29.61,21300.65,0.0,5312.23,1651.22,6963.45,28264.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,19483,27965.0,2631.24,5810.4,36406.64,7199.72,6690.13,2880.7,16770.55,53177.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23987,62850.23,294.53,3579.02,66723.78,13272.41,11116.34,5500.7,29889.45,96613.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,21600,44367.01,0.0,39.53,44406.54,8820.31,5373.78,3799.38,17993.47,62400.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,4886,74165.1,1024.21,624.0,75813.31,15410.38,12424.5,6225.9,34060.78,109874.09 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,1900,230440.0,0.0,5890.0,236330.0,46621.22,12424.5,11540.17,70585.89,306915.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,41508,113233.62,3568.93,20984.61,137787.16,25481.14,15196.12,2291.88,42969.14,180756.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",1854,102605.5,58187.99,26786.37,187579.86,21358.89,12424.5,10922.76,44706.15,232286.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,11260,49617.14,15773.11,1748.72,67138.97,10205.3,9732.69,5533.19,25471.18,92610.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,28826,77071.03,19042.41,0.0,96113.44,15884.7,12424.5,7834.09,36143.29,132256.73 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,25588,67911.02,5429.72,3435.11,76775.85,14482.88,12424.5,6082.16,32989.54,109765.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,12953,86676.21,0.0,0.0,86676.21,17861.33,12424.5,6871.0,37156.83,123833.04 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,42496,153555.04,0.0,5555.0,159110.04,31052.89,10174.94,10376.69,51604.52,210714.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31356,127802.03,137.67,9751.78,137691.48,19389.54,12376.71,6946.85,38713.1,176404.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,11093,112359.01,0.0,4018.5,116377.51,23506.0,11946.63,9532.55,44985.18,161362.69 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,45246,101770.03,0.0,0.0,101770.03,20975.25,12424.51,7987.08,41386.84,143156.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,46494,85903.06,0.0,0.0,85903.06,15967.2,6690.13,9707.85,32365.18,118268.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3805,97670.74,3293.38,9707.99,110672.11,26123.65,12412.56,1819.93,40356.14,151028.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,30394,190987.68,0.0,0.0,190987.68,38594.42,12424.5,26010.7,77029.62,268017.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38630,8045.35,0.0,75.05,8120.4,0.0,0.0,642.65,642.65,8763.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,13162,26829.69,0.0,1133.44,27963.13,6741.03,6628.65,2305.47,15675.15,43638.28 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,37959,0.0,0.0,1431.0,1431.0,0.0,0.0,109.47,109.47,1540.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22071,49538.5,6800.6,10056.42,66395.52,12743.43,6307.82,1121.86,20173.11,86568.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20649,56531.0,0.0,6127.89,62658.89,12416.6,12424.5,5127.77,29968.87,92627.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1730,83472.99,0.0,18179.86,101652.85,17278.84,7169.41,3623.25,28071.5,129724.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20330,37618.86,0.0,7341.51,44960.37,815.45,2938.46,852.23,4606.14,49566.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,45082,57363.97,0.0,0.0,57363.97,12722.57,11931.34,4368.04,29021.95,86385.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,11929,56531.0,0.0,5109.48,61640.48,12259.73,12424.5,5047.25,29731.48,91371.96 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,7177,64511.04,1561.11,668.22,66740.37,13424.78,12424.5,5526.6,31375.88,98116.25 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,41044,87408.13,0.0,0.0,87408.13,19949.62,12424.5,1455.03,33829.15,121237.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,40824,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,259,98669.11,0.0,0.0,98669.11,20302.02,12424.5,7889.2,40615.72,139284.83 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,1027,15961.63,0.0,0.0,15961.63,3464.1,0.0,1261.16,4725.26,20686.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,25765,31007.59,933.3,3459.17,35400.06,7313.62,7071.4,2801.9,17186.92,52586.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,22084,41881.0,0.0,0.0,41881.0,8072.16,7072.39,3353.32,18497.87,60378.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,8867,129895.05,0.0,0.0,129895.05,26141.52,12424.5,10015.15,48581.17,178476.22 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4949,19631.41,0.0,227.15,19858.56,0.0,2006.55,1539.04,3545.59,23404.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28342,101384.59,29792.33,15563.54,146740.46,23458.86,14986.45,2450.94,40896.25,187636.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,7253,49104.03,0.0,863.55,49967.58,11772.54,12422.77,4060.56,28255.87,78223.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,15027,114469.55,10937.5,3491.77,128898.82,22652.04,12141.61,2051.6,36845.25,165744.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,26137,47699.61,12286.33,4970.47,64956.41,9920.08,8840.51,1631.98,20392.57,85348.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15886,5461.94,0.0,43.96,5505.9,0.0,2340.05,444.58,2784.63,8290.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,49307,7470.0,6693.7,2398.2,16561.9,1929.71,1433.6,1330.09,4693.4,21255.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,42809,62687.1,104.86,2332.8,65124.76,13349.59,12400.61,5120.64,30870.84,95995.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25156,68578.89,16614.24,2391.81,87584.94,19456.2,13513.08,6792.87,39762.15,127347.09 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,48309,127637.35,0.0,0.0,127637.35,25674.52,12350.97,9881.96,47907.45,175544.8 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,27808,112209.01,0.0,0.0,112209.01,22582.31,12424.5,8836.56,43843.37,156052.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5803,3198.35,0.0,54.72,3253.07,0.0,1033.38,252.5,1285.88,4538.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24466,22047.2,0.0,0.0,22047.2,0.0,5925.53,1709.47,7635.0,29682.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,31318,90873.2,48270.51,6974.19,146117.9,19436.82,12274.64,10183.07,41894.53,188012.43 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2558,Senior Physical Therapist,38915,126490.05,0.0,0.0,126490.05,25456.42,12424.5,9872.9,47753.82,174243.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15948,56531.0,0.0,5882.38,62413.38,12372.42,12424.5,5096.96,29893.88,92307.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,9059,7497.0,78.09,0.0,7575.09,1395.18,1433.59,583.14,3411.91,10987.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,50666,80846.87,18136.85,25169.95,124153.67,21041.94,12376.72,9722.93,43141.59,167295.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,42523,92282.01,0.0,0.0,92282.01,19019.5,12424.5,7474.13,38918.13,131200.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25136,80953.8,11261.43,5646.04,97861.27,16693.26,12424.5,1630.17,30747.93,128609.2 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,50677,4831.2,0.0,93.46,4924.66,0.0,0.0,389.05,389.05,5313.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,49277,64414.03,0.0,707.63,65121.66,13321.74,11468.77,5347.58,30138.09,95259.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1106,910.4,0.0,29.02,939.42,0.0,382.3,72.92,455.22,1394.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47018,2637.91,0.0,0.0,2637.91,0.0,1143.89,204.22,1348.11,3986.02 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,37031,26058.0,0.0,0.0,26058.0,5717.1,2867.19,2142.01,10726.3,36784.3 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,38440,76534.4,0.0,0.0,76534.4,11366.88,0.0,9803.77,21170.65,97705.05 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,436,8150.0,0.0,0.0,8150.0,1828.04,955.73,681.25,3465.02,11615.02 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,44598,86850.03,0.0,2200.0,89050.03,18327.91,12424.5,7303.53,38055.94,127105.97 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,26983,143188.02,0.0,0.0,143188.02,28816.76,12424.5,10220.68,51461.94,194649.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,1771,14393.05,1166.34,397.05,15956.44,3228.35,2598.39,1373.35,7200.09,23156.53 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,25454,66061.08,0.0,0.0,66061.08,13380.54,10381.63,5138.63,28900.8,94961.88 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,36280,88615.23,0.0,0.0,88615.23,18237.7,12424.5,6921.98,37584.18,126199.41 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,38176,67261.04,1591.08,1969.29,70821.41,13862.82,12424.5,5850.26,32137.58,102958.99 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,2745,180520.0,0.0,33990.32,214510.32,39962.93,12424.5,11393.3,63780.73,278291.05 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,31507,20020.95,0.0,0.0,20020.95,3688.01,0.0,5509.59,9197.6,29218.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,41816,88831.0,12787.27,6016.47,107634.74,19129.7,12424.5,8685.98,40240.18,147874.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7249,Automotive Mechanic Sprv 1,6240,5769.41,2132.62,21991.98,29894.01,1605.18,669.02,2339.51,4613.71,34507.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50366,56531.0,0.0,2930.55,59461.55,11796.81,12424.5,4681.66,28902.97,88364.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,8894,101.14,0.0,81.93,183.07,22.69,20.13,14.11,56.93,240.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,7115,62544.0,5291.43,3847.72,71683.15,13503.12,5734.38,1209.94,20447.44,92130.59 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8165,Worker's Comp Supervisor 1,23080,99095.72,0.0,0.0,99095.72,20393.47,12424.5,8166.13,40984.1,140079.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,24044,61136.53,0.0,495.0,61631.53,12703.46,9855.97,5111.46,27670.89,89302.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,716,41836.31,0.0,0.0,41836.31,7991.09,6260.03,3355.96,17607.08,59443.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2900,Human Services,2966,Welfare Fraud Investigator,49760,11693.88,0.0,2873.61,14567.49,2622.93,1541.12,1184.98,5349.03,19916.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,23276,130833.54,85509.47,16354.16,232697.17,28980.26,15196.12,3913.52,48089.9,280787.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,14342,15481.78,0.0,0.0,15481.78,0.0,3416.73,1201.21,4617.94,20099.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,10884,69751.28,4423.9,909.09,75084.27,15090.72,8974.61,6225.09,30290.42,105374.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",45493,1107.6,0.0,0.0,1107.6,0.0,143.35,85.87,229.22,1336.82 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",37786,112273.99,0.0,0.0,112273.99,22580.79,12424.5,16554.58,51559.87,163833.86 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,53025,41813.48,985.85,1727.6,44526.93,10126.46,10190.48,3568.45,23885.39,68412.32 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,24181,79735.0,5819.24,2154.3,87708.54,16993.63,11674.02,7229.03,35896.68,123605.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,33317,54124.0,16114.48,4496.09,74734.57,12909.74,12424.5,6066.41,31400.65,106135.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,37674,48281.3,1200.2,2414.13,51895.63,11750.27,12424.5,3914.02,28088.79,79984.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43730,91749.85,3158.28,2471.15,97379.28,19080.23,9557.3,1647.18,30284.71,127663.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51444,5785.51,0.0,0.0,5785.51,0.0,2508.8,462.85,2971.65,8757.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42297,9266.09,0.0,274.87,9540.96,0.0,3982.35,760.76,4743.11,14284.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,11649,58782.0,28.09,0.0,58810.09,12115.29,12424.5,4444.19,28983.98,87794.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12472,98802.65,5277.99,3743.92,107824.56,20530.8,12424.5,1751.58,34706.88,142531.44 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,46130,108378.88,38453.94,20225.98,167058.8,31282.35,12424.5,2834.23,46541.08,213599.88 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",28270,1146.0,0.0,111.74,1257.74,0.0,238.93,97.37,336.3,1594.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16131,70245.0,8404.8,5614.35,84264.15,14925.62,12424.5,6663.64,34013.76,118277.91 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,9066,80284.56,0.0,7077.46,87362.02,17947.95,12290.1,6833.18,37071.23,124433.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22003,55247.9,11193.63,2296.08,68737.61,12741.27,12288.61,5270.61,30300.49,99038.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,13020,82389.55,0.0,1745.0,84134.55,17351.51,12424.51,6839.1,36615.12,120749.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51625,120828.43,47303.75,20320.78,188452.96,27461.69,14969.15,3169.95,45600.79,234053.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,2277,151230.89,0.0,0.0,151230.89,30435.37,12424.5,17635.25,60495.12,211726.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,535,5716.63,0.0,814.1,6530.73,1474.89,2478.93,519.81,4473.63,11004.36 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,28991,0.0,0.0,2528.26,2528.26,0.0,68.5,193.41,261.91,2790.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,30689,77071.04,3010.74,1420.0,81501.78,16173.46,12424.5,6015.86,34613.82,116115.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,15396,56120.0,0.0,200.0,56320.0,12556.79,12424.5,4189.47,29170.76,85490.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21900,1071.88,0.0,21.32,1093.2,0.0,522.66,84.84,607.5,1700.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,32025,67361.36,2897.03,4569.91,74828.3,14235.32,12235.86,6044.16,32515.34,107343.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7337,Main Machinist Asst Sprv,41763,96893.07,8509.34,600.0,106002.41,20081.41,12424.51,9306.21,41812.13,147814.54 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,29401,112209.02,0.0,33528.24,145737.26,22582.31,12424.5,10224.02,45230.83,190968.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,53027,30048.0,0.0,0.0,30048.0,5447.71,4587.51,2317.8,12353.02,42401.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8912,17850.0,0.0,0.0,17850.0,263.88,7108.24,1384.82,8756.94,26606.94 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,472C,Fiscal Technician,32215,73793.54,0.0,3618.82,77412.36,15357.05,12321.22,6357.13,34035.4,111447.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41066,45494.17,589.03,1280.16,47363.36,13368.76,9017.86,3452.59,25839.21,73202.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,18810,102019.09,0.0,0.0,102019.09,21026.3,12424.5,8414.93,41865.73,143884.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,4104,81542.0,0.0,0.0,81542.0,16806.13,12424.5,6645.07,35875.7,117417.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,37670,38716.26,0.0,0.0,38716.26,7663.74,8485.1,2889.36,19038.2,57754.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,45305,96254.07,0.0,0.0,96254.07,19838.23,12424.52,7708.61,39971.36,136225.43 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2551,Mental Hlth Treatment Spec,10172,93737.22,0.0,3506.25,97243.47,19336.04,12138.32,7937.82,39412.18,136655.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,49560,59336.46,9399.53,1500.0,70235.99,13554.24,12424.5,5595.3,31574.04,101810.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,53168,63887.0,8180.28,798.21,72865.49,13341.33,12424.5,5979.19,31745.02,104610.51 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,32789,65774.01,0.0,0.0,65774.01,13556.27,12424.5,5368.02,31348.79,97122.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25544,56531.0,0.0,4274.85,60805.85,12384.11,12424.5,4981.15,29789.76,90595.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,5986,26786.54,0.0,0.0,26786.54,5997.47,4915.44,2314.59,13227.5,40014.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,19714,58101.0,0.0,0.0,58101.0,11974.94,12424.5,4525.47,28924.91,87025.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,47948,136466.0,10853.2,8283.66,155602.86,35199.38,12424.5,2609.1,50232.98,205835.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,35072,29600.0,2761.04,744.27,33105.31,5647.08,4778.67,2665.21,13090.96,46196.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37751,93449.59,60.95,18856.48,112367.02,0.0,0.0,3767.38,3767.38,116134.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,26567,95207.03,20545.09,0.0,115752.12,19606.03,12424.5,9190.2,41220.73,156972.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,42768,158362.37,3376.42,5518.79,167257.58,31276.33,12424.5,2804.35,46505.18,213762.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,40216,1271.0,0.0,0.0,1271.0,0.0,489.79,98.4,588.19,1859.19 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,22473,28379.43,0.0,0.0,28379.43,6456.44,7345.69,2186.67,15988.8,44368.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,50920,67261.03,0.0,0.0,67261.03,13862.82,12424.5,5574.01,31861.33,99122.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",5200,Professional Engineering,5264,Airport Noise Abatement Spec,49533,46980.02,0.0,0.0,46980.02,10382.12,7167.99,3821.58,21371.69,68351.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,52370,8130.74,0.0,22.48,8153.22,0.0,2688.0,632.47,3320.47,11473.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,22988,100761.0,4272.98,12821.37,117855.35,22929.3,12424.47,9633.61,44987.38,162842.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9122,Transit Information Clerk,18215,20832.0,0.0,0.0,20832.0,3676.22,4539.72,1577.11,9793.05,30625.05 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,13224,47397.03,0.0,11156.92,58553.95,10398.89,5017.58,4703.81,20120.28,78674.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,19884,28461.32,5003.51,1103.6,34568.43,6461.62,6404.29,2714.5,15580.41,50148.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51901,55283.19,7850.38,2086.56,65220.13,14906.47,12480.42,4657.58,32044.47,97264.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,15002,87531.01,0.0,0.0,87531.01,18040.63,12424.5,7009.38,37474.51,125005.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,33466,9714.52,12.34,220.0,9946.86,2184.58,2328.1,774.42,5287.1,15233.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6695,57027.18,726.04,5873.26,63626.48,753.14,0.0,6896.35,7649.49,71275.97 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,16530,93681.03,0.0,1936.67,95617.7,19704.35,12424.5,7873.12,40001.97,135619.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,43081,49.4,0.0,0.0,49.4,0.0,16.42,3.82,20.24,69.64 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8316,Assistant Counselor,30796,60533.11,15689.35,11312.54,87535.0,16390.99,12328.92,455.66,29175.57,116710.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,18104,89210.1,0.0,0.0,89210.1,18396.33,12376.71,7391.43,38164.47,127374.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,43225,138635.93,20659.41,9508.45,168803.79,27392.94,12424.5,2822.84,42640.28,211444.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6246,Senior Plumbing Inspector,47110,124338.06,0.0,6809.12,131147.18,26381.93,12424.5,9925.28,48731.71,179878.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49765,11607.76,0.0,3099.31,14707.07,2980.86,0.0,4367.32,7348.18,22055.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,52598,56120.0,6365.07,0.0,62485.07,12556.8,12424.5,4941.23,29922.53,92407.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,20488,81942.02,19843.05,20203.05,121988.12,20273.71,12424.5,9672.36,42370.57,164358.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",18578,24295.0,0.0,0.0,24295.0,5330.3,2389.33,3110.0,10829.63,35124.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5739,47694.4,3068.0,1733.55,52495.95,9564.32,8840.51,1539.27,19944.1,72440.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,580,100761.0,3629.79,1040.0,105430.79,20979.66,12424.51,8307.64,41711.81,147142.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23167,67488.32,17358.4,1995.27,86841.99,15807.35,13297.61,6561.61,35666.57,122508.56 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,30835,18638.45,317.25,0.0,18955.7,4180.58,4211.19,1334.22,9725.99,28681.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,32409,84644.0,24796.12,14320.63,123760.75,19395.93,12424.52,9767.37,41587.82,165348.57 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1216,5594.5,0.0,0.0,5594.5,1443.38,1385.81,462.55,3291.74,8886.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,52812,82509.01,11219.03,4905.52,98633.56,17602.36,12424.58,7826.46,37853.4,136486.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,33095,12225.0,0.0,0.0,12225.0,2742.06,1433.6,989.17,5164.83,17389.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,13721,42364.98,91.61,0.0,42456.59,9946.74,9548.17,3472.19,22967.1,65423.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),37998,184289.03,0.0,5185.78,189474.81,38130.64,12424.5,10931.12,61486.26,250961.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15739,119450.15,9684.89,8832.12,137967.16,23683.74,12424.5,2277.66,38385.9,176353.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,41415,102019.02,0.0,0.0,102019.02,21026.28,12424.5,8331.69,41782.47,143801.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,46170,57781.04,0.0,0.0,57781.04,10475.7,5256.52,4403.73,20135.95,77916.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,20992,31307.25,3004.81,18769.38,53081.44,5553.57,2389.34,860.26,8803.17,61884.61 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,21490,103436.8,0.0,0.0,103436.8,23604.2,12424.5,1756.55,37785.25,141222.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,36420,60272.25,410.84,2814.15,63497.24,12988.22,11322.06,5077.91,29388.19,92885.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,10078,84599.0,24793.32,4093.61,113485.93,18162.5,12424.5,9259.22,39846.22,153332.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27459,91747.62,1557.67,6820.16,100125.45,18716.99,9557.3,1660.29,29934.58,130060.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,52787,98227.08,288.83,3562.36,102078.27,20334.52,12110.02,8386.06,40830.6,142908.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,3583,78963.1,0.0,1257.97,80221.07,16533.43,12424.5,6649.5,35607.43,115828.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,32067,80953.79,6658.79,8124.7,95737.28,16760.25,12424.5,1784.58,30969.33,126706.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7149,113233.59,28941.9,19102.27,161277.76,25036.02,15196.12,2737.82,42969.96,204247.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,10347,0.0,0.0,2166.19,2166.19,0.0,0.0,165.71,165.71,2331.9 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,39019,61735.0,431.05,624.0,62790.05,12852.62,12424.5,5194.17,30471.29,93261.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19410,47003.2,8269.55,2093.35,57366.1,11252.63,12424.5,4490.81,28167.94,85534.04 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,22109,112776.01,5016.4,0.0,117792.41,22696.42,12424.5,9689.75,44810.67,162603.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,1177,197955.26,0.0,0.0,197955.26,39798.79,12424.5,19477.83,71701.12,269656.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2115,117124.05,2970.86,10401.32,130496.23,23225.7,12424.5,2222.67,37872.87,168369.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38017,11281.75,0.0,0.0,11281.75,0.0,4892.15,903.31,5795.46,17077.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,31375,64455.41,756.18,0.0,65211.59,13085.05,10608.62,5156.7,28850.37,94061.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,47312,3734.89,0.0,30.86,3765.75,0.0,1149.86,291.98,1441.84,5207.59 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,6457,23762.47,0.0,720.02,24482.49,5860.46,6883.48,1977.28,14721.22,39203.71 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,26857,85480.93,7312.55,5779.42,98572.9,18237.59,11331.38,7907.6,37476.57,136049.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",21359,1091.5,0.0,13.1,1104.6,0.0,238.93,85.74,324.67,1429.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,6087,75605.0,7505.7,12126.02,95236.72,17050.33,12424.5,7808.75,37283.58,132520.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,40474,42310.6,0.0,0.0,42310.6,7874.03,5710.49,3379.49,16964.01,59274.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,1522,16004.5,257.1,1193.3,17454.9,3644.66,2974.72,1479.57,8098.95,25553.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,27268,46838.35,0.0,0.0,46838.35,6224.2,10489.14,3776.61,20489.95,67328.3 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,311.0,Municipal Attorneys' Association,8100,Legal & Court,8190,"Attorney, Tax Collector",24727,170837.03,0.0,1500.0,172337.03,34623.27,12424.73,10458.46,57506.46,229843.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21436,74926.14,33619.66,7514.36,116060.16,16412.09,15052.76,1890.01,33354.86,149415.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,5131,70456.06,1744.53,0.0,72200.59,14512.61,12275.59,5819.15,32607.35,104807.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,11612,75927.02,22484.73,0.0,98411.75,15648.74,12424.5,8024.51,36097.75,134509.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,23223,11812.2,0.0,0.0,11812.2,0.0,2243.7,915.59,3159.29,14971.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29525,41714.2,6642.72,2111.2,50468.12,9769.34,11277.62,4037.77,25084.73,75552.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,21455,67485.98,0.0,695.6,68181.58,14016.95,9867.93,4991.06,28875.94,97057.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16705,16301.24,0.0,5389.27,21690.51,3576.49,1408.38,1751.94,6736.81,28427.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16422,8689.46,0.0,1434.68,10124.14,0.0,651.09,170.03,821.12,10945.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52463,53288.69,21.22,5438.57,58748.48,11596.12,11707.53,4570.96,27874.61,86623.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,12790,125125.4,0.0,7507.52,132632.92,25961.5,11933.26,2258.7,40153.46,172786.38 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,24497,49234.63,7491.24,2038.22,58764.09,10062.13,9686.75,4819.14,24568.02,83332.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39608,89.5,0.0,0.0,89.5,0.0,29.87,6.93,36.8,126.3 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,35118,9168.35,0.0,689.23,9857.58,2167.68,2425.17,777.02,5369.87,15227.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,17373,57863.6,0.0,645.98,58509.58,12060.35,11612.13,4748.84,28421.32,86930.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",38733,68357.7,0.0,9959.4,78317.1,14756.16,7215.77,11055.12,33027.05,111344.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,2570,0.0,0.0,600.0,600.0,111.66,0.0,233.18,344.84,944.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26383,43493.75,0.0,965.26,44459.01,0.0,0.0,5650.74,5650.74,50109.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15157,27408.65,0.0,1662.73,29071.38,0.0,2126.5,2255.42,4381.92,33453.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7365,Senior Power House Operator,43486,91778.0,10463.67,3154.65,105396.32,18960.91,12424.5,8994.36,40379.77,145776.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1191,69976.5,10618.51,4962.26,85557.27,14556.04,12376.71,6766.19,33698.94,119256.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,44298,23032.15,0.0,0.0,23032.15,5258.71,7544.3,1870.33,14673.34,37705.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,47278,63887.02,0.0,861.3,64748.32,13342.0,12424.51,5325.18,31091.69,95840.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41720,68061.36,27102.68,4753.8,99917.84,20011.86,13414.82,7605.18,41031.86,140949.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,6886,138101.05,0.0,0.0,138101.05,27773.39,12424.5,17395.12,57593.01,195694.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,29023,17760.0,20179.61,4792.37,42731.98,3821.69,1911.46,758.66,6491.81,49223.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,35349,2973.39,0.0,10.21,2983.6,0.0,1390.27,231.4,1621.67,4605.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,37566,105612.8,209.95,11585.4,117408.15,23698.54,12143.76,9381.01,45223.31,162631.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12450,12207.0,0.0,0.0,12207.0,2213.13,1863.67,941.94,5018.74,17225.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1171,8574.3,0.0,0.0,8574.3,0.0,3655.68,689.61,4345.29,12919.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,37036,82262.05,0.0,0.0,82262.05,16943.83,12235.02,6580.83,35759.68,118021.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49387,50303.06,87.45,43774.45,94164.96,11085.36,5256.52,1477.08,17818.96,111983.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,26332,74334.02,0.0,1019.59,75353.61,15502.76,12424.5,6127.13,34054.39,109408.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,24238,129154.54,3496.23,4456.19,137106.96,26810.73,9294.49,9986.47,46091.69,183198.65 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),19186,162470.02,0.0,1562.5,164032.52,33446.8,10990.9,10537.01,54974.71,219007.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32474,9223.48,0.0,922.35,10145.83,0.0,2491.05,786.49,3277.54,13423.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51928,56839.0,10469.67,1037.19,68345.86,15013.73,13022.31,4998.67,33034.71,101380.57 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8602,Emergency Services Coord II,2543,87938.81,0.0,1592.82,89531.63,18097.86,12424.51,7199.44,37721.81,127253.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,20844,28617.75,0.0,130.55,28748.3,7117.75,8655.33,2296.56,18069.64,46817.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15265,418.59,0.0,0.0,418.59,0.0,104.53,32.41,136.94,555.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,12278,51405.01,941.92,2333.46,54680.39,12453.61,12424.5,4269.77,29147.88,83828.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23596,68694.56,28446.47,8223.6,105364.63,21094.98,13536.25,7993.76,42624.99,147989.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),19338,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10993.1,60806.43,246595.43 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,206C,Court Interpreter Supervisor,16018,24408.3,0.0,14567.72,38976.02,4901.36,2819.4,7660.09,15380.85,54356.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,21164,71190.4,0.0,256.0,71446.4,14567.92,11086.51,5490.94,31145.37,102591.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27723,7906.85,0.0,0.0,7906.85,0.0,3428.69,634.56,4063.25,11970.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,23601,26640.0,1098.9,3189.4,30928.3,5278.58,4300.79,2447.0,12026.37,42954.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,22509,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5271.36,30548.48,92907.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,8736,96930.53,8268.36,11644.67,116843.56,25690.29,12320.33,2047.89,40058.51,156902.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,34370,7159.2,0.0,0.0,7159.2,1332.33,1146.88,555.66,3034.87,10194.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,28302,8151.0,0.0,241.31,8392.31,1516.89,1815.89,666.8,3999.58,12391.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,8806,63411.5,0.0,40.46,63451.96,13512.95,9263.72,5289.52,28066.19,91518.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",19128,150219.96,27862.36,21349.17,199431.49,33789.74,15196.12,3358.03,52343.89,251775.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,22987,60872.81,310.48,1490.16,62673.45,12764.09,12038.75,5153.18,29956.02,92629.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,29955,79952.25,5823.42,7866.81,93642.48,17367.93,12418.53,1596.06,31382.52,125025.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3714,56734.03,5557.89,3598.68,65890.6,15675.8,12964.79,5018.36,33658.95,99549.55 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,9983,45722.88,8515.63,500.0,54738.51,11058.22,12374.09,4252.42,27684.73,82423.24 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,49216,42594.59,0.0,0.0,42594.59,0.0,0.0,3369.27,3369.27,45963.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,20365,49803.25,6711.6,8361.67,64876.52,11106.48,9558.76,5874.29,26539.53,91416.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,29253,6181.29,0.0,73.69,6254.98,0.0,1236.48,485.48,1721.96,7976.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,34688,58101.05,0.0,0.0,58101.05,11974.94,12424.5,4762.0,29161.44,87262.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46594,123536.78,963.74,2738.72,127239.24,0.0,9426.44,9477.75,18904.19,146143.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21837,15869.22,3457.93,823.32,20150.47,4903.97,3155.88,1554.36,9614.21,29764.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2896,112159.76,1707.41,18032.04,131899.21,24704.16,15052.76,2235.79,41992.71,173891.92 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,52513,84343.63,8569.24,10809.52,103722.39,18658.36,12328.92,8332.67,39319.95,143042.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,46352,43560.8,2870.42,1841.21,48272.43,11010.38,10895.32,3904.84,25810.54,74082.97 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,7703,59603.8,634.4,6428.08,66666.28,13101.24,10895.34,5495.68,29492.26,96158.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",11923,130971.01,36529.6,19489.4,186990.01,27948.43,13045.73,3186.51,44180.67,231170.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30350,23879.67,0.0,0.0,23879.67,5251.14,5668.68,1938.14,12857.96,36737.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,7676,200107.11,870.41,867.92,201845.44,39478.37,12424.5,3367.78,55270.65,257116.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",40889,131577.08,50534.54,16493.76,198605.38,28954.02,15196.12,3418.01,47568.15,246173.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18574,5717.6,0.0,57.96,5775.56,0.0,2479.34,469.55,2948.89,8724.45 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,4391,9463.59,0.0,6381.6,15845.19,0.0,0.0,229.76,229.76,16074.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,6605,1760.33,0.0,123.57,1883.9,0.0,585.38,146.07,731.45,2615.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17492,119455.23,0.0,6473.53,125928.76,23664.87,12424.5,1383.77,37473.14,163401.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14817,7779.68,0.0,0.0,7779.68,0.0,3315.2,626.72,3941.92,11721.6 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,48813,75294.43,0.0,1200.0,76494.43,15759.41,12424.5,6698.2,34882.11,111376.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12320,64134.67,0.0,250.0,64384.67,12550.62,5636.72,5406.6,23593.94,87978.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,38795,53312.4,0.0,605.98,53918.38,12086.82,12065.81,4465.87,28618.5,82536.88 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,19445,143188.0,0.0,0.0,143188.0,28816.76,12424.5,10071.14,51312.4,194500.4 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2464,Senior Microbiologist,38452,89976.05,0.0,0.0,89976.05,18408.96,11468.78,7143.41,37021.15,126997.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,30880,82977.29,3150.91,402.0,86530.2,17114.33,11892.82,7001.14,36008.29,122538.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,52392,84791.01,364.61,369.48,85525.1,17558.66,12424.52,7023.36,37006.54,122531.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50167,122054.74,0.0,2651.08,124705.82,25029.68,12370.74,9760.9,47161.32,171867.14 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,5273,16937.5,74.52,0.0,17012.02,0.0,4061.86,1371.16,5433.02,22445.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20691,32076.27,3298.17,603.44,35977.88,8089.12,6257.7,2773.69,17120.51,53098.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,17088,2074.0,0.0,43.2,2117.2,394.01,477.86,164.33,1036.2,3153.4 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0884,Mayoral Staff IV,12636,12908.01,0.0,0.0,12908.01,3330.25,3345.06,2942.58,9617.89,22525.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,5402,77071.0,0.0,1856.8,78927.8,16260.1,12424.5,6444.9,35129.5,114057.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44954,10261.31,0.0,209.67,10470.98,0.0,0.0,1072.58,1072.58,11543.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,45789,56463.5,14998.6,8258.06,79720.16,13724.08,12424.5,6376.44,32525.02,112245.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",22672,98481.61,3030.9,0.0,101512.51,20383.77,12424.51,8382.02,41190.3,142702.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,40327,73406.01,2959.8,1140.0,77505.81,15364.61,12424.5,6161.1,33950.21,111456.02 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,26795,101142.92,0.0,0.0,101142.92,20838.97,12376.73,8186.7,41402.4,142545.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22558,49784.0,0.0,551.37,50335.37,10508.77,10978.31,4139.32,25626.4,75961.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45477,16777.31,0.0,42.32,16819.63,409.7,7212.78,1344.1,8966.58,25786.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,40691,55828.31,372.26,7077.98,63278.55,13743.73,12418.53,4967.43,31129.69,94408.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16999,62311.77,44704.94,5739.36,112756.07,18526.99,12271.29,9227.02,40025.3,152781.37 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1650,Accountant I,14025,0.0,0.0,183.75,183.75,0.0,68.5,14.42,82.92,266.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),17819,10833.75,216.68,634.69,11685.12,1922.59,896.0,200.18,3018.77,14703.89 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,19075,28171.15,0.0,3069.73,31240.88,6318.8,4569.6,2528.19,13416.59,44657.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27084,10951.13,0.0,1170.38,12121.51,1980.68,4748.79,967.54,7697.01,19818.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,30844,67130.67,0.0,60.42,67191.09,13627.73,8191.87,5334.88,27154.48,94345.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,14480,2809.18,1658.1,1949.08,6416.36,0.0,241.92,498.02,739.94,7156.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,31372,67349.5,0.0,0.0,67349.5,13851.41,11504.61,5559.88,30915.9,98265.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29723,35554.28,0.0,1636.65,37190.93,1490.88,0.0,1201.99,2692.87,39883.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33200,6594.56,0.0,337.0,6931.56,0.0,2172.79,538.0,2710.79,9642.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7200,Supervisory-Labor & Trade,7251,Track Maint Wrk Sprv 1,49307,63747.41,77739.14,10048.74,151535.29,14230.32,10990.91,9114.82,34336.05,185871.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6520,67288.12,11198.27,3764.14,82250.53,19385.82,13257.29,6297.09,38940.2,121190.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,28597,61735.03,0.0,2044.0,63779.03,13140.26,12424.5,5260.99,30825.75,94604.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,815,81776.01,117.83,624.0,82517.84,16983.28,12424.5,7424.15,36831.93,119349.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30747,66313.96,7929.08,1175.6,75418.64,15369.47,13065.79,5423.61,33858.87,109277.51 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3280,Assistant Recreation Director,44596,0.0,0.0,571.09,571.09,0.0,0.0,43.69,43.69,614.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19015,113223.0,39746.8,16397.82,169367.62,24518.21,15196.11,2840.97,42555.29,211922.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7228,Automotive Trnst Shop Sprv 1,5311,118936.01,29870.38,5102.74,153909.13,24044.71,12424.5,10397.98,46867.19,200776.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,7400,100761.01,3910.39,12657.55,117328.95,21880.83,12424.48,9394.83,43700.14,161029.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",28829,96792.03,0.0,0.0,96792.03,20115.2,11468.77,7667.17,39251.14,136043.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,42311,60507.74,1327.84,681.21,62516.79,12445.98,12424.51,5077.93,29948.42,92465.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,3818,116577.01,13649.38,2511.61,132738.0,23055.35,12364.77,2405.51,37825.63,170563.63 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,17223,88642.31,19340.7,4789.88,112772.89,19424.78,10501.1,9234.85,39160.73,151933.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38692,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18055,77071.01,16271.91,1395.0,94737.92,16174.72,12424.5,7790.56,36389.78,131127.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,26550,55553.54,398.0,1444.56,57396.1,13067.08,10616.2,4648.81,28332.09,85728.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16946,17613.04,3422.17,252.71,21287.92,4281.91,5439.48,1628.96,11350.35,32638.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15181,2070.25,0.0,0.0,2070.25,0.0,1009.5,160.54,1170.04,3240.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,18532,21395.02,0.0,15927.12,37322.14,4798.91,2628.26,2761.13,10188.3,47510.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1445,113233.6,87714.01,18098.82,219046.43,24937.48,15196.13,3681.74,43815.35,262861.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,29889,97664.51,0.0,0.0,97664.51,20054.72,11946.63,7853.98,39855.33,137519.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,45260,43145.0,0.0,0.0,43145.0,9214.0,9557.31,3470.5,22241.81,65386.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,21346,66276.0,1173.65,0.0,67449.65,14260.87,8601.58,5440.1,28302.55,95752.2 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,29780,77960.87,0.0,0.0,77960.87,16075.93,11595.71,6380.64,34052.28,112013.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,34781,21303.39,0.0,1046.05,22349.44,0.0,5011.61,1734.68,6746.29,29095.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7253,Electrical Trnst Mech Sprv 1,23690,54374.0,13045.84,22576.51,89996.35,11216.95,6212.25,5077.57,22506.77,112503.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,42121,38098.5,0.0,0.0,38098.5,8166.2,7884.78,3125.97,19176.95,57275.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,12092,52734.0,0.0,464.4,53198.4,11537.23,8123.69,4225.22,23886.14,77084.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,24154,51208.5,38.33,3931.39,55178.22,12560.51,12376.71,4504.69,29441.91,84620.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,21819,73570.0,0.0,0.0,73570.0,15139.14,9567.77,6039.21,30746.12,104316.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,35884,30618.93,469.6,0.0,31088.53,6316.18,6206.58,2516.22,15038.98,46127.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2020,67321.83,0.0,459.14,67780.97,14270.2,6956.47,350.81,21577.48,89358.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,37984,144733.65,1009.19,8362.95,154105.79,28652.12,12424.5,2615.18,43691.8,197797.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,1197,11777.63,9.95,1135.11,12922.69,2484.84,3643.72,1034.47,7163.03,20085.72 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8228,Museum Sec Supv,871,70245.0,26119.58,10555.21,106919.79,15783.25,12424.5,8678.0,36885.75,143805.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9133,5964.8,0.0,0.0,5964.8,0.0,1744.21,462.96,2207.17,8171.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39603,1424.8,0.0,53.43,1478.23,129.16,0.0,567.6,696.76,2174.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7472,Wire Rope Cable Maint Mechanic,46949,82964.58,38946.74,9742.21,131653.53,18787.7,11711.41,9815.92,40315.03,171968.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,2623,63571.4,0.0,0.0,63571.4,12663.19,8983.87,4695.17,26342.23,89913.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,46936,65774.11,2019.07,250.0,68043.18,13608.44,12424.48,5382.91,31415.83,99459.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,36084,117129.09,18082.25,19733.85,154945.19,23207.25,12424.5,2594.41,38226.16,193171.35 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,52646,11450.88,0.0,55.03,11505.91,0.0,0.0,910.2,910.2,12416.11 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,42770,2859.12,0.0,0.0,2859.12,372.55,946.17,221.35,1540.07,4399.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,1369,108038.0,31007.55,5740.63,144786.18,22521.29,12424.51,10176.42,45122.22,189908.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,35448,62753.6,0.0,735.21,63488.81,13063.57,12424.5,5161.5,30649.57,94138.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38705,97783.9,51420.92,14619.7,163824.52,26632.01,12424.5,2745.14,41801.65,205626.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,34314,20499.01,116.85,250.0,20865.86,4604.23,6212.25,1552.87,12369.35,33235.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17987,119463.9,6102.97,1651.46,127218.33,23780.31,12424.5,2165.53,38370.34,165588.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,46575,15097.6,54.15,0.0,15151.75,0.0,4979.36,1174.49,6153.85,21305.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,9111,47885.83,1231.86,2385.64,51503.33,9610.34,8864.4,1394.63,19869.37,71372.7 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,24234,67069.77,19532.73,8017.64,94620.14,15013.56,8932.86,8053.76,32000.18,126620.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,26754,112344.91,1950.3,2953.03,117248.24,22601.84,12376.71,9092.16,44070.71,161318.95 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",21359,3773.2,1182.71,79.0,5034.91,0.0,812.37,390.79,1203.16,6238.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,11535,62216.62,1135.5,709.5,64061.62,12816.25,12424.5,5204.28,30445.03,94506.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12404,6001.95,0.0,0.0,6001.95,0.0,1501.63,465.36,1966.99,7968.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,37307,7617.0,0.0,0.0,7617.0,1708.5,1433.6,618.86,3760.96,11377.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,4109,65774.0,3424.58,9524.25,78722.83,15521.68,12424.5,6227.94,34174.12,112896.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50325,47921.88,12756.01,7690.59,68368.48,13852.49,9530.13,5308.31,28690.93,97059.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19828,116963.22,1070.72,25527.44,143561.38,27290.77,11062.58,9932.7,48286.05,191847.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,45934,70245.0,18613.29,9798.67,98656.96,15637.37,12424.5,8049.15,36111.02,134767.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41154,33128.04,7387.34,162.34,40677.72,2176.78,8834.53,3181.93,14193.24,54870.96 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,35738,211.5,0.0,0.0,211.5,0.0,0.0,16.71,16.71,228.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48960,124598.16,4521.86,5799.38,134919.4,25132.19,12424.5,1477.69,39034.38,173953.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33946,62465.2,3619.16,4515.63,70599.99,13436.08,12424.5,5800.74,31661.32,102261.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7365,Senior Power House Operator,53217,34440.86,621.1,3444.08,38506.04,0.0,0.0,3045.83,3045.83,41551.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,13050,7813.3,0.0,122.43,7935.73,0.0,2580.47,615.45,3195.92,11131.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,13034,78925.38,1232.03,1262.85,81420.26,16596.61,11827.53,6672.28,35096.42,116516.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,6199,97051.75,0.0,2856.33,99908.08,20600.28,12376.71,8479.61,41456.6,141364.68 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,4023,21250.36,0.0,91.07,21341.43,0.0,0.0,1687.92,1687.92,23029.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,30113,58864.26,27715.14,12679.76,99259.16,17428.42,6690.12,1674.61,25793.15,125052.31 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,37409,72153.0,4554.97,10106.77,86814.74,16224.89,12424.51,6937.37,35586.77,122401.51 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,20619,78935.37,17297.58,6461.91,102694.86,16733.74,11531.91,8252.11,36517.76,139212.62 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8281,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1849.84,10263.62,34267.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,9197,82771.21,37146.64,7833.5,127751.35,17649.08,10560.83,9797.47,38007.38,165758.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,48129,61428.04,0.0,824.0,62252.04,12789.24,12424.5,5098.81,30312.55,92564.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,2980,84644.02,6082.41,5963.61,96690.04,18048.94,12424.5,7899.5,38372.94,135062.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,10662,133939.01,0.0,2250.17,136189.18,27347.43,12424.51,10047.4,49819.34,186008.52 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,34550,22141.32,0.0,0.0,22141.32,0.0,4963.82,1717.3,6681.12,28822.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,50182,37053.0,405.16,14745.21,52203.37,8385.29,6594.55,4226.63,19206.47,71409.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48472,1542.8,0.0,0.0,1542.8,0.0,669.02,119.26,788.28,2331.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,38821,45896.85,0.0,1006.58,46903.43,9647.3,10397.52,2426.4,22471.22,69374.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,12665,51739.82,9327.05,9681.57,70748.44,12517.5,11451.93,5441.59,29411.02,100159.46 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,32324,84573.8,0.0,0.0,84573.8,16617.35,9073.47,6662.71,32353.53,116927.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,49842,51405.0,315.72,3331.7,55052.42,12488.0,12424.5,4610.52,29523.02,84575.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,22185,54726.01,526.55,1930.75,57183.31,11481.88,10664.29,4768.39,26914.56,84097.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,22054,70245.0,46828.2,10078.85,127152.05,15679.84,12424.5,9789.45,37893.79,165045.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,52436,70975.53,0.0,5026.17,76001.7,14735.83,11850.7,6316.99,32903.52,108905.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,11139,70219.54,0.0,0.0,70219.54,14464.04,12182.17,5577.89,32224.1,102443.64 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,24909,10343.93,0.0,0.0,10343.93,0.0,3864.73,828.89,4693.62,15037.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26039,63457.8,1536.16,2077.93,67071.89,18126.02,12536.14,5117.8,35779.96,102851.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31569,6918.5,0.0,0.0,6918.5,421.14,3000.1,558.04,3979.28,10897.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,20226,23452.2,0.0,0.0,23452.2,0.0,2580.47,1815.68,4396.15,27848.35 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8604,Emergency Services Coord IV,33918,125815.06,0.0,1485.09,127300.15,25314.03,12424.5,9957.75,47696.28,174996.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16015,122883.81,741.9,30332.18,153957.89,27964.81,10900.11,4820.21,43685.13,197643.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,49040,74165.03,0.0,1174.35,75339.38,15536.22,12424.51,6104.67,34065.4,109404.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,16692,112776.01,0.0,6175.96,118951.97,23928.77,12424.5,9232.87,45586.14,164538.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8490,80321.91,237.97,2589.66,83149.54,0.0,6836.16,6442.61,13278.77,96428.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,9171,1083.51,0.0,20.78,1104.29,0.0,348.9,85.71,434.61,1538.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,7414,171323.13,0.0,0.0,171323.13,34437.4,12424.49,10621.0,57482.89,228806.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,12819,62953.42,0.0,0.0,62953.42,12949.79,12424.5,5121.01,30495.3,93448.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7287,Sprv Electronic Main Tech,43990,125074.01,9423.36,6386.86,140884.23,25177.74,12424.5,10104.36,47706.6,188590.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,18116,127697.12,0.0,22845.23,150542.35,26041.35,10990.91,16454.14,53486.4,204028.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",44274,149551.11,23052.72,8973.07,181576.9,31147.05,12424.5,3041.7,46613.25,228190.15 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,2918,24727.66,0.0,770.0,25497.66,6247.95,6809.58,2099.19,15156.72,40654.38 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8316,Assistant Counselor,3391,61007.0,8119.98,10587.57,79714.55,16323.51,12424.5,1588.57,30336.58,110051.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,28928,169820.6,0.0,1968.51,171789.11,34304.47,11612.13,10607.91,56524.51,228313.62 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,51598,76317.66,4932.51,4316.86,85567.03,16114.79,12303.24,7340.76,35758.79,121325.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5130,Sewage Treatment Plant Supt,35751,599.41,0.0,0.0,599.41,108.67,53.76,37.06,199.49,798.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,30261,57554.28,38009.25,6297.27,101860.8,12938.28,11443.86,8021.77,32403.91,134264.71 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,15725,86065.03,0.0,0.0,86065.03,17708.51,12424.5,6934.22,37067.23,123132.26 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,48231,73842.9,0.0,0.0,73842.9,15321.66,11468.77,6005.08,32795.51,106638.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,13176,58916.1,1086.88,1164.4,61167.38,12247.9,11914.73,5013.13,29175.76,90343.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49914,67008.37,11706.21,3947.0,82661.58,19373.08,13202.34,6318.91,38894.33,121555.91 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,49383,31735.74,0.0,0.0,31735.74,7380.72,8834.54,2349.0,18564.26,50300.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,45639,120111.05,0.0,0.0,120111.05,24172.55,12424.5,9808.99,46406.04,166517.09 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,35075,67846.13,935.39,6587.45,75368.97,14903.81,12412.56,6222.76,33539.13,108908.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,47531,118414.9,5504.96,5812.45,129732.31,24546.28,12424.5,9901.47,46872.25,176604.56 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,14978,82295.51,0.0,4450.0,86745.51,17387.82,6212.25,6742.69,30342.76,117088.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9236,Airport Ground Transport Tech,12329,33415.0,367.65,336.0,34118.65,6435.86,6690.12,2791.37,15917.35,50036.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,44100,71584.56,8585.34,1120.0,81289.9,14945.99,12424.5,6512.59,33883.08,115172.98 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,36195,152831.94,0.0,0.0,152831.94,30733.75,12424.5,17612.45,60770.7,213602.64 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,15885,94107.01,0.0,1761.2,95868.21,19395.81,12424.5,7880.42,39700.73,135568.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,41242,8860.0,565.78,890.4,10316.18,1948.31,2867.19,824.74,5640.24,15956.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,25603,14243.83,0.0,0.0,14243.83,0.0,1185.71,1104.24,2289.95,16533.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,31612,1442.01,0.0,0.0,1442.01,130.79,192.65,111.93,435.37,1877.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,27254,80357.0,328.22,2008.84,82694.06,16976.25,12424.5,6831.95,36232.7,118926.76 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,868,83694.0,0.0,0.0,83694.0,17249.65,12424.51,6484.83,36158.99,119852.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,47644,3231.56,0.0,0.0,3231.56,0.0,448.0,250.82,698.82,3930.38 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,11955,67649.38,9174.9,5818.77,82643.05,15158.49,12376.71,6752.84,34288.04,116931.09 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",26877,167059.0,0.0,1125.0,168184.0,33446.57,10990.9,9299.05,53736.52,221920.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,11398,85004.16,25342.12,6590.8,116937.08,18765.9,12424.5,9541.6,40732.0,157669.08 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,51654,54337.82,0.0,0.0,54337.82,9851.43,5017.58,7258.76,22127.77,76465.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,9282,199095.0,0.0,1024.1,200119.1,40208.39,12424.5,11155.92,63788.81,263907.91 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,32692,69098.3,0.0,0.0,69098.3,14229.66,12424.5,5269.36,31923.52,101021.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41952,76257.09,0.0,83.99,76341.08,0.0,6648.31,6118.43,12766.74,89107.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,28850,176257.09,0.0,0.0,176257.09,35471.94,12424.48,10767.74,58664.16,234921.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,14389,22227.71,562.11,355.48,23145.3,5826.47,5728.42,1871.08,13425.97,36571.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,50949,14638.83,0.0,122.63,14761.46,0.0,5307.29,1144.16,6451.45,21212.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,4789,97574.3,5581.89,6708.32,109864.51,25359.21,12400.61,1686.26,39446.08,149310.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,47288,66102.02,1871.56,190.0,68163.58,13659.46,12424.5,5321.46,31405.42,99569.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32898,4875.75,0.0,162.54,5038.29,0.0,0.0,137.54,137.54,5175.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,13417,72699.02,0.0,744.35,73443.37,15137.3,12424.5,6037.08,33598.88,107042.25 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34082,79420.78,3075.03,11092.64,93588.45,22184.54,10070.47,1560.84,33815.85,127404.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14543,437.54,0.0,1.97,439.51,0.0,106.02,34.11,140.13,579.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33521,26601.0,0.0,4433.56,31034.56,9857.86,1935.42,898.83,12692.11,43726.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48098,141065.05,0.0,250.0,141315.05,28467.89,11766.36,10125.23,50359.48,191674.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,33747,84735.8,0.0,0.0,84735.8,17452.8,12331.92,6660.02,36444.74,121180.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44336,42871.3,3358.27,1679.8,47909.37,11575.55,13186.58,3590.51,28352.64,76262.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",16855,94181.01,1276.46,0.0,95457.47,19408.12,12424.5,7825.25,39657.87,135115.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34798,42616.63,3804.58,1069.43,47490.64,11344.47,13109.88,3588.82,28043.17,75533.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41678,56531.0,4679.44,6877.69,68088.13,12290.19,12424.5,5602.53,30317.22,98405.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,52430,113369.05,37715.4,6330.27,157414.72,24154.37,12424.37,10393.15,46971.89,204386.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,22471,97669.08,630.11,0.0,98299.19,20130.42,12424.53,7862.62,40417.57,138716.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,17757,63010.44,443.03,8674.75,72128.22,14007.77,11146.21,5676.28,30830.26,102958.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,10487,85704.6,0.0,11949.91,97654.51,17872.85,9079.44,7566.1,34518.39,132172.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,6669,81942.01,4168.37,0.0,86110.38,16864.9,12424.5,7374.73,36664.13,122774.51 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,49863,84973.01,0.0,624.0,85597.01,17641.99,12424.5,6805.4,36871.89,122468.9 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,48749,87428.03,0.0,0.0,87428.03,18014.45,12383.89,6942.04,37340.38,124768.41 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,30107,8847.6,296.33,0.0,9143.93,0.0,2437.11,709.71,3146.82,12290.75 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,34738,68067.13,199.47,624.0,68890.6,14157.66,12424.5,5710.65,32292.81,101183.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,23680,11586.14,0.0,33.75,11619.89,2555.21,3864.73,931.8,7351.74,18971.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,25369,40816.4,1025.61,4544.22,46386.23,6739.64,6785.67,3653.54,17178.85,63565.08 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,7795,14709.57,0.0,0.0,14709.57,0.0,3352.52,1140.28,4492.8,19202.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,11275,70168.4,7655.82,10003.23,87827.45,15855.03,12411.06,7196.9,35462.99,123290.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,42114,58959.52,0.0,6142.15,65101.67,12640.21,8840.51,5261.56,26742.28,91843.95 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8564,"Counselor,Log Cabin Rnch SFERS",35814,47865.7,1352.2,6895.45,56113.35,10403.49,9732.03,1126.15,21261.67,77375.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7826,85384.33,0.0,2810.48,88194.81,0.0,6678.47,6836.23,13514.7,101709.51 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1867,Auditor I,15546,61177.57,0.0,3059.36,64236.93,12650.62,11803.27,5078.11,29532.0,93768.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29639,125679.24,0.0,14860.23,140539.47,25558.07,11129.49,8500.1,45187.66,185727.13 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,48169,85004.0,2008.09,722.66,87734.75,17667.23,12424.5,7164.1,37255.83,124990.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3213,56531.0,0.0,5942.26,62473.26,12801.2,12424.5,4906.22,30131.92,92605.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8545,56531.0,0.0,8814.67,65345.67,12734.7,12424.5,5340.25,30499.45,95845.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,538,32388.43,243.79,1313.1,33945.32,0.0,0.0,2684.68,2684.68,36630.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,31861,70967.46,0.0,0.0,70967.46,14658.12,12424.5,5841.14,32923.76,103891.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,6117,112776.03,0.0,5638.81,118414.84,23831.37,12424.5,9680.08,45935.95,164350.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,40059,45038.07,0.0,785.09,45823.16,10231.7,6690.11,3758.99,20680.8,66503.96 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,47069,72699.04,0.0,1155.64,73854.68,15199.94,12424.5,6121.4,33745.84,107600.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42921,118597.8,4240.55,11235.71,134074.06,23479.58,12334.91,2237.81,38052.3,172126.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29986,54177.54,4824.97,5755.73,64758.24,13900.22,12394.64,4955.84,31250.7,96008.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28705,63887.0,6137.37,923.28,70947.65,13359.3,12424.5,5844.35,31628.15,102575.8 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",19120,47274.38,1426.78,1419.75,50120.91,11285.85,0.0,831.74,12117.59,62238.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,44625,60366.81,1215.86,3371.07,64953.74,12864.4,11892.87,5035.86,29793.13,94746.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,11841,147377.67,5603.14,7947.16,160927.97,30323.42,7648.24,10317.44,48289.1,209217.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,35971,28903.96,0.0,567.03,29470.99,6444.29,6409.37,2312.24,15165.9,44636.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,23503,138637.96,5616.67,11123.53,155378.16,27385.65,12424.5,2601.64,42411.79,197789.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16828,62577.31,20022.23,550.04,83149.58,17304.99,12336.82,6277.43,35919.24,119068.82 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,10000,54313.45,2634.84,1915.85,58864.14,11445.65,9147.6,4878.5,25471.75,84335.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,23499,111225.97,0.0,0.0,111225.97,22639.31,12424.51,8925.32,43989.14,155215.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,13107,101733.01,10332.07,17535.94,129601.02,22605.08,12424.51,9890.1,44919.69,174520.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,24818,62811.0,50156.2,14933.7,127900.9,14930.79,12424.5,9779.3,37134.59,165035.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,24344,77207.6,1474.07,7959.95,86641.62,17434.84,11702.15,6946.09,36083.08,122724.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,6833,13045.42,0.0,553.2,13598.62,0.0,2862.23,1052.8,3915.03,17513.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,8698,52589.85,0.0,193.1,52782.95,10812.0,11462.79,4273.4,26548.19,79331.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,3740,41521.01,0.0,0.0,41521.01,7527.76,3822.92,2714.37,14065.05,55586.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,28289,47278.22,1964.32,900.0,50142.54,11543.96,12424.5,3967.16,27935.62,78078.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9073,126698.36,0.0,250.0,126948.36,19177.52,12395.11,9663.17,41235.8,168184.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,9798,48866.6,864.0,590.0,50320.6,9301.21,6212.23,3963.31,19476.75,69797.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16516,44251.07,3673.06,1352.01,49276.14,11816.31,13176.24,3736.59,28729.14,78005.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,35463,58097.01,213.75,612.0,58922.76,12079.48,12185.57,4887.79,29152.84,88075.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,19343,62187.03,2677.68,5139.84,70004.55,13165.07,12424.5,5724.56,31314.13,101318.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51981,3220.75,0.0,0.0,3220.75,0.0,1479.89,249.79,1729.68,4950.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11045,68039.35,11337.08,1854.71,81231.14,19155.97,13406.21,6213.44,38775.62,120006.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,6906,96254.03,0.0,0.0,96254.03,19838.21,12424.5,7654.9,39917.61,136171.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13726,39722.19,6466.97,3795.47,49984.63,12672.28,7899.47,3885.99,24457.74,74442.37 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,17303,27564.05,0.0,347.76,27911.81,6725.93,6809.58,2306.02,15841.53,43753.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,27393,100870.41,29979.41,13945.28,144795.1,22832.77,14909.4,2409.88,40152.05,184947.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5216,Chief Surveyor,48570,126490.0,0.0,0.0,126490.0,25456.42,12424.47,9940.49,47821.38,174311.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,39148,62238.7,0.0,800.0,63038.7,12891.3,11468.76,4854.98,29215.04,92253.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,26710,95558.09,0.0,0.0,95558.09,19695.14,12424.51,7922.93,40042.58,135600.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,13775,1939.76,2972.9,6170.34,11083.0,0.0,137.38,860.22,997.6,12080.6 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,52288,63879.0,0.0,0.0,63879.0,14382.19,10990.9,4933.56,30306.65,94185.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49775,114946.66,569.93,29552.89,145069.48,26799.98,10177.04,6487.28,43464.3,188533.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11001,64724.78,4480.26,1298.5,70503.54,18055.48,12754.05,5453.75,36263.28,106766.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,28840,46181.91,1599.42,0.0,47781.33,11076.67,12328.92,3881.32,27286.91,75068.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29496,8148.38,0.0,0.0,8148.38,0.0,2184.74,632.44,2817.18,10965.56 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,52896,54240.8,0.0,3824.77,58065.57,12806.96,11755.49,4668.32,29230.77,87296.34 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,17105,98157.01,0.0,0.0,98157.01,20230.58,12424.5,7717.25,40372.33,138529.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22486,123819.66,1645.6,27981.07,153446.33,28251.08,11038.69,5275.24,44565.01,198011.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39932,454.15,170.31,0.0,624.46,128.52,0.0,49.33,177.85,802.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,49275,133087.07,0.0,0.0,133087.07,26783.95,12424.5,10044.59,49253.04,182340.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,3448,102019.0,0.0,0.0,102019.0,21026.26,12424.5,8382.66,41833.42,143852.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38431,44096.57,0.0,1827.51,45924.08,11573.93,0.0,1098.44,12672.37,58596.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,46734,97174.01,69.64,1233.96,98477.61,20296.03,12424.5,7871.84,40592.37,139069.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8219,Parking Enforcement Admin,4694,95303.02,546.45,7680.99,103530.46,19649.33,12424.5,8478.47,40552.3,144082.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21543,4836.69,0.0,65.02,4901.71,212.55,0.0,1768.98,1981.53,6883.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25157,49277.3,0.0,0.0,49277.3,9606.99,7550.27,3758.34,20915.6,70192.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13711,113233.59,42105.13,17560.11,172898.83,25368.45,15196.11,2902.31,43466.87,216365.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,49237,86441.14,0.0,0.0,86441.14,18068.2,8992.89,7108.87,34169.96,120611.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52675,68284.76,13981.49,2342.88,84609.13,19364.18,13455.08,6570.28,39389.54,123998.67 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,22887,74412.02,0.0,4947.68,79359.7,15474.53,12424.5,6583.97,34483.0,113842.7 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),32015,13968.1,0.0,2527.86,16495.96,3146.87,1194.67,1353.95,5695.49,22191.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,24361,4202.25,0.0,0.0,4202.25,0.0,931.84,325.34,1257.18,5459.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,21723,53254.1,670.77,1170.0,55094.87,12977.17,12424.5,4200.91,29602.58,84697.45 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,25430,99654.03,0.0,0.0,99654.03,22731.77,12424.5,1684.31,36840.58,136494.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,49831,140294.91,15577.97,8220.02,164092.9,27742.26,12424.5,2797.95,42964.71,207057.61 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,20263,396.0,18.56,0.0,414.56,0.0,95.58,32.18,127.76,542.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,52601,71606.41,97.28,3972.34,75676.03,15368.49,10847.55,5973.7,32189.74,107865.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,30185,1511.25,0.0,50.84,1562.09,0.0,582.4,120.94,703.34,2265.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,1874,123246.43,0.0,19576.56,142822.99,24795.17,12424.49,10117.07,47336.73,190159.72 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,37206,110977.7,0.0,0.0,110977.7,22580.43,12424.5,23232.46,58237.39,169215.09 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,44575,67911.0,7563.39,11169.02,86643.41,15687.58,12424.5,7109.87,35221.95,121865.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,28955,93766.5,48165.25,11696.75,153628.5,21031.82,12663.43,10269.86,43965.11,197593.61 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3541,Curator 1,33953,21131.66,0.0,0.0,21131.66,0.0,4951.88,1569.76,6521.64,27653.3 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,23297,10046.46,0.0,0.0,10046.46,0.0,3712.42,779.46,4491.88,14538.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,37334,96653.0,0.0,0.0,96653.0,20178.46,9079.44,7962.12,37220.02,133873.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,16405,113369.01,24589.3,9536.8,147495.11,24072.83,12424.51,10250.77,46748.11,194243.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",19111,130329.3,136111.58,14269.32,280710.2,27864.67,15052.75,4789.19,47706.61,328416.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45826,114844.82,514.46,14568.19,129927.47,24172.23,11946.64,335.68,36454.55,166382.02 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,18267,97936.8,4102.95,0.0,102039.75,20154.75,12424.5,8250.57,40829.82,142869.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,1432,6147.8,337.61,506.43,6991.84,0.0,1409.71,541.3,1951.01,8942.85 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,6442,73509.38,0.0,5047.45,78556.83,15275.93,12273.79,6519.86,34069.58,112626.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,5558,169335.96,0.0,0.0,169335.96,34072.79,12424.5,17884.34,64381.63,233717.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28377,56531.01,0.0,1965.6,58496.61,11651.3,12424.5,4591.63,28667.43,87164.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19979,140196.82,6190.61,25290.75,171678.18,0.0,10455.52,10223.35,20678.87,192357.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",3813,98832.22,0.0,624.0,99456.22,20510.23,12424.5,8198.95,41133.68,140589.9 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,8360,104311.53,0.0,0.0,104311.53,21493.74,12424.5,8012.43,41930.67,146242.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8874,1774.35,0.0,53.83,1828.18,0.0,752.64,141.9,894.54,2722.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,51905,113339.75,54402.13,14897.06,182638.94,24692.55,12424.5,3045.43,40162.48,222801.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,4140,Real Property Manager,33264,105363.01,0.0,0.0,105363.01,21716.08,12424.5,8658.92,42799.5,148162.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26764,6466.38,0.0,42.95,6509.33,0.0,2157.88,504.72,2662.6,9171.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,23627,98157.01,0.0,0.0,98157.01,20230.58,12424.5,8017.84,40672.92,138829.93 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),15679,107836.8,0.0,1500.0,109336.8,22229.0,12424.5,8770.58,43424.08,152760.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,31847,83856.01,0.0,19753.33,103609.34,17938.79,7645.85,13037.98,38622.62,142231.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,42748,54168.03,9510.55,3394.95,67073.53,12353.02,6307.81,1132.36,19793.19,86866.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,3215,54661.41,0.0,0.0,54661.41,13086.42,12424.5,4394.26,29905.18,84566.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29196,4408.0,0.0,0.0,4408.0,0.0,1911.46,357.07,2268.53,6676.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,42030,138917.04,2433.97,1966.43,143317.44,27450.17,12424.5,513.65,40388.32,183705.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45320,132350.34,944.59,12285.07,145580.0,19643.63,11029.73,6187.51,36860.87,182440.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,45289,127968.0,325.58,10286.12,138579.7,27088.81,14310.16,1356.75,42755.72,181335.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,49268,100596.89,0.0,0.0,100596.89,20707.3,12250.19,8032.99,40990.48,141587.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,10983,9986.2,982.76,1176.95,12145.91,2370.74,2341.54,959.25,5671.53,17817.44 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),26029,184289.01,0.0,5248.28,189537.29,38144.36,12424.5,11043.49,61612.35,251149.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,29659,81901.86,1996.47,0.0,83898.33,16849.65,12424.5,6928.89,36203.04,120101.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,26937,47447.31,20279.25,955.0,68681.56,11594.4,12424.5,5504.11,29523.01,98204.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,1332,109522.99,0.0,0.0,109522.99,22117.2,11987.56,8551.16,42655.92,152178.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,26150,47991.29,0.0,0.0,47991.29,10744.8,10219.15,4430.09,25394.04,73385.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,31900,81157.01,15657.8,7730.65,104545.46,17265.49,12424.5,7728.73,37418.72,141964.18 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,45200,58671.57,0.0,2346.82,61018.39,11355.55,5865.8,7540.36,24761.71,85780.1 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,15489,77071.01,0.0,1489.0,78560.01,16167.11,12424.5,6162.38,34753.99,113314.0 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,1802,163930.61,0.0,875.0,164805.61,33148.67,12424.5,10542.57,56115.74,220921.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29304,97760.19,3177.35,5772.72,106710.26,25193.78,12424.5,1762.73,39381.01,146091.27 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,22126,125815.09,0.0,0.0,125815.09,25316.36,12424.5,9826.08,47566.94,173382.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,34636,13307.13,0.0,0.0,13307.13,0.0,2950.82,1032.63,3983.45,17290.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,27483,78865.86,0.0,0.0,78865.86,16223.73,12352.82,6418.95,34995.5,113861.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,8752,1645.97,0.0,0.0,1645.97,0.0,409.17,127.59,536.76,2182.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,20767,57627.4,0.0,0.0,57627.4,11422.97,8506.01,4613.77,24542.75,82170.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49491,11538.0,0.0,576.91,12114.91,0.0,955.73,937.93,1893.66,14008.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27814,8580.0,0.0,0.0,8580.0,1596.72,1911.46,681.37,4189.55,12769.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32290,16028.43,0.0,0.0,16028.43,0.0,4339.61,1240.92,5580.53,21608.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,34440,88746.11,12964.83,8613.86,110324.8,19207.61,12412.56,9069.43,40689.6,151014.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,26380,77071.05,0.0,704.0,77775.05,16028.84,12424.5,6286.05,34739.39,112514.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,20932,12817.75,0.0,0.0,12817.75,570.7,3876.68,1052.59,5499.97,18317.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,28365,11277.25,0.0,0.0,11277.25,0.0,3410.78,873.32,4284.1,15561.35 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,52350,56592.0,0.0,0.0,56592.0,12382.84,7645.85,4534.99,24563.68,81155.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,50705,82892.15,5916.89,7024.9,95833.94,17289.4,12113.9,7628.7,37032.0,132865.94 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),30344,116300.3,0.0,1125.0,117425.3,23004.17,9509.52,9233.96,41747.65,159172.95 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),48462,175576.0,0.0,1562.5,177138.5,35649.07,12424.5,10721.89,58795.46,235933.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,5228,110041.09,0.0,624.0,110665.09,22267.46,12424.5,9088.31,43780.27,154445.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10648,24360.56,0.0,974.34,25334.9,214.09,0.0,944.7,1158.79,26493.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6116,Sprv Wastewater Cont Inspector,51051,24856.0,3413.71,0.0,28269.71,4625.7,2867.19,2231.02,9723.91,37993.62 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,44263,15854.0,0.0,0.0,15854.0,2950.42,1911.46,1249.92,6111.8,21965.8 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,26690,22537.56,0.0,251.17,22788.73,5381.72,6755.83,1774.19,13911.74,36700.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,51148,0.0,0.0,357.8,357.8,0.0,34.25,27.37,61.62,419.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,47819,135421.0,0.0,0.0,135421.0,27253.5,12424.51,10116.95,49794.96,185215.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,27869,4148.39,0.0,0.0,4148.39,1070.28,919.89,326.32,2316.49,6464.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1936,Senior Storekeeper,43070,63102.02,0.0,624.0,63726.02,13134.23,12424.5,4989.85,30548.58,94274.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,22061,68819.61,0.0,28673.5,97493.11,14622.62,7342.4,7824.43,29789.45,127282.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",33838,107310.33,2075.12,0.0,109385.45,22105.7,12424.51,8746.35,43276.56,152662.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10412,11349.65,0.0,333.27,11682.92,207.7,4862.29,952.08,6022.07,17704.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47309,74545.56,1637.6,4860.76,81043.92,15223.64,8142.83,6379.62,29746.09,110790.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,28814,8674.8,0.0,61.31,8736.11,0.0,3144.29,677.09,3821.38,12557.49 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,42039,13765.1,0.0,0.0,13765.1,0.0,3280.85,1067.05,4347.9,18113.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,46214,15738.69,0.0,0.0,15738.69,0.0,3482.46,1221.15,4703.61,20442.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,41657,54967.4,0.0,200.0,55167.4,12259.38,12424.5,4434.47,29118.35,84285.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7485,70482.14,39585.44,5343.32,115410.9,20806.65,13891.44,8972.98,43671.07,159081.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,9582,59229.0,365.22,1684.9,61279.12,12414.91,12424.5,5029.17,29868.58,91147.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,15882,85368.03,253.88,168.0,85789.91,17625.88,12424.5,6822.17,36872.55,122662.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",33665,82463.79,26739.82,6839.14,116042.75,17587.55,12414.05,9436.16,39437.76,155480.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25000,46542.13,8506.23,3533.16,58581.52,14276.02,9252.08,4560.83,28088.93,86670.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35815,68214.92,5476.27,4136.8,77827.99,16486.03,13441.93,5733.32,35661.28,113489.27 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),2671,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11005.23,61560.37,251035.15 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,43830,11407.7,419.61,0.0,11827.31,0.0,2843.3,966.96,3810.26,15637.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29454,58.09,0.0,5.81,63.9,0.0,4.96,4.9,9.86,73.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6753,43429.8,4803.65,379.73,48613.18,10514.64,12424.5,3941.92,26881.06,75494.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,21063,37647.78,3817.17,5059.36,46524.31,8812.42,5771.12,3708.4,18291.94,64816.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,39270,80244.01,0.0,0.0,80244.01,16791.09,8601.58,6483.06,31875.73,112119.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20192,4724.83,0.0,0.0,4724.83,0.0,2048.85,381.08,2429.93,7154.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5321,98964.33,34356.11,10239.04,143559.48,21687.49,14635.59,2397.97,38721.05,182280.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,22035,116638.03,17967.13,390.0,134995.16,23473.53,12424.5,9979.4,45877.43,180872.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,28637,8501.98,0.0,0.0,8501.98,0.0,3082.24,658.96,3741.2,12243.18 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29791,89820.41,0.0,0.0,89820.41,18478.75,12424.5,7168.92,38072.17,127892.58 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,31680,113623.03,0.0,0.0,113623.03,22866.77,12424.5,9206.82,44498.09,158121.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,52833,87800.25,27874.77,1450.0,117125.02,18385.3,12424.5,9249.26,40059.06,157184.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16835,4729.48,0.0,56.85,4786.33,0.0,2386.35,370.96,2757.31,7543.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4684,56531.0,0.0,3414.87,59945.87,12284.16,12424.5,4906.34,29615.0,89560.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,264,72699.0,0.0,1376.65,74075.65,15268.8,12424.5,6138.86,33832.16,107907.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,48137,1728.0,0.0,0.0,1728.0,0.0,573.44,146.31,719.75,2447.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34859,2646.0,0.0,0.0,2646.0,0.0,1290.23,205.25,1495.48,4141.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,24426,73263.6,0.0,9065.23,82328.83,16041.86,12424.5,6663.72,35130.08,117458.91 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,1473,149840.0,0.0,28010.97,177850.97,34979.05,9028.32,10691.78,54699.15,232550.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,33419,72394.75,0.0,1794.47,74189.22,15187.08,12196.44,6100.24,33483.76,107672.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,6993,80989.65,0.0,9666.98,90656.63,18679.45,12281.12,7399.34,38359.91,129016.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,4393,111918.0,18047.81,0.0,129965.81,22523.67,12424.51,9942.02,44890.2,174856.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,51656,9372.11,0.0,61.31,9433.42,0.0,3399.05,731.17,4130.22,13563.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26265,56531.0,0.0,5950.49,62481.49,12457.4,12424.5,5106.89,29988.79,92470.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28492,113222.99,85768.13,22560.08,221551.2,25940.2,15196.12,3877.86,45014.18,266565.38 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,46437,44245.41,0.0,30.3,44275.71,9731.27,9615.07,3596.98,22943.32,67219.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,39102,67911.0,0.0,874.0,68785.0,14125.56,12424.5,5681.89,32231.95,101016.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45144,56462.42,3743.4,2581.4,62787.22,16634.63,11203.25,4886.31,32724.19,95511.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17276,6447.32,0.0,250.0,6697.32,1719.07,1268.14,478.11,3465.32,10162.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,6075,69038.52,6476.4,9529.36,85044.28,15454.88,11744.5,6856.77,34056.15,119100.43 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,45877,25096.0,0.0,0.0,25096.0,4670.37,3345.06,1971.4,9986.83,35082.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,24013,63102.02,0.0,0.0,63102.02,13005.54,12424.5,4821.85,30251.89,93353.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5529,98569.81,581.91,15344.78,114496.5,20281.49,9890.2,9423.03,39594.72,154091.22 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,39922,66731.01,0.0,0.0,66731.01,13753.7,12424.5,5185.43,31363.63,98094.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,52827,106812.1,13302.19,0.0,120114.29,22013.95,12424.5,9781.5,44219.95,164334.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,36427,61735.0,0.0,1800.0,63535.0,13095.77,12424.5,5262.13,30782.4,94317.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44323,65629.96,11143.01,3481.37,80254.34,18839.17,12928.3,5925.08,37692.55,117946.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52619,65693.2,8498.99,5773.38,79965.57,19607.1,12951.82,6203.85,38762.77,118728.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39227,12195.15,1986.69,1680.86,15862.7,3870.96,2425.23,1176.05,7472.24,23334.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7421,Sewer Maintenance Worker,21513,71467.0,5688.76,8362.2,85517.96,16500.75,12424.49,6787.34,35712.58,121230.54 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,49701,55730.2,0.0,0.0,55730.2,12467.51,12424.5,4497.8,29389.81,85120.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,5263,52724.61,0.0,0.0,52724.61,10617.04,6692.68,3992.49,21302.21,74026.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,28585,69746.05,937.67,0.0,70683.72,14374.93,12424.5,5814.12,32613.55,103297.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25058,119459.8,1973.19,10753.94,132186.93,24117.94,12424.5,2196.28,38738.72,170925.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,9254,117137.5,760.18,834.2,118731.88,23176.47,12424.5,1974.86,37575.83,156307.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,16275,98157.0,0.0,0.0,98157.0,20230.58,12424.5,8063.63,40718.71,138875.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41569,94295.71,2227.18,5787.89,102310.78,19577.42,12424.49,1704.97,33706.88,136017.66 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,18346,3479.0,0.0,0.0,3479.0,647.44,477.86,266.34,1391.64,4870.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2566,Rehabilitation Counselor,39413,46601.41,0.0,0.0,46601.41,9602.59,7454.7,3700.17,20757.46,67358.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47840,3271.75,0.0,101.57,3373.32,0.0,1373.86,269.53,1643.39,5016.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,1795,0.0,0.0,7714.11,7714.11,0.0,0.0,590.12,590.12,8304.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",15755,4214.7,0.0,0.0,4214.7,0.0,1003.51,326.3,1329.81,5544.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35205,66433.78,6810.58,1002.92,74247.28,18461.2,13087.72,5783.58,37332.5,111579.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35286,112159.76,3285.06,17521.82,132966.64,24623.54,15052.77,2374.39,42050.7,175017.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,831,6515.58,0.0,296.24,6811.82,0.0,2825.38,542.32,3367.7,10179.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40743,39752.84,0.0,227.11,39979.95,0.0,3473.73,3099.19,6572.92,46552.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",32841,97989.0,7383.82,11213.8,116586.62,21737.83,12424.5,9162.95,43325.28,159911.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",40470,12514.9,0.0,0.0,12514.9,0.0,2962.78,971.16,3933.94,16448.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,27540,38504.95,0.0,674.14,39179.09,8099.54,6705.11,3171.81,17976.46,57155.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,17342,96033.0,36374.25,16815.43,149222.68,20272.2,10513.02,8314.32,39099.54,188322.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,27698,134085.94,0.0,4110.16,138196.1,26592.75,12019.03,248.25,38860.03,177056.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,20562,81942.01,28929.97,19315.34,130187.32,19585.46,12424.5,9874.38,41884.34,172071.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21843,127845.32,1495.62,24375.89,153716.83,27938.78,11370.09,4649.33,43958.2,197675.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31272,64396.9,16751.05,625.26,81773.21,17832.76,12694.03,6295.55,36822.34,118595.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,50364,24566.45,0.0,0.0,24566.45,6338.12,6149.53,1975.22,14462.87,39029.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,42517,71510.0,6232.05,2238.13,79980.18,16248.51,12078.04,6412.21,34738.76,114718.94 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,47625,170317.9,0.0,0.0,170317.9,34276.58,12424.5,25596.2,72297.28,242615.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,50033,156746.1,0.0,0.0,156746.1,31539.52,12424.52,10478.21,54442.25,211188.35 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,37686,101531.02,0.0,0.0,101531.02,20926.02,12424.51,7951.13,41301.66,142832.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,21218,73370.94,1971.26,10270.34,85612.54,16241.46,12418.53,6993.5,35653.49,121266.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,46219,64781.17,12947.72,8252.22,85981.11,14892.89,12354.68,7038.23,34285.8,120266.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48779,74644.87,1783.33,8272.3,84700.5,15770.82,7710.96,6829.52,30311.3,115011.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",35394,3411.9,0.0,0.0,3411.9,0.0,812.38,264.15,1076.53,4488.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,45156,65849.32,5009.56,930.0,71788.88,13758.44,12376.71,5918.59,32053.74,103842.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45966,41297.09,374.25,3259.13,44930.47,10128.56,10876.99,3615.03,24620.58,69551.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,41732,84644.01,14884.63,11635.53,111164.17,19187.29,12424.5,8826.19,40437.98,151602.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5087,66537.09,0.0,15872.19,82409.28,369.7,0.0,2799.28,3168.98,85578.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,30842,20104.8,867.4,2507.28,23479.48,5073.93,6690.12,1886.16,13650.21,37129.69 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39339,19442.0,0.0,0.0,19442.0,4275.3,4778.65,1514.88,10568.83,30010.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51334,60100.64,17919.46,3604.47,81624.57,17573.27,11863.73,6373.63,35810.63,117435.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32918,51663.29,0.0,1560.0,53223.29,12376.57,12418.53,3928.59,28723.69,81946.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,24036,57601.12,0.0,0.0,57601.12,12871.4,12359.45,4686.77,29917.62,87518.74 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,32093,91771.91,0.0,0.0,91771.91,18883.14,12424.5,7541.73,38849.37,130621.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,43441,59808.68,0.0,0.0,59808.68,12336.52,10644.34,4727.03,27707.89,87516.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,51980,55644.23,0.0,4152.36,59796.59,12045.03,12230.84,4694.5,28970.37,88766.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,12997,2126.02,0.0,0.0,2126.02,367.65,627.2,164.96,1159.81,3285.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,33513,127129.02,0.0,0.0,127129.02,25584.71,12424.5,17191.58,55200.79,182329.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,37861,0.0,0.0,4004.48,4004.48,0.0,68.5,306.34,374.84,4379.32 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,4275,58101.0,4717.85,0.0,62818.85,11974.94,12424.5,5147.01,29546.45,92365.3 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,12326,219972.58,0.0,5750.0,225722.58,44341.52,12001.89,11511.63,67855.04,293577.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,20940,135421.0,0.0,0.0,135421.0,27253.5,12424.53,10095.61,49773.64,185194.64 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,5995,37784.01,0.0,0.0,37784.01,7031.64,5256.52,3062.12,15350.28,53134.29 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39827,56531.0,1270.57,967.38,58768.95,11781.56,12424.5,4813.24,29019.3,87788.25 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,21364,63802.87,6103.4,10276.74,80183.01,14612.87,11668.28,6603.04,32884.19,113067.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,21790,150160.0,0.0,8961.06,159121.06,30621.96,10943.12,16807.59,58372.67,217493.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,28091,54878.03,296.04,1132.11,56306.18,12520.51,12424.5,4611.59,29556.6,85862.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,19792,55136.9,21181.69,12062.36,88380.95,13337.07,10943.12,7164.15,31444.34,119825.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20922,17909.97,3030.88,618.99,21559.84,4442.05,5529.44,1547.89,11519.38,33079.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,23274,29814.3,0.0,4956.33,34770.63,7717.38,7502.48,2856.04,18075.9,52846.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36990,64078.38,0.0,18026.76,82105.14,0.0,0.0,6494.74,6494.74,88599.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",27051,102249.0,0.0,17893.83,120142.83,22666.02,6451.18,9558.16,38675.36,158818.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,3915,11317.5,0.0,22635.0,33952.5,2483.05,1194.67,3273.41,6951.13,40903.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",2158,91095.54,8749.63,4678.84,104524.01,13800.74,12095.96,8317.54,34214.24,138738.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,31261,6162.69,0.0,73.76,6236.45,1609.01,1517.22,468.54,3594.77,9831.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,10566,96930.04,0.0,760.0,97690.04,20116.87,12424.5,7998.66,40540.03,138230.07 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,13110,93865.12,0.0,622.39,94487.51,19469.83,12392.37,7671.27,39533.47,134020.98 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,14883,57751.7,0.0,654.13,58405.83,12766.85,7645.85,4702.8,25115.5,83521.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2915,Program Specialist Supervisor,5735,97584.51,0.0,0.0,97584.51,20090.21,12269.2,7619.04,39978.45,137562.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,43455,81713.19,0.0,621.03,82334.22,16964.67,12365.07,6796.99,36126.73,118460.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34272,131334.79,665.59,23963.37,155963.75,29580.62,10945.51,10374.65,50900.78,206864.53 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,2131,2732.0,0.0,0.0,2732.0,704.86,477.86,205.24,1387.96,4119.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45544,67784.65,2921.82,1910.88,72617.35,15868.12,13355.98,5546.75,34770.85,107388.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49898,62915.74,15481.02,913.61,79310.37,15727.29,12756.02,6014.02,34497.33,113807.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3187,84866.56,0.0,2577.04,87443.6,17123.84,12395.83,541.96,30061.63,117505.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51538,5923.64,0.0,340.38,6264.02,0.0,2282.82,485.2,2768.02,9032.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",25003,94388.0,42479.18,2113.5,138980.68,19888.77,12424.54,9989.66,42302.97,181283.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,44111,133821.76,0.0,0.0,133821.76,26842.04,12424.5,17276.38,56542.92,190364.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6963,21917.74,0.0,284.62,22202.36,6263.92,4333.28,1506.0,12103.2,34305.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,35689,49972.02,0.0,0.0,49972.02,10216.58,7645.85,4114.94,21977.37,71949.39 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,52694,79926.57,30243.69,6887.91,117058.17,17639.44,10501.1,9554.66,37695.2,154753.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37370,119463.82,1167.38,1523.65,122154.85,23633.49,12424.5,2033.66,38091.65,160246.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33449,62468.81,34576.98,4438.62,101484.41,13169.8,12424.5,8023.96,33618.26,135102.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,51074,78454.95,0.0,622.8,79077.75,16301.51,12400.61,6264.82,34966.94,114044.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7200,Supervisory-Labor & Trade,7251,Track Maint Wrk Sprv 1,19832,68303.0,75925.19,7076.81,151305.0,14583.43,11468.78,9455.75,35507.96,186812.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,47758,2935.8,0.0,0.0,2935.8,0.0,860.16,227.87,1088.03,4023.83 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,45518,59200.67,0.0,0.0,59200.67,11832.21,9282.53,4795.14,25909.88,85110.55 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,8400,Probation & Parole,8438,Chief Deputy Adlt Probation Of,34921,51174.44,0.0,0.0,51174.44,0.0,4632.31,3969.8,8602.11,59776.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,2578,114362.36,9547.98,1820.43,125730.77,23070.75,12424.5,9837.1,45332.35,171063.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26817,9621.2,0.0,0.0,9621.2,0.0,4109.64,777.12,4886.76,14507.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,147,6573.06,0.0,6.25,6579.31,0.0,2072.74,509.72,2582.46,9161.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,46541,55717.58,0.0,0.0,55717.58,10566.85,5892.74,4586.78,21046.37,76763.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,12835,107170.56,0.0,0.0,107170.56,22107.39,12424.5,8581.63,43113.52,150284.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,19980,5357.26,0.0,0.0,5357.26,0.0,0.0,423.22,423.22,5780.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14501,11521.28,0.0,336.5,11857.78,0.0,4933.96,951.1,5885.06,17742.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,15803,112209.01,1849.64,0.0,114058.65,23126.65,12424.5,9176.27,44727.42,158786.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,16954,104496.37,0.0,0.0,104496.37,21448.11,9246.7,16538.21,47233.02,151729.39 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32440,26658.21,0.0,0.0,26658.21,6374.29,0.0,2280.41,8654.7,35312.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,15131,28525.01,0.0,0.0,28525.01,6398.14,3345.06,2204.35,11947.55,40472.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9658,9513.04,661.16,38.4,10212.6,2281.0,2910.5,729.78,5921.28,16133.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,52160,43926.0,0.0,0.0,43926.0,8263.88,6212.24,3496.39,17972.51,61898.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2488,Supv Chemist,1208,119321.13,0.0,0.0,119321.13,24013.61,12424.5,9560.7,45998.81,165319.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6025,6649.5,0.0,32.24,6681.74,0.0,2562.55,518.2,3080.75,9762.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28135,63887.01,10050.87,3464.43,77402.31,13925.71,12424.49,6116.1,32466.3,109868.61 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,11589,63589.59,161.84,0.0,63751.43,13090.56,12246.14,5224.82,30561.52,94312.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,24988,81157.0,1217.7,14853.55,97228.25,19777.16,12424.5,7710.64,39912.3,137140.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25100,120198.47,9286.5,13356.64,142841.61,23818.11,12424.5,2387.56,38630.17,181471.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24689,11212.86,0.0,15.22,11228.08,191.91,4862.29,881.6,5935.8,17163.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,22764,22193.0,0.0,0.0,22193.0,4130.12,3822.92,1712.96,9666.0,31859.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,51623,3670.0,0.0,752.36,4422.36,844.76,955.73,341.64,2142.13,6564.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,33669,11664.2,464.49,825.75,12954.44,2564.97,3058.34,965.11,6588.42,19542.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36415,9888.48,0.0,1439.92,11328.4,2773.22,2690.98,870.48,6334.68,17663.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,50579,35337.62,0.0,0.0,35337.62,7926.25,5734.39,2883.96,16544.6,51882.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,33960,27909.0,0.0,0.0,27909.0,6259.95,4300.78,2210.13,12770.86,40679.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,2179,30090.0,0.0,351.05,30441.05,910.17,7167.99,2461.15,10539.31,40980.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46663,2866.51,0.0,6.86,2873.37,0.0,1397.75,222.94,1620.69,4494.06 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46827,87625.8,5827.72,17385.62,110839.14,25557.34,11136.48,1945.22,38639.04,149478.18 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,200.0,"Transportation Workers, Local 200",1700,Computer Operatns & Repro Svcs,1773,Media Training Specialist,18461,93884.03,885.51,184.22,94953.76,19388.13,12424.5,7507.41,39320.04,134273.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27663,605.54,227.08,0.0,832.62,148.3,0.0,65.94,214.24,1046.86 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,47896,56578.22,0.0,0.0,56578.22,12643.68,6690.12,4534.24,23868.04,80446.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,23797,83592.5,4302.35,1329.0,89223.85,17477.3,12424.49,6984.09,36885.88,126109.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30559,64209.7,5027.93,684.76,69922.39,15836.47,12984.02,5337.05,34157.54,104079.93 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,15760,10800.0,0.0,0.0,10800.0,2422.44,1911.46,766.17,5100.07,15900.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5759,53362.16,7045.54,6647.33,67055.03,13043.73,11883.92,5348.44,30276.09,97331.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,31177,59897.37,0.0,235.53,60132.9,12336.02,11789.6,4534.1,28659.72,88792.62 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8534,Sprv Adult Prob Ofc (SFERS),22735,83788.91,0.0,0.0,83788.91,16536.51,9987.39,1382.04,27905.94,111694.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",18283,146900.09,22902.45,32222.37,202024.91,35185.05,14860.42,3390.32,53435.79,255460.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7277,City Shops Asst Superintendent,23832,96197.0,0.0,600.0,96797.0,19912.22,10035.18,7775.31,37722.71,134519.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,8572,97330.96,6874.09,16108.34,120313.39,27575.97,12424.51,1960.85,41961.33,162274.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,5303,107416.01,1015.84,13358.2,121790.05,22469.61,12424.52,9575.51,44469.64,166259.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,3969,40563.51,0.0,468.0,41031.51,9595.32,9318.38,3360.35,22274.05,63305.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,28914,16044.55,3251.33,1058.1,20353.98,3172.76,4890.83,1621.92,9685.51,30039.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,34463,77954.03,2879.06,17802.02,98635.11,18864.77,11946.64,7872.68,38684.09,137319.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,12538,90085.42,1424.96,2415.7,93926.08,17672.01,6538.4,6462.49,30672.9,124598.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2820,Senior Health Program Planner,16170,4852.8,0.0,11301.23,16154.03,1094.94,573.43,1280.2,2948.57,19102.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,49876,30146.2,3623.1,2160.83,35930.13,5753.77,4876.22,2904.9,13534.89,49465.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22245,67422.18,11203.36,3620.92,82246.46,16196.93,13283.52,6075.48,35555.93,117802.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,33500,15845.0,0.0,0.0,15845.0,3554.05,2389.33,1324.39,7267.77,23112.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,27395,37450.02,0.0,0.0,37450.02,6969.48,5734.39,3036.63,15740.5,53190.52 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",21660,112273.99,0.0,0.0,112273.99,22580.79,12424.5,16558.97,51564.26,163838.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52074,756.92,227.08,0.0,984.0,214.21,0.0,77.74,291.95,1275.95 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,5124,81365.2,4095.0,5273.02,90733.22,16980.31,11449.24,7539.6,35969.15,126702.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,46065,111387.27,0.0,0.0,111387.27,22323.83,11827.19,9062.82,43213.84,154601.11 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,29212,81928.26,12743.73,6429.66,101101.65,17766.06,11948.61,8065.63,37780.3,138881.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,50941,51405.03,1893.83,2536.79,55835.65,12366.26,12424.5,4361.06,29151.82,84987.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37561,119467.43,887.81,13396.9,133752.14,23621.02,12424.5,2270.1,38315.62,172067.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,20939,62187.0,0.0,6214.64,68401.64,13614.58,12424.5,5604.14,31643.22,100044.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,25272,75605.0,3433.32,8723.51,87761.83,16657.17,12424.5,6781.0,35862.67,123624.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41927,47241.57,0.0,7549.46,54791.03,0.0,4112.15,4252.66,8364.81,63155.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,13863,118104.04,0.0,0.0,118104.04,23768.42,12424.5,9579.01,45771.93,163875.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29907,68365.57,18225.07,2294.0,88884.64,19345.2,13467.74,6690.78,39503.72,128388.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,46051,10546.04,0.0,0.0,10546.04,0.0,2338.55,818.16,3156.71,13702.75 +Calendar,2015,1,Public Protection,POL,Police,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28542,184289.14,0.0,1645.46,185934.6,37415.28,12424.5,10945.94,60785.72,246720.32 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,14043,94107.01,0.0,0.0,94107.01,19395.81,12424.5,7806.97,39627.28,133734.29 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,37862,49878.49,17600.68,2480.26,69959.43,11181.54,10868.45,5724.38,27774.37,97733.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,21842,101531.02,6576.9,0.0,108107.92,20926.04,12424.49,8828.41,42178.94,150286.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21676,113233.6,3089.08,18633.15,134955.83,25068.57,15196.12,2269.26,42533.95,177489.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,36492,81158.3,8478.52,7344.09,96980.91,17597.81,12424.5,7828.98,37851.29,134832.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9488,42817.16,8544.9,3044.23,54406.29,13263.5,8514.97,4454.31,26232.78,80639.07 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,6203,59267.22,6671.95,3735.48,69674.65,12348.46,12424.5,5583.88,30356.84,100031.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,33597,113442.05,0.0,0.0,113442.05,22923.2,11946.65,9273.73,44143.58,157585.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44346,112159.74,64927.72,18399.36,195486.82,24822.8,15052.76,3279.44,43155.0,238641.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2128,36257.61,0.0,2361.56,38619.17,8908.96,8289.18,3202.07,20400.21,59019.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,19765,71968.2,0.0,0.0,71968.2,14323.01,11038.69,5545.18,30906.88,102875.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,20717,35469.0,15233.12,2658.01,53360.13,6972.71,4300.79,4224.62,15498.12,68858.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51072,27973.25,7677.42,397.61,36048.28,6987.89,5448.68,2785.91,15222.48,51270.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,5478,71337.05,0.0,1546.05,72883.1,14829.27,12424.5,5980.63,33234.4,106117.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,3055,63276.45,0.0,0.0,63276.45,13029.68,12424.5,5047.68,30501.86,93778.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,1336,20280.0,0.0,0.0,20280.0,4548.8,2389.33,1636.54,8574.67,28854.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,2000,60751.7,3798.82,240.0,64790.52,13629.37,12424.5,5002.8,31056.67,95847.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,8468,11336.03,0.0,0.0,11336.03,0.0,3769.16,878.43,4647.59,15983.62 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1065,8085.0,0.0,309.75,8394.75,1090.83,3449.59,673.62,5214.04,13608.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,29830,92282.01,0.0,104.0,92386.01,19039.81,12424.5,7224.76,38689.07,131075.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,25062,4270.0,0.0,0.0,4270.0,794.64,955.73,319.85,2070.22,6340.22 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,25249,105196.2,0.0,19860.0,125056.2,18884.35,10082.96,9683.46,38650.77,163706.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,158,110092.68,2295.15,7712.87,120100.7,21753.63,9748.04,7915.85,39417.52,159518.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40668,67427.78,23528.68,619.96,91576.42,18612.79,13286.46,7108.63,39007.88,130584.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,2386,63887.0,5826.86,1825.27,71539.13,13552.99,12424.52,5651.67,31629.18,103168.31 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,366,55229.04,5460.6,2718.92,63408.56,11739.24,8042.05,5181.55,24962.84,88371.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18275,82186.4,6738.43,5294.64,94219.47,17306.23,9079.44,1535.97,27921.64,122141.11 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,51948,84380.1,0.0,0.0,84380.1,17354.86,7693.64,13010.94,38059.44,122439.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,17349,63102.0,0.0,681.03,63783.03,13146.24,12424.5,5014.57,30585.31,94368.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,13369,97761.46,4488.06,10239.63,112489.15,26256.19,12424.5,1875.53,40556.22,153045.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,17285,6534.0,0.0,0.0,6534.0,1465.59,1433.6,535.07,3434.26,9968.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42695,54504.29,7835.65,1726.94,64066.88,14566.64,12953.43,4843.58,32363.65,96430.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35692,7097.95,0.0,214.65,7312.6,0.0,3022.5,585.66,3608.16,10920.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,21504,32122.01,0.0,0.0,32122.01,7063.67,5734.39,2355.77,15153.83,47275.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11637,120908.05,2591.54,12376.12,135875.71,24308.65,10928.0,10072.02,45308.67,181184.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",27716,5060.0,1272.91,39.45,6372.36,898.66,477.86,107.02,1483.54,7855.9 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,31036,67911.03,0.0,6993.26,74904.29,14792.7,12424.5,6022.35,33239.55,108143.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12967,80957.65,769.29,4418.21,86145.15,16556.63,12424.5,3199.26,32180.39,118325.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,34596,62616.41,0.0,0.0,62616.41,12899.4,12424.5,5050.96,30374.86,92991.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,39656,45959.68,0.0,0.0,45959.68,10272.54,6690.11,3600.51,20563.16,66522.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,30606,59615.0,1236.27,1762.39,62613.66,11482.25,12424.5,4604.83,28511.58,91125.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,2788,67261.03,391.16,624.0,68276.19,14075.41,12424.5,5637.03,32136.94,100413.13 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2550,Senior Occupational Therapist,45163,90187.56,0.0,748.65,90936.21,18008.91,8852.46,7536.73,34398.1,125334.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,38034,46284.47,1371.96,60.29,47716.72,11104.62,12307.61,3839.66,27251.89,74968.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,30216,100761.05,463.57,9420.89,110645.51,22708.6,12424.5,8711.68,43844.78,154490.29 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,2101,74409.69,0.0,614.12,75023.81,15452.23,12227.62,6352.3,34032.15,109055.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,26153,54874.53,0.0,0.0,54874.53,10060.59,6176.41,4353.11,20590.11,75464.64 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,21696,97793.01,361.78,600.0,98754.79,20267.13,12424.5,7780.91,40472.54,139227.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,10587,14406.0,0.0,270.11,14676.11,3231.24,2867.19,1196.14,7294.57,21970.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,41418,68710.0,480.51,0.0,69190.51,14132.47,12397.45,5575.68,32105.6,101296.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48376,54817.99,1486.4,614.18,56918.57,12666.07,10788.59,4328.4,27783.06,84701.63 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,52376,106116.03,0.0,0.0,106116.03,21870.85,12424.5,7815.08,42110.43,148226.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,26281,101401.07,10011.48,605.52,112018.07,20777.94,9079.44,1865.92,31723.3,143741.37 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8568,"Sr Cnselor, Juv Hall (SFERS)",27174,35076.65,0.0,10.95,35087.6,0.0,0.0,2775.44,2775.44,37863.04 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,37914,21179.99,91.01,0.0,21271.0,5242.52,5734.39,1627.76,12604.67,33875.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41075,97127.65,15328.81,8575.8,121032.26,20216.03,12412.55,2010.89,34639.47,155671.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,15435,62243.35,6549.98,1383.93,70177.26,13023.87,12418.53,5665.75,31108.15,101285.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,31284,53921.12,0.0,1420.0,55341.12,13261.6,12413.69,4470.75,30146.04,85487.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,11365,93099.5,6941.95,2580.0,102621.45,19813.19,11886.87,8199.92,39899.98,142521.43 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,30454,24402.43,0.0,0.0,24402.43,5353.88,0.0,2878.29,8232.17,32634.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15420,12520.0,0.0,0.0,12520.0,2269.88,1911.46,971.76,5153.1,17673.1 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,7066,53178.83,0.0,1568.93,54747.76,11726.05,7483.02,4576.3,23785.37,78533.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,3541,33195.95,0.0,0.0,33195.95,8051.46,10955.07,2618.15,21624.68,54820.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,929.0,Building Inspectors' Association - Chiefs,6300,Construction Inspection,6334,Chief Building Inspector,12936,137101.0,0.0,6855.06,143956.06,28971.63,12424.51,10144.26,51540.4,195496.46 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,10728,41712.5,0.0,0.0,41712.5,9356.12,5973.32,3360.06,18689.5,60402.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46489,57853.87,2726.31,5934.05,66514.23,11219.88,5921.35,5324.18,22465.41,88979.64 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,28489,30867.51,0.0,1127.32,31994.83,6602.89,6212.25,2590.55,15405.69,47400.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2652,11263.4,0.0,0.0,11263.4,0.0,4826.44,919.52,5745.96,17009.36 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,52796,4428.6,0.0,0.0,4428.6,7849.38,0.0,3137.26,10986.64,15415.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32079,917.85,0.0,30.6,948.45,940.32,0.0,442.8,1383.12,2331.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,31969,82816.48,0.0,0.0,82816.48,16931.37,10071.01,6810.59,33812.97,116629.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,30458,99507.01,0.0,82.6,99589.61,19835.96,9731.97,15029.43,44597.36,144186.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",25241,93469.31,17986.99,2763.16,114219.46,19707.07,12388.66,9322.13,41417.86,155637.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,4842,81942.0,50358.85,2521.42,134822.27,17411.52,12424.48,9908.15,39744.15,174566.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,44867,77071.04,2047.19,2064.0,81182.23,16308.07,12424.5,6330.17,35062.74,116244.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,34161,6590.65,0.0,345.96,6936.61,0.0,1511.25,537.03,2048.28,8984.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23970,56531.0,0.0,8324.67,64855.67,13727.2,12424.5,5243.82,31395.52,96251.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,6000,32409.0,0.0,3889.08,36298.08,7789.6,3106.13,614.3,11510.03,47808.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,11036,52121.11,0.0,1594.64,53715.75,11181.57,10620.56,4365.71,26167.84,79883.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,6443,79708.51,19753.93,6662.56,106125.0,17532.34,12406.58,8488.74,38427.66,144552.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,49915,9324.67,0.0,526.55,9851.22,0.0,2880.63,763.37,3644.0,13495.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39696,42003.9,0.0,0.0,42003.9,8571.69,6451.18,3231.79,18254.66,60258.56 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,53174,95876.3,0.0,0.0,95876.3,19758.64,12412.55,7954.2,40125.39,136001.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,31615,84644.0,45896.37,14642.33,145182.7,19461.8,12424.5,10104.75,41991.05,187173.75 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,36847,2082.32,386.08,0.0,2468.4,0.0,621.23,191.59,812.82,3281.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,7608,3142.13,0.0,0.0,3142.13,0.0,1532.16,243.77,1775.93,4918.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30373,59937.9,0.0,0.0,59937.9,0.0,5208.74,4652.15,9860.89,69798.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25002,14693.38,0.0,147.75,14841.13,0.0,4887.69,1150.67,6038.36,20879.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20758,1302.6,0.0,0.0,1302.6,0.0,95.58,101.11,196.69,1499.29 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),2503,160361.7,0.0,1500.0,161861.7,32549.77,12424.5,10527.63,55501.9,217363.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,25910,114405.2,0.0,0.0,114405.2,22977.45,12149.75,9234.27,44361.47,158766.67 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0649,Probate Examiner,22248,5995.01,0.0,12001.02,17996.03,1355.45,459.95,1425.31,3240.71,21236.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,5366,2493.6,0.0,0.0,2493.6,464.06,382.3,193.54,1039.9,3533.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,53121,139062.64,17571.95,7031.32,163665.91,27460.59,12424.5,2502.56,42387.65,206053.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,40217,62468.81,1328.95,928.49,64726.25,12995.98,12424.5,5284.19,30704.67,95430.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,8359,110041.1,17221.52,7146.58,134409.2,23011.95,12424.5,9971.58,45408.03,179817.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3005,91600.56,9135.09,6955.19,107690.84,17250.11,8123.71,1840.67,27214.49,134905.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33077,138629.3,14869.6,13620.42,167119.32,27417.19,12424.5,2759.2,42600.89,209720.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,40925,18852.0,0.0,0.0,18852.0,4145.55,4300.79,1425.12,9871.46,28723.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,44762,84971.93,9213.08,8599.63,102784.64,17334.75,10465.24,8196.6,35996.59,138781.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,10704,5451.3,0.0,0.0,5451.3,1219.12,669.02,449.33,2337.47,7788.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,39336,57363.52,6602.78,74463.52,138429.82,13123.25,5256.52,182.82,18562.59,156992.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,20661,112690.83,23790.8,18132.49,154614.12,22311.18,12424.5,2624.35,37360.03,191974.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,14541,85115.73,44372.35,2294.87,131782.95,17544.0,12409.58,9878.98,39832.56,171615.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20872,36194.9,0.0,0.0,36194.9,6562.13,3249.49,2874.46,12686.08,48880.98 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,24825,51783.21,0.0,0.0,51783.21,10896.82,8931.37,4179.97,24008.16,75791.37 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,51630,71631.82,0.0,0.0,71631.82,14743.3,0.0,5813.22,20556.52,92188.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35379,69163.77,21530.08,6603.13,97296.98,20750.33,13625.73,7604.79,41980.85,139277.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,10095,56675.81,687.41,0.0,57363.22,11548.25,10235.88,4537.75,26321.88,83685.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3989,21213.16,3387.39,833.45,25434.0,5336.77,6574.11,1945.74,13856.62,39290.62 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,40848,1324.95,0.0,13.06,1338.01,300.12,260.01,185.86,745.99,2084.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,33877,100761.06,0.0,5050.39,105811.45,21805.22,12424.49,8513.53,42743.24,148554.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,38181,118724.1,0.0,0.0,118724.1,23893.94,12424.5,9500.98,45819.42,164543.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51762,2133.19,0.0,33.03,2166.22,0.0,555.52,168.13,723.65,2889.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,3407,10282.34,0.0,0.0,10282.34,0.0,2777.59,796.05,3573.64,13855.98 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,17583,48513.81,0.0,0.0,48513.81,10643.92,5256.52,7139.32,23039.76,71553.57 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,10837,16099.68,0.0,86.65,16186.33,3672.31,3918.5,1303.02,8893.83,25080.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,13982,27711.32,5765.01,240.0,33716.33,6315.25,4778.65,2773.59,13867.49,47583.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,5176,106605.05,0.0,0.0,106605.05,21971.81,12424.5,8761.55,43157.86,149762.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29813,112320.52,552.68,24060.71,136933.91,23961.45,10938.34,9729.2,44628.99,181562.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,905,34878.63,3006.7,1186.32,39071.65,9753.37,6833.71,2986.45,19573.53,58645.18 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,27901,56981.66,11113.46,2225.47,70320.59,11827.86,11219.69,5753.25,28800.8,99121.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,4816,75605.04,0.0,874.0,76479.04,15711.25,12424.5,6246.02,34381.77,110860.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35776,7319.28,27.08,0.0,7346.36,0.0,2422.18,568.75,2990.93,10337.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39351,6217.38,0.0,418.09,6635.47,0.0,2057.81,514.33,2572.14,9207.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),20992,11556.0,325.01,252.67,12133.68,2050.76,955.74,203.53,3210.03,15343.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,34951,81157.0,8346.29,8083.0,97586.29,17831.64,12424.5,7990.61,38246.75,135833.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5305,Materials Testing Technician,41430,73757.81,828.34,735.11,75321.26,15238.07,12328.94,5843.77,33410.78,108732.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19418,21235.35,3269.08,1160.68,25665.11,5418.89,6578.82,1963.67,13961.38,39626.49 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",50851,198139.01,0.0,5462.78,203601.79,40974.08,12424.5,11249.71,64648.29,268250.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30558,96147.45,0.0,12920.21,109067.66,20597.17,7984.48,8748.93,37330.58,146398.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,42105,85368.07,0.0,960.0,86328.07,17791.62,12424.5,6878.03,37094.15,123422.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,23434,58588.52,0.0,13896.15,72484.67,12286.47,7462.89,6043.59,25792.95,98277.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8774,77071.03,20623.6,40.0,97734.63,15893.67,12424.5,7830.19,36148.36,133882.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,14069,50669.58,12169.33,1979.09,64818.0,10343.93,10051.66,5312.19,25707.78,90525.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,21714,37371.0,0.0,960.0,38331.0,7535.91,8123.71,3100.97,18760.59,57091.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,7770,61492.33,0.0,1250.0,62742.33,12894.05,12162.81,5183.92,30240.78,92983.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43197,92835.04,4786.87,4333.18,101955.09,19240.61,12424.5,1700.47,33365.58,135320.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,6033,65542.16,393.5,1653.56,67589.22,13847.97,12415.0,5553.06,31816.03,99405.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9580,48557.2,0.0,6587.23,55144.43,12710.91,12424.5,4407.78,29543.19,84687.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,34143,66662.67,0.0,0.0,66662.67,13731.77,12313.28,5238.63,31283.68,97946.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,48265,50601.88,931.05,0.0,51532.93,11276.8,11615.37,4201.85,27094.02,78626.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,21908,7314.21,0.0,230.8,7545.01,1469.57,1409.71,788.38,3667.66,11212.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,42577,80459.92,0.0,0.0,80459.92,16568.2,12424.5,6260.75,35253.45,115713.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,37916,16436.01,0.0,2003.36,18439.37,3814.01,3345.06,1512.63,8671.7,27111.07 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,45562,75972.32,0.0,0.0,75972.32,15632.36,12424.5,6052.28,34109.14,110081.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19841,17523.49,0.0,30.56,17554.05,0.0,4354.56,1360.91,5715.47,23269.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",50570,106114.4,6082.27,4089.8,116286.47,22435.74,12424.5,9545.1,44405.34,160691.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,39308,80931.98,0.0,0.0,80931.98,16735.63,12024.29,6478.99,35238.91,116170.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19036,150238.84,0.0,10594.36,160833.2,32476.5,12520.08,7998.09,52994.67,213827.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2820,Senior Health Program Planner,44789,105804.0,0.0,624.0,106428.0,21935.14,12424.5,8776.44,43136.08,149564.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,47696,72375.97,0.0,824.75,73200.72,15081.66,12368.95,6024.73,33475.34,106676.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,13753,66695.0,0.0,0.0,66695.0,12091.82,5256.52,4069.22,21417.56,88112.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",3609,802.8,0.0,0.0,802.8,0.0,191.14,62.17,253.31,1056.11 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,45266,61869.0,0.0,2454.36,64323.36,11216.84,5734.38,4311.19,21262.41,85585.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,29581,70081.5,0.0,1242.74,71324.24,14744.72,10265.18,5199.92,30209.82,101534.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18900,75741.8,3800.3,11833.05,91375.15,14914.73,7550.27,7329.43,29794.43,121169.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,26095,3117.69,0.0,662.89,3780.58,497.77,1351.94,307.64,2157.35,5937.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41001,82350.11,6930.56,14352.57,103633.24,0.0,5895.78,4780.51,10676.29,114309.53 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,46327,5810.62,0.0,280.84,6091.46,1231.9,1122.27,363.17,2717.34,8808.8 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,19571,17801.7,0.0,0.0,17801.7,3312.89,2341.54,1403.01,7057.44,24859.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17876,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,14994,20587.01,0.0,166.31,20753.32,4686.73,4554.9,1784.39,11026.02,31779.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,52069,82316.74,3348.97,10825.01,96490.72,18508.72,12364.77,7753.63,38627.12,135117.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,41992,55171.82,1071.99,0.0,56243.81,11318.97,11841.51,4581.3,27741.78,83985.59 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,6784,133367.01,0.0,25339.73,158706.74,24747.33,10035.18,4707.4,39489.91,198196.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,34681,912.05,0.0,28.32,940.37,0.0,200.1,72.81,272.91,1213.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,5567,83634.61,0.0,0.0,83634.61,18655.12,12281.15,6321.67,37257.94,120892.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,44880,41469.02,884.48,19.44,42372.94,7721.01,5017.58,3442.79,16181.38,58554.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,14130,92943.15,13811.17,2508.82,109263.14,19642.84,12424.49,8714.74,40782.07,150045.21 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,23786,56027.83,0.0,0.0,56027.83,11925.13,9289.35,4066.83,25281.31,81309.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34174,113488.75,1183.73,2258.61,116931.09,22902.32,9661.25,9035.87,41599.44,158530.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43974,53240.05,5490.03,5626.73,64356.81,13809.65,6832.46,1063.69,21705.8,86062.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2515,Orthopedic Technician 2,5375,70630.03,0.0,250.0,70880.03,14557.25,12424.5,5746.07,32727.82,103607.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,38123,40111.04,1247.99,11292.91,52651.94,9067.63,4778.65,843.18,14689.46,67341.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,35987,49234.06,9239.8,10041.43,68515.29,11467.91,9726.3,5410.15,26604.36,95119.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1738,41517.69,5738.38,862.43,48118.5,10035.86,8225.2,3653.04,21914.1,70032.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,34090,97793.04,19017.57,8638.44,125449.05,21267.38,12424.5,9818.6,43510.48,168959.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",22352,57289.13,9683.74,4535.79,71508.66,11764.41,8600.68,5723.12,26088.21,97596.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,3169,90411.0,0.0,0.0,90411.0,18789.04,11468.77,7314.69,37572.5,127983.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,4552,75605.0,32746.67,10845.66,119197.33,16711.25,12424.5,9465.94,38601.69,157799.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9512,56531.0,1601.04,1961.25,60093.29,11780.12,12424.5,4918.14,29122.76,89216.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,395,56531.0,11533.77,5393.71,73458.48,12289.32,12424.5,5775.29,30489.11,103947.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,46455,28120.0,0.0,14807.99,42927.99,6169.55,2389.33,4661.4,13220.28,56148.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),45781,85033.27,12496.86,4373.0,101903.13,17687.0,12424.51,1652.74,31764.25,133667.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,47097,14834.82,0.0,286.79,15121.61,0.0,0.0,1196.58,1196.58,16318.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,18492,55180.58,0.0,0.0,55180.58,7137.79,12420.02,4270.62,23828.43,79009.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,23373,8769.01,0.0,0.0,8769.01,0.0,2652.15,678.89,3331.04,12100.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,12291,14601.17,0.0,1582.54,16183.71,3756.72,3685.54,1313.83,8756.09,24939.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,35661,5938.6,0.0,222.05,6160.65,1146.49,1099.09,478.16,2723.74,8884.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1083,126328.59,10678.68,10388.55,147395.82,24857.11,12424.5,2511.53,39793.14,187188.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48100,1483.5,0.0,29.67,1513.17,593.9,119.59,45.91,759.4,2272.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,39106,26409.21,0.0,0.0,26409.21,4914.76,5256.52,2063.0,12234.28,38643.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20892,65909.9,19792.09,538.5,86240.49,18184.53,12987.96,6733.24,37905.73,124146.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,35529,32160.0,2370.13,23284.24,57814.37,5709.66,2867.19,929.65,9506.5,67320.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,22147,62468.8,26148.1,4758.51,93375.41,13001.61,12424.5,7558.22,32984.33,126359.74 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,26076,50222.95,0.0,556.49,50779.44,11163.22,11080.39,4089.69,26333.3,77112.74 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,32485,700.0,0.0,0.0,700.0,248.28,0.0,1415.83,1664.11,2364.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",22274,14391.79,0.0,0.0,14391.79,0.0,3398.82,1104.36,4503.18,18894.97 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,49780,57989.96,471.97,0.0,58461.93,11950.03,12400.61,4731.46,29082.1,87544.03 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,10339,1000.0,0.0,0.0,1000.0,0.0,59.73,77.54,137.27,1137.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,25897,82717.04,1881.78,3246.76,87845.58,17621.39,12424.5,7267.01,37312.9,125158.48 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,23995,87531.0,0.0,0.0,87531.0,18040.63,12424.5,7014.5,37479.63,125010.63 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,41654,93048.66,1313.42,11638.27,106000.35,20528.28,12340.88,8741.5,41610.66,147611.01 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0889,Mayoral Staff IX,31964,81139.0,0.0,0.0,81139.0,16670.03,12424.5,14145.03,43239.56,124378.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,46653,35289.16,1022.06,9629.27,45940.49,7915.39,6419.29,3756.31,18090.99,64031.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,38784,7906.79,0.0,1276.9,9183.69,1791.44,1573.67,762.1,4127.21,13310.9 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,4295,120111.02,0.0,9780.82,129891.84,24172.55,12424.5,9881.85,46478.9,176370.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,44604,14800.0,123.4,331.05,15254.45,2815.89,2389.33,1250.3,6455.52,21709.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,45638,76452.98,8364.08,5243.94,90061.0,16067.35,11717.32,7219.21,35003.88,125064.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41855,129939.07,0.0,250.0,130189.07,27432.0,11370.8,9922.72,48725.52,178914.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,48565,53335.1,8277.07,1896.31,63508.48,12873.6,12424.5,4887.7,30185.8,93694.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35416,99561.68,960.91,2127.63,102650.22,0.0,0.0,1742.97,1742.97,104393.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,26170,9577.22,0.0,894.47,10471.69,1718.3,4116.93,857.06,6692.29,17163.98 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,8173,38637.98,0.0,2400.3,41038.28,8479.55,7780.24,3362.1,19621.89,60660.17 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,9358,90731.21,0.0,0.0,90731.21,18699.38,12418.46,7456.16,38574.0,129305.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,35362,8860.0,105.18,490.1,9455.28,2004.45,2867.19,758.11,5629.75,15085.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,23011,19230.0,0.0,0.0,19230.0,0.0,3345.06,1538.43,4883.49,24113.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29856,149099.0,5.34,31602.97,180707.31,34742.88,12424.5,7622.0,54789.38,235496.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5887,9571.71,413.59,58.35,10043.65,2298.34,2926.02,719.95,5944.31,15987.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,18455,164957.02,0.0,0.0,164957.02,33073.52,12424.5,18912.97,64410.99,229368.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,37423,64719.6,0.0,0.0,64719.6,13046.62,9939.6,5193.26,28179.48,92899.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,29565,30389.51,0.0,1314.6,31704.11,5924.13,6690.11,2568.53,15182.77,46886.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,52973,10132.26,0.0,0.0,10132.26,0.0,3285.32,855.33,4140.65,14272.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,51042,70842.68,106.91,333.6,71283.19,14663.17,11871.98,5919.25,32454.4,103737.59 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,20475,86663.01,24499.24,2440.0,113602.25,18364.02,12424.5,9068.15,39856.67,153458.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,4501,38565.02,0.0,0.0,38565.02,8522.51,7167.99,3056.69,18747.19,57312.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,4561,52644.67,0.0,0.0,52644.67,12619.38,12422.11,4237.12,29278.61,81923.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32479,124292.08,165.95,13545.93,138003.96,23095.03,11004.05,5166.61,39265.69,177269.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,45259,75408.57,0.0,200.0,75608.57,15550.51,12400.6,6270.82,34221.93,109830.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47132,113233.59,3252.63,19282.07,135768.29,25036.02,15196.12,2265.96,42498.1,178266.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19543,0.0,0.0,250.0,250.0,0.0,17.12,0.0,17.12,267.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,8870,7679.0,0.0,289.0,7968.0,0.0,2917.99,618.24,3536.23,11504.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",19401,148809.29,83271.35,33164.9,265245.54,35491.28,15052.76,4475.77,55019.81,320265.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52306,113233.61,13643.48,24026.47,150903.56,25045.38,15196.11,2524.96,42766.45,193670.01 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,5577,113623.03,0.0,0.0,113623.03,22866.76,12424.5,8860.1,44151.36,157774.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,42245,55324.8,0.0,5438.62,60763.42,12529.46,9818.29,5054.84,27402.59,88166.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,45686,85004.0,18472.03,0.0,103476.03,17519.6,12424.5,8425.72,38369.82,141845.85 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,40864,113852.0,0.0,0.0,113852.0,22913.01,12424.52,9340.4,44677.93,158529.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1810,49472.22,6095.62,2481.43,58049.27,13828.86,9717.04,4416.16,27962.06,86011.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",30977,103275.89,15641.69,9212.55,128130.13,22842.52,12103.32,9873.66,44819.5,172949.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",51633,130341.63,37350.82,24745.09,192437.54,30266.04,15052.76,3228.4,48547.2,240984.74 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,27853,220899.01,0.0,12244.96,233143.97,46903.76,12424.5,11675.28,71003.54,304147.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,50507,102561.04,0.0,0.0,102561.04,21138.64,12424.47,8171.95,41735.06,144296.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,41355,19180.0,0.0,0.0,19180.0,3569.4,2389.33,1542.43,7501.16,26681.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,32322,101733.0,0.0,7772.59,109505.59,22576.02,12424.5,8973.08,43973.6,153479.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,6197,26777.5,0.0,0.0,26777.5,4904.58,5973.32,2150.27,13028.17,39805.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,22064,72048.86,0.0,0.0,72048.86,14801.67,11806.26,5775.76,32383.69,104432.55 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,23227,153651.39,0.0,0.0,153651.39,30910.39,12376.71,27895.5,71182.6,224833.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45891,97769.54,39349.96,14364.8,151484.3,27268.69,12424.5,2531.62,42224.81,193709.11 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,4713,55269.41,0.0,1040.0,56309.41,12595.58,12424.5,4531.7,29551.78,85861.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,10729,139204.27,19263.01,15763.0,174230.28,27492.78,12424.5,2915.25,42832.53,217062.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21257,18319.78,4008.22,1250.03,23578.03,4785.14,3522.65,1779.39,10087.18,33665.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,31558,9625.87,0.0,0.0,9625.87,1745.18,930.58,764.33,3440.09,13065.96 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,40793,73891.51,0.0,5438.24,79329.75,15575.36,12337.59,6583.0,34495.95,113825.7 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,35687,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5124.28,30401.4,92760.41 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1767,Media Programming Spec,35903,73898.87,254.27,65.33,74218.47,15241.8,12292.91,6096.04,33630.75,107849.22 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,5441,97943.4,0.0,0.0,97943.4,20182.68,12424.51,7775.73,40382.92,138326.32 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,15567,61735.01,0.0,623.4,62358.41,12852.51,12424.5,5110.37,30387.38,92745.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,9312,117129.72,14954.79,13030.21,145114.72,23205.2,12424.51,2399.38,38029.09,183143.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,249,62450.89,3616.51,1587.83,67655.23,13035.57,12352.82,5632.05,31020.44,98675.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51968,112685.46,13259.18,9370.28,135314.92,22169.46,12424.5,2305.91,36899.87,172214.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,24385,161124.47,0.0,0.0,161124.47,32378.68,12424.5,17790.95,62594.13,223718.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,33388,36335.01,0.0,700.0,37035.01,7728.84,11946.64,2952.93,22628.41,59663.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13688,7782.87,0.0,0.0,7782.87,0.0,3374.93,624.96,3999.89,11782.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9117,Pr Fare Collections Receiver,7763,8758.55,0.0,0.0,8758.55,1629.96,1409.71,679.43,3719.1,12477.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,32985,62830.8,3009.19,3364.26,69204.25,14423.4,12424.5,5527.08,32374.98,101579.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,28956,85221.0,1709.4,442.18,87372.58,17563.59,12424.5,7164.19,37152.28,124524.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,24088,11902.75,0.0,73.58,11976.33,0.0,0.0,947.25,947.25,12923.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9140,Transit Manager 1,20962,69482.4,0.0,3379.15,72861.55,13848.72,9079.43,5818.0,28746.15,101607.7 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,1771,49809.03,586.71,224.78,50620.52,9790.46,8123.71,4177.4,22091.57,72712.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,53104,69691.92,0.0,22435.58,92127.5,15290.43,6546.76,7445.97,29283.16,121410.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6272,Senior Housing Inspector,41581,124338.03,0.0,4973.52,129311.55,26024.36,12424.5,9975.79,48424.65,177736.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36118,97770.52,10293.7,17988.5,126052.72,28161.36,12424.5,2091.73,42677.59,168730.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,47074,14636.66,0.0,46.97,14683.63,0.0,4853.21,1138.56,5991.77,20675.4 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46979,113524.38,0.0,1125.0,114649.38,22237.4,8839.02,6920.25,37996.67,152646.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6231,Senior Street Inspector,40590,92542.02,7180.74,0.0,99722.76,19073.15,12424.51,7957.42,39455.08,139177.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33233,49610.06,1021.57,7975.12,58606.75,0.0,3830.15,4542.76,8372.91,66979.66 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,39223,54899.98,2348.27,3331.4,60579.65,11346.25,8828.57,4871.8,25046.62,85626.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,96,11063.61,0.0,0.0,11063.61,0.0,3613.86,858.71,4472.57,15536.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6169,5268.4,0.0,891.95,6160.35,373.86,0.0,3168.8,3542.66,9703.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26699,21000.87,166.52,9929.28,31096.67,4804.97,4643.95,2521.14,11970.06,43066.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,29085,79722.03,1620.67,2997.63,84340.33,17064.58,12424.5,6605.12,36094.2,120434.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,30113,44652.0,27720.86,8149.91,80522.77,12103.97,5734.39,1344.64,19183.0,99705.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",17381,147149.0,0.0,0.0,147149.0,29613.71,12424.5,17566.44,59604.65,206753.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,43516,1345.4,0.0,0.0,1345.4,250.37,167.25,108.19,525.81,1871.21 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,40038,97762.85,3167.85,10845.58,111776.28,24865.73,12424.5,1856.32,39146.55,150922.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46793,2805.25,0.0,0.0,2805.25,0.0,1367.89,217.63,1585.52,4390.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",49254,7817.0,0.0,0.0,7817.0,1417.22,477.86,606.72,2501.8,10318.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,22093,93281.01,0.0,0.0,93281.01,19225.76,12424.5,6852.41,38502.67,131783.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50655,54091.27,0.0,1222.94,55314.21,12242.69,12417.04,4537.29,29197.02,84511.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40836,34615.56,5797.17,1042.84,41455.57,9312.95,10845.17,3116.68,23274.8,64730.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,41950,81398.0,0.0,0.0,81398.0,16653.62,11468.77,6550.68,34673.07,116071.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,37759,63102.0,0.0,31.67,63133.67,13011.9,12424.5,5184.06,30620.46,93754.13 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,28282,72965.19,731.46,337.16,74033.81,15022.07,12424.5,5644.37,33090.94,107124.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10616,4529.01,679.35,31.54,5239.9,804.94,477.86,87.53,1370.33,6610.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48876,112170.35,22277.29,19113.03,153560.67,24779.33,15052.77,2563.19,42395.29,195955.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,18487,84644.0,22577.24,11977.61,119198.85,20438.08,12424.5,9503.16,42365.74,161564.59 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8251,Fingerprint Technician 3,50504,72319.02,268.91,9398.01,81985.94,16385.21,12424.5,6730.39,35540.1,117526.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44611,74926.15,8522.34,5126.54,88575.03,15772.81,15052.75,1475.68,32301.24,120876.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,69,4893.83,0.0,859.47,5753.3,2414.79,370.59,262.99,3048.37,8801.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,52959,12124.0,0.0,100514.97,112638.97,2771.46,955.73,31.91,3759.1,116398.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34117,21543.58,0.0,813.26,22356.84,12816.15,0.0,5504.65,18320.8,40677.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,16473,3530.61,0.0,0.0,3530.61,0.0,1147.0,274.03,1421.03,4951.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27270,44177.27,4808.59,2111.2,51097.06,10577.64,11943.17,4037.12,26557.93,77654.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19453,2731.1,0.0,0.0,2731.1,0.0,1173.75,219.69,1393.44,4124.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,41164,10417.3,0.0,167.81,10585.11,0.0,3446.6,820.92,4267.52,14852.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,43363,81157.09,0.0,6006.43,87163.52,17856.7,12424.5,7096.33,37377.53,124541.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",2201,63133.0,17309.31,3139.23,83581.54,13035.15,10990.9,6774.27,30800.32,114381.86 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,8493,102099.21,0.0,22342.5,124441.71,10175.89,9808.18,9565.17,29549.24,153990.95 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,45472,79377.1,0.0,0.0,79377.1,16443.12,11803.27,6562.81,34809.2,114186.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,18419,79940.19,10048.44,3116.45,93105.08,16625.6,12424.5,7377.54,36427.64,129532.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,43520,97934.01,11264.45,7643.99,116842.45,21590.61,12424.5,9621.31,43636.42,160478.87 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,6819,3314.87,0.0,0.0,3314.87,0.0,760.12,256.63,1016.75,4331.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,23841,20178.0,0.0,1266.11,21444.11,0.0,2628.26,1694.66,4322.92,25767.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45593,77856.3,2307.11,2990.64,83154.05,15750.04,11946.64,4386.5,32083.18,115237.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,12556,18522.0,0.0,0.0,18522.0,3529.49,2867.2,1467.73,7864.42,26386.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",13508,180314.36,29909.75,38864.01,249088.12,42539.23,15196.12,640.79,58376.14,307464.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47460,535.41,0.0,0.0,535.41,1105.43,41.87,-0.01,1147.29,1682.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40292,119463.8,24061.97,3721.47,147247.24,23633.47,12424.5,2507.24,38565.21,185812.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,23926,110231.56,358.4,775.0,111364.96,22747.4,7529.07,8888.3,39164.77,150529.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,18193,84644.03,32175.84,5877.83,122697.7,17556.45,12424.48,9586.26,39567.19,162264.89 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,5267,17377.16,218.44,119.5,17715.1,0.0,0.0,1402.24,1402.24,19117.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,1801,108372.24,3154.16,13351.28,124877.68,29584.35,12424.5,2079.92,44088.77,168966.45 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,30454,143473.02,0.0,0.0,143473.02,28379.15,0.0,15002.08,43381.23,186854.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28601,132115.27,1430.54,12111.26,145657.07,27616.22,11010.02,9363.7,47989.94,193647.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,26083,133043.44,0.0,1240.0,134283.44,26926.44,12424.47,10034.8,49385.71,183669.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13583,2729.54,0.0,0.0,2729.54,2425.84,0.0,3946.63,6372.47,9102.01 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,2757,15017.92,0.0,0.0,15017.92,2803.96,3728.85,1224.34,7757.15,22775.07 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,11538,0.0,0.0,6398.55,6398.55,0.0,34.25,489.49,523.74,6922.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,44423,40182.57,0.0,456.61,40639.18,9712.13,11205.94,3259.95,24178.02,64817.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,28400,62811.01,4528.52,7533.17,74872.7,13736.12,12424.5,6161.67,32322.29,107194.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47905,110743.9,39881.46,17327.24,167952.6,24360.61,14383.75,2792.49,41536.85,209489.45 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,35104,41207.02,56.73,100.0,41363.75,8181.31,8601.58,3301.69,20084.58,61448.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45890,68766.61,870.68,4685.07,74322.36,13987.03,7592.32,1263.51,22842.86,97165.22 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,49272,86049.0,0.0,0.0,86049.0,17734.95,12424.5,7029.33,37188.78,123237.78 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8603,Emergency Services Coord III,21802,68435.25,0.0,1135.11,69570.36,14622.28,8983.87,5506.04,29112.19,98682.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,44859,81776.03,0.0,624.0,82400.03,16983.28,12424.5,6580.98,35988.76,118388.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4150,143925.24,0.0,22447.25,166372.49,29453.74,12358.8,9102.05,50914.59,217287.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,5448,39235.04,486.5,160.0,39881.54,9240.01,9557.3,2926.21,21723.52,61605.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,37231,24936.12,0.0,0.0,24936.12,3891.76,8252.14,2042.14,14186.04,39122.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23050,1351.9,1056.04,125.73,2533.67,224.87,0.0,35.24,260.11,2793.78 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8183,Assistant Chief Attorney 2,33122,218440.03,0.0,5931.3,224371.33,45155.06,12424.5,11605.82,69185.38,293556.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43542,42769.08,3227.21,1616.83,47613.12,11522.84,13148.59,3567.67,28239.1,75852.22 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),7901,114782.02,0.0,750.0,115532.02,22455.45,8506.01,8984.14,39945.6,155477.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,375,54124.03,0.0,80.0,54204.03,12121.65,12424.5,4298.45,28844.6,83048.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52926,48998.72,286.51,7785.36,57070.59,11843.03,10900.29,4595.93,27339.25,84409.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22100,77071.05,0.0,292.8,77363.85,15939.22,12424.5,6406.99,34770.71,112134.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,9753,108045.74,1350.66,11232.19,120628.59,24458.62,12425.4,9790.74,46674.76,167303.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,34222,26927.01,82.46,0.0,27009.47,6039.76,5734.39,2202.71,13976.86,40986.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,44873,107978.0,3206.81,8925.53,120110.34,23435.62,12424.5,9783.09,45643.21,165753.55 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,1247,101531.0,0.0,0.0,101531.0,20926.02,12424.5,8296.54,41647.06,143178.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12765,27583.95,1877.44,929.13,30390.52,7142.98,8583.52,2114.66,17841.16,48231.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49716,119450.13,3065.89,4967.69,127483.71,23683.72,12424.49,2171.22,38279.43,165763.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46682,36330.47,6553.16,8030.94,50914.57,11930.8,7224.97,3956.54,23112.31,74026.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,14764,218443.95,10432.19,8388.38,237264.52,45257.62,10560.83,11768.62,67587.07,304851.59 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",1400,"Clerical, Secretarial & Steno",1434,Shelter Service Rep,47740,58652.07,84.08,2350.79,61086.94,12216.67,12424.5,5021.31,29662.48,90749.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,5237,74738.37,0.0,2141.58,76879.95,15835.36,12376.24,6077.06,34288.66,111168.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,21702,71319.71,0.0,195.0,71514.71,14899.12,11182.06,5961.66,32042.84,103557.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19779,147085.85,661.95,23942.93,171690.73,33190.7,12257.25,8185.63,53633.58,225324.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44265,52665.92,19115.61,41793.65,113575.18,12795.05,5734.39,1825.1,20354.54,133929.72 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,53162,18193.0,0.0,300.0,18493.0,3441.57,3106.12,1450.77,7998.46,26491.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8788,2651.41,0.0,2462.94,5114.35,599.56,430.07,397.93,1427.56,6541.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,16270,67729.02,4864.79,0.0,72593.81,13955.53,12424.5,5724.35,32104.38,104698.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32041,44.75,0.0,0.0,44.75,0.0,14.93,3.47,18.4,63.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,21050,132896.24,0.0,12889.52,145785.76,26749.37,12406.58,10242.83,49398.78,195184.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,29285,118378.96,0.0,0.0,118378.96,23825.05,12418.53,26993.05,63236.63,181615.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,24524,116557.95,15889.96,6352.86,138800.77,23125.08,12364.77,2354.22,37844.07,176644.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,18249,2844.0,0.0,0.0,2844.0,733.75,860.16,233.57,1827.48,4671.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,769,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2413.37,12866.72,44166.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,27059,71340.29,0.0,0.0,71340.29,14701.29,12424.5,5710.32,32836.11,104176.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,18717,119066.0,0.0,12141.39,131207.39,31885.55,12424.5,1277.4,45587.45,176794.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,51786,144034.48,0.0,250.0,144284.48,28996.44,9853.59,10175.54,49025.57,193310.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,38069,67261.03,0.0,2024.0,69285.03,14276.5,12424.53,5676.04,32377.07,101662.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,15129,98638.23,34258.03,8549.64,141445.9,21265.43,12106.12,10136.05,43507.6,184953.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34339,5260.75,0.0,224.18,5484.93,0.0,2007.02,425.3,2432.32,7917.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,10880,60018.0,8350.67,7617.16,75985.83,13228.22,9079.44,6071.44,28379.1,104364.93 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,47495,53937.04,0.0,0.0,53937.04,10509.35,7645.85,4313.3,22468.5,76405.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,4465,79401.23,7012.71,167.31,86581.25,16024.44,10059.07,7233.32,33316.83,119898.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20119,128531.2,24305.59,11811.46,164648.25,17529.24,12364.77,5628.33,35522.34,200170.59 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,2971,19608.59,0.0,0.0,19608.59,4311.98,3954.34,1487.39,9753.71,29362.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,29009,59956.01,58.46,1995.53,62010.0,12752.38,11857.16,5125.89,29735.43,91745.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7246,2424.4,0.0,0.0,2424.4,0.0,1051.3,195.17,1246.47,3670.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,40454,73851.32,14620.49,127787.74,216259.55,16887.39,6212.25,255.57,23355.21,239614.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,30525,75256.31,0.0,0.0,75256.31,15507.67,12424.48,5466.82,33398.97,108655.28 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,1079,167523.7,0.0,0.0,167523.7,33671.71,12424.5,10584.56,56680.77,224204.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22964,57514.1,5751.92,4162.98,67429.0,16571.56,11314.66,5040.26,32926.48,100355.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15078,12435.64,0.0,857.72,13293.36,0.0,5334.18,1076.69,6410.87,19704.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28795,96304.14,379.58,14469.27,111152.99,18674.25,10427.03,9188.6,38289.88,149442.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20454,4792.6,0.0,26.01,4818.61,0.0,1596.36,373.7,1970.06,6788.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30335,11343.74,0.0,0.0,11343.74,446.02,4919.03,908.12,6273.17,17616.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19221,56531.0,40.52,0.0,56571.52,11667.81,12424.5,4349.85,28442.16,85013.68 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,45075,90623.81,0.0,0.0,90623.81,18659.04,12424.5,7281.6,38365.14,128988.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,38831,113369.08,47812.34,21861.95,183043.37,24070.23,12424.48,10812.96,47307.67,230351.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17364,142808.99,49452.01,25051.68,217312.68,28253.92,12305.04,3614.42,44173.38,261486.06 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,14646,38051.51,8723.23,901.81,47676.55,8356.14,8214.39,3871.68,20442.21,68118.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32254,14358.2,0.0,0.0,14358.2,0.0,4288.31,1153.6,5441.91,19800.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31330,41449.44,9142.72,551.45,51143.61,10901.03,8120.72,3958.93,22980.68,74124.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20274,112159.76,82525.51,18874.9,213560.17,24724.26,15052.76,3634.19,43411.21,256971.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,46660,122598.4,0.0,0.0,122598.4,13677.47,12137.79,9760.33,35575.59,158173.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24384,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3346.7,18172.55,61939.85 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,41757,80570.01,0.0,0.0,80570.01,16605.95,12424.5,6510.54,35540.99,116111.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41878,22290.11,0.0,593.95,22884.06,8163.42,1678.32,944.89,10786.63,33670.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,17785,6820.7,0.0,66.18,6886.88,0.0,2260.9,534.2,2795.1,9681.98 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,45000,94107.08,1050.03,10148.97,105306.08,20436.63,12424.5,8687.91,41549.04,146855.12 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1226,Chf Payroll & Personnel Clerk,48752,0.0,0.0,15196.5,15196.5,0.0,0.0,1162.53,1162.53,16359.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44638,39470.57,0.0,1882.3,41352.87,8598.51,8765.01,3208.14,20571.66,61924.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47413,119455.92,11911.86,4258.42,135626.2,23662.83,12424.5,2253.19,38340.52,173966.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13931,10437.06,0.0,0.0,10437.06,1621.5,4525.86,837.92,6985.28,17422.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1338,67921.66,30371.88,4542.38,102835.92,19846.1,13383.9,8051.3,41281.3,144117.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42275,42926.66,22241.72,2985.03,68153.41,11983.22,8415.99,5334.65,25733.86,93887.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18054,3393.26,0.0,1.96,3395.22,0.0,1654.61,263.37,1917.98,5313.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46336,17606.8,2906.09,716.57,21229.46,4387.67,5433.39,1537.75,11358.81,32588.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47592,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48659,3227.88,0.0,10.29,3238.17,0.0,1573.97,251.11,1825.08,5063.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,35846,60781.03,0.0,456.0,61237.03,13082.95,9079.44,5023.47,27185.86,88422.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28819,63002.91,10349.86,3859.98,77212.75,18397.89,12429.27,6023.73,36850.89,114063.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,14433,75927.03,0.0,612.0,76539.03,15774.74,12424.5,6274.16,34473.4,111012.43 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,50039,88268.41,0.0,0.0,88268.41,18155.9,12424.49,7143.89,37724.28,125992.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36512,112159.77,15097.28,20863.3,148120.35,25275.51,15052.76,2523.91,42852.18,190972.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,52667,129811.04,0.0,1040.0,130851.04,26332.61,12424.5,9976.92,48734.03,179585.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,7280,3328.26,0.0,230.32,3558.58,0.0,730.24,276.21,1006.45,4565.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33190,65138.59,4641.43,671.83,70451.85,16549.1,13032.47,5333.67,34915.24,105367.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8022,11864.42,0.0,0.0,11864.42,0.0,5144.82,971.67,6116.49,17980.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,27835,50457.42,8917.32,1997.89,61372.63,11319.94,11582.08,5061.18,27963.2,89335.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22088,67632.04,24801.17,4805.71,97238.92,19834.54,13325.8,7557.2,40717.54,137956.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38674,112689.23,18943.59,11740.86,143373.68,22317.18,12424.5,2387.07,37128.75,180502.43 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,17005,81542.03,0.0,0.0,81542.03,16806.15,12424.5,6651.3,35881.95,117423.98 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),35223,134853.46,0.0,1500.0,136353.46,26301.64,12424.5,9644.44,48370.58,184724.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,2860,93284.46,3505.86,7855.05,104645.37,20523.55,12364.76,8563.53,41451.84,146097.21 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,50939,63993.34,0.0,18440.01,82433.35,13369.56,8501.58,6772.48,28643.62,111076.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,7077,52078.43,245.47,518.16,52842.06,10953.09,11277.62,4935.29,27166.0,80008.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,41217,75605.0,34346.63,5061.66,115013.29,15607.37,12424.5,9116.45,37148.32,152161.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52054,58014.83,2828.99,1124.71,61968.53,16049.45,11417.76,4613.54,32080.75,94049.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",29423,147861.12,9994.52,9560.67,167416.31,30794.87,12424.5,2819.67,46039.04,213455.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7829,119064.85,0.0,1693.2,120758.05,23542.84,12382.69,2049.26,37974.79,158732.84 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,37543,60147.31,950.08,6137.42,67234.81,13175.11,11839.12,5448.46,30462.69,97697.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20206,7340.0,0.0,732.18,8072.18,1708.5,1911.46,635.32,4255.28,12327.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,41847,29600.0,212.26,1201.33,31013.59,5732.13,4778.65,2363.29,12874.07,43887.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,30603,11593.25,0.0,0.0,11593.25,2991.07,3506.34,945.75,7443.16,19036.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2599,122.5,0.0,4.9,127.4,0.0,59.73,9.89,69.62,197.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,5952,39489.83,223.22,388.81,40101.86,7953.3,7741.6,3335.93,19030.83,59132.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50489,6081.66,0.0,0.0,6081.66,0.0,2637.22,485.78,3123.0,9204.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29189,115118.53,4272.49,15990.39,135381.41,25242.25,11164.13,9886.67,46293.05,181674.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2588,109895.43,7234.78,18296.64,135426.85,24228.39,14749.32,2307.34,41285.05,176711.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,52699,97934.03,8879.85,3055.0,109868.88,20412.25,12424.5,9023.2,41859.95,151728.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,50139,17251.37,0.0,387.95,17639.32,2617.82,2549.11,1430.02,6596.95,24236.27 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,4477,83383.03,0.0,0.0,83383.03,16114.39,8601.57,6764.46,31480.42,114863.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,30568,21685.0,1566.75,775.71,24027.46,4040.49,2867.19,1911.14,8818.82,32846.28 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8152,"Srclaimsinvstgtor,Cty Atty Ofc",4666,84842.03,0.0,0.0,84842.03,16657.58,9079.44,6781.25,32518.27,117360.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,24469,120111.06,0.0,0.0,120111.06,24172.55,12424.51,9293.54,45890.6,166001.66 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,46673,83903.68,64801.51,13513.19,162218.38,19456.45,11135.64,10430.64,41022.73,203241.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11043,40054.57,3504.58,1125.21,44684.36,10673.91,12524.02,3178.02,26375.95,71060.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7338,17943.86,2470.68,567.92,20982.46,4437.9,5539.84,1603.77,11581.51,32563.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,28723,2835.01,0.0,40.0,2875.01,644.86,477.86,224.43,1347.15,4222.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",52576,114967.08,7238.4,35450.17,157655.65,24626.75,11612.13,2636.25,38875.13,196530.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,28775,32655.0,8305.99,5248.56,46209.55,6592.5,5734.39,3631.99,15958.88,62168.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,8017,84644.0,27983.05,12838.94,125465.99,19310.76,12424.5,9803.54,41538.8,167004.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,52915,91875.04,0.0,0.0,91875.04,18922.28,12424.51,7398.29,38745.08,130620.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H050,Asst Chf Of Dept (Fire Dept),34833,206434.7,73686.92,30622.01,310743.63,46499.61,15052.76,5257.74,66810.11,377553.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,49830,70245.0,1620.6,4559.5,76425.1,14616.8,12424.5,6286.15,33327.45,109752.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45652,51477.0,7694.66,4186.96,63358.62,13242.77,12424.5,5171.56,30838.83,94197.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,22564,98640.7,0.0,760.0,99400.7,20470.84,12424.5,8136.29,41031.63,140432.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,25096,154332.45,0.0,13616.55,167949.0,31036.33,12233.36,10536.69,53806.38,221755.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,43556,66415.86,445.53,3309.83,70171.22,13739.89,11743.0,5751.61,31234.5,101405.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41101,71852.86,0.0,12087.23,83940.09,15674.49,6947.44,6060.87,28682.8,112622.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,4562,13337.51,0.0,0.0,13337.51,2493.0,1953.27,1072.73,5519.0,18856.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44123,1139.78,0.0,48.85,1188.63,0.0,83.62,74.61,158.23,1346.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",14206,30321.14,574.53,1393.32,32288.99,6959.07,4043.94,2672.98,13675.99,45964.98 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,18793,39593.2,0.0,0.0,39593.2,8058.45,4922.02,3216.65,16197.12,55790.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,21233,75270.12,9107.81,9140.84,93518.77,16570.36,12369.13,7417.21,36356.7,129875.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,11893,0.0,0.0,5315.27,5315.27,0.0,34.25,406.62,440.87,5756.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26610,69840.04,23706.65,8505.67,102052.36,21495.85,13759.78,7772.55,43028.18,145080.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,6559,87531.07,0.0,0.0,87531.07,18040.64,12424.5,7256.63,37721.77,125252.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20215,220.4,0.0,7.03,227.43,0.0,95.58,17.61,113.19,340.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,48991,50778.06,0.0,0.0,50778.06,10337.0,10990.91,3956.41,25284.32,76062.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,352.0,Municipal Executive Association - Fire,0900,Management,H051,Assistant Deputy Chief 2,589,97471.01,0.0,47270.44,144741.45,22218.03,5256.52,6097.8,33572.35,178313.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,35504,49256.34,0.0,0.0,49256.34,0.0,0.0,3896.85,3896.85,53153.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31826,112833.31,27288.46,3107.23,143229.0,22767.2,12424.5,369.54,35561.24,178790.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,21657,62530.03,0.0,3498.07,66028.1,13719.06,6212.25,5329.84,25261.15,91289.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,26173,82883.0,494.25,745.65,84122.9,17237.57,12424.48,6765.15,36427.2,120550.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,47868,84644.0,33065.23,5033.1,122742.33,17556.45,12424.5,9548.65,39529.6,162271.93 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,36776,61662.0,0.0,540.0,62202.0,13741.23,7138.11,5019.61,25898.95,88100.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",946,10762.54,0.0,0.0,10762.54,3747.12,2562.55,896.82,7206.49,17969.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10835,67858.23,13380.55,4917.83,86156.61,19979.8,13374.74,6337.38,39691.92,125848.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27896,42092.71,0.0,0.0,42092.71,0.0,3525.87,3474.5,7000.37,49093.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24651,118811.09,69.23,26742.59,145622.91,27395.29,10628.81,10080.57,48104.67,193727.58 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,16355,60508.97,39852.33,7592.44,107953.74,13364.66,11910.92,8782.0,34057.58,142011.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,4601,73138.01,855.3,1065.0,75058.31,15288.82,12424.5,6060.68,33774.0,108832.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38899,3257.53,0.0,0.0,3257.53,0.0,1367.89,260.66,1628.55,4886.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,2701,54629.4,0.0,1060.0,55689.4,11698.74,10076.69,4419.21,26194.64,81884.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,8692,85216.19,0.0,2122.91,87339.1,18000.56,12402.75,7237.5,37640.81,124979.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",14402,29083.2,16371.47,5403.63,50858.3,0.0,3775.14,3957.71,7732.85,58591.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51935,12627.75,0.0,349.46,12977.21,0.0,4835.41,1005.7,5841.11,18818.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,42175,93648.54,1951.52,671.81,96271.87,19289.47,12412.55,7788.84,39490.86,135762.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23616,12586.25,0.0,77.18,12663.43,0.0,4829.41,981.69,5811.1,18474.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,31869,0.0,0.0,158.12,158.12,0.0,0.0,12.09,12.09,170.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5644,Principal Environ Specialist,12369,113930.15,0.0,0.0,113930.15,23163.9,12424.51,9187.66,44776.07,158706.22 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),31624,82374.6,8706.66,13078.79,104160.05,18834.04,12023.88,1726.51,32584.43,136744.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3331,64289.93,6493.83,4711.09,75494.85,18932.32,12668.03,5848.3,37448.65,112943.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,34485,46534.9,1864.43,0.0,48399.33,11154.29,12424.51,3928.54,27507.34,75906.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,34160,131007.28,0.0,0.0,131007.28,26365.33,12424.5,17270.25,56060.08,187067.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",32856,68859.4,23045.47,4632.37,96537.24,14848.59,10417.41,7645.0,32911.0,129448.24 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,36234,119101.2,0.0,0.0,119101.2,24323.54,11233.61,18794.88,54352.03,173453.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,5201,79395.02,0.0,0.0,79395.02,16359.39,12424.5,6540.84,35324.73,114719.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11972,122625.38,10512.79,4929.3,138067.47,24241.15,12424.5,2305.77,38971.42,177038.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,46076,25154.0,0.0,892.79,26046.79,6246.97,6212.25,2020.88,14480.1,40526.89 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,49002,49503.17,1614.34,879.9,51997.41,11057.14,10869.95,4254.67,26181.76,78179.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,40050,93281.0,0.0,0.0,93281.0,19225.75,12424.5,7738.46,39388.71,132669.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,9595,21010.8,202.99,290.87,21504.66,4624.39,5638.81,1685.7,11948.9,33453.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,15281,61939.88,0.0,0.0,61939.88,12420.51,8422.55,5005.03,25848.09,87787.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12332,101780.89,4765.09,12320.54,118866.52,23085.5,14431.54,1504.31,39021.35,157887.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,43562,2026.35,0.0,0.0,2026.35,1214.57,0.0,315.26,1529.83,3556.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44307,15910.3,0.0,0.0,15910.3,3085.26,2437.11,1228.31,6750.68,22660.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,15575,63887.09,237.85,624.0,64748.94,13296.02,12424.5,4991.68,30712.2,95461.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,51127,877.5,0.0,0.0,877.5,0.0,291.2,67.94,359.14,1236.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,21287,67904.41,0.0,622.5,68526.91,14120.84,12394.64,5981.44,32496.92,101023.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,26311,12936.0,133.41,1245.09,14314.5,3180.8,1911.46,1140.17,6232.43,20546.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,41655,5212.03,0.0,79.17,5291.2,0.0,1578.44,410.68,1989.12,7280.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10664,427.03,0.0,12.88,439.91,0.0,185.17,34.06,219.23,659.14 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,35422,113266.27,0.0,0.0,113266.27,23052.22,12424.5,25932.97,61409.69,174675.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,28324,116563.62,13509.61,6384.22,136457.45,23104.58,12364.77,2325.46,37794.81,174252.26 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1380,Special Assistant 21,4020,107385.6,0.0,35532.0,142917.6,23560.37,6498.97,14193.4,44252.74,187170.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32087,54960.43,271.02,10143.77,65375.22,11764.44,5301.75,5179.93,22246.12,87621.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,40951,56276.01,40.33,1301.1,57617.44,12591.79,12424.5,4772.86,29789.15,87406.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,29556,49823.83,0.0,462.0,50285.83,10446.16,9198.91,3951.59,23596.66,73882.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1218,Payroll Supervisor,19722,97424.0,0.0,420.0,97844.0,20157.65,12424.5,7659.82,40241.97,138085.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48482,612.6,379.05,0.0,991.65,0.0,47.79,76.53,124.32,1115.97 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,14152,25707.57,0.0,244.03,25951.6,6205.26,7604.04,2003.01,15812.31,41763.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,45696,53552.36,1578.5,4839.84,59970.7,11959.38,8308.71,4875.21,25143.3,85114.0 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,11557,106197.62,0.0,15900.17,122097.79,21880.44,12424.51,9441.98,43746.93,165844.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,45623,5285.23,0.0,4.83,5290.06,0.0,1562.02,494.02,2056.04,7346.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,106,63887.01,0.0,1818.68,65705.69,13545.12,12424.51,5429.82,31399.45,97105.14 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,45795,11758.08,0.0,765.63,12523.71,499.18,2656.63,969.58,4125.39,16649.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,44521,41001.2,0.0,266.7,41267.9,9321.34,10943.12,3110.47,23374.93,64642.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,51547,77451.72,0.0,1992.0,79443.72,16326.35,12424.5,6329.89,35080.74,114524.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,20586,94716.25,0.0,0.0,94716.25,19487.82,12334.91,7395.25,39217.98,133934.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,20223,116563.54,12605.72,6873.64,136042.9,23104.59,0.0,2326.45,25431.04,161473.94 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,10491,73694.84,0.0,0.0,73694.84,0.0,7293.42,5712.43,13005.85,86700.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41167,56531.0,0.0,5113.81,61644.81,12412.22,12424.5,5047.49,29884.21,91529.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50287,119467.39,35250.2,17069.91,171787.5,23620.97,12424.51,2929.04,38974.52,210762.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35186,9625.7,0.0,545.96,10171.66,0.0,4174.04,816.87,4990.91,15162.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,41525,4627.09,0.0,0.0,4627.09,0.0,1690.45,358.32,2048.77,6675.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,19890,81942.0,602.39,11608.2,94152.59,19277.51,12424.5,7511.27,39213.28,133365.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",3899,1143.11,0.0,0.0,1143.11,0.0,241.92,88.5,330.42,1473.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,14545,29468.7,0.0,11393.5,40862.2,8376.83,6546.76,3336.75,18260.34,59122.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,8767,43887.37,0.0,16105.6,59992.97,9986.98,6427.29,4768.78,21183.05,81176.02 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,28761,12855.0,0.0,0.0,12855.0,2883.4,2389.33,1028.92,6301.65,19156.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O840,Harbor Attendant (OCII),12194,42322.89,0.0,992.55,43315.44,9980.57,9981.42,3509.39,23471.38,66786.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7482,Power Generation Technician 2,28575,66449.57,14468.19,3403.12,84320.88,14904.7,7926.6,6783.76,29615.06,113935.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,4970,77409.09,9569.32,8938.67,95917.08,16052.4,10556.71,1608.29,28217.4,124134.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,41036,112201.37,79541.53,18235.07,209977.97,24786.83,15004.98,3526.52,43318.33,253296.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,23361,141189.02,0.0,1170.0,142359.02,28333.25,12424.5,17439.18,58196.93,200555.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,17022,79053.62,0.0,621.3,79674.92,16410.83,12370.74,6607.96,35389.53,115064.45 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,12593,61957.92,0.0,0.0,61957.92,13142.21,9610.29,5045.91,27798.41,89756.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,3043,38603.31,0.0,0.0,38603.31,9296.47,8600.09,3054.75,20951.31,59554.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,21016,14940.01,6869.36,1939.65,23749.02,3613.72,2867.19,1933.01,8413.92,32162.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,9028,65664.9,3067.3,4164.23,72896.43,14325.59,11614.58,5976.85,31917.02,104813.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,19938,64371.74,3238.11,13779.54,81389.39,15383.87,12406.57,6685.74,34476.18,115865.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,44230,138635.91,12733.26,4303.59,155672.76,27392.94,12424.5,2597.63,42415.07,198087.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29394,30097.23,980.33,631.59,31709.15,7958.57,5921.41,2444.07,16324.05,48033.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41304,111309.84,1043.63,26064.54,138418.01,22811.04,10981.35,9928.36,43720.75,182138.76 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,23491,127653.33,0.0,0.0,127653.33,25662.03,12208.75,9964.74,47835.52,175488.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48429,58528.72,33.89,7278.45,65841.06,0.0,5119.66,5104.05,10223.71,76064.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,23308,64195.8,5679.1,15722.24,85597.14,15729.33,12376.72,7014.45,35120.5,120717.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,31093,47295.64,0.0,0.0,47295.64,10282.57,10429.41,3814.4,24526.38,71822.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,31500,116569.23,9943.31,6700.96,133213.5,23084.08,12364.77,2075.08,37523.93,170737.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,12271,63887.0,3499.11,798.68,68184.79,13332.0,12424.5,5630.47,31386.97,99571.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33092,137846.69,268.18,747.34,138862.21,27816.01,12257.72,10195.82,50269.55,189131.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47744,62495.03,268.5,4859.32,67622.85,13172.5,11056.61,5526.67,29755.78,97378.63 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,39379,62192.95,0.0,0.0,62192.95,12799.78,12424.5,4919.21,30143.49,92336.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13296,6246.31,0.0,374.79,6621.1,760.89,0.0,666.96,1427.85,8048.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27055,62342.45,17726.81,9905.16,89974.42,14036.5,11026.75,7087.67,32150.92,122125.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,20896,8523.0,0.0,0.0,8523.0,1586.13,1433.6,679.66,3699.39,12222.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,16525,79042.7,0.0,1400.0,80442.7,16640.55,12370.75,5990.69,35001.99,115444.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,13534,24802.26,0.0,588.98,25391.24,4979.92,5481.72,2088.12,12549.76,37941.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,15804,108373.29,39772.76,17258.3,165404.35,30575.06,12424.5,2774.15,45773.71,211178.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,45744,15995.02,0.0,0.0,15995.02,3587.7,2389.33,1331.6,7308.63,23303.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31076,93602.0,0.0,1907.16,95509.16,18776.46,9915.7,8081.18,36773.34,132282.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2057,41648.83,3213.95,664.98,45527.76,10937.43,12521.46,3273.7,26732.59,72260.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25808,68702.89,11200.6,11635.05,91538.54,15322.66,6849.67,7200.26,29372.59,120911.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,10075,69690.61,27654.27,4149.55,101494.43,14512.73,12328.92,8233.01,35074.66,136569.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49965,1405.06,0.0,0.0,1405.06,0.0,609.28,108.78,718.06,2123.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39168,114831.79,26584.29,16633.84,158049.92,25113.64,14479.31,2768.88,42361.83,200411.75 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,37735,21738.91,0.0,223.03,21961.94,5262.91,6376.52,1780.54,13419.97,35381.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46578,30501.87,3947.31,702.26,35151.44,7925.81,9506.65,2682.66,20115.12,55266.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,41820,23018.68,25.61,0.0,23044.29,0.0,0.0,1822.84,1822.84,24867.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,13802,55028.98,309.78,2799.9,58138.66,11977.25,10699.23,4605.37,27281.85,85420.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,50226,34075.95,0.0,0.0,34075.95,4028.75,0.0,983.9,5012.65,39088.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,35744,108016.65,26675.41,4667.0,139359.06,22316.22,12422.12,10056.83,44795.17,184154.23 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,2529,56334.07,4456.14,7628.85,68419.06,13663.3,12388.66,5514.74,31566.7,99985.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22623,32649.0,0.0,537.26,33186.26,3431.62,0.0,3325.37,6756.99,39943.25 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,28037,114102.05,0.0,0.0,114102.05,23256.39,12424.5,9129.49,44810.38,158912.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36013,40267.08,39.74,15520.88,55827.7,9160.55,3813.37,3628.04,16601.96,72429.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52118,56397.1,0.0,8328.08,64725.18,13772.73,12424.5,5233.72,31430.95,96156.13 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,21886,38002.0,4257.9,0.0,42259.9,7072.18,3822.92,3399.41,14294.51,56554.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,15389,2258.15,0.0,0.0,2258.15,506.51,453.97,198.17,1158.65,3416.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37926,14452.45,0.0,0.0,14452.45,634.84,6267.09,1157.74,8059.67,22512.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39527,16419.8,41.33,491.77,16952.9,1632.04,7120.2,1373.28,10125.52,27078.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48968,119463.83,22547.05,3214.33,145225.21,23633.49,12424.5,1422.61,37480.6,182705.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45104,64859.43,6333.43,1791.67,72984.53,18228.93,12779.01,5432.34,36440.28,109424.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24700,38207.12,564.19,929.11,39700.42,8355.36,8394.06,3359.66,20109.08,59809.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,48892,8789.5,274.81,0.0,9064.31,1932.81,2628.27,729.66,5290.74,14355.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,28613,82883.0,178.2,600.0,83661.2,17194.05,12424.5,6861.74,36480.29,120141.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,33381,137101.01,0.0,0.0,137101.01,27592.09,12424.5,25090.03,65106.62,202207.63 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,32131,74165.02,1618.37,0.0,75783.39,15285.75,12424.5,5986.88,33697.13,109480.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,46038,138254.21,13343.33,5848.46,157446.0,27318.05,12376.71,2629.39,42324.15,199770.15 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,47803,115149.17,0.0,0.0,115149.17,23166.84,12382.69,8958.06,44507.59,159656.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,680,3714.01,0.0,0.0,3714.01,833.05,477.86,283.58,1594.49,5308.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,35512,29096.13,0.0,715.0,29811.13,6564.89,4643.9,2350.35,13559.14,43370.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,50567,78550.74,0.0,0.0,78550.74,16491.42,8707.18,6469.13,31667.73,110218.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43319,60810.63,9684.74,5528.99,76024.36,18004.95,11969.39,5926.92,35901.26,111925.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36515,66351.93,3918.28,1947.04,72217.25,18735.42,13077.8,5623.66,37436.88,109654.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51796,67628.14,7171.3,5998.65,80798.09,20206.88,13328.87,6304.06,39839.81,120637.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,20606,24966.4,0.0,0.0,24966.4,3376.3,8087.88,2039.28,13503.46,38469.86 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,6887,37977.56,0.0,447.44,38425.0,9220.07,12490.21,3126.19,24836.47,63261.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,44512,91653.02,0.0,0.0,91653.02,18889.87,12424.5,7340.48,38654.85,130307.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,43434,55829.4,1211.48,3504.69,60545.57,13124.23,11994.19,4896.7,30015.12,90560.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,6327,12026.0,0.0,0.0,12026.0,2238.05,1672.53,961.97,4872.55,16898.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,45342,62437.77,7444.51,1565.8,71448.08,12916.54,12418.53,5867.79,31202.86,102650.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26103,111431.33,20544.56,16915.71,148891.6,24678.16,14955.52,2485.68,42119.36,191010.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39196,67328.47,744.68,3389.23,71462.38,19391.43,13268.06,5569.14,38228.63,109691.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,51877,39905.0,0.0,0.0,39905.0,7234.78,3822.92,3161.29,14218.99,54123.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9128,Senior Transit Traffic Checker,14009,74202.31,10499.37,2184.05,86885.73,15748.85,12376.71,6907.83,35033.39,121919.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7249,Automotive Mechanic Sprv 1,14173,107816.01,18221.61,4508.66,130546.28,22332.94,12424.5,9906.01,44663.45,175209.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,12182,78640.79,0.0,0.0,78640.79,15915.67,10136.71,6202.72,32255.1,110895.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,19266,38073.0,0.0,0.0,38073.0,9196.96,11468.78,2999.46,23665.2,61738.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,38033,51008.68,0.0,909.87,51918.55,11185.46,7860.89,4178.78,23225.13,75143.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,29729,29052.0,0.0,0.0,29052.0,5406.59,3345.08,2320.71,11072.38,40124.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42363,111251.58,3231.36,17075.36,131558.3,24366.27,14670.47,1697.98,40734.72,172293.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,9343,15097.98,0.0,291.58,15389.56,4067.57,4992.2,1508.56,10568.33,25957.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,7790,132016.0,0.0,8472.44,140488.44,28224.44,12424.5,10075.28,50724.22,191212.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32773,67506.04,14794.58,5223.22,87523.84,19927.72,13302.1,6844.35,40074.17,127598.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,2920,3844.39,0.0,0.0,3844.39,0.0,1040.85,298.39,1339.24,5183.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,29989,56531.0,0.0,5303.53,61834.53,12307.55,12424.5,5107.5,29839.55,91674.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43719,12549.96,627.79,86.09,13263.84,3027.89,3869.46,979.22,7876.57,21140.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12764,90780.33,346.19,15367.85,106494.37,0.0,7801.03,8256.79,16057.82,122552.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45162,29830.92,0.0,4287.95,34118.87,0.0,2587.94,2648.17,5236.11,39354.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,3959,58371.27,0.0,120.0,58491.27,2019.75,7765.31,4707.36,14492.42,72983.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,24138,118104.11,0.0,0.0,118104.11,23768.42,12424.5,9083.48,45276.4,163380.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,19904,76207.41,0.0,1440.0,77647.41,16050.08,11935.58,6195.49,34181.15,111828.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,44234,93047.1,20675.0,8760.3,122482.4,20076.45,12567.88,9778.44,42422.77,164905.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,25377,46444.0,204.9,0.0,46648.9,10073.04,8123.71,3729.39,21926.14,68575.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,20144,154070.15,3653.93,4318.43,162042.51,30964.36,7756.18,10494.38,49214.92,211257.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,12756,68531.41,47244.42,8104.94,123880.77,14562.39,10043.65,9770.01,34376.05,158256.82 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0889,Mayoral Staff IX,14463,84157.02,0.0,0.0,84157.02,17345.15,12424.5,14698.49,44468.14,128625.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27360,119455.9,24184.49,10430.87,154071.26,23662.84,12424.5,2578.61,38665.95,192737.21 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,23136,67781.22,1971.58,7843.09,77595.89,15045.01,12400.61,6353.68,33799.3,111395.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,10314,79395.07,0.0,1440.0,80835.07,16667.95,12424.51,6699.69,35792.15,116627.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,36274,16795.8,7033.26,0.0,23829.06,3767.28,2867.19,1952.71,8587.18,32416.24 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,21282,9960.29,0.0,0.0,9960.29,0.0,3694.49,772.74,4467.23,14427.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,42115,72699.0,939.42,8678.15,82316.57,16307.59,12424.5,7297.21,36029.3,118345.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,21742,70245.0,23993.5,10153.81,104392.31,15607.45,12424.5,8255.75,36287.7,140680.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,45904,64213.05,0.0,624.0,64837.05,13375.57,12424.5,5322.42,31122.49,95959.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",26041,137198.83,0.0,0.0,137198.83,27589.85,12376.71,17397.38,57363.94,194562.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34476,111025.99,7.34,26478.01,137511.34,24935.17,10773.48,9973.65,45682.3,183193.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,36843,46810.0,0.0,61183.61,107993.61,10314.0,4778.65,886.74,15979.39,123973.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,11480,55485.0,0.0,0.0,55485.0,11135.22,9557.31,4510.41,25202.94,80687.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43607,120121.02,62923.44,50738.01,233782.47,24237.95,12424.5,3889.53,40551.98,274334.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,23522,35922.0,0.0,900.0,36822.0,7020.21,6690.11,2946.25,16656.57,53478.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,24063,118104.03,0.0,0.0,118104.03,23768.96,12424.5,9082.2,45275.66,163379.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,19934,75509.02,0.0,1404.0,76913.02,15913.68,11946.64,6293.92,34154.24,111067.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9787,67574.8,5256.25,3845.64,76676.69,16285.99,13319.37,5643.83,35249.19,111925.88 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8193,Chief Atty1 (Civil & Criminal),41308,220560.05,0.0,1562.5,222122.55,44701.98,12424.5,11615.4,68741.88,290864.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,21810,7418.03,0.0,520.0,7938.03,0.0,2022.69,616.23,2638.92,10576.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,36998,29040.0,0.0,0.0,29040.0,6513.65,5256.52,2369.06,14139.23,43179.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,7537,80357.0,1861.39,0.0,82218.39,16562.14,12424.5,6800.32,35786.96,118005.35 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,8307,107456.52,0.0,0.0,107456.52,22130.27,12424.5,8837.98,43392.75,150849.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8235,112159.75,4725.25,18613.64,135498.64,24822.81,15052.76,2252.77,42128.34,177626.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,10527,62811.04,1186.23,1450.0,65447.27,13193.44,12424.5,5397.83,31015.77,96463.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25756,39442.26,6051.69,993.71,46487.66,10491.79,12332.99,3523.94,26348.72,72836.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,44342,3892.22,0.0,341.04,4233.26,0.0,313.59,328.03,641.62,4874.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,48852,72025.35,0.0,996.38,73021.73,15044.71,12424.5,5801.84,33271.05,106292.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,19496,70245.0,14577.69,9956.82,94779.51,15740.86,12424.5,7736.82,35902.18,130681.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,26688,49755.15,0.0,1180.0,50935.15,10646.09,10618.05,4171.3,25435.44,76370.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31639,74022.83,1277.6,1925.0,77225.43,15653.84,12176.73,6617.5,34448.07,111673.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,5037,0.0,0.0,143.72,143.72,0.0,0.0,10.99,10.99,154.71 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,28433,98157.0,0.0,0.0,98157.0,20230.58,12424.5,7717.25,40372.33,138529.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,7590,138624.69,18042.39,12929.01,169596.09,27434.17,12424.5,2517.59,42376.26,211972.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,36023,72673.99,0.0,3266.4,75940.39,14754.67,10226.27,6239.08,31220.02,107160.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14182,113233.59,8164.19,18023.18,139420.96,25036.02,15196.12,2374.38,42606.52,182027.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50296,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1799,70080.41,7080.49,10363.47,87524.37,15893.09,12396.13,6922.02,35211.24,122735.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38936,2080.41,0.0,0.0,2080.41,0.0,873.6,161.87,1035.47,3115.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,18722,45043.6,23074.34,8745.39,76863.33,10200.44,8888.29,6204.28,25293.01,102156.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,25177,60747.42,0.0,0.0,60747.42,13328.0,4778.65,7713.92,25820.57,86567.99 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,52413,88233.6,0.0,3073.18,91306.78,18227.37,12415.72,7494.89,38137.98,129444.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30226,119408.41,18302.73,17031.93,154743.07,23614.87,12418.53,2590.14,38623.54,193366.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2446,8242.2,0.0,0.0,8242.2,1808.34,907.95,657.35,3373.64,11615.84 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,2131,10650.02,239.63,0.0,10889.65,2747.7,2389.33,866.09,6003.12,16892.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,4560,24382.47,0.0,0.0,24382.47,0.0,5334.17,1974.47,7308.64,31691.11 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,30428,69795.33,0.0,15424.77,85220.1,15166.42,6929.06,11690.11,33785.59,119005.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,15196,106605.0,0.0,0.0,106605.0,21971.81,12424.5,8767.51,43163.82,149768.82 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3310,Stable Attendant,5564,44322.66,683.69,4142.11,49148.46,9992.41,9796.24,4063.49,23852.14,73000.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14490,20877.0,0.0,3793.17,24670.17,510.81,0.0,4320.61,4831.42,29501.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,45,79395.06,0.0,2004.0,81399.06,16770.05,12424.51,6553.56,35748.12,117147.18 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9778,7420.0,10.5,157.5,7588.0,0.0,3165.86,587.47,3753.33,11341.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,25372,62811.0,90.64,3724.65,66626.29,13566.23,12424.5,5340.52,31331.25,97957.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,35765,0.0,0.0,1570.92,1570.92,0.0,34.25,120.18,154.43,1725.35 +Calendar,2015,6,General Administration & Finance,CON,Controller,22.0,"Prof & Tech Engineers - Personnel, Local 21",1500,Administrative Secretarial,1574,Ex Asst To The Controller,5617,96802.62,0.0,0.0,96802.62,19944.5,12376.72,7800.84,40122.06,136924.68 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",8491,69153.61,23235.35,10060.24,102449.2,18053.41,12376.71,2012.53,32442.65,134891.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,31200,16542.39,0.0,0.0,16542.39,3637.69,5486.49,1329.23,10453.41,26995.8 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,787,94031.96,6550.74,13922.88,114505.58,26315.48,11945.26,1553.74,39814.48,154320.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,11009,112776.01,0.0,5638.8,118414.81,23825.95,12424.5,9602.54,45852.99,164267.8 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,43966,11358.69,98.89,0.0,11457.58,0.0,2816.42,888.42,3704.84,15162.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30961,68583.26,586.99,3307.24,72477.49,14325.72,7529.37,5842.27,27697.36,100174.85 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,18869,11364.0,0.0,0.0,11364.0,2114.84,1911.46,905.55,4931.85,16295.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,52014,85445.62,4020.63,890.0,90356.25,17796.28,12424.5,7399.45,37620.23,127976.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,3670,6345.0,0.0,0.0,6345.0,1423.17,1433.6,526.71,3383.48,9728.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45084,62517.84,0.0,0.0,62517.84,0.0,0.0,1069.45,1069.45,63587.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,7057,84644.0,18921.44,4686.51,108251.95,17590.36,12424.5,8424.51,38439.37,146691.32 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,3719,35337.6,0.0,3000.0,38337.6,8641.2,8028.14,3138.92,19808.26,58145.86 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,10963,93873.66,0.0,2200.0,96073.66,19717.67,12081.28,7711.03,39509.98,135583.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",40096,25388.04,0.0,0.0,25388.04,0.0,5319.24,1919.04,7238.28,32626.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13710,110.2,0.0,876.09,986.29,28.43,47.79,75.55,151.77,1138.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43158,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2412.83,12866.18,44166.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,30793,71189.62,1208.26,0.0,72397.88,14653.61,12424.5,5481.4,32559.51,104957.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44724,55365.42,0.0,2784.11,58149.53,12389.89,12424.5,4654.92,29469.31,87618.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,9739,56766.33,0.0,35.4,56801.73,11723.87,11426.96,4609.04,27759.87,84561.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,2374,55688.01,959.69,1220.0,57867.7,11205.77,8123.71,4655.87,23985.35,81853.05 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,51461,140441.06,0.0,0.0,140441.06,28197.66,12424.5,18528.56,59150.72,199591.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22656,20894.98,0.0,3509.48,24404.46,4902.6,5322.23,1959.48,12184.31,36588.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8322,2131.5,0.0,0.0,2131.5,0.0,1039.36,165.29,1204.65,3336.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38929,117207.3,3807.12,24046.06,145060.48,24882.74,11031.52,9982.4,45896.66,190957.14 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,9246,0.0,0.0,1858.99,1858.99,0.0,68.5,142.22,210.72,2069.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5595,65954.45,17768.93,812.59,84535.97,18323.97,12998.48,6388.25,37710.7,122246.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21137,35861.93,209.96,2521.65,38593.54,0.0,3094.18,3089.26,6183.44,44776.98 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),43088,109452.82,0.0,1500.0,110952.82,22591.48,12424.5,8953.62,43969.6,154922.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,49846,7379.46,0.0,0.0,7379.46,0.0,2251.94,583.47,2835.41,10214.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,27998,69247.03,0.0,54.26,69301.29,14283.78,12424.5,5642.62,32350.9,101652.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,17965,63887.02,0.0,624.0,64511.02,13295.99,12424.5,5347.91,31068.4,95579.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,1993,102019.03,0.0,0.0,102019.03,21026.26,12424.52,8390.02,41840.8,143859.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,37438,87531.07,0.0,0.0,87531.07,18037.42,12424.5,6870.91,37332.83,124863.9 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,29079,17735.65,0.0,0.0,17735.65,0.0,5832.35,1374.83,7207.18,24942.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,22766,31523.5,0.0,390.0,31913.5,5866.5,3739.3,2427.54,12033.34,43946.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26633,56621.25,14517.65,3095.06,74233.96,12239.72,6271.98,1232.27,19743.97,93977.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,21903,56129.88,60.02,6491.61,62681.51,12801.44,9438.26,5156.11,27395.81,90077.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,21352,14800.0,0.0,1487.04,16287.04,2861.64,2389.33,1330.89,6581.86,22868.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,15733,21180.0,198.56,650.0,22028.56,5464.44,5734.39,1690.68,12889.51,34918.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49788,0.0,0.0,19892.69,19892.69,0.0,0.0,288.44,288.44,20181.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,39889,140179.13,337.71,11248.48,151765.32,27703.23,12424.5,2530.56,42658.29,194423.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,22822,63887.06,0.0,0.0,63887.06,13167.4,12424.5,5246.8,30838.7,94725.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15237,80953.77,4151.11,6244.4,91349.28,16570.71,12424.51,3391.69,32386.91,123736.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,980,119450.13,42834.61,8929.99,171214.73,23683.74,12424.5,2872.82,38981.06,210195.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,1253,126570.43,44060.87,12158.75,182790.05,27028.46,13714.74,3069.54,43812.74,226602.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11469,7635.63,0.0,916.96,8552.59,6798.45,583.71,3139.82,10521.98,19074.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41245,52843.25,0.0,3142.04,55985.29,11391.76,11609.02,4396.15,27396.93,83382.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,12.0,"Carpet, Linoleum and Soft Tile Workers, Local 12",7300,Journeyman Trade,7393,Soft Floor Coverer,40778,47690.06,940.13,1431.08,50061.27,1144.96,6815.56,3870.12,11830.64,61891.91 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,43597,94661.75,0.0,0.0,94661.75,19498.49,12338.95,7566.75,39404.19,134065.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,46956,10538.55,0.0,0.0,10538.55,0.0,1182.71,806.24,1988.95,12527.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,26556,67261.0,0.0,2498.92,69759.92,14377.66,12424.5,5731.28,32533.44,102293.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,7806,11108.44,0.0,0.0,11108.44,2067.29,1836.78,883.68,4787.75,15896.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3616,151.38,56.77,0.0,208.15,42.84,0.0,16.45,59.29,267.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,30286,85004.0,25058.77,7710.38,117773.15,17519.6,12424.5,9780.53,39724.63,157497.78 +Calendar,2015,1,Public Protection,PDR,Public Defender,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,32760,67881.01,0.0,2744.04,70625.05,14223.85,12185.57,5802.77,32212.19,102837.24 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39460,25000.0,0.0,0.0,25000.0,5611.81,6690.11,1985.69,14287.61,39287.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,2435,50585.6,52.34,0.0,50637.94,6819.54,11863.01,4126.54,22809.09,73447.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1252,46097.28,0.0,6641.41,52738.69,10356.68,10118.8,4388.34,24863.82,77602.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,19450,64416.53,15786.62,4955.9,85159.05,13639.65,12406.58,6848.49,32894.72,118053.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,29281,85004.01,24658.72,9973.89,119636.62,17519.6,12424.5,9706.31,39650.41,159287.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8565,115482.52,16856.77,16869.75,149209.04,22802.46,11946.64,2486.75,37235.85,186444.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,26031,78047.91,0.0,9088.33,87136.24,17827.65,11395.84,875.46,30098.95,117235.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16961,67966.76,10050.18,3237.17,81254.11,19500.96,13391.23,6303.74,39195.93,120450.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,15657,50497.82,101.28,1735.21,52334.31,10502.92,9977.29,4129.62,24609.83,76944.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,7914,63102.03,2025.33,2616.68,67744.04,13545.0,12424.5,5234.93,31204.43,98948.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,22651,117124.05,28560.23,8570.57,154254.85,23225.7,12424.5,2620.33,38270.53,192525.38 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,21612,141258.31,0.0,0.0,141258.31,28389.56,12424.5,17466.88,58280.94,199539.25 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,46512,14052.0,0.0,0.0,14052.0,2615.08,1911.46,1062.61,5589.15,19641.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45702,5758.25,0.0,0.0,5758.25,0.0,2219.09,446.22,2665.31,8423.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41139,97761.5,7816.98,18584.67,124163.15,28296.56,12424.5,2113.84,42834.9,166998.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,2866,48182.97,0.0,218.97,48401.94,10280.42,7281.77,3974.13,21536.32,69938.26 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",46843,112273.99,0.0,0.0,112273.99,22580.79,12424.5,16659.48,51664.77,163938.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,26350,5294.38,0.0,77.57,5371.95,0.0,1738.23,416.85,2155.08,7527.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,33497,4498.13,6487.41,15180.66,26166.2,0.0,328.77,2028.16,2356.93,28523.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24749,17633.51,1289.68,351.77,19274.96,3728.77,3385.73,1448.14,8562.64,27837.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,30722,81942.0,3578.54,17354.81,102875.35,19421.68,12424.5,8215.05,40061.23,142936.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15120,4402.65,999.08,274.98,5676.71,1249.76,1389.75,404.54,3044.05,8720.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36346,59876.3,0.0,3144.01,63020.31,0.0,5208.74,4891.17,10099.91,73120.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32334,68757.16,17054.77,8631.83,94443.76,21273.42,13554.0,7356.59,42184.01,136627.77 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),34404,91583.56,0.0,5495.02,97078.58,20024.63,10411.49,1625.32,32061.44,129140.02 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4334,"Investigator, Tax Collector",39967,84869.35,861.53,0.0,85730.88,17480.28,12421.52,6858.06,36759.86,122490.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,31290,116976.02,0.0,0.0,116976.02,23541.49,12424.5,9465.85,45431.84,162407.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,41206,58996.97,0.0,0.0,58996.97,12207.9,11945.32,4807.22,28960.44,87957.41 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,27432,17692.14,0.0,0.0,17692.14,0.0,1971.19,1370.44,3341.63,21033.77 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,42507,129895.0,0.0,0.0,129895.0,26141.48,12424.5,10022.21,48588.19,178483.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,9939,106178.24,0.0,27205.74,133383.98,21876.09,12424.5,9983.3,44283.89,177667.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,16640,64847.4,631.58,365.25,65844.23,13351.71,12424.51,5352.69,31128.91,96973.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,50891,81794.67,6988.42,0.0,88783.09,16918.19,11996.58,7076.82,35991.59,124774.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25221,3189.73,0.0,191.38,3381.11,725.59,430.07,56.87,1212.53,4593.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",13940,135109.01,1991.47,8106.54,145207.02,28149.67,12424.5,2474.44,43048.61,188255.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,50241,74146.72,0.0,753.85,74900.57,15411.01,12421.52,6142.65,33975.18,108875.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,9899,56276.01,0.0,1775.45,58051.46,12990.56,12424.5,4762.23,30177.29,88228.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,19395,113228.15,5552.93,8344.55,127125.63,23737.53,12424.5,2156.09,38318.12,165443.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,28765,23988.0,0.0,280.0,24268.0,5443.32,2867.19,1999.46,10309.97,34577.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,451,95053.01,4037.39,12313.92,111404.32,22129.25,12424.5,8885.85,43439.6,154843.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49675,66708.01,5747.57,1704.28,74159.86,18738.76,13145.42,5727.11,37611.29,111771.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25779,120833.29,536.4,7319.51,128689.2,25139.59,10735.3,9934.94,45809.83,174499.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,17378,100761.03,577.65,752.0,102090.68,20922.32,12424.5,8168.94,41515.76,143606.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",2840,93738.11,3408.93,11785.71,108932.75,21240.46,12424.5,8654.65,42319.61,151252.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27042,6555.88,0.0,21.48,6577.36,0.0,2187.72,510.17,2697.89,9275.25 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",38870,36600.27,0.0,0.0,36600.27,7134.54,7668.55,2908.06,17711.15,54311.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,149,30524.46,0.0,1018.3,31542.76,0.0,2652.15,2448.22,5100.37,36643.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,27430,6318.56,0.0,0.0,6318.56,1417.24,1427.62,524.66,3369.52,9688.08 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,43448,67261.0,0.0,1365.0,68626.0,14116.47,12424.5,5625.26,32166.23,100792.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,22692,47281.52,0.0,0.0,47281.52,11329.82,12423.01,3983.9,27736.73,75018.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,37530,117133.58,8703.89,15154.31,140991.78,23190.84,12424.51,2402.72,38018.07,179009.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32592,24067.12,3036.17,644.56,27747.85,6097.23,7476.5,1701.43,15275.16,43023.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28395,63887.0,7383.71,8732.3,80003.01,14967.28,12424.49,6321.75,33713.52,113716.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator, Taxi And Accessible Servic",47112,4527.0,0.0,0.0,4527.0,842.47,716.79,349.53,1908.79,6435.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37843,61284.07,5355.29,3914.14,70553.5,18105.46,12117.89,5498.47,35721.82,106275.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",7544,1200.0,0.0,0.0,1200.0,0.0,71.68,93.02,164.7,1364.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,1584,147149.0,0.0,0.0,147149.0,29613.71,12424.5,17550.73,59588.94,206737.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,27331,18406.5,0.0,0.0,18406.5,0.0,6091.29,1426.73,7518.02,25924.52 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,27215,628.84,0.0,0.0,628.84,0.0,198.61,48.69,247.3,876.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49812,66809.09,33558.6,5034.05,105401.74,19666.81,13162.69,7999.02,40828.52,146230.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,38163,54909.0,0.0,360.0,55269.0,12364.61,12424.5,4581.75,29370.86,84639.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,32881,75605.01,30522.59,2878.9,109006.5,15604.69,12424.5,8641.53,36670.72,145677.22 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,879,16510.05,0.0,22294.21,38804.26,3293.01,1433.59,3657.56,8384.16,47188.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,18505,49506.62,1679.74,4004.2,55190.56,10486.64,8021.75,4515.22,23023.61,78214.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,49318,61735.0,0.0,0.0,61735.0,12724.0,12424.5,4940.05,30088.55,91823.55 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,27367,97244.7,0.0,0.0,97244.7,19148.26,10082.96,14051.14,43282.36,140527.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,33202,99411.66,0.0,622.8,100034.46,20621.31,12400.61,8260.46,41282.38,141316.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4463,3644.38,0.0,0.0,3644.38,0.0,1777.06,282.64,2059.7,5704.08 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,18244,74094.14,1070.34,1503.4,76667.88,15582.1,12412.56,6349.58,34344.24,111012.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,1515,70245.0,7633.76,3945.85,81824.61,14832.26,12424.5,6722.78,33979.54,115804.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,10327,6533.38,0.0,0.0,6533.38,0.0,2383.35,506.3,2889.65,9423.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,32787,40836.39,897.44,1968.17,43702.0,9277.21,7991.11,3456.17,20724.49,64426.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,41305,84599.04,15515.72,5566.21,105680.97,18661.94,12424.5,8433.44,39519.88,145200.85 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,52925,291.19,0.0,397.54,688.73,0.0,382.3,9.99,392.29,1081.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7179,71844.87,0.0,432.68,72277.55,0.0,5913.59,5485.09,11398.68,83676.23 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),9373,147924.0,0.0,4458.48,152382.48,31405.79,10035.18,10313.38,51754.35,204136.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,21648,35195.89,1269.58,2583.33,39048.8,2452.32,7708.56,3071.92,13232.8,52281.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50096,3234.01,0.0,10.29,3244.3,0.0,1576.95,251.68,1828.63,5072.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,21898,100554.0,0.0,1560.0,102114.0,20724.83,12424.49,7932.56,41081.88,143195.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,1683,18000.98,632.94,406.11,19040.03,0.0,4103.67,1477.81,5581.48,24621.51 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,41258,1214.44,0.0,0.0,1214.44,0.0,0.0,96.06,96.06,1310.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22586,66998.49,21677.98,4376.83,93053.3,19609.85,13206.29,7233.77,40049.91,133103.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,24815,15694.0,0.0,0.0,15694.0,0.0,1672.53,1187.3,2859.83,18553.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,6143,62809.62,0.0,907.35,63716.97,12947.65,10895.35,5235.31,29078.31,92795.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,27222,108038.02,82391.05,15451.2,205880.27,24405.44,12424.5,11248.71,48078.65,253958.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,47913,31871.59,0.0,0.0,31871.59,2072.91,10340.0,2556.92,14969.83,46841.42 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,45676,66360.89,0.0,0.0,66360.89,13680.96,11341.3,5423.72,30445.98,96806.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39578,137902.78,0.0,1325.0,139227.78,27953.98,12210.12,10018.86,50182.96,189410.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,19276,27394.46,0.0,364.07,27758.53,5960.67,5669.71,2246.03,13876.41,41634.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,18126,98157.01,0.0,0.0,98157.01,20230.58,12424.5,8063.63,40718.71,138875.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,2012,108038.0,14192.67,13929.05,136159.72,24152.91,12424.5,10011.62,46589.03,182748.75 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,3793,35946.94,0.0,712.07,36659.01,7468.62,7230.7,2954.08,17653.4,54312.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28568,116183.9,0.0,7036.38,123220.28,23387.68,10606.52,9401.07,43395.27,166615.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33464,57451.61,0.0,3994.68,61446.29,0.0,4751.83,4761.85,9513.68,70959.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,47226,138075.01,475.29,4882.48,143432.78,12483.1,11946.63,10076.22,34505.95,177938.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19894,67395.59,17850.89,4172.94,89419.42,19626.84,13282.63,6974.83,39884.3,129303.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,34800,17870.0,0.0,0.0,17870.0,3325.6,2389.34,1430.67,7145.61,25015.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21554,0.0,0.0,6846.45,6846.45,0.0,68.5,504.63,573.13,7419.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,18599,8930.98,0.0,127.08,9058.06,0.0,2072.74,703.06,2775.8,11833.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,50077,32196.77,0.0,1780.63,33977.4,5878.87,8190.49,2788.38,16857.74,50835.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,37144,2301.54,0.0,0.0,2301.54,0.0,603.3,178.63,781.93,3083.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13978,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2392.23,12845.58,44145.58 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,35074,77830.95,0.0,0.0,77830.95,15074.71,4563.61,5787.5,25425.82,103256.77 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,41435,13555.5,0.0,0.0,13555.5,2522.68,1672.53,1092.23,5287.44,18842.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,53020,2662.06,0.0,99.34,2761.4,0.0,666.03,213.92,879.95,3641.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19570,48977.36,185.06,40.0,49202.42,9982.53,10967.0,3990.91,24940.44,74142.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,27015,158264.0,7539.54,3806.1,169609.64,32235.68,12424.5,10546.97,55207.15,224816.79 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,38028,113188.72,6267.12,0.0,119455.84,22771.48,12376.72,9768.52,44916.72,164372.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42318,65513.74,5934.36,887.65,72335.75,18165.57,12909.72,5382.21,36457.5,108793.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3554,Associate Museum Registrar,39759,52027.41,0.0,1560.0,53587.41,12461.25,12424.5,4044.63,28930.38,82517.79 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,47216,60675.62,601.2,1669.18,62946.0,12690.12,10704.18,5069.64,28463.94,91409.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40521,119467.39,17914.96,8329.64,145711.99,24084.81,12424.5,2386.25,38895.56,184607.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,12262,79818.51,0.0,0.0,79818.51,16434.45,12424.5,6498.51,35357.46,115175.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,30976,118104.14,0.0,0.0,118104.14,23781.32,12424.5,9259.08,45464.9,163569.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,44989,42593.8,2233.99,5128.16,49955.95,10767.21,11656.93,4025.31,26449.45,76405.4 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",40202,87757.97,0.0,0.0,87757.97,18038.23,12338.67,6737.04,37113.94,124871.91 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,7277,37611.0,0.0,2455.36,40066.36,7503.42,7311.34,3230.66,18045.42,58111.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41107,54433.9,0.0,3925.81,58359.71,12480.84,12106.43,4540.57,29127.84,87487.55 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,16210,97766.34,55446.29,20476.51,173689.14,28748.47,12424.32,2906.13,44078.92,217768.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,4338,76728.02,7564.28,1520.0,85812.3,16121.72,12424.53,6695.33,35241.58,121053.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,15766,118104.16,0.0,0.0,118104.16,23761.97,12424.5,9435.92,45622.39,163726.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,49127,70245.0,5925.32,4154.35,80324.67,14616.8,12424.5,6311.54,33352.84,113677.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",8950,131577.12,63871.98,17136.22,212585.32,29091.9,15196.12,3572.8,47860.82,260446.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,23586,103627.1,0.0,0.0,103627.1,21418.56,12424.5,8102.54,41945.6,145572.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",5497,147149.01,0.0,0.0,147149.01,29613.71,12424.5,17551.72,59589.93,206738.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52484,5653.98,0.0,0.0,5653.98,0.0,2451.75,468.72,2920.47,8574.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,52451,135421.0,0.0,4055.44,139476.44,28075.58,12424.5,10132.92,50633.0,190109.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16812,13397.88,0.0,179.86,13577.74,0.0,5129.59,1052.76,6182.35,19760.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,15999,0.0,0.0,640.06,640.06,0.0,68.5,48.96,117.46,757.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,18618,30127.02,0.0,168.0,30295.02,5637.9,3345.06,2425.23,11408.19,41703.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",4968,79672.59,0.0,0.0,79672.59,15810.41,9079.44,13327.62,38217.47,117890.06 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,15716,60121.15,2098.56,0.0,62219.71,12342.42,12424.5,5008.18,29775.1,91994.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,4642,52381.04,0.0,0.0,52381.04,10206.2,7645.85,4080.61,21932.66,74313.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,31627,2570.17,0.0,13.94,2584.11,728.42,0.0,182.64,911.06,3495.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,38958,79588.69,14412.08,1980.0,95980.77,16803.86,12403.58,7430.16,36637.6,132618.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,1887,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5504,77803.34,34512.18,10282.19,122597.71,18507.77,8744.94,2076.65,29329.36,151927.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,11733,79238.62,888.15,4523.9,84650.67,16687.91,10674.98,6924.86,34287.75,118938.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,13183,38283.61,0.0,365.56,38649.17,9144.42,8374.6,3106.59,20625.61,59274.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,14498,56276.02,0.0,624.0,56900.02,12731.53,12424.5,4666.6,29822.63,86722.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,31703,4824.61,0.0,1929.58,6754.19,1182.17,858.67,552.44,2593.28,9347.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7480,Power Generation Technician 1,9935,87266.79,16155.68,5656.0,109078.47,18719.45,11665.89,8810.43,39195.77,148274.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9016,64107.2,23298.15,4373.6,91778.95,18794.1,12630.7,6960.69,38385.49,130164.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,35510,13659.5,0.0,0.0,13659.5,0.0,4061.86,1001.59,5063.45,18722.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42675,80949.95,5503.92,8562.58,95016.45,16876.61,12424.5,1470.36,30771.47,125787.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,53039,81517.61,11437.38,3240.39,96195.38,16735.84,12424.52,7707.41,36867.77,133063.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41073,27181.0,0.0,0.0,27181.0,776.24,7359.13,2147.47,10282.84,37463.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,18849,129895.02,0.0,0.0,129895.02,26141.49,12424.5,10015.24,48581.23,178476.25 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,22296,6511.28,0.0,78.07,6589.35,0.0,946.77,510.61,1457.38,8046.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,17179,70245.0,0.0,3344.05,73589.05,14606.45,12424.5,6071.14,33102.09,106691.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,4835,43388.2,2302.43,546.1,46236.73,9447.28,9897.06,3554.68,22899.02,69135.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,27700,97652.27,0.0,0.0,97652.27,19337.09,7087.94,7333.59,33758.62,131410.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49883,65789.64,20465.1,975.49,87230.23,18246.9,12961.86,6600.25,37809.01,125039.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,6062,46135.06,39.26,40.0,46214.32,10658.67,10513.04,3674.37,24846.08,71060.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22377,18733.35,0.0,3122.23,21855.58,0.0,1505.28,1696.34,3201.62,25057.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,15132,140606.59,20411.92,29947.6,190966.11,27827.11,12424.5,3183.45,43435.06,234401.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8855,20516.8,55.11,1488.28,22060.19,1913.94,8864.4,1784.15,12562.49,34622.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,1840,63102.03,0.0,548.54,63650.57,13115.32,12424.5,5024.92,30564.74,94215.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,18493,7271.6,257.38,83.09,7612.07,1617.29,2341.54,595.46,4554.29,12166.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,34182,47228.75,0.0,6587.87,53816.62,10182.99,8878.02,4415.16,23476.17,77292.79 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,39601,15400.0,0.0,0.0,15400.0,3454.2,2389.33,1272.7,7116.23,22516.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,4991,81410.01,22445.4,4358.65,108214.06,16724.98,11946.62,8619.78,37291.38,145505.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,25317,14016.0,0.0,0.0,14016.0,2608.38,1433.6,2885.05,6927.03,20943.03 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,6254,135041.81,0.0,0.0,135041.81,27339.13,12424.5,17359.52,57123.15,192164.96 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0884,Mayoral Staff IV,39354,25830.4,0.0,0.0,25830.4,5799.58,6618.44,6900.6,19318.62,45149.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,23824,49811.73,3378.47,8840.03,62030.23,11420.37,9557.3,4913.09,25890.76,87920.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",17050,25450.8,1117.51,0.0,26568.31,0.0,6015.11,2060.91,8076.02,34644.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16732,101659.04,7346.53,3610.91,112616.48,0.0,8469.51,1885.24,10354.75,122971.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,18838,22237.64,0.0,959.57,23197.21,4947.16,4205.21,2496.33,11648.7,34845.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,40827,6915.96,0.0,18.51,6934.47,0.0,2114.56,537.58,2652.14,9586.61 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0648,"Court Invstgtor, Superior Crt",6283,103948.01,0.0,5623.0,109571.01,21565.62,12424.5,9054.19,43044.31,152615.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,17165,63983.15,7677.74,2582.08,74242.97,13372.68,12424.5,6105.33,31902.51,106145.48 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,4983,138641.76,0.0,0.0,138641.76,27871.44,12424.5,17422.09,57718.03,196359.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47117,7246.3,0.0,0.0,7246.3,818.0,3139.58,600.02,4557.6,11803.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17808,112303.03,23929.2,11779.06,148011.29,23896.23,14888.19,2522.13,41306.55,189317.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,1863,61989.04,57.71,1140.0,63186.75,12957.6,12261.19,4971.36,30190.15,93376.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27531,9547.91,0.0,73.48,9621.39,0.0,3180.79,745.71,3926.5,13547.89 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,35170,2374.77,0.0,0.0,2374.77,893.61,0.0,1588.25,2481.86,4856.63 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,39530,205167.03,0.0,48816.61,253983.64,47483.64,12424.5,11995.47,71903.61,325887.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26279,75348.99,0.0,15529.3,90878.29,2530.04,0.0,8122.97,10653.01,101531.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,1161,67699.49,0.0,0.0,67699.49,13947.62,12424.51,5391.65,31763.78,99463.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,49727,97424.0,0.0,2742.0,100166.0,20649.64,12424.5,8212.08,41286.22,141452.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,39454,26185.45,0.0,1764.87,27950.32,6984.75,5937.48,1295.83,14218.06,42168.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18876,85213.72,5479.2,14591.87,105284.79,17832.81,7993.79,8450.68,34277.28,139562.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27715,91330.05,821.53,22031.21,114182.79,21297.72,9682.74,9457.37,40437.83,154620.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20354,21910.86,0.0,3850.72,25761.58,0.0,1845.16,1994.46,3839.62,29601.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,26310,75028.01,0.0,0.0,75028.01,15469.09,12424.49,6000.11,33893.69,108921.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41643,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2416.62,12869.97,44169.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,27758,79722.02,9977.15,965.5,90664.67,16638.4,12424.44,6866.63,35929.47,126594.14 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,13880,157213.61,0.0,0.0,157213.61,31899.05,11468.77,25671.13,69038.95,226252.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",9300,Port Operation,9345,Sheet Metal Supervisor 1,34725,52693.02,2640.22,15.0,55348.24,9808.96,5734.39,4432.34,19975.69,75323.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,36437,52137.8,0.0,0.0,52137.8,11599.71,12172.24,4249.12,28021.07,80158.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,4980,6171.88,0.0,0.0,6171.88,0.0,1866.66,477.82,2344.48,8516.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29640,27398.7,0.0,6476.1,33874.8,10150.81,2126.68,5050.56,17328.05,51202.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34791,40139.34,3793.5,682.03,44614.87,10613.08,11987.31,3709.82,26310.21,70925.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52336,68096.34,1093.32,3611.08,72800.74,19632.2,13417.74,5343.63,38393.57,111194.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,45038,70245.0,12501.19,6457.7,89203.89,14911.7,12424.5,7053.88,34390.08,123593.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9649,4270.25,0.0,139.34,4409.59,0.0,1851.73,341.39,2193.12,6602.71 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0889,Mayoral Staff IX,48407,72699.0,0.0,0.0,72699.0,14983.61,12424.5,13805.71,41213.82,113912.82 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,32319,66095.04,0.0,0.0,66095.04,14699.12,11946.63,5428.69,32074.44,98169.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,6611,17050.0,0.0,0.0,17050.0,3824.3,2389.33,1417.83,7631.46,24681.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47610,119235.17,44014.24,4195.47,167444.88,23584.07,12400.62,2856.95,38841.64,206286.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17166,56163.3,530.03,117.38,56810.71,10885.46,8601.58,3828.32,23315.36,80126.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",39422,29444.0,12769.46,662.49,42875.95,5602.82,3822.92,2799.02,12224.76,55100.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,32384,112425.31,0.0,0.0,112425.31,22595.67,12424.5,8948.13,43968.3,156393.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,39816,62406.61,0.0,1182.67,63589.28,13111.26,12134.8,5245.4,30491.46,94080.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,4722,73969.72,0.0,19.01,73988.73,15231.65,12424.51,5974.02,33630.18,107618.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,26508,91500.16,9198.09,12015.31,112713.56,20282.83,12352.76,9167.9,41803.49,154517.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,13284,117140.93,7323.45,10397.82,134862.2,23164.17,12424.5,2208.04,37796.71,172658.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,1845,58429.61,13593.68,6068.28,78091.57,13095.42,11800.83,6384.93,31281.18,109372.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46754,29189.99,4374.53,628.64,34193.16,7971.13,9214.2,2335.11,19520.44,53713.6 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,38213,143188.0,0.0,0.0,143188.0,28816.76,12424.5,10237.84,51479.1,194667.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7213,Plumber Supervisor 1,26995,113369.06,1888.56,14493.02,129750.64,23496.29,12424.34,9938.04,45858.67,175609.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,44039,29600.0,11752.42,2545.11,43897.53,5606.0,4778.66,3466.38,13851.04,57748.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,19953,3893.37,0.0,28.74,3922.11,0.0,1294.72,304.42,1599.14,5521.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,28674,76941.61,114.26,1320.21,78376.08,6956.2,11988.46,6281.42,25226.08,103602.16 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,42894,80312.87,417.11,0.0,80729.98,16548.31,12384.6,6444.22,35377.13,116107.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,3277,48370.31,587.6,7274.16,56232.07,12694.38,12424.5,4498.21,29617.09,85849.16 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,10307,85211.02,0.0,0.0,85211.02,17543.2,12424.5,6993.69,36961.39,122172.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,38766,74242.36,51620.73,11974.72,137837.81,16565.18,8604.8,9959.45,35129.43,172967.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,28622,60815.7,8414.71,11083.47,80313.88,13612.0,12205.52,6394.3,32211.82,112525.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8344,121959.29,967.93,32557.45,155484.67,29297.66,10900.11,5973.41,46171.18,201655.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,51515,107978.0,9965.0,12796.78,130739.78,23767.25,12424.5,9911.33,46103.08,176842.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9370,12104.5,0.0,377.88,12482.38,0.0,4641.26,967.76,5609.02,18091.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7538,66163.45,139.43,1813.2,68116.08,18626.13,13039.52,5252.77,36918.42,105034.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,24434,32508.18,0.0,0.0,32508.18,0.0,6478.07,2514.31,8992.38,41500.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33358,56531.0,224.51,2604.0,59359.51,11780.12,12424.5,4862.18,29066.8,88426.31 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),35704,109563.0,6466.89,6573.78,122603.67,23670.78,12424.5,2044.89,38140.17,160743.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16633,138637.93,37077.37,12721.09,188436.39,27385.65,12424.5,3213.32,43023.47,231459.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,6271,48433.0,0.0,0.0,48433.0,11610.53,12424.5,3795.93,27830.96,76263.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42259,5682.25,0.0,0.0,5682.25,0.0,0.0,449.75,449.75,6132.0 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3310,Stable Attendant,31717,56120.25,0.0,5562.57,61682.82,13389.46,12424.5,5093.8,30907.76,92590.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7203,13137.27,0.0,1.21,13138.48,0.0,5634.33,1062.8,6697.13,19835.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,49917,70791.06,202.96,5367.8,76361.82,15690.28,12424.5,6060.45,34175.23,110537.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,14640,89890.01,3853.27,4716.69,98459.97,17726.91,9557.31,7550.66,34834.88,133294.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52433,5915.0,0.0,209.7,6124.7,0.0,2278.81,474.37,2753.18,8877.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,28026,32980.5,4943.93,5437.07,43361.5,7011.07,6488.64,3576.66,17076.37,60437.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,30539,48654.0,0.0,1700.0,50354.0,12024.98,12424.5,4027.47,28476.95,78830.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,32924,49679.01,0.0,2078.55,51757.56,12065.33,12424.5,4031.81,28521.64,80279.2 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,6962,81116.01,0.0,0.0,81116.01,16718.53,12424.5,6046.93,35189.96,116305.97 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,13670,96332.02,31084.04,66.0,127482.06,19870.81,12424.5,9894.96,42190.27,169672.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,12846,41021.32,2231.32,58.0,43310.64,0.0,5853.85,3361.41,9215.26,52525.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1249,13424.04,0.0,0.0,13424.04,0.0,5821.12,1092.82,6913.94,20337.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,44364,67774.29,321.79,2975.55,71071.63,12591.62,12370.75,5355.79,30318.16,101389.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,37733,48765.31,402.93,1230.07,50398.31,10088.79,9470.17,4168.62,23727.58,74125.89 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,51081,101531.03,0.0,0.0,101531.03,20926.02,12424.5,8103.38,41453.9,142984.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,3372,66102.01,0.0,27.68,66129.69,13629.88,12424.5,5191.79,31246.17,97375.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,16753,117813.45,66.53,109.84,117989.82,23755.66,12424.5,9436.14,45616.3,163606.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,22391,132398.27,10028.92,26447.05,168874.24,29325.03,8521.53,10621.22,48467.78,217342.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,18409,101104.74,6114.19,6212.55,113431.48,20810.74,9079.44,1895.73,31785.91,145217.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,50181,112159.75,49041.93,25032.37,186234.05,24822.81,15052.76,3301.46,43177.03,229411.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,11364,61611.71,1463.74,6804.38,69879.83,13372.84,10465.25,5629.31,29467.4,99347.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51488,17165.25,0.0,1372.76,18538.01,2514.86,0.0,2575.18,5090.04,23628.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,887,1040.0,0.0,0.0,1040.0,0.0,477.86,80.6,558.46,1598.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11281,22011.32,0.0,1214.31,23225.63,5611.93,1559.09,3527.0,10698.02,33923.65 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,35913,104856.36,252.95,2152.75,107262.06,22081.82,12364.77,8819.12,43265.71,150527.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,29792,87685.45,0.0,0.0,87685.45,17821.17,10261.26,7071.97,35154.4,122839.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,37083,71771.9,0.0,0.0,71771.9,14840.4,12021.12,5917.23,32778.75,104550.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2618,Food Service Supervisor,21348,62362.59,490.79,3391.5,66244.88,13183.15,12217.23,5174.56,30574.94,96819.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29022,21129.63,0.0,2068.5,23198.13,15454.72,0.0,4782.63,20237.35,43435.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37741,67554.47,12894.78,2047.64,82496.89,19069.61,13310.22,6184.56,38564.39,121061.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4004,2137.2,0.0,71.24,2208.44,484.54,0.0,173.51,658.05,2866.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32351,27344.66,1963.7,868.85,30177.21,7068.82,8508.88,2305.48,17883.18,48060.39 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,19033,38791.55,0.0,0.0,38791.55,0.0,5724.06,3054.8,8778.86,47570.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,45804,89955.63,11359.59,11722.48,113037.7,18375.56,9557.31,1921.85,29854.72,142892.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,15170,34108.9,0.0,8174.5,42283.4,7906.4,6514.56,3445.83,17866.79,60150.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,32175,52258.59,0.0,2230.48,54489.07,10908.62,11489.08,4266.26,26663.96,81153.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,10846,21467.91,0.0,0.0,21467.91,4720.8,5877.74,1655.91,12254.45,33722.36 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,31505,96697.43,0.0,0.0,96697.43,19903.24,12424.5,7847.62,40175.36,136872.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1389,113.8,0.0,3.63,117.43,0.0,47.79,9.11,56.9,174.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,33051,83180.44,0.0,0.0,83180.44,17790.74,7645.84,11536.95,36973.53,120153.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,31161,93738.12,7148.41,3662.58,104549.11,19343.8,12424.5,8424.43,40192.73,144741.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32388,46981.25,642.04,2392.6,50015.89,11253.66,12418.53,3858.66,27530.85,77546.74 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,7030,15801.84,0.0,0.0,15801.84,0.0,5871.77,1225.36,7097.13,22898.97 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,2682,93502.01,10233.97,13248.27,116984.25,21086.05,12400.61,9605.97,43092.63,160076.88 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8147,Sr District Atty Investigator,29146,119160.04,6764.11,7149.6,133073.75,28811.05,12424.5,2232.69,43468.24,176541.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,47976,12985.0,0.0,0.0,12985.0,2855.4,2389.33,1040.38,6285.11,19270.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,46716,52615.26,20665.72,6348.42,79629.4,12363.76,10095.27,6313.79,28772.82,108402.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17079,31833.0,0.0,0.0,31833.0,6424.06,4300.79,2564.67,13289.52,45122.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,7582,1937.53,0.0,24.87,1962.4,482.7,561.49,222.63,1266.82,3229.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8527,43387.63,0.0,3610.41,46998.04,11229.22,10504.08,3838.74,25572.04,72570.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,37679,43885.71,43.48,457.35,44386.54,9341.71,9059.68,3645.07,22046.46,66433.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38017,10026.75,0.0,894.89,10921.64,1818.65,4306.76,892.0,7017.41,17939.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35355,104781.17,15854.47,11986.75,132622.39,21762.47,12424.5,2158.76,36345.73,168968.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33570,113233.59,25863.22,19278.33,158375.14,24532.95,15196.12,2644.75,42373.82,200748.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51924,149099.05,0.0,4268.86,153367.91,30770.2,12424.5,10356.59,53551.29,206919.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,39112,20694.0,0.0,0.0,20694.0,4550.59,5734.39,1631.09,11916.07,32610.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,877,4799.25,0.0,0.0,4799.25,0.0,1451.51,371.56,1823.07,6622.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47787,9846.68,0.0,0.0,9846.68,0.0,4269.85,792.14,5061.99,14908.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44965,120221.37,22548.67,31021.39,173791.43,24283.1,12424.5,2951.67,39659.27,213450.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51161,77058.29,25958.45,12811.7,115828.44,17904.71,15196.11,1932.64,35033.46,150861.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37411,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2392.23,12845.58,44145.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38739,111629.47,65926.82,19143.36,196699.65,24596.22,14981.27,3358.74,42936.23,239635.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11471,140334.01,0.0,23557.05,163891.06,18141.42,12424.5,10264.97,40830.89,204721.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39030,32270.67,0.0,3251.67,35522.34,3423.23,0.0,1069.83,4493.06,40015.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,45335,137101.04,0.0,0.0,137101.04,27592.1,12424.5,18401.41,58418.01,195519.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,40883,5505.66,0.0,93.56,5599.22,0.0,1835.31,434.45,2269.76,7868.98 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,30162,93224.87,28982.71,10714.16,132921.74,20650.34,12364.77,9969.5,42984.61,175906.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,15736,139597.06,0.0,0.0,139597.06,28044.62,12424.5,18514.04,58983.16,198580.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2898,77856.3,1843.71,1753.31,81453.32,15750.04,11946.64,4357.83,32054.51,113507.83 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),44813,184289.12,0.0,5185.78,189474.9,38130.65,12424.5,11045.3,61600.45,251075.35 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,47612,78963.05,0.0,1599.57,80562.62,16603.48,12424.5,6676.53,35704.51,116267.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,51622,19984.85,0.0,0.0,19984.85,0.0,4423.24,1549.79,5973.03,25957.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,43983,50312.14,0.0,415.0,50727.14,12157.94,12424.5,3973.91,28556.35,79283.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,49549,138826.74,18906.71,15180.29,172913.74,27426.17,12424.5,2773.21,42623.88,215537.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,49722,37387.75,0.0,892.06,38279.81,9149.29,9419.03,3111.0,21679.32,59959.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,5509,2835.01,0.0,0.0,2835.01,635.89,477.86,219.2,1332.95,4167.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43342,10723.87,0.0,0.0,10723.87,0.0,4650.23,860.12,5510.35,16234.22 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,28215,2261.0,802.45,0.0,3063.45,0.0,669.02,237.78,906.8,3970.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18512,80949.92,6986.89,4505.38,92442.19,16774.33,12424.5,1729.32,30928.15,123370.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27062,42094.98,120.07,1548.14,43763.19,10156.48,9157.45,3339.45,22653.38,66416.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,25932,138629.28,10961.37,23312.47,172903.12,27417.19,12424.51,2892.48,42734.18,215637.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,48199,81776.04,147.28,719.0,82642.32,17002.85,12424.5,6851.93,36279.28,118921.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,12003,88187.89,0.0,0.0,88187.89,15283.63,12311.03,6747.88,34342.54,122530.43 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,37196,71311.05,0.0,624.0,71935.05,14826.41,12424.5,5712.29,32963.2,104898.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48424,112159.76,0.0,27830.2,139989.96,27313.35,15052.75,2329.69,44695.79,184685.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,47362,97424.01,1152.11,0.0,98576.12,20079.52,12424.49,7963.16,40467.17,139043.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51456,63380.21,15501.56,3667.02,82548.79,18761.62,0.0,6486.51,25248.13,107796.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17299,7076.91,0.0,823.47,7900.38,1598.38,3068.79,633.3,5300.47,13200.85 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,7707,143188.05,0.0,0.0,143188.05,28816.77,12424.5,10088.36,51329.63,194517.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,3904,114096.2,0.0,0.0,114096.2,23085.56,12137.78,9178.78,44402.12,158498.32 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,48940,66471.19,145.52,741.63,67358.34,13813.33,12277.8,5556.34,31647.47,99005.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3307,4358.65,0.0,7.16,4365.81,0.0,1454.5,338.64,1793.14,6158.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29598,117135.38,8879.13,6899.5,132914.01,23184.68,12424.5,2218.04,37827.22,170741.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,18250,69514.12,7854.45,2576.0,79944.57,14985.87,10547.26,6346.2,31879.33,111823.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,28841,72699.03,65.13,2467.21,75231.37,15486.25,12424.5,6230.29,34141.04,109372.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,17642,158684.28,9513.83,19896.11,188094.22,31953.88,12424.5,3204.39,47582.77,235676.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,20195,20711.39,0.0,1645.89,22357.28,4670.8,4706.51,1779.74,11157.05,33514.33 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,5544,126116.65,0.0,13211.78,139328.43,25381.16,12424.5,10152.95,47958.61,187287.04 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,19583,80023.15,26667.06,7880.18,114570.39,17078.21,9419.03,9402.94,35900.18,150470.57 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,46403,54242.23,0.0,3367.66,57609.89,12048.52,6929.05,4590.02,23567.59,81177.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,22322,145735.38,0.0,0.0,145735.38,29320.52,12424.5,17484.84,59229.86,204965.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,14712,108378.45,60834.1,22345.83,191558.38,31810.31,12424.5,3221.58,47456.39,239014.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,25096,2413.57,0.0,0.0,2413.57,508.9,191.15,161.5,861.55,3275.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23159,7573.83,0.0,400.72,7974.55,0.0,0.0,411.33,411.33,8385.88 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,1108,32050.93,0.0,0.0,32050.93,8028.01,8123.71,2569.72,18721.44,50772.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,13500,2074.0,252.77,77.78,2404.55,0.0,477.86,186.63,664.49,3069.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36044,13318.85,0.0,399.19,13718.04,0.0,5722.44,1109.4,6831.84,20549.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,36440,2172.5,0.0,0.0,2172.5,0.0,657.06,168.19,825.25,2997.75 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,797,26173.73,0.0,0.0,26173.73,6731.27,6642.33,2071.03,15444.63,41618.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,26034,138496.62,17273.26,9756.32,165526.2,27388.55,12412.56,2809.68,42610.79,208136.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,36208,95968.0,0.0,0.0,95968.0,19779.2,12424.5,7668.62,39872.32,135840.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,49710,58590.01,0.0,0.0,58590.01,12854.62,4300.79,7218.15,24373.56,82963.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37909,24253.94,4234.99,1294.41,29783.34,7537.27,4823.33,2289.41,14650.01,44433.35 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,10859,7326.9,10.9,0.0,7337.8,1363.53,1505.27,569.53,3438.33,10776.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,18034,99181.26,6157.85,2144.95,107484.06,20744.93,12424.5,8633.33,41802.76,149286.82 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,32207,60173.85,0.0,10243.02,70416.87,12312.63,3942.39,4658.79,20913.81,91330.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8916,10365.71,0.0,122.97,10488.68,0.0,4494.92,841.91,5336.83,15825.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21861,16868.74,2935.96,199.06,20003.76,4308.07,7314.86,1598.49,13221.42,33225.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,30348,56531.0,326.55,6428.06,63285.61,12369.51,12424.5,5172.69,29966.7,93252.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17120,32160.0,5857.82,4608.07,42625.89,5823.18,2867.19,719.79,9410.16,52036.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,27737,80570.02,0.0,0.0,80570.02,16605.96,12424.5,6683.31,35713.77,116283.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,26679,69712.35,4338.38,8399.56,82450.29,13933.57,8571.74,6619.44,29124.75,111575.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",26887,132777.9,0.0,0.0,132777.9,26794.59,12030.38,17173.09,55998.06,188775.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,29876,82643.4,0.0,0.0,82643.4,17011.15,12424.5,6455.81,35891.46,118534.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16166,1912.85,0.0,491.43,2404.28,5322.26,149.34,70.39,5541.99,7946.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,36314,80975.84,10016.33,8597.54,99589.71,17735.86,11319.91,7967.12,37022.89,136612.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25022,36295.01,0.0,0.0,36295.01,7134.22,8123.7,2939.07,18196.99,54492.0 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,11325,95627.6,17583.47,1648.97,114860.04,19914.93,12424.5,9237.07,41576.5,156436.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,26502,44866.84,1085.22,960.0,46912.06,10634.08,9555.4,3802.58,23992.06,70904.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22711,14760.42,0.0,5258.75,20019.17,3396.3,1237.67,1635.19,6269.16,26288.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",1625,89381.9,23478.11,2547.96,115407.97,18937.4,11761.5,9199.71,39898.61,155306.58 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),47615,184289.05,0.0,5248.28,189537.33,38144.36,12424.5,10989.95,61558.81,251096.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43092,3708.5,0.0,2.48,3710.98,0.0,1421.66,287.62,1709.28,5420.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,28742,75025.4,0.0,0.0,75025.4,15452.56,12424.5,6022.19,33899.25,108924.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,18697,102019.07,0.0,0.0,102019.07,21026.28,12424.51,8382.68,41833.47,143852.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,30818,68876.0,0.0,40.0,68916.0,13978.42,10513.04,5389.65,29881.11,98797.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,812,73406.0,1710.6,1095.0,76211.6,15355.28,12424.5,6269.21,34048.99,110260.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24689,6886.32,0.0,902.49,7788.81,1548.25,2982.47,638.09,5168.81,12957.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,38888,44246.82,1178.83,123.15,45548.8,10597.79,12424.5,3698.98,26721.27,72270.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,12295,51712.65,0.0,0.0,51712.65,10477.14,7624.93,4187.44,22289.51,74002.16 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,11132,38853.9,0.0,0.0,38853.9,0.0,5686.6,3011.6,8698.2,47552.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2186,36002.55,1932.56,858.65,38793.76,8253.5,7089.18,2839.88,18182.56,56976.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44969,64523.18,1337.75,557.94,66418.87,14777.55,12714.03,4848.92,32340.5,98759.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40073,41122.74,2434.91,940.29,44497.94,10922.64,12806.08,3365.65,27094.37,71592.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17699,112620.21,13399.23,1751.07,127770.51,22275.02,12416.07,2176.72,36867.81,164638.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,6380,126994.04,0.0,0.0,126994.04,25557.71,12424.5,9883.52,47865.73,174859.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42818,15841.0,0.0,0.0,15841.0,2948.01,2867.19,1232.69,7047.89,22888.89 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,3175,79352.27,5901.04,1357.58,86610.89,16566.43,11891.92,6992.76,35451.11,122062.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,45252,118427.02,0.0,1258.59,119685.61,24086.96,12424.5,27096.38,63607.84,183293.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,35146,81511.35,1532.59,600.0,83643.94,16903.65,12358.8,6547.87,35810.32,119454.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,17966,78741.93,0.0,0.0,78741.93,16136.89,11151.12,6497.57,33785.58,112527.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,20264,5984.17,0.0,601.81,6585.98,1387.11,1217.9,548.22,3153.23,9739.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,49367,78976.3,5541.73,60.0,84578.03,16285.82,12307.55,6770.76,35364.13,119942.16 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27711,19247.58,0.0,0.0,19247.58,4232.55,4730.87,1528.77,10492.19,29739.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,31860,8259.13,0.0,0.0,8259.13,1996.53,0.0,653.18,2649.71,10908.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40436,54568.42,45.92,840.0,55454.34,11614.51,10385.27,4548.78,26548.56,82002.9 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,1100,Administrative & Mgmt (Unrep),1165,"Manager, Department Of Public Health",40756,267140.57,0.0,0.0,267140.57,53762.29,12424.5,19603.65,85790.44,352931.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24677,98027.83,23112.85,10305.77,131446.45,20516.04,15196.12,2191.89,37904.05,169350.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4732,68219.4,16543.49,10022.24,94785.13,21491.9,13445.46,7374.49,42311.85,137096.98 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,45057,98252.13,1271.04,0.0,99523.17,22402.93,12253.43,1637.54,36293.9,135817.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43259,21134.62,0.0,9509.63,30644.25,2684.27,0.0,1978.05,4662.32,35306.57 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,28537,53327.42,0.0,0.0,53327.42,11264.93,8231.23,4064.06,23560.22,76887.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,8141,142437.48,22179.69,12137.86,176755.03,28190.54,12424.5,2868.81,43483.85,220238.88 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,44463,63102.0,751.8,3584.4,67438.2,13134.23,12424.5,5576.47,31135.2,98573.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7258,Maintenance Machinist Sprv 1,22144,94966.43,14526.55,21894.26,131387.24,19941.62,10981.4,9883.73,40806.75,172193.99 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2292,Shelter Veterinarian,3124,97192.8,0.0,0.0,97192.8,19654.37,11373.2,7824.15,38851.72,136044.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,25643,77255.96,1781.68,787.05,79824.69,16041.09,11691.27,6378.82,34111.18,113935.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27160,7851.81,0.0,1052.04,8903.85,1574.45,3390.45,623.04,5587.94,14491.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,48328,27343.61,0.0,345.06,27688.67,6135.93,4609.01,2324.08,13069.02,40757.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33720,20134.19,0.0,181.91,20316.1,0.0,5004.61,1575.11,6579.72,26895.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,21383,79508.86,34895.32,17802.51,132206.69,18689.84,9260.73,9888.83,37839.4,170046.09 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,25983,131080.01,9317.01,17466.88,157863.9,35118.23,11946.63,2690.96,49755.82,207619.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,29910,84967.51,33296.47,14717.42,132981.4,19393.04,12472.29,9889.74,41755.07,174736.47 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,53096,96113.5,0.0,0.0,96113.5,19809.51,12349.84,7732.05,39891.4,136004.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7204,65767.72,3831.39,617.63,70216.74,18163.51,12958.22,5102.14,36223.87,106440.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,40476,6727.0,0.0,26.91,6753.91,1485.19,1433.6,543.09,3461.88,10215.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9497,56531.0,0.0,5886.84,62417.84,12288.67,12424.5,5108.65,29821.82,92239.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,21173,26300.71,176.03,0.0,26476.74,0.0,5797.11,2111.6,7908.71,34385.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,27506,113233.59,0.0,19078.08,132311.67,25036.02,15196.12,2198.31,42430.45,174742.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40538,42168.73,6989.81,1272.07,50430.61,11284.77,13133.11,3615.1,28032.98,78463.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,24603,46217.62,0.0,0.0,46217.62,8379.24,3822.92,5412.71,17614.87,63832.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52783,1331.63,0.0,0.0,1331.63,0.0,506.23,103.35,609.58,1941.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,30915,140982.79,0.0,0.0,140982.79,28132.95,12424.5,10031.94,50589.39,191572.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,49347,100534.79,0.0,0.0,100534.79,20720.52,12422.1,8101.08,41243.7,141778.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31477,2562.23,0.0,75.53,2637.76,0.0,1093.12,212.44,1305.56,3943.32 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26786,95925.32,424.02,7536.53,103885.87,25175.72,12191.67,1721.32,39088.71,142974.58 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,3127,59512.05,6541.61,1978.05,68031.71,11595.58,7645.84,5441.52,24682.94,92714.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,6954,62468.81,23895.27,2493.53,88857.61,12994.98,12424.5,6993.44,32412.92,121270.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51680,39378.93,3607.0,1875.75,44861.68,10664.17,12253.02,3169.3,26086.49,70948.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28106,24785.7,0.0,4130.96,28916.66,6978.5,1863.49,1007.11,9849.1,38765.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,26499,158264.01,0.0,5040.0,163304.01,31857.89,12424.5,10466.53,54748.92,218052.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1146,77058.31,38208.79,5447.44,120714.54,16339.85,15196.12,2132.91,33668.88,154383.42 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,14561,87137.81,0.0,0.0,87137.81,19885.62,12424.5,1471.98,33782.1,120919.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18666,30240.69,3977.1,988.06,35205.85,7947.34,9426.81,2686.91,20061.06,55266.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,80,74849.76,10144.4,5095.17,90089.33,15999.37,15052.76,1501.9,32554.03,122643.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,29466,50421.01,0.0,0.0,50421.01,10633.47,10035.18,4080.16,24748.81,75169.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25634,5401.28,0.0,259.41,5660.69,0.0,1794.98,438.5,2233.48,7894.17 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,30027,21621.0,0.0,280.0,21901.0,4075.78,3345.06,1776.98,9197.82,31098.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,12653,149909.7,14828.77,30508.43,195246.9,34557.77,12358.8,11021.53,57938.1,253185.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41819,32254.38,508.78,25390.97,58154.13,5726.31,2867.2,933.84,9527.35,67681.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,4930,63567.37,7478.11,4796.03,75841.51,13805.83,11973.64,6232.12,32011.59,107853.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37400,977.97,0.0,0.0,977.97,0.0,410.66,75.91,486.57,1464.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,43743,45288.0,4228.43,934.0,50450.43,0.0,5734.39,4008.84,9743.23,60193.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,49352,51335.54,0.0,2691.97,54027.51,11124.76,10327.88,3778.81,25231.45,79258.96 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5810,24451.35,0.0,0.0,24451.35,0.0,6104.73,1893.65,7998.38,32449.73 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,36453,76842.18,0.0,1525.0,78367.18,16122.84,12387.47,6485.56,34995.87,113363.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,23668,40454.1,2440.5,961.06,43855.66,9917.32,10130.75,3550.77,23598.84,67454.5 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,39871,17787.08,0.0,123.28,17910.36,0.0,5214.71,1388.18,6602.89,24513.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,40724,106605.0,0.0,7093.99,113698.99,21971.81,12424.5,9023.64,43419.95,157118.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,30696,68380.37,0.0,805.69,69186.06,14382.21,11064.43,5747.28,31193.92,100379.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,49518,62811.04,0.0,1610.0,64421.04,13224.7,12424.51,4963.05,30612.26,95033.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31263,80946.11,8379.65,5624.91,94950.67,16721.42,12424.5,1582.37,30728.29,125678.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29497,8974.41,0.0,835.45,9809.86,1867.59,3891.62,781.12,6540.33,16350.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,23258,108038.0,13404.56,4766.69,126209.25,22317.13,12424.5,9841.21,44582.84,170792.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,7501,161165.87,0.0,0.0,161165.87,32425.04,12424.5,17810.06,62659.6,223825.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4092,66650.05,17163.78,3871.89,87685.72,19344.31,13135.63,6729.04,39208.98,126894.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,49080,87418.6,29807.92,8448.58,125675.1,18491.4,12472.29,9815.47,40779.16,166454.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1275,82100.25,3447.16,4758.04,90305.45,17090.69,12424.5,1503.92,31019.11,121324.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13151,66519.8,24034.87,2687.37,93242.04,18912.07,13105.88,7137.59,39155.54,132397.58 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,46694,2261.0,1430.79,242.25,3934.04,0.0,669.02,305.34,974.36,4908.4 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,24467,91258.93,0.0,0.0,91258.93,18768.09,12424.5,7729.03,38921.62,130180.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7598,22415.6,35.56,1518.0,23969.16,4148.63,6021.1,1887.57,12057.3,36026.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28491,56531.0,5314.4,4998.61,66844.01,12473.95,12424.5,5210.75,30109.2,96953.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,51227,72315.52,8524.53,720.0,81560.05,15021.72,12424.5,6363.56,33809.78,115369.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,35493,115624.01,0.0,0.0,115624.01,22169.04,8123.72,6367.91,36660.67,152284.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,42558,15702.75,0.0,0.0,15702.75,3847.72,3464.52,1251.0,8563.24,24265.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42199,88964.32,16.58,8654.23,97635.13,19737.87,0.0,8029.58,27767.45,125402.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15640,93054.44,17842.41,13436.78,124333.63,19274.86,12424.5,2002.69,33702.05,158035.68 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,869,99654.02,8857.94,571.35,109083.31,22857.59,12424.5,1801.02,37083.11,146166.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,8659,109807.03,4815.7,1069.89,115692.62,22380.52,12424.5,9281.34,44086.36,159778.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,39574,4740.0,0.0,0.0,4740.0,1222.92,1433.6,393.39,3049.91,7789.91 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,31591,93499.04,0.0,0.0,93499.04,19270.58,12424.5,7747.44,39442.52,132941.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34525,2588.96,0.0,0.0,2588.96,0.0,1087.14,200.95,1288.09,3877.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,5128,149125.54,0.0,0.0,149125.54,30075.15,11946.64,24698.66,66720.45,215845.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8006,7924.77,0.0,291.67,8216.44,947.65,0.0,2591.96,3539.61,11756.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,28740,84644.01,25445.44,4559.3,114648.75,17689.28,12424.51,9102.06,39215.85,153864.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,6918,56531.0,0.0,3604.35,60135.35,11780.12,12424.5,4680.2,28884.82,89020.17 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,28067,28112.5,0.0,0.0,28112.5,5096.79,2628.26,2142.23,9867.28,37979.78 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,34752,208032.0,0.0,5723.14,213755.14,43018.44,12424.5,11461.83,66904.77,280659.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41017,56531.0,0.0,7771.08,64302.08,13737.72,12424.5,5149.17,31311.39,95613.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,5482,876.0,0.0,0.0,876.0,192.63,238.93,68.0,499.56,1375.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35414,74403.18,0.0,10711.14,85114.32,0.0,6510.8,6600.35,13111.15,98225.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,43116,1499.94,0.0,0.0,1499.94,309.08,95.58,4248.65,4653.31,6153.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10363,875.88,0.0,24.5,900.38,0.0,427.09,69.88,496.97,1397.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,7380,108371.47,3809.53,9837.95,122018.95,28750.23,12424.5,2022.82,43197.55,165216.5 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,2693,84882.71,0.0,1486.53,86369.24,17976.12,11280.14,6939.91,36196.17,122565.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,26481,138624.72,41248.69,6191.18,186064.59,27434.17,12424.5,3117.65,42976.32,229040.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,288,75889.93,3334.63,3792.19,83016.75,15916.76,12470.08,6846.2,35233.04,118249.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52059,55961.26,1170.13,2091.61,59223.0,11842.33,12301.04,4901.0,29044.37,88267.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41438,119463.83,0.0,975.17,120439.0,23633.48,12424.5,578.77,36636.75,157075.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,50200,12071.28,0.0,0.0,12071.28,0.0,2906.02,936.31,3842.33,15913.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10854,7886.6,0.0,0.0,7886.6,0.0,3359.99,634.77,3994.76,11881.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1926,Sr Materials & Supplies Sprv,45294,23086.8,869.5,237.6,24193.9,5231.66,4730.87,2008.47,11971.0,36164.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30979,17375.0,0.0,2669.51,20044.51,1964.14,0.0,5231.54,7195.68,27240.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,10709,12494.4,0.0,0.0,12494.4,3223.55,2867.19,988.69,7079.43,19573.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,22346,80154.0,1266.68,1751.0,83171.68,16881.31,12424.5,6504.09,35809.9,118981.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,2712,56531.01,621.29,2350.53,59502.83,11681.45,12424.5,4730.12,28836.07,88338.9 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,5714,73614.97,0.0,4431.0,78045.97,15167.13,12291.42,6346.01,33804.56,111850.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41065,70122.15,53653.7,8857.63,132633.48,21652.26,13814.31,9588.41,45054.98,177688.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,35853,55782.13,0.0,0.0,55782.13,11453.51,11276.31,4548.83,27278.65,83060.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24540,68156.85,4607.38,4855.26,77619.49,20015.15,13430.11,5839.67,39284.93,116904.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2520,Morgue Attendant,12688,27910.24,0.0,7342.48,35252.72,6460.35,4704.53,2871.78,14036.66,49289.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,26151,77071.02,0.0,674.0,77745.02,16023.65,12424.5,6249.38,34697.53,112442.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,40289,140601.01,14431.82,12668.12,167700.95,27759.09,12424.5,2812.31,42995.9,210696.85 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,14183,67911.0,5608.79,11806.73,85326.52,15611.06,12424.5,6717.63,34753.19,120079.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,40750,5422.0,0.0,48.0,5470.0,1226.92,955.73,456.8,2639.45,8109.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34209,67918.78,9021.93,3539.07,80479.78,19596.7,13384.23,6282.42,39263.35,119743.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,21570,26301.72,0.0,435.79,26737.51,6381.21,7323.28,2148.1,15852.59,42590.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,16093,117135.31,1884.64,3253.74,122273.69,23184.69,12424.51,1899.12,37508.32,159782.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",47344,66424.52,0.0,1584.24,68008.76,13951.28,8845.35,5739.79,28536.42,96545.18 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,8355,9695.87,0.0,0.0,9695.87,0.0,884.05,964.57,1848.62,11544.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2719,Janitorial Svcs Asst Sprv,7329,39205.8,0.0,5248.43,44454.23,9515.77,6594.55,3676.44,19786.76,64240.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,11836,56883.56,0.0,0.0,56883.56,12706.03,12424.5,4541.95,29672.48,86556.04 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,20847,2950.88,0.0,45.3,2996.18,557.59,513.71,232.19,1303.49,4299.67 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18890,51348.7,477.9,818.67,52645.27,12419.0,12400.6,4315.13,29134.73,81780.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30410,55819.51,45.76,9041.28,64906.55,13745.06,12416.55,5096.06,31257.67,96164.22 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1041,IS Engineer-Assistant,7107,108419.01,0.0,8493.38,116912.39,22097.61,12424.5,9372.77,43894.88,160807.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3848,48735.2,0.0,6653.95,55389.15,12778.05,12424.5,4428.25,29630.8,85019.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,36261,113369.1,54393.29,7421.73,175184.12,24060.84,12424.48,10677.96,47163.28,222347.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,20984,64614.83,0.0,934.94,65549.77,14121.5,6642.34,5244.02,26007.86,91557.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",4771,1081.0,0.0,0.0,1081.0,0.0,0.0,85.5,85.5,1166.5 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,23882,33469.0,0.0,0.0,33469.0,6228.6,5734.39,2690.48,14653.47,48122.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,10716,61428.03,0.0,1584.0,63012.03,12986.22,12424.51,5219.71,30630.44,93642.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40434,1892.4,0.0,315.4,2207.8,0.0,143.35,137.33,280.68,2488.48 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,36202,18648.02,0.0,0.0,18648.02,3380.88,1911.46,1431.47,6723.81,25371.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12940,93047.1,7610.02,10233.59,110890.71,20753.85,12567.87,9052.18,42373.9,153264.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22235,13976.8,0.0,5.27,13982.07,0.0,3775.14,1084.03,4859.17,18841.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,47483,32162.34,1836.42,14229.02,48227.78,5823.59,2867.19,768.47,9459.25,57687.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,40127,145200.01,0.0,0.0,145200.01,29221.73,12424.53,10276.99,51923.25,197123.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15500,112159.76,30518.27,10811.73,153489.76,23421.18,15052.76,2607.46,41081.4,194571.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28431,4711.4,0.0,196.41,4907.81,1033.68,474.28,379.78,1887.74,6795.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,1503,116976.0,0.0,5016.24,121992.24,24555.23,12424.5,9835.9,46815.63,168807.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,16255,51196.22,2934.14,3960.07,58090.43,12501.35,12373.73,4786.64,29661.72,87752.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,44310,7347.0,0.0,0.0,7347.0,1895.52,1433.6,605.8,3934.92,11281.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36560,1960.9,0.0,269.24,2230.14,3567.89,0.0,27.95,3595.84,5825.98 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,49281,94107.07,0.0,1260.0,95367.07,19660.14,12424.5,7613.79,39698.43,135065.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,38369,59613.63,319.69,0.0,59933.32,13296.65,12424.5,4815.3,30536.45,90469.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14151,33525.04,2805.41,1837.11,38167.56,7583.31,4300.79,633.13,12517.23,50684.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3556,Museum Registrar,18369,66281.07,0.0,0.0,66281.07,13613.63,11955.0,5507.63,31076.26,97357.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,9271,31728.0,2166.93,2548.42,36443.35,6261.49,3822.92,1995.9,12080.31,48523.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,18263,68296.35,110.59,1247.84,69654.78,14128.26,11060.49,5533.68,30722.43,100377.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,49415,29600.0,6823.79,2447.06,38870.85,5609.95,4778.66,3051.14,13439.75,52310.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,43071,81942.09,0.0,3082.0,85024.09,17528.61,12424.5,6965.73,36918.84,121942.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,26365,4538.83,0.0,0.0,4538.83,0.0,1915.94,367.71,2283.65,6822.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,48326,92282.01,529.05,1650.0,94461.06,19356.36,12424.5,7792.45,39573.31,134034.37 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,10336,14063.91,0.0,0.0,14063.91,2617.28,1905.49,1121.65,5644.42,19708.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,7073,54796.91,17207.67,4607.07,76611.65,13110.14,12328.94,6125.54,31564.62,108176.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,45483,29505.01,0.0,560.0,30065.01,6813.02,7167.98,2430.01,16411.01,46476.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,53008,61735.0,0.0,480.0,62215.0,12820.34,12424.5,4826.94,30071.78,92286.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7195,77071.05,0.0,125.0,77196.05,15909.67,12424.51,6351.06,34685.24,111881.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,30218,44924.82,5089.9,659.94,50674.66,8232.0,10608.62,4049.49,22890.11,73564.77 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,19157,169873.0,0.0,17023.82,186896.82,37613.85,12424.5,10906.93,60945.28,247842.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,15542,138629.28,3962.74,5306.91,147898.93,27417.19,12424.5,2483.88,42325.57,190224.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,19133,184889.46,0.0,0.0,184889.46,37097.77,12328.94,10853.18,60279.89,245169.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,35313,100761.0,12473.88,12130.84,125365.72,20908.15,12424.5,9861.76,43194.41,168560.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,7457,73650.02,0.0,1480.0,75130.02,15512.33,11946.64,5909.41,33368.38,108498.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,19280,79774.5,7942.78,7045.42,94762.7,17396.98,12424.5,1580.61,31402.09,126164.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13146,118064.63,0.0,12280.99,130345.62,500.46,0.0,8529.76,9030.22,139375.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,44711,54794.63,1654.68,10029.37,66478.68,14112.11,12411.43,5110.6,31634.14,98112.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,13170,11780.94,0.0,0.0,11780.94,2192.43,1433.6,1995.74,5621.77,17402.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37170,13144.9,0.0,0.0,13144.9,0.0,5638.81,1065.23,6704.04,19848.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27114,4231.5,0.0,24.8,4256.3,0.0,1630.71,330.27,1960.98,6217.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,9487,21646.5,0.0,3037.89,24684.39,5085.38,5782.18,1943.34,12810.9,37495.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3353,124594.63,26770.31,14453.8,165818.74,25145.54,12424.5,2780.61,40350.65,206169.39 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",8568,38828.0,0.0,0.0,38828.0,0.0,6498.97,3190.63,9689.6,48517.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,22540,41673.84,0.0,0.0,41673.84,8365.88,12424.5,3343.65,24134.03,65807.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45172,50241.41,0.0,0.0,50241.41,12038.36,12424.5,4076.8,28539.66,78781.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4900,11460.8,0.0,0.0,11460.8,0.0,4969.8,917.18,5886.98,17347.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,15723,69746.02,0.0,0.0,69746.02,14374.9,12424.5,5719.11,32518.51,102264.53 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,9960,81595.59,0.0,0.0,81595.59,18495.29,11270.1,1293.59,31058.98,112654.57 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,33631,11041.39,0.0,0.0,11041.39,0.0,2756.69,856.22,3612.91,14654.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,26824,11548.8,0.0,0.0,11548.8,600.6,4945.91,941.67,6488.18,18036.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,19794,80443.46,8756.1,9392.5,98592.06,17557.38,11748.97,1633.19,30939.54,129531.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40230,6977.04,0.0,0.0,6977.04,0.0,3025.49,555.1,3580.59,10557.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,30132,75927.02,1324.6,449.55,77701.17,15648.74,12424.5,6270.52,34343.76,112044.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,31947,66281.01,0.0,0.0,66281.01,13661.72,11992.93,5405.54,31060.19,97341.2 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,43652,57355.87,0.0,0.0,57355.87,11176.69,7630.92,4163.16,22970.77,80326.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13059,66937.08,17624.46,4923.11,89484.65,19662.66,13188.78,6990.39,39841.83,129326.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18777,136071.0,0.0,9598.4,145669.4,28153.38,12424.5,9942.26,50520.14,196189.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,36163,48163.61,0.0,1040.0,49203.61,11794.13,12424.5,3991.83,28210.46,77414.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,45710,30452.0,0.0,0.0,30452.0,0.0,6212.24,2433.73,8645.97,39097.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5185,8361.48,0.0,0.0,8361.48,1702.37,3625.8,669.76,5997.93,14359.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,50581,8203.5,0.0,0.0,8203.5,1803.96,2150.39,632.27,4586.62,12790.12 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,22704,52989.02,0.0,0.0,52989.02,11492.47,8123.71,4164.39,23780.57,76769.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,1340,100554.03,0.0,0.0,100554.03,20724.83,12424.5,8129.77,41279.1,141833.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,18647,60373.6,18498.4,10530.15,89402.15,13439.1,9222.8,6950.36,29612.26,119014.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,51302,50220.02,248.48,0.0,50468.5,9687.65,7167.97,4004.86,20860.48,71328.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,4725,81230.33,0.0,0.0,81230.33,16736.25,12376.72,6455.79,35568.76,116799.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,15199,1751.82,0.0,0.0,1751.82,0.0,637.65,143.01,780.66,2532.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,47959,77956.6,0.0,0.0,77956.6,15720.41,10035.18,6172.88,31928.47,109885.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,46102,85368.03,0.0,35.0,85403.03,17602.28,12424.5,7032.59,37059.37,122462.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2106,Med Staff Svcs Dept Spc,8674,69902.01,0.0,96.0,69998.01,14425.0,12424.5,5805.45,32654.95,102652.96 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,21201,84566.99,0.0,1000.0,85566.99,17597.23,12424.5,6738.49,36760.22,122327.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27751,87996.94,3126.06,21130.65,112253.65,19494.41,8531.39,8909.39,36935.19,149188.84 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7368,Senior Comm Systems Technican,32555,4991.01,0.0,34290.33,39281.34,1100.29,477.86,3017.56,4595.71,43877.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29526,15006.6,0.0,2981.39,17987.99,510.37,0.0,2028.98,2539.35,20527.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,22807,61735.05,0.0,624.0,62359.05,12852.62,12424.5,5169.23,30446.35,92805.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,3955,156746.02,0.0,0.0,156746.02,31539.53,12424.5,10447.22,54411.25,211157.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21914,15450.75,0.0,584.27,16035.02,0.0,5119.14,1243.22,6362.36,22397.38 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,8460,2362.4,0.0,477.65,2840.05,529.89,382.3,217.66,1129.85,3969.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",8125,11527.71,0.0,0.0,11527.71,0.0,2744.75,894.73,3639.48,15167.19 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,6855,60923.09,17466.78,5742.82,84132.69,13156.18,11176.56,6662.67,30995.41,115128.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15324,56531.0,0.0,4551.53,61082.53,12296.24,12424.5,5003.03,29723.77,90806.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10793,77071.05,0.0,0.0,77071.05,15884.7,12424.5,6341.17,34650.37,111721.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35110,3584.7,0.0,0.0,3584.7,0.0,1505.27,285.95,1791.22,5375.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14007,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3396.86,18222.71,61990.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,13091,50622.01,0.0,0.0,50622.01,9863.49,7645.85,4133.45,21642.79,72264.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51849,5348.25,0.0,0.0,5348.25,0.0,2257.91,430.53,2688.44,8036.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,17784,126994.07,0.0,1510.0,128504.07,25867.74,12424.5,9988.2,48280.44,176784.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,31510,66209.5,0.0,0.0,66209.5,13384.91,10196.45,5473.12,29054.48,95263.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,22312,9800.66,397.55,368.1,10566.31,1823.9,1908.47,839.81,4572.18,15138.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12496,117124.04,8002.77,12765.37,137892.18,23225.7,12424.51,2252.49,37902.7,175794.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4348,61550.1,3208.04,1120.94,65879.08,15340.6,12737.26,5026.2,33104.06,98983.14 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12422,97775.34,3220.03,11702.45,112697.82,25914.19,12424.5,291.45,38630.14,151327.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50574,16527.56,0.0,471.13,16998.69,0.0,1278.29,286.53,1564.82,18563.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,35858,53331.5,13473.53,865.65,67670.68,16458.03,12424.52,5197.48,34080.03,101750.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,1450,139008.88,19215.17,16108.27,174332.32,28022.87,12424.51,2961.88,43409.26,217741.58 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),1472,95834.3,0.0,3980.21,99814.51,20296.26,9127.23,8210.88,37634.37,137448.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,15436,7881.0,0.0,0.0,7881.0,1767.72,1433.58,646.76,3848.06,11729.06 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0951,Dep Dir I,34638,130804.35,0.0,0.0,130804.35,26294.57,12424.5,17272.37,55991.44,186795.79 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,10064,104312.92,0.0,0.0,104312.92,21457.68,12155.7,8467.47,42080.85,146393.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,39538,119467.39,0.0,3616.52,123083.91,23620.97,12424.5,2049.35,38094.82,161178.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,3350,64896.28,0.0,5185.23,70081.51,13850.61,12292.68,5727.71,31871.0,101952.51 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,35713,100698.48,0.0,15104.77,115803.25,22631.89,6027.08,8980.99,37639.96,153443.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,45849,18276.2,0.0,0.0,18276.2,3401.21,3822.92,1382.8,8606.93,26883.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,47369,15168.24,102.7,1097.19,16368.13,0.0,4602.44,1332.71,5935.15,22303.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,35326,87713.05,0.0,0.0,87713.05,18078.18,12424.5,7115.33,37618.01,125331.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1441,Sr Medical Transcriber Typist,49136,35585.57,488.81,293.29,36367.67,7981.84,6522.86,3024.57,17529.27,53896.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49240,54587.95,12940.55,872.53,68401.03,15180.59,10736.63,5329.8,31247.02,99648.05 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0901,Mayoral Staff XIII,46487,18243.35,0.0,20958.2,39201.55,4002.59,1911.46,4095.93,10009.98,49211.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41133,11411.97,0.0,26.45,11438.42,1194.87,4886.17,925.63,7006.67,18445.09 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,49211,37803.5,680.7,0.0,38484.2,7399.3,7884.78,3064.68,18348.76,56832.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,32075,60046.0,0.0,0.0,60046.0,12648.44,10035.16,4730.06,27413.66,87459.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,5790,29766.09,0.0,2689.36,32455.45,7179.94,5256.52,2686.74,15123.2,47578.65 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,15848,65942.53,3254.85,8698.07,77895.45,14828.75,12424.5,6415.52,33668.77,111564.22 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,46152,63251.94,0.0,19331.0,82582.94,13888.54,5623.87,6620.26,26132.67,108715.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48591,61575.96,10857.68,2641.24,75074.88,17646.14,12132.53,5856.53,35635.2,110710.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,15669,100554.01,0.0,0.0,100554.01,20724.83,12424.51,8051.21,41200.55,141754.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,49938,43905.0,0.0,0.0,43905.0,8469.42,7167.99,3432.21,19069.62,62974.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20329,51480.24,1126.58,972.39,53579.21,14354.15,10153.98,4120.97,28629.1,82208.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,25833,118427.07,0.0,0.0,118427.07,23833.77,0.0,17077.25,40911.02,159338.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7319,Electric Motor Repairer,10074,48198.37,11399.85,1570.2,61168.42,10390.65,7103.71,5074.29,22568.65,83737.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,27986,64571.13,0.0,592.75,65163.88,13501.28,11802.32,5415.48,30719.08,95882.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,51810,149673.23,16676.58,11907.07,178256.88,29816.68,12424.5,3027.41,45268.59,223525.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,104.0,"Sheet Metal Workers, Local 104",6200,Public Safety Inspection,6235,Heating/Ventilating Inspector,50013,112776.01,98902.85,12450.16,224129.02,23324.29,12424.51,11511.06,47259.86,271388.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,11601,100761.08,23298.08,4413.23,128472.39,20778.75,12424.6,9882.65,43086.0,171558.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48817,7391.8,296.81,34.03,7722.64,1754.82,2227.98,592.35,4575.15,12297.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,21150,84973.01,0.0,289.49,85262.5,17530.9,12424.5,6869.32,36824.72,122087.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,23522,26927.0,82.46,540.0,27549.46,6160.84,5734.39,2206.36,14101.59,41651.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,31849,79395.03,0.0,2064.0,81459.03,16782.8,12424.51,6697.3,35904.61,117363.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,26864,59186.75,14403.38,284.0,73874.13,7914.55,10130.73,5723.23,23768.51,97642.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,4219,66102.01,1634.65,274.8,68011.46,13678.67,12424.5,5620.73,31723.9,99735.36 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),31561,114795.41,0.0,1500.0,116295.41,23997.48,12424.5,8932.6,45354.58,161649.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37619,43028.72,2818.87,2234.7,48082.29,11747.21,13249.83,3607.16,28604.2,76686.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31494,7372.18,395.87,29.54,7797.59,1749.11,2222.08,597.22,4568.41,12366.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50278,68961.43,1024.8,3966.17,73952.4,0.0,5241.41,5554.42,10795.83,84748.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51387,45096.06,0.0,5586.07,50682.13,9770.56,9895.88,3974.89,23641.33,74323.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,133,72618.26,0.0,0.0,72618.26,14949.55,12424.5,5428.36,32802.41,105420.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,422,99947.0,6714.92,4762.49,111424.41,21146.77,12424.52,9119.56,42690.85,154115.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,8271,61829.32,0.0,624.0,62453.32,13943.31,12424.5,4727.55,31095.36,93548.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,40018,8562.14,0.0,0.0,8562.14,0.0,0.0,677.13,677.13,9239.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8315,Assistant Sheriff,4715,59017.59,0.0,3541.04,62558.63,14713.78,3822.92,5400.52,23937.22,86495.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,1609,108038.02,0.0,8095.17,116133.19,23669.07,12424.5,9279.66,45373.23,161506.42 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,6155,55627.5,0.0,771.12,56398.62,9527.77,5973.32,4423.91,19925.0,76323.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34724,77071.01,5606.74,984.0,83661.75,16080.36,12424.5,6869.27,35374.13,119035.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,44704,138635.26,18553.64,20412.42,177601.32,27395.36,12424.5,2972.64,42792.5,220393.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,22168,66753.4,0.0,0.0,66753.4,13220.52,8553.79,5349.5,27123.81,93877.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,6290,36718.12,1895.94,0.0,38614.06,0.0,5626.85,3129.18,8756.03,47370.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,33783,116976.02,0.0,0.0,116976.02,23541.49,12424.5,9618.36,45584.35,162560.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,7267,3915.0,220.22,31.54,4166.76,734.45,477.86,69.83,1282.14,5448.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,46698,24790.81,0.0,50.0,24840.81,0.0,3076.34,1923.18,4999.52,29840.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,40555,62811.05,3106.3,990.6,66907.95,13109.13,12424.5,5517.76,31051.39,97959.34 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",30548,26509.02,0.0,12192.8,38701.82,6028.39,1672.53,3075.38,10776.3,49478.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,12902,3870.46,0.0,0.0,3870.46,0.0,1388.79,311.03,1699.82,5570.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,16701,106605.06,0.0,0.0,106605.06,21967.92,12424.5,8469.83,42862.25,149467.31 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",3393,15131.5,0.0,0.0,15131.5,3394.01,2532.69,1268.26,7194.96,22326.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8379,57331.83,912.18,0.0,58244.01,11718.08,10839.66,4473.53,27031.27,85275.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6522,5009.55,0.0,0.0,5009.55,0.0,2114.56,396.23,2510.79,7520.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,35587,68388.72,0.0,2559.02,70947.74,14215.78,6198.87,5693.3,26107.95,97055.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9209,8778.0,0.0,268.81,9046.81,1602.88,955.73,148.04,2706.65,11753.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1944,Materials Coordinator,52873,107119.12,0.0,0.0,107119.12,22077.43,12424.5,8437.74,42939.67,150058.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,42843,24295.0,0.0,5839.3,30134.3,5330.3,2389.33,3709.73,11429.36,41563.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,28900,88740.63,0.0,0.0,88740.63,18287.04,12424.5,6632.75,37344.29,126084.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16483,112685.45,20485.61,9989.06,143160.12,22330.91,12424.5,2438.0,37193.41,180353.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,27745,81942.0,234.9,600.0,82776.9,17000.25,12424.5,6788.05,36212.8,118989.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,950,117138.7,61323.38,3638.4,182100.48,23172.43,12424.5,2968.85,38565.78,220666.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,15921,109420.62,0.0,0.0,109420.62,22275.09,12424.5,8626.35,43325.94,152746.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,47203,55253.05,10732.88,1972.35,67958.28,11413.53,11468.77,5353.31,28235.61,96193.89 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,38337,106605.05,0.0,0.0,106605.05,21971.81,12424.5,8727.69,43124.0,149729.05 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,1783,78963.01,0.0,456.0,79419.01,16365.49,12424.5,6541.12,35331.11,114750.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46279,119463.82,45128.31,3678.17,168270.3,23633.48,12424.5,2859.26,38917.24,207187.54 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21979,134321.42,0.0,1562.5,135883.92,27344.43,12424.5,10003.94,49772.87,185656.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,11549,53973.0,321.9,624.0,54918.9,12936.21,12424.5,4567.94,29928.65,84847.55 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,20060,93713.29,37818.57,15074.79,146606.65,26435.68,11912.23,2423.31,40771.22,187377.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,12329,28320.0,0.0,288.0,28608.0,6416.76,5734.39,2355.22,14506.37,43114.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7473,47738.94,826.94,640.12,49206.0,11385.53,9466.46,3569.58,24421.57,73627.57 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,48444,147132.74,0.0,0.0,147132.74,29610.55,12424.5,27741.21,69776.26,216909.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,48023,75927.02,1768.4,0.0,77695.42,15648.74,12424.51,6360.34,34433.59,112129.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,11814,455.2,0.0,0.0,455.2,100.08,191.14,31.68,322.9,778.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",42530,12074.66,0.0,0.0,12074.66,0.0,2555.38,926.1,3481.48,15556.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,14123,91652.7,20993.46,6349.82,118995.98,19957.15,12376.71,9715.85,42049.71,161045.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,17999,113918.92,12787.85,12241.29,138948.06,24622.24,12375.29,10093.32,47090.85,186038.91 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,48816,65858.98,4124.07,8452.67,78435.72,14828.4,12049.68,6415.5,33293.58,111729.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17894,101664.76,1593.77,10283.88,113542.41,21418.73,9476.19,8907.0,39801.92,153344.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,6800,14884.0,0.0,4131.24,19015.24,3780.76,1911.46,171.25,5863.47,24878.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3249,27675.8,0.0,4658.1,32333.9,211.94,0.0,2462.22,2674.16,35008.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,18136,59570.4,4399.64,1567.68,65537.72,12496.46,11303.02,5440.42,29239.9,94777.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",2625,2392.0,0.0,0.0,2392.0,0.0,0.0,189.2,189.2,2581.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,31380,82717.03,88.93,3.16,82809.12,17061.26,12424.5,6823.91,36309.67,119118.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,40937,85368.01,2696.66,0.0,88064.67,17594.59,12424.5,7227.89,37246.98,125311.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12776,28510.79,0.0,2365.04,30875.83,2327.56,0.0,3998.2,6325.76,37201.59 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,3327,1090.13,333.09,0.0,1423.22,0.0,322.56,110.47,433.03,1856.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,18176,10074.75,0.0,4578.53,14653.28,2239.23,1809.91,1212.0,5261.14,19914.42 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,2143,63102.04,2243.2,644.0,65989.24,13137.96,12424.5,5405.62,30968.08,96957.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,20905,100761.03,7176.48,3982.83,111920.34,21587.0,12424.5,8987.44,42998.94,154919.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,11655,65904.16,6420.82,3441.97,75766.95,13599.62,12415.54,5974.49,31989.65,107756.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7605,112828.27,142.26,14935.83,127906.36,18484.45,11043.47,9651.31,39179.23,167085.59 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),38747,21521.37,0.0,375.0,21896.37,4804.06,1774.08,1808.76,8386.9,30283.27 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,18955,81415.2,0.0,0.0,81415.2,16742.92,12424.5,6341.81,35509.23,116924.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,17113,2647.0,0.0,0.0,2647.0,0.0,477.86,227.17,705.03,3352.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1031,IS Trainer-Assistant,12227,69480.63,0.0,0.0,69480.63,14305.2,12424.5,5512.87,32242.57,101723.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,26882,43867.21,0.0,0.0,43867.21,10513.25,11152.19,3563.14,25228.58,69095.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,20076,63200.22,5873.47,2462.74,71536.43,13528.29,12290.1,5883.76,31702.15,103238.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,32894,5991.07,0.0,0.0,5991.07,0.0,2163.84,485.58,2649.42,8640.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,21299,2511.25,0.0,0.0,2511.25,0.0,893.02,202.06,1095.08,3606.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,36490,143156.67,20317.28,9955.24,173429.19,28919.93,12424.5,373.58,41718.01,215147.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,52138,51755.4,10951.49,233.32,62940.21,12455.22,12233.36,5043.89,29732.47,92672.68 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,50672,3212.78,0.0,0.0,3212.78,0.0,1041.75,249.36,1291.11,4503.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7339,"Aprntcstatnry Eng,Wtrtreatplnt",24313,63348.56,8953.15,1502.05,73803.76,13012.92,12400.62,5920.04,31333.58,105137.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",47488,24285.66,0.0,114.98,24400.64,0.0,3933.43,1891.89,5825.32,30225.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,26143,73603.83,3710.51,7794.14,85108.48,13701.6,7639.87,1411.94,22753.41,107861.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8247,592.33,0.0,0.0,592.33,0.0,256.85,45.98,302.83,895.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,40058,47497.18,1474.98,6054.05,55026.21,12224.65,12415.54,4381.74,29021.93,84048.14 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,18873,23515.8,0.0,0.0,23515.8,0.0,3297.27,1545.83,4843.1,28358.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,9978,8478.28,0.0,0.0,8478.28,0.0,0.0,670.49,670.49,9148.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,34957,14566.29,0.0,0.0,14566.29,2710.79,2385.45,1151.75,6247.99,20814.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41495,79819.76,0.0,15037.35,94857.11,16085.19,7070.02,7011.79,30167.0,125024.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,16601,117140.96,12200.66,15832.27,145173.89,23164.17,12424.52,2462.32,38051.01,183224.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51049,1763.2,0.0,0.0,1763.2,0.0,764.58,136.51,901.09,2664.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7246,Sewer Repair Supervisor,30839,106116.01,8211.77,18237.31,132565.09,22192.95,12424.5,10003.18,44620.63,177185.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,51184,13216.0,0.0,0.0,13216.0,2459.48,1911.46,1040.93,5411.87,18627.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19088,3956.76,0.0,17.64,3974.4,0.0,1929.39,308.25,2237.64,6212.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43289,106693.86,792.66,24271.18,131757.7,20708.29,10836.13,9739.63,41284.05,173041.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10313,47205.6,19442.83,6345.14,72993.57,12137.05,12424.5,5750.19,30311.74,103305.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,37017,3553.05,0.0,24.6,3577.65,0.0,1176.74,277.31,1454.05,5031.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2484,Biologist III,2666,71523.08,0.0,0.0,71523.08,13756.16,7792.19,5693.6,27241.95,98765.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47811,94651.45,5750.43,6293.93,106695.81,19451.97,12424.5,1779.91,33656.38,140352.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10757,9776.61,392.31,86.19,10255.11,2354.67,2989.95,776.61,6121.23,16376.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8314,Chief Deputy Sheriff,21630,172540.0,5360.51,14753.2,192653.71,45540.68,12424.5,3286.04,61251.22,253904.93 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,28765,93785.63,0.0,0.0,93785.63,18530.05,9557.31,7706.15,35793.51,129579.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,13152,52743.0,14757.46,3764.05,71264.51,12113.98,11946.64,5456.39,29517.01,100781.52 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,30836,48645.58,0.0,1110.92,49756.5,11937.09,12015.09,4082.78,28034.96,77791.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44983,145304.18,0.0,22193.34,167497.52,29215.97,12106.3,6663.29,47985.56,215483.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5320,Illustrator And Art Designer,19236,83148.02,0.0,0.0,83148.02,17137.11,12424.5,6789.72,36351.33,119499.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,30387,5634.09,0.0,0.0,5634.09,0.0,1295.01,454.36,1749.37,7383.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,14625,8437.41,0.0,0.0,8437.41,0.0,0.0,667.26,667.26,9104.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,42377,5646.56,124.18,179.34,5950.08,0.0,2640.21,461.54,3101.75,9051.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,46324,18142.14,440.65,1485.17,20067.96,4699.54,4907.08,1703.82,11310.44,31378.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,24833,151536.0,0.0,0.0,151536.0,30409.07,12424.5,17625.2,60458.77,211994.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,11432,86064.85,5653.25,8819.77,100537.87,18802.79,12340.87,7912.62,39056.28,139594.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38704,48319.2,2500.75,2186.25,53006.2,10234.93,10608.62,4349.31,25192.86,78199.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,43371,38875.12,0.0,0.0,38875.12,0.0,4247.03,3014.66,7261.69,46136.81 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,21775,12816.2,0.0,0.0,12816.2,2874.68,2371.05,207.87,5453.6,18269.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1264,43473.54,0.0,5312.75,48786.29,3132.93,0.0,5902.97,9035.9,57822.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,45060,8916.31,0.0,0.0,8916.31,0.0,1977.17,690.29,2667.46,11583.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,7788,74165.01,15572.92,1944.0,91681.93,15644.32,12424.5,7476.53,35545.35,127227.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,36959,60295.0,0.0,5093.96,65388.96,13256.73,7406.92,5134.7,25798.35,91187.31 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),9324,101217.45,5935.93,6073.04,113226.42,22051.27,12424.51,1897.36,36373.14,149599.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,48623,76409.02,4425.22,0.0,80834.24,12981.16,10990.88,6303.78,30275.82,111110.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,34150,16971.44,0.0,7375.4,24346.84,4067.78,3234.97,1991.73,9294.48,33641.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,14153,55970.43,2468.41,1660.0,60098.84,12876.33,12424.5,4517.73,29818.56,89917.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,41446,41887.81,0.0,1436.25,43324.06,8849.77,8335.46,3642.91,20828.14,64152.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,27388,100761.0,9576.73,1054.0,111391.73,20986.62,12424.51,8903.88,42315.01,153706.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,42586,116493.87,515.47,19255.55,136264.89,26667.45,12316.56,9956.87,48940.88,185205.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37609,1918.17,0.0,0.0,1918.17,0.0,831.78,148.51,980.29,2898.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,2514,90082.94,7256.74,10110.23,107449.91,18736.54,11104.35,8849.95,38690.84,146140.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50311,31300.0,0.0,0.0,31300.0,5674.7,4778.66,2414.98,12868.34,44168.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13126,11460.81,0.0,0.0,11460.81,2047.06,4969.8,917.18,7934.04,19394.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,39006,62811.0,1942.89,5418.34,70172.23,13687.86,12424.5,5680.46,31792.82,101965.05 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,18676,84983.79,0.0,0.0,84983.79,17846.57,10405.51,6617.49,34869.57,119853.36 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,2779,103283.01,0.0,939.54,104222.55,21480.54,12424.51,8630.46,42535.51,146758.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,52909,58280.6,5084.97,3920.98,67286.55,13868.75,12424.5,5418.5,31711.75,98998.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,15967,67704.76,0.0,540.51,68245.27,13946.79,11335.57,5684.12,30966.48,99211.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48715,43564.53,3040.75,2746.7,49351.98,12024.95,13260.72,3742.31,29027.98,78379.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,52587,69902.01,2712.96,0.0,72614.97,14407.13,12424.5,5939.76,32771.39,105386.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,38791,62468.8,0.0,924.04,63392.84,12994.98,12424.5,4872.96,30292.44,93685.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12347,140334.0,0.0,250.0,140584.0,28242.36,12424.5,10122.17,50789.03,191373.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,14181,115122.09,0.0,0.0,115122.09,23165.2,12405.14,9431.97,45002.31,160124.4 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",12723,66909.3,205.7,4171.81,71286.81,16219.78,11975.61,1217.85,29413.24,100700.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,6162,66102.0,4138.36,3052.6,73292.96,14243.47,12424.5,6038.31,32706.28,105999.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15870,119467.4,5156.25,10620.26,135243.91,23620.98,12424.5,2295.78,38341.26,173585.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46616,77856.3,1110.14,3264.97,82231.41,15777.47,11946.64,4523.23,32247.34,114478.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42011,14999.23,0.0,1446.52,16445.75,512.51,0.0,1970.04,2482.55,18928.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8112,37121.62,3701.04,1677.3,42499.96,10028.16,11593.56,3246.11,24867.83,67367.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43,40765.66,13389.7,2827.16,56982.52,12679.97,8106.98,4315.73,25102.68,82085.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27180,3855.81,0.0,0.0,3855.81,0.0,964.69,298.94,1263.63,5119.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35396,9000.0,0.0,0.0,9000.0,0.0,2688.0,724.72,3412.72,12412.72 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,31376,32042.5,0.0,0.0,32042.5,0.0,4491.93,2552.6,7044.53,39087.03 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8183,Assistant Chief Attorney 2,50555,218440.04,0.0,1562.5,220002.54,44275.89,12424.5,11559.32,68259.71,288262.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1424,3283.0,0.0,0.0,3283.0,0.0,1600.85,254.59,1855.44,5138.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,3373,83735.68,0.0,1520.0,85255.68,17549.15,12349.84,6933.65,36832.64,122088.32 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,19014,126769.4,0.0,0.0,126769.4,25804.46,12424.5,9853.02,48081.98,174851.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,31013,159139.3,0.0,250.0,159389.3,32040.5,9933.63,10307.59,52281.72,211671.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,52691,116976.0,0.0,0.0,116976.0,23541.49,12424.48,9572.57,45538.54,162514.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,501,41342.0,0.0,0.0,41342.0,9239.2,6690.12,3338.52,19267.84,60609.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,47029,6806.0,0.0,0.0,6806.0,1526.58,955.73,563.76,3046.07,9852.07 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,1060,198809.17,0.0,11140.56,209949.73,42242.27,11182.06,11311.13,64735.46,274685.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36276,4817.7,0.0,20.34,4838.04,0.0,1192.16,375.51,1567.67,6405.71 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,37980,80997.33,0.0,0.0,80997.33,14748.15,5292.36,6286.65,26327.16,107324.49 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,21442,90788.41,0.0,0.0,90788.41,18730.18,12185.57,7440.78,38356.53,129144.94 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",27469,25727.41,1211.96,2437.84,29377.21,0.0,0.0,2324.82,2324.82,31702.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,31326,11406.75,0.0,374.88,11781.63,0.0,4369.5,259.48,4628.98,16410.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,42826,200107.11,0.0,6768.09,206875.2,39478.36,12424.5,3473.0,55375.86,262251.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15102,9846.9,0.0,1641.2,11488.1,3381.73,0.0,2041.72,5423.45,16911.55 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,3565,118631.41,0.0,0.0,118631.41,24148.85,12424.5,9266.01,45839.36,164470.77 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,42867,71955.14,4243.27,12296.63,88495.04,20580.2,9135.72,1506.15,31222.07,119717.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22905,130108.93,1341.2,10539.48,141989.61,26426.34,10840.86,9987.36,47254.56,189244.17 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",15255,950.0,0.0,0.0,950.0,0.0,113.49,73.65,187.14,1137.14 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,1108,959.0,0.0,0.0,959.0,210.9,238.93,82.85,532.68,1491.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,27645,6345.0,0.0,0.0,6345.0,1423.17,1433.6,527.07,3383.84,9728.84 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,26325,33821.65,737.01,2448.27,37006.93,0.0,4898.12,2865.1,7763.22,44770.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,9241,23893.01,0.0,0.0,23893.01,4446.49,4300.79,1832.86,10580.14,34473.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32609,119455.92,934.07,3422.42,123812.41,23662.83,12424.5,2061.74,38149.07,161961.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47579,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3376.05,18201.9,61969.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,19905,78395.77,616.61,71.15,79083.53,16187.39,11893.43,6343.93,34424.75,113508.28 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,43340,84445.19,0.0,90.0,84535.19,16597.6,9059.55,6590.59,32247.74,116782.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35366,66434.19,7078.03,4044.32,77556.54,19322.5,13092.26,6011.44,38426.2,115982.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",4456,106090.0,7175.26,4144.08,117409.34,22442.45,12424.5,9627.91,44494.86,161904.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33692,97759.71,44772.53,13590.49,156122.73,27088.94,12424.5,2662.16,42175.6,198298.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,21310,44840.0,5892.27,4999.1,55731.37,9907.1,4778.65,923.37,15609.12,71340.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,49056,4707.59,41.4,144.61,4893.6,0.0,2201.16,379.7,2580.86,7474.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,1091,73406.0,1262.7,940.0,75608.7,15324.91,12424.5,6175.6,33925.01,109533.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,41398,81157.02,0.0,665.0,81822.02,16852.2,12424.5,6697.58,35974.28,117796.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,42535,69247.01,2388.1,2284.48,73919.59,14400.86,12424.5,5860.97,32686.33,106605.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,22427,117140.94,40462.64,9441.71,167045.29,23164.18,12424.5,2800.83,38389.51,205434.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,50247,29996.8,0.0,0.0,29996.8,6728.25,5208.74,2363.67,14300.66,44297.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,35764,97192.43,10118.65,11633.83,118944.91,20190.89,12424.5,1984.53,34599.92,153544.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3255,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3372.94,18198.79,61966.09 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,46791,67781.24,6974.24,8873.02,83628.5,15331.66,12400.61,6876.0,34608.27,118236.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",24068,177071.65,2024.3,17707.16,196803.11,38322.98,12520.07,3301.06,54144.11,250947.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20563,325.44,0.0,32.54,357.98,0.0,25.38,22.68,48.06,406.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,44042,26556.0,301.69,1327.8,28185.49,5055.31,2867.19,2033.79,9956.29,38141.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,18128,2135.0,0.0,0.0,2135.0,397.32,477.86,165.71,1040.89,3175.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,6717,1607.2,0.0,0.0,1607.2,0.0,382.28,124.43,506.71,2113.91 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,51426,79571.41,0.0,0.0,79571.41,16387.72,12424.49,6433.78,35245.99,114817.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,28055,93355.96,480.11,0.0,93836.07,12050.94,8052.03,7462.7,27565.67,121401.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29278,75614.83,6647.51,7275.17,89537.51,16576.61,15196.12,1445.96,33218.69,122756.2 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,31028,403.76,340.66,0.0,744.42,0.0,119.47,57.78,177.25,921.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,34307,5793.46,38.33,115.49,5947.28,0.0,2708.9,461.27,3170.17,9117.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2203,4588.56,0.0,116.4,4704.96,0.0,0.0,372.2,372.2,5077.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6706,28967.65,11375.86,324.43,40667.94,7022.35,12412.56,3219.95,22654.86,63322.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,36945,4767.16,0.0,145.92,4913.08,0.0,1582.93,380.62,1963.55,6876.63 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,42568,66939.27,0.0,0.0,66939.27,13878.18,11681.0,5529.97,31089.15,98028.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6196,361.77,0.0,8.13,369.9,-0.04,0.0,1681.66,1681.62,2051.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50102,56079.29,9347.68,2033.77,67460.74,15055.24,13337.59,5102.32,33495.15,100955.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,3102,62140.02,0.0,54.68,62194.7,12885.73,11695.69,5160.38,29741.8,91936.5 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7249,Automotive Mechanic Sprv 1,28924,107816.05,643.9,600.0,109059.95,22332.94,12424.5,8720.41,43477.85,152537.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,23980,47565.05,4529.95,4772.71,56867.71,9896.13,8816.61,1491.78,20204.52,77072.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,44270,95784.8,0.0,0.0,95784.8,19693.13,12122.37,7855.65,39671.15,135455.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3572,68474.8,23180.29,3668.31,95323.4,19747.97,13497.01,7241.19,40486.17,135809.57 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,11572,94107.03,0.0,0.0,94107.03,19395.81,12424.5,7755.22,39575.53,133682.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,15093,80570.03,0.0,0.0,80570.03,16616.25,12424.5,6504.1,35544.85,116114.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,1196,62497.07,0.0,8825.02,71322.09,13714.78,11838.82,5877.24,31430.84,102752.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20567,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1850.29,10264.06,34268.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,21178,96463.02,320.63,250.0,97033.65,19881.54,12354.62,7875.44,40111.6,137145.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,6026,64376.0,0.0,0.0,64376.0,12840.07,9079.44,5135.66,27055.17,91431.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,13336,81464.56,2293.75,9495.46,93253.77,18734.48,12352.81,7616.65,38703.94,131957.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,43523,65540.05,9175.48,564.68,75280.21,13925.02,8992.0,6037.05,28954.07,104234.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,52887,70559.84,5920.92,6315.0,82795.76,14456.2,8709.34,6766.27,29931.81,112727.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38263,11309.28,0.0,0.0,11309.28,454.9,4904.09,905.45,6264.44,17573.72 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,52861,39774.09,0.0,191.91,39966.0,8222.69,6522.85,3192.24,17937.78,57903.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,23608,76641.88,164.98,0.0,76806.86,15797.95,12410.47,6171.8,34380.22,111187.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",49508,83230.0,7389.88,1456.79,92076.67,16884.32,9730.53,7250.52,33865.37,125942.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,17519,57484.16,12096.1,3070.03,72650.29,13058.91,12105.0,5834.27,30998.18,103648.47 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,39654,102487.02,9809.31,0.0,112296.33,21080.63,12147.28,9233.63,42461.54,154757.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,20728,107978.01,16462.43,1950.0,126390.44,22651.55,12424.5,9831.18,44907.23,171297.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,12074,32655.0,0.0,0.0,32655.0,515.87,5734.39,2569.99,8820.25,41475.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,53197,125292.19,42484.69,12175.9,179952.78,25273.47,12424.5,3016.72,40714.69,220667.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46723,63507.3,8245.55,788.38,72541.23,14644.63,12508.31,5915.89,33068.83,105610.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,52622,9538.97,0.0,759.24,10298.21,0.0,2934.39,798.45,3732.84,14031.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,43982,45170.34,0.0,505.13,45675.47,10636.71,10057.63,3748.41,24442.75,70118.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,27763,68067.04,0.0,0.0,68067.04,14029.01,12424.5,5509.63,31963.14,100030.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,25403,90019.2,0.0,0.0,90019.2,18601.52,12567.86,7393.58,38562.96,128582.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",3920,16906.78,0.0,0.0,16906.78,63.03,3578.02,1306.11,4947.16,21853.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,18476,114861.89,0.0,0.0,114861.89,23350.64,12424.5,26277.01,62052.15,176914.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,17824,117135.35,18807.96,5851.51,141794.82,23184.69,12424.5,2415.7,38024.89,179819.71 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,5677,98250.81,0.0,1985.0,100235.81,20668.98,12436.45,8013.17,41118.6,141354.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23204,39991.41,5968.78,3029.86,48990.05,11216.35,12290.27,3497.56,27004.18,75994.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,19485,39740.0,270.29,5831.75,45842.04,8363.81,7167.99,3761.44,19293.24,65135.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6742,14676.0,0.0,0.0,14676.0,0.0,1293.22,1300.6,2593.82,17269.82 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36431,97770.73,21191.9,9630.08,128592.71,26148.48,12424.5,2144.26,40717.24,169309.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,37905,5036.41,0.0,96.76,5133.17,0.0,1669.54,341.38,2010.92,7144.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52265,56531.0,0.0,1955.25,58486.25,11667.81,12424.5,4498.28,28590.59,87076.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",49193,250.0,0.0,0.0,250.0,0.0,0.0,19.78,19.78,269.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,19529,55200.22,0.0,0.0,55200.22,7141.44,12424.51,4414.95,23980.9,79181.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,3643,44202.58,61.71,547.25,44811.54,9549.85,9551.33,3639.88,22741.06,67552.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,14352,16089.75,0.0,0.0,16089.75,0.0,3560.1,1248.61,4808.71,20898.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,29416,100554.07,0.0,0.0,100554.07,20735.84,12424.51,8227.79,41388.14,141942.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8136,24602.32,0.0,0.0,24602.32,4940.67,5293.37,1952.0,12186.04,36788.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42888,11195.5,0.0,70.0,11265.5,0.0,3324.15,873.54,4197.69,15463.19 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9328,94612.69,48355.83,14945.74,157914.26,26640.03,12023.03,2690.59,41353.65,199267.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18013,35328.55,9917.35,1165.62,46411.52,9160.65,6897.03,3618.12,19675.8,66087.32 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,13218,35237.46,3085.79,736.65,39059.9,7326.63,6944.88,3257.66,17529.17,56589.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30272,53402.07,1483.55,2907.56,57793.18,0.0,5311.35,4618.08,9929.43,67722.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,32557,66209.29,0.0,0.0,66209.29,14309.17,7553.62,5292.77,27155.56,93364.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45945,12235.53,0.0,4148.31,16383.84,2836.36,1266.94,1330.42,5433.72,21817.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,42192,65452.15,0.0,1200.0,66652.15,13734.26,12424.5,5197.54,31356.3,98008.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16738,7607.35,0.0,0.0,7607.35,0.0,3237.54,613.34,3850.88,11458.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",27267,94388.0,735.33,2105.46,97228.79,19887.43,12424.5,7979.88,40291.81,137520.6 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,44461,91393.01,0.0,0.0,91393.01,18836.29,12424.5,7137.93,38398.72,129791.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43917,11185.3,0.0,313.24,11498.54,0.0,4850.33,920.09,5770.42,17268.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2114,Medical Records Tech Sprv,13036,83699.04,0.0,5248.85,88947.89,18322.86,12424.5,7358.29,38105.65,127053.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42382,33491.97,0.0,269.51,33761.48,5191.11,0.0,4339.0,9530.11,43291.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29047,66248.04,15850.6,631.03,82729.67,15657.58,13053.67,6329.81,35041.06,117770.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,39675,14532.01,0.0,0.0,14532.01,3259.52,1911.46,1204.08,6375.06,20907.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,49969,4397.0,0.0,0.0,4397.0,818.28,477.85,360.66,1656.79,6053.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2373,65454.26,3187.43,625.18,69266.87,15019.73,12896.28,5069.67,32985.68,102252.55 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,6921,71311.03,0.0,0.0,71311.03,14697.59,12424.5,5914.73,33036.82,104347.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30909,56531.0,1260.23,5540.26,63331.49,12789.78,12424.5,5225.82,30440.1,93771.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36349,97764.63,2260.36,9744.3,109769.29,26143.98,12424.5,1868.57,40437.05,150206.34 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,30455,102632.07,0.0,3000.0,105632.07,21124.01,12424.5,8871.87,42420.38,148052.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16037,68322.03,21170.37,2153.87,91646.27,19325.85,13463.14,7167.61,39956.6,131602.87 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,41181,605.63,370.95,0.0,976.58,0.0,179.2,75.8,255.0,1231.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,21265,27232.0,2492.85,1664.92,31389.77,5197.95,4396.37,2419.17,12013.49,43403.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,18425,56468.09,394.58,3258.15,60120.82,12323.25,10369.68,4988.88,27681.81,87802.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,13665,8414.3,56.89,83.68,8554.87,1653.19,477.86,669.74,2800.79,11355.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,4724,0.0,0.0,118.68,118.68,0.0,68.5,9.08,77.58,196.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",16458,148528.31,2265.3,12017.21,162810.82,31405.12,13953.66,1928.07,47286.85,210097.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38127,41747.06,7116.35,815.47,49678.88,11006.46,12553.3,3671.47,27231.23,76910.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,29346,88127.17,0.0,0.0,88127.17,17144.66,8703.11,6836.71,32684.48,120811.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35597,57314.34,0.0,969.38,58283.72,0.0,5050.21,4518.78,9568.99,67852.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,22859,93862.12,8085.23,7456.69,109404.04,18059.52,9557.31,1801.27,29418.1,138822.14 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",51018,20432.23,7637.11,14.9,28084.24,0.0,0.0,2222.56,2222.56,30306.8 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,9234,63102.01,845.87,2832.6,66780.48,13143.55,12424.5,5524.3,31092.35,97872.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,4318,164524.06,0.0,0.0,164524.06,32991.98,11946.64,17500.79,62439.41,226963.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,40102,99369.8,0.0,1987.4,101357.2,20850.46,12424.5,7909.69,41184.65,142541.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29499,92221.21,0.0,1182.69,93403.9,18718.51,9604.08,583.43,28906.02,122309.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37971,66102.0,1479.33,0.0,67581.33,13624.06,12424.5,5586.82,31635.38,99216.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41214,119459.82,23856.22,13794.94,157110.98,23648.11,12424.5,2630.49,38703.1,195814.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,35515,66580.0,51572.23,9875.77,128028.0,14705.69,12424.5,9774.03,36904.22,164932.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,3673,81942.0,13968.12,1952.5,97862.62,17290.07,12424.5,7804.53,37519.1,135381.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46482,7320.0,0.0,37.2,7357.2,0.0,2914.98,569.6,3484.58,10841.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5225,17916.0,0.0,0.0,17916.0,3248.16,1911.46,1416.06,6575.68,24491.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6178,119455.25,7472.74,6238.25,133166.24,23664.88,12424.5,2260.41,38349.79,171516.03 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,1334,97753.81,8227.17,6281.12,112262.1,25272.59,12424.5,1479.64,39176.73,151438.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,711,119463.81,3587.43,4588.17,127639.41,23633.48,12424.5,2127.13,38185.11,165824.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,2777,71993.62,0.0,1000.0,72993.62,15010.75,12424.5,5861.75,33297.0,106290.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",48416,28405.28,2372.54,720.75,31498.57,5816.21,3737.03,2691.74,12244.98,43743.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,42660,5558.74,4277.36,9043.44,18879.54,0.0,494.59,1461.65,1956.24,20835.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5149,Supt Water Treatment Fac,24105,139636.83,1796.49,3275.34,144708.66,28241.96,12110.01,10157.92,50509.89,195218.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5067,881.6,0.0,0.0,881.6,0.0,382.3,68.26,450.56,1332.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17759,14819.18,0.0,2205.46,17024.64,0.0,1206.61,1321.39,2528.0,19552.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,6958,5244.8,0.0,19.63,5264.43,0.0,1051.3,408.61,1459.91,6724.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,35783,58285.37,3341.67,6126.16,67753.2,12232.16,10482.99,5273.16,27988.31,95741.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,30949,11635.29,0.0,362.83,11998.12,0.0,3839.35,930.61,4769.96,16768.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,51201,5722.8,0.0,621.25,6344.05,1422.97,907.95,523.51,2854.43,9198.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6417,7723.3,170.7,0.0,7894.0,0.0,3273.38,631.98,3905.36,11799.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42950,147758.22,411.4,14282.29,162451.91,31689.5,12313.94,7222.37,51225.81,213677.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,32150,21700.01,0.0,250.0,21950.01,0.0,4587.51,425.82,5013.33,26963.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5526,55855.0,45.76,8468.44,64369.2,13784.9,12424.5,5260.31,31469.71,95838.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,6480,79860.24,0.0,216.0,80076.24,16429.74,11851.06,6656.91,34937.71,115013.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32171,11565.54,0.0,0.0,11565.54,0.0,769.06,896.97,1666.03,13231.57 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,51715,68707.52,1824.61,0.0,70532.13,14138.3,12424.5,1172.37,27735.17,98267.3 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,11652,87531.06,0.0,0.0,87531.06,18040.64,12424.5,7040.9,37506.04,125037.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,30853,97762.9,10685.24,2904.99,111353.13,24484.96,12424.5,240.82,37150.28,148503.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30586,3399.78,0.0,0.0,3399.78,0.0,1427.62,271.64,1699.26,5099.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,19428,67286.48,0.0,616.8,67903.28,13980.97,12281.15,5525.18,31787.3,99690.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,22208,56531.0,0.0,972.45,57503.45,11667.81,12424.5,4769.34,28861.65,86365.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,19456,659.8,0.0,0.0,659.8,0.0,161.27,51.25,212.52,872.32 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,12328,41161.46,0.0,0.0,41161.46,9870.15,10172.56,3349.71,23392.42,64553.88 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,13705,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5169.23,30446.35,92805.35 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,41473,63041.7,4171.28,5210.47,72423.45,13742.93,12412.56,5971.06,32126.55,104550.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29116,23442.3,0.0,24899.08,48341.38,5671.14,3010.54,352.94,9034.62,57376.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28348,101844.94,1598.25,15702.54,119145.73,23508.95,15052.77,1988.36,40550.08,159695.81 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,40196,17927.36,0.0,0.0,17927.36,3336.29,3781.11,1442.08,8559.48,26486.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,35120,84240.2,0.0,0.0,84240.2,17341.72,12431.01,6643.1,36415.83,120656.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,2874,3650.07,0.0,12.78,3662.85,0.0,1706.69,284.29,1990.98,5653.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32735,14529.66,0.0,238.6,14768.26,0.0,4808.52,1144.93,5953.45,20721.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,37787,47756.51,762.99,1822.52,50342.02,11824.6,11420.99,4122.69,27368.28,77710.3 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,18131,45872.42,717.49,2647.4,49237.31,11097.28,12415.91,3776.42,27289.61,76526.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11528,124026.84,2028.9,32430.53,158486.27,28626.34,10981.35,5232.52,44840.21,203326.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,26959,2115.0,0.0,0.0,2115.0,393.6,477.86,164.16,1035.62,3150.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,31589,1563.11,0.0,125.13,1688.24,0.0,262.83,130.71,393.54,2081.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,48732,36018.0,8104.06,10851.31,54973.37,9612.88,5495.46,4456.81,19565.15,74538.52 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2550,Senior Occupational Therapist,33922,126490.04,0.0,100.0,126590.04,25456.41,12424.5,9921.13,47802.04,174392.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,47771,61735.0,0.0,3126.54,64861.54,13366.01,12424.5,5358.06,31148.57,96010.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,42248,27188.87,104.69,14197.96,41491.52,4826.68,2389.32,668.33,7884.33,49375.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,12133,14530.44,103.59,1453.04,16087.07,0.0,3389.86,1248.62,4638.48,20725.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,43275,79395.05,0.0,1500.0,80895.05,16672.72,12424.51,6557.78,35655.01,116550.06 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,3435,36168.66,0.0,0.0,36168.66,0.0,4515.83,2803.58,7319.41,43488.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,5215,8492.0,0.0,0.0,8492.0,1539.6,955.73,648.85,3144.18,11636.18 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",44045,19805.08,3462.38,144.9,23412.36,0.0,4312.74,1815.43,6128.17,29540.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,50233,61871.88,2409.56,1127.94,65409.38,12960.58,12032.31,5389.95,30382.84,95792.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,25129,103581.45,3781.15,1547.88,108910.48,21479.36,12400.61,8707.61,42587.58,151498.06 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,8964,1655.55,0.0,9259.58,10915.13,371.34,215.04,835.99,1422.37,12337.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,25542,53973.02,0.0,3460.8,57433.82,13095.26,12424.5,4671.97,30191.73,87625.55 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4337,"Pr Investigator, Tax Collector",32422,99815.0,965.67,0.0,100780.67,20572.02,12424.5,8346.4,41342.92,142123.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43166,97755.68,10568.8,18685.14,127009.62,28326.21,12423.43,2117.44,42867.08,169876.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26194,63078.06,0.0,10703.31,73781.37,14522.54,5780.92,2860.88,23164.34,96945.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",16904,9834.3,0.0,0.0,9834.3,0.0,2341.57,763.3,3104.87,12939.17 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3549,Arts Program Assistant,18452,52869.94,0.0,0.0,52869.94,9071.02,11014.8,4284.78,24370.6,77240.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,15190,62912.62,3351.64,6288.44,72552.7,14247.13,12424.5,5613.6,32285.23,104837.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10124,117135.34,57418.46,8259.64,182813.44,23184.7,12424.52,3071.76,38680.98,221494.42 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,45348,146878.01,0.0,0.0,146878.01,29519.4,12424.51,27702.85,69646.76,216524.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,33566,6478.49,0.0,0.0,6478.49,0.0,2117.53,501.63,2619.16,9097.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,45154,53922.33,0.0,51.3,53973.63,12047.45,12269.18,4381.7,28698.33,82671.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25041,0.0,0.0,21246.13,21246.13,0.0,68.5,1625.33,1693.83,22939.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,10672,144850.69,0.0,11391.21,156241.9,29235.56,12424.5,2661.23,44321.29,200563.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1423,94685.33,3183.69,6825.75,104694.77,19646.7,12424.51,1744.99,33816.2,138510.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,5781,12789.17,0.0,1413.1,14202.27,0.0,0.0,1140.42,1140.42,15342.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46879,128886.36,1165.52,12809.9,142861.78,25121.62,11067.36,10006.67,46195.65,189057.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,2805,65592.0,7854.25,3982.83,77429.08,13717.27,12424.5,6320.73,32462.5,109891.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,3560,112776.0,23212.33,2255.52,138243.85,23150.48,12424.5,9944.53,45519.51,183763.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6390,66251.36,1695.83,1988.62,69935.81,15585.3,13056.54,5377.46,34019.3,103955.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,13239,56930.56,0.0,857.04,57787.6,11828.68,11320.63,4546.37,27695.68,85483.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,8780,0.0,0.0,2092.15,2092.15,0.0,68.5,195.19,263.69,2355.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21847,69029.45,30721.51,6148.92,105899.88,20616.5,13605.68,8253.39,42475.57,148375.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,7241,56531.0,0.0,3272.55,59803.55,11659.55,12424.5,4895.06,28979.11,88782.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36421,113285.33,5968.24,11561.05,130814.62,24773.34,15196.12,2130.9,42100.36,172914.98 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,45435,99772.01,0.0,0.0,99772.01,22759.72,12424.5,1695.17,36879.39,136651.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9300,Port Operation,9393,Maritime Marketing Repr,4077,117517.0,0.0,0.0,117517.0,23650.47,12424.5,9617.27,45692.24,163209.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,28866,123776.0,0.0,0.0,123776.0,24910.01,12424.5,9790.3,47124.81,170900.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,29320,114633.0,0.0,0.0,114633.0,23027.46,12424.51,9213.03,44665.0,159298.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9702,12398.37,834.13,174.79,13407.29,3012.05,3822.14,1035.05,7869.24,21276.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10786,9859.5,0.0,921.39,10780.89,0.0,2670.07,835.33,3505.4,14286.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32964,69555.29,0.0,1313.65,70868.94,0.0,5393.49,1187.34,6580.83,77449.77 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,21536,22949.0,0.0,0.0,22949.0,4270.8,3822.92,1815.12,9908.84,32857.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,30013,62240.02,0.0,0.0,62240.02,4114.48,9557.32,4946.71,18618.51,80858.53 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,7813,47370.64,0.0,994.78,48365.42,4796.82,4587.5,6672.14,16056.46,64421.88 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,15471,17939.01,0.0,0.0,17939.01,0.0,0.0,1419.21,1419.21,19358.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18813,41349.84,0.0,1326.31,42676.15,10189.35,11044.66,3451.61,24685.62,67361.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,29648,17206.79,0.0,360.0,17566.79,0.0,4182.7,1397.75,5580.45,23147.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,13286,24878.01,0.0,200.0,25078.01,5470.66,5686.6,1995.33,13152.59,38230.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6137,55982.1,657.78,1966.79,58606.67,0.0,4876.86,4544.4,9421.26,68027.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43337,65233.9,20348.74,578.03,86160.67,17969.95,12850.99,6726.16,37547.1,123707.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10209,4366.68,0.0,0.0,4366.68,0.0,1893.54,345.54,2239.08,6605.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,50116,96254.08,9046.44,0.0,105300.52,19838.21,12424.51,8137.18,40399.9,145700.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,36971,106605.0,0.0,0.0,106605.0,21971.81,12424.5,8767.51,43163.82,149768.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36018,7550.19,0.0,73.28,7623.47,730.4,3260.36,629.29,4620.05,12243.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,4188,8285.08,0.0,61.31,8346.39,0.0,3000.94,646.96,3647.9,11994.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,9922,6674.0,0.0,0.0,6674.0,1242.04,955.73,498.57,2696.34,9370.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,29623,71504.0,0.0,1541.6,73045.6,14904.61,11182.05,6084.63,32171.29,105216.89 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,3293,70172.29,0.0,0.0,70172.29,14471.0,12409.57,5626.31,32506.88,102679.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,18298,97766.39,9385.77,11737.88,118890.04,25916.96,12424.5,1978.02,40319.48,159209.52 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",48934,40185.48,0.0,0.0,40185.48,3793.77,8428.36,3167.06,15389.19,55574.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,13963,56463.48,0.0,0.0,56463.48,11636.16,12409.57,4430.81,28476.54,84940.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,30463,100761.0,6539.44,11043.72,118344.16,20858.15,12424.49,9473.29,42755.93,161100.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,18588,40505.0,9177.99,1315.63,50998.62,9770.16,9557.31,4073.65,23401.12,74399.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,30667,81157.0,14281.33,5303.72,100742.05,17104.81,12424.5,7988.55,37517.86,138259.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,35062,71529.58,1097.53,2165.41,74792.52,15210.65,10941.38,5986.49,32138.52,106931.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,38724,12195.03,0.0,320.0,12515.03,0.0,2944.84,993.25,3938.09,16453.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,301,85368.04,252.68,315.84,85936.56,17594.61,12424.5,6588.56,36607.67,122544.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,40055,49678.46,32667.2,3866.59,86212.25,12357.99,12400.62,6850.01,31608.62,117820.87 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,35057,129895.0,0.0,0.0,129895.0,26141.48,12424.5,9995.13,48561.11,178456.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,1031,12243.01,0.0,268.65,12511.66,2806.36,2628.26,1018.41,6453.03,18964.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4446,51305.25,2121.98,689.87,54117.1,13829.33,10078.66,4095.21,28003.2,82120.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,38517,24564.46,0.0,2762.69,27327.15,4382.21,4945.91,1001.45,10329.57,37656.72 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,48654,72699.05,0.0,624.0,73323.05,15112.32,12424.5,5956.59,33493.41,106816.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1089,115549.68,5029.12,6810.57,127389.37,22814.27,11946.64,2169.89,36930.8,164320.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18511,112879.18,104840.08,15497.18,233216.44,24233.08,15148.33,3974.21,43355.62,276572.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,14131,58028.31,0.0,0.0,58028.31,12111.91,10943.12,4810.42,27865.45,85893.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9818,144706.03,77.78,9418.1,154201.91,30957.17,12424.5,10336.26,53717.93,207919.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2935,"Sr Marriage, Fam & Cld Cnslr",7183,97424.0,0.0,0.0,97424.0,20079.52,12424.51,8082.37,40586.4,138010.4 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,51605,1297.1,0.0,0.0,1297.1,334.65,334.51,100.32,769.48,2066.58 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,34935,5822.0,436.65,0.0,6258.65,1305.88,955.73,506.01,2767.62,9026.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,40682,101916.35,18771.16,29523.6,150211.11,20936.31,9079.44,328.58,30344.33,180555.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,39325,106331.74,0.0,5853.74,112185.48,22444.17,11710.16,8968.25,43122.58,155308.06 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,14305,21445.02,0.0,0.0,21445.02,4705.05,2389.33,1669.25,8763.63,30208.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,44709,34819.54,0.0,126.61,34946.15,0.0,2543.21,2707.45,5250.66,40196.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,46181,12097.93,0.0,16471.17,28569.1,0.0,1526.19,30.24,1556.43,30125.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,48051,11123.0,0.0,2604.77,13727.77,2070.02,1672.53,1100.18,4842.73,18570.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6179,119463.8,40677.94,6067.44,166209.18,24103.01,12424.5,2778.53,39306.04,205515.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,7710,144071.71,0.0,0.0,144071.71,29206.71,12424.51,25160.63,66791.85,210863.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19244,113233.59,19568.29,18051.42,150853.3,25036.02,15196.12,2516.35,42748.49,193601.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23520,33000.0,0.0,560.0,33560.0,1345.79,7884.78,2619.76,11850.33,45410.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50421,105041.34,0.0,11223.15,116264.49,13426.83,9887.03,8541.71,31855.57,148120.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,12325,38878.33,0.0,600.0,39478.33,8832.09,5744.78,3229.17,17806.04,57284.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,52585,135421.01,0.0,298.61,135719.62,27308.14,12424.52,10077.59,49810.25,185529.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49356,56531.0,61.23,1104.77,57697.0,11878.0,12424.5,4780.19,29082.69,86779.69 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,36294,11232.0,0.0,0.0,11232.0,2090.28,1433.6,907.23,4431.11,15663.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7229,Transmission Line Supervisor 1,24061,120449.01,8592.67,39302.14,168343.82,24240.62,12424.51,10560.95,47226.08,215569.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3424,Integrated Pest Mgmt Specialst,6656,80049.8,6065.05,3597.23,89712.08,17230.72,12376.72,7387.36,36994.8,126706.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28039,112685.44,584.68,7711.59,120981.71,22330.91,12424.5,2013.27,36768.68,157750.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,20791,7235.6,0.0,580.24,7815.84,0.0,955.74,605.73,1561.47,9377.31 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,10837,8962.13,0.0,195.56,9157.69,2362.68,2658.12,749.6,5770.4,14928.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12446,9814.05,0.0,0.0,9814.05,0.0,4193.27,792.09,4985.36,14799.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,50192,130441.51,53124.95,16305.16,199871.62,28849.75,15149.41,3352.04,47351.2,247222.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29321,874.84,0.0,31.5,906.34,0.0,74.66,70.35,145.01,1051.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,33574,47124.3,0.0,266.7,47391.0,11304.19,12424.5,3853.15,27581.84,74972.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20865,39746.62,394.77,0.0,40141.39,9374.6,10345.07,3252.14,22971.81,63113.2 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,24934,112497.97,20598.52,1874.23,134970.72,22785.63,12394.64,9997.86,45178.13,180148.85 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,50197,43322.02,0.0,0.0,43322.02,7854.31,4300.79,3561.13,15716.23,59038.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34897,62948.38,12533.69,5408.64,80890.71,18951.48,12439.14,6108.82,37499.44,118390.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,26061,65751.36,0.0,0.0,65751.36,13337.97,10059.04,5075.97,28472.98,94224.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23224,38172.68,1169.56,9332.39,48674.63,9543.51,5014.54,761.93,15319.98,63994.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,23565,54909.0,0.0,0.0,54909.0,12286.08,12424.5,4553.27,29263.85,84172.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,21694,74436.1,476.7,1493.97,76406.77,15718.93,11176.56,6110.25,33005.74,109412.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25017,56531.0,0.0,1534.0,58065.0,11780.12,12424.5,4444.48,28649.1,86714.1 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,20820,133087.01,0.0,6571.95,139658.96,26783.95,12424.5,10174.43,49382.88,189041.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,13139,30439.0,0.0,296.9,30735.9,6857.88,6300.35,2468.18,15626.41,46362.31 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,36321,227428.15,0.0,0.0,227428.15,45778.29,12424.5,18940.21,77143.0,304571.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,14747,14489.9,0.0,0.0,14489.9,3250.08,2661.11,1136.87,7048.06,21537.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,35774,15877.0,0.0,216.0,16093.0,2994.92,2867.19,1285.93,7148.04,23241.04 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",51328,198139.06,0.0,5462.78,203601.84,40974.08,12424.5,11250.66,64649.24,268251.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3573,133983.67,0.0,9298.27,143281.94,28006.86,11270.82,7866.92,47144.6,190426.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48722,30429.09,0.0,284.62,30713.71,8150.57,6281.77,1888.16,16320.5,47034.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,35591,17741.69,39.09,10.44,17791.22,0.0,5844.89,1378.07,7222.96,25014.18 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,15900,88393.0,0.0,26.11,88419.11,17917.72,10513.04,7051.91,35482.67,123901.78 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",49852,23023.12,775.63,3039.82,26838.57,5895.58,4101.04,548.56,10545.18,37383.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,7186,86941.33,0.0,0.0,86941.33,17912.23,12424.5,7005.49,37342.22,124283.55 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,29537,59317.61,0.0,573.45,59891.06,12248.56,11418.12,4870.01,28536.69,88427.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6363,65934.54,4192.28,2323.65,72450.47,18670.59,12992.45,5596.71,37259.75,109710.22 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,148,97762.44,24284.11,18665.75,140712.3,27581.44,12424.5,2349.62,42355.56,183067.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34826,9297.02,1045.92,4640.08,14983.02,2085.33,1373.86,239.79,3698.98,18682.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,17285,50765.31,0.0,0.0,50765.31,10337.75,10990.91,4046.24,25374.9,76140.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,33095,106925.41,0.0,1170.0,108095.41,21401.09,10990.9,16319.3,48711.29,156806.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18315,75594.51,9057.39,13296.07,97947.97,18435.13,9318.37,1664.0,29417.5,127365.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",22071,77580.4,23714.48,5804.39,107099.27,15422.06,8744.94,1828.12,25995.12,133094.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6114,82339.86,54.23,4698.89,87092.98,16876.16,9002.99,7026.79,32905.94,119998.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,52112,129879.51,0.0,0.0,129879.51,26138.68,12423.01,10007.65,48569.34,178448.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,33683,8791.04,0.0,61.31,8852.35,0.0,0.0,700.1,700.1,9552.45 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,372C,Administrative Analyst II,25183,34013.4,0.0,3000.0,37013.4,6465.6,5949.42,3015.31,15430.33,52443.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,20394,113623.04,0.0,0.0,113623.04,22866.78,12424.63,9228.71,44520.12,158143.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,20051,12904.71,0.0,0.0,12904.71,0.0,1789.01,1001.62,2790.63,15695.34 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,40685,5780.01,0.0,0.0,5780.01,1296.46,955.73,463.13,2715.32,8495.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45181,2336.24,0.0,0.0,2336.24,0.0,1013.08,196.28,1209.36,3545.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35225,650.1,0.0,130.02,780.12,0.0,0.0,54.78,54.78,834.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4250,4910.87,0.0,0.0,4910.87,0.0,1638.78,380.79,2019.57,6930.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",49339,15672.0,0.0,940.32,16612.32,2932.08,1433.6,277.97,4643.65,21255.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2819,Assistant Health Educator,581,81116.02,0.0,0.0,81116.02,16718.52,12424.49,6545.61,35688.62,116804.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,21568,6345.0,0.0,0.0,6345.0,1423.17,1433.6,519.28,3376.05,9721.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32858,5196.38,0.0,268.2,5464.58,231.22,0.0,1559.21,1790.43,7255.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,2292,36225.46,793.28,0.0,37018.74,6741.54,4778.71,2873.9,14394.15,51412.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29250,119455.86,9154.1,9692.67,138302.63,23662.8,12424.5,2356.08,38443.38,176746.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,18232,12402.0,0.0,0.0,12402.0,2248.48,955.74,204.94,3409.16,15811.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,4698,30683.66,11671.47,4955.24,47310.37,5751.31,3345.06,782.12,9878.49,57188.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23704,146819.4,142.33,38558.16,185519.89,33245.87,12233.36,4706.14,50185.37,235705.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50135,49903.3,0.0,0.0,49903.3,9720.48,7645.85,3849.01,21215.34,71118.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,23345,128112.0,0.0,0.0,128112.0,25730.01,12424.51,9890.93,48045.45,176157.45 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,40962,24934.01,0.0,0.0,24934.01,6432.93,6212.25,2025.7,14670.88,39604.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47438,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2334.55,12787.9,44087.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,1232,61933.4,3798.76,828.14,66560.3,12898.87,12042.21,5258.43,30199.51,96759.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,9914,92533.1,8675.8,679.72,101888.62,19162.53,12281.13,8224.33,39667.99,141556.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,4244,36950.78,4543.99,7860.43,49355.2,9682.69,7209.32,3783.87,20675.88,70031.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,31039,105804.0,27424.8,5330.91,138559.71,22624.64,12424.49,10043.16,45092.29,183652.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,34580,43929.72,0.0,0.0,43929.72,9185.13,7914.65,3095.15,20194.93,64124.65 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,30478,93681.03,0.0,1186.78,94867.81,19551.25,12424.5,7865.56,39841.31,134709.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,40679,7454.29,0.0,55.18,7509.47,0.0,2701.43,604.13,3305.56,10815.03 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2594,Employee Assistance Counselor,35846,25527.01,0.0,0.0,25527.01,4750.57,3345.06,2078.1,10173.73,35700.74 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,41497,21971.6,0.0,0.0,21971.6,3983.45,2341.54,1698.48,8023.47,29995.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,11954,52783.83,12067.49,9490.13,74341.45,12424.93,10428.83,6061.99,28915.75,103257.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,52109,72699.0,1703.46,1908.45,76310.91,15112.3,12424.5,6271.01,33807.81,110118.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15045,365.13,0.0,4.44,369.57,0.0,117.97,28.69,146.66,516.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,39353,12895.0,0.0,0.0,12895.0,2835.62,3822.92,1019.71,7678.25,20573.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,36265,13972.01,0.0,0.0,13972.01,2600.2,1911.46,1053.13,5564.79,19536.8 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,5939,84973.01,0.0,3636.42,88609.43,18267.16,12424.5,7196.31,37887.97,126497.4 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,33704,100825.68,0.0,0.0,100825.68,20834.59,12110.6,7985.05,40930.24,141755.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39893,112696.2,21910.06,8312.59,142918.85,22291.43,12424.5,2427.48,37143.41,180062.26 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1249,Personnel Trainee,7451,33870.89,0.0,0.0,33870.89,7485.02,7165.0,2723.98,17374.0,51244.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34988,0.0,0.0,808.87,808.87,0.0,68.5,61.88,130.38,939.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,40872,46861.2,15643.01,4722.48,67226.69,11386.56,12424.5,5389.96,29201.02,96427.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48119,29887.7,0.0,3040.63,32928.33,469.54,0.0,947.22,1416.76,34345.09 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,17945,1469.4,0.0,0.0,1469.4,0.0,286.72,112.17,398.89,1868.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1890,64183.69,2813.53,463.29,67460.51,13225.45,12061.74,5577.77,30864.96,98325.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,27991,26358.0,0.0,0.0,26358.0,4905.24,2867.18,2132.88,9905.3,36263.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,8328,3714.05,0.0,0.0,3714.05,0.0,1203.62,288.28,1491.9,5205.95 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,21448,117443.04,0.0,0.0,117443.04,23834.38,12424.5,9285.14,45544.02,162987.06 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2778,69379.77,11411.25,12470.35,93261.37,19828.95,8824.86,1495.76,30149.57,123410.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7286,Wire Rope Cable Maint Sprv,33321,166228.75,56192.76,12081.31,234502.82,29638.21,12424.5,11716.61,53779.32,288282.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,19348,13506.85,54.15,0.0,13561.0,0.0,4462.07,1052.28,5514.35,19075.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,28566,9463.59,0.0,512.17,9975.76,0.0,12424.5,0.0,12424.5,22400.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,5934,69238.61,9224.54,3197.11,81660.26,14612.64,12424.5,6725.09,33762.23,115422.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,52760,59660.48,13275.84,5462.39,78398.71,13406.36,11871.13,6416.76,31694.25,110092.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,2214,87713.0,0.0,968.01,88681.01,18078.17,12424.5,6803.23,37305.9,125986.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41309,65904.8,11152.79,4020.7,81078.29,19141.32,12987.43,6329.95,38458.7,119536.99 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,23639,45845.49,0.0,0.0,45845.49,0.0,5325.2,3126.72,8451.92,54297.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13370,56531.01,0.0,1017.8,57548.81,11805.02,12424.5,4752.48,28982.0,86530.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43029,70130.77,19967.05,3239.88,93337.7,20112.08,13818.73,7145.9,41076.71,134414.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46022,1005.75,0.0,167.63,1173.38,0.0,0.0,19.95,19.95,1193.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,20324,100554.02,0.0,0.0,100554.02,20721.15,12424.51,8043.31,41188.97,141742.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45731,64901.65,1288.98,2705.65,68896.28,14708.55,11481.26,5690.43,31880.24,100776.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",3642,15688.78,0.0,0.0,15688.78,0.0,3303.24,1159.79,4463.03,20151.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28964,58705.53,1209.04,3602.67,63517.24,17071.32,11570.69,4623.89,33265.9,96783.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18133,67224.84,12906.34,2917.33,83048.51,19259.62,13248.41,6429.55,38937.58,121986.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,40184,71269.96,253.69,1194.75,72718.4,14944.17,12424.5,5636.57,33005.24,105723.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,3337,176257.0,0.0,0.0,176257.0,35471.94,12424.43,10741.19,58637.56,234894.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,39791,139268.34,9363.85,23331.68,171963.87,27532.95,12424.5,2876.71,42834.16,214798.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,53019,63102.0,0.0,1260.12,64362.12,13268.95,12424.5,5337.54,31030.99,95393.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2439,2640.1,0.0,0.0,2640.1,1094.48,0.0,143.44,1237.92,3878.02 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,13927,93681.0,4126.7,624.0,98431.7,19436.77,12424.5,8147.66,40008.93,138440.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,30183,170335.02,0.0,0.0,170335.02,34279.7,12424.5,17963.92,64668.12,235003.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,49341,52968.78,2384.14,334.55,55687.47,10832.01,10521.58,4584.31,25937.9,81625.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,51894,36504.4,0.0,0.0,36504.4,9009.84,9079.44,2943.87,21033.15,57537.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,9420,156746.06,0.0,0.0,156746.06,31539.53,12424.44,10419.7,54383.67,211129.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,29718,76569.19,1623.68,1214.48,79407.35,15908.59,11472.11,6753.53,34134.23,113541.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,28096,68049.41,0.0,0.0,68049.41,14006.6,12424.51,5422.51,31853.62,99903.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,33624,178696.5,0.0,0.0,178696.5,36034.79,12185.57,18073.74,66294.1,244990.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,16238,176257.06,0.0,0.0,176257.06,35471.94,12424.49,10817.46,58713.89,234970.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,34135,73063.07,0.0,0.0,73063.07,15058.73,12424.5,5750.11,33233.34,106296.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42047,68370.59,9679.58,5082.45,83132.62,20146.49,13474.98,6228.41,39849.88,122982.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,19276,3414.6,0.0,66.48,3481.08,898.13,981.78,283.04,2162.95,5644.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,18306,26185.6,25.05,6395.1,32605.75,5873.43,4683.08,2630.01,13186.52,45792.27 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,18329,75512.51,6776.8,60.46,82349.77,17234.35,12424.5,1370.51,31029.36,113379.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,5669,82575.11,148.97,622.92,83347.0,17145.01,12403.06,6866.45,36414.52,119761.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,46580,84791.0,0.0,0.0,84791.0,17475.8,12424.5,6920.91,36821.21,121612.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,20153,79722.0,4062.04,60.0,83844.04,16444.38,12424.47,6566.59,35435.44,119279.48 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,44421,127129.04,0.0,0.0,127129.04,25584.71,12424.5,18246.92,56256.13,183385.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,53050,84644.01,53641.35,5049.9,143335.26,17556.45,12424.5,10065.15,40046.1,183381.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,17225,56865.0,27621.2,9007.6,93493.8,11937.38,11468.77,7602.41,31008.56,124502.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,11333,51301.86,138.26,517.06,51957.18,10670.01,10294.89,4105.09,25069.99,77027.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22297,12002.0,0.0,3369.08,15371.08,4361.29,0.0,969.03,5330.32,20701.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24000,66713.63,0.0,4885.18,71598.81,17058.86,8548.6,517.85,26125.31,97724.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,44384,41007.04,0.0,22177.5,63184.54,9325.75,4747.05,4922.95,18995.75,82180.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,50642,119745.41,0.0,0.0,119745.41,24087.76,12424.5,9798.62,46310.88,166056.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,11734,66102.02,94.76,0.0,66196.78,13624.06,12424.5,5460.34,31508.9,97705.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,53141,68037.0,46160.27,9142.94,123340.21,14503.56,8601.57,7050.88,30156.01,153496.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9870,67253.97,1764.79,1468.5,70487.26,14661.89,9136.79,5746.28,29544.96,100032.22 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,25708,126489.74,0.0,10861.22,137350.96,25466.47,12248.05,10122.72,47837.24,185188.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,28589,62461.13,4081.0,1540.0,68082.13,13160.87,12424.5,5223.36,30808.73,98890.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,7828,116777.68,0.0,0.0,116777.68,23485.75,12424.5,16992.49,52902.74,169680.42 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,38962,4003.46,35.96,0.0,4039.42,0.0,996.05,312.92,1308.97,5348.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,16478,30102.43,0.0,868.88,30971.31,0.0,4999.65,2403.87,7403.52,38374.83 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2540,Audiologist,44838,103348.32,0.0,0.0,103348.32,21335.2,12556.21,8171.81,42063.22,145411.54 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,47255,73719.94,0.0,842.8,74562.74,15305.89,11880.93,6316.93,33503.75,108066.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,16691,124272.18,0.0,0.0,124272.18,25005.4,10471.23,24786.43,60263.06,184535.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30672,1322.41,0.0,0.0,1322.41,0.0,573.44,110.11,683.55,2005.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30769,3928.15,0.0,0.0,3928.15,0.0,288.21,304.88,593.09,4521.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46760,2699.9,0.0,881.46,3581.36,696.57,1170.77,291.4,2158.74,5740.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,34711,80691.71,9452.36,4783.68,94927.75,17033.58,12352.81,7569.43,36955.82,131883.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46545,24037.69,0.0,1937.72,25975.41,0.0,2063.78,2016.11,4079.89,30055.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27928,27743.54,0.0,5804.64,33548.18,4180.94,2627.37,2766.34,9574.65,43122.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,52975,29896.0,5503.43,2683.31,38082.74,5677.98,4826.44,3073.01,13577.43,51660.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,47220,21627.44,29089.95,2148.58,52865.97,5299.55,6077.85,4183.99,15561.39,68427.36 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,41925,84973.0,0.0,48.0,85021.0,17522.24,12424.5,7052.67,36999.41,122020.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",43638,14825.78,7449.96,19615.61,41891.35,3642.96,1720.32,60.11,5423.39,47314.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51443,11810.05,0.0,2084.33,13894.38,1525.37,0.0,470.05,1995.42,15889.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36516,30366.39,166.13,0.0,30532.52,5790.18,6687.12,2394.46,14871.76,45404.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,8848,3910.0,304.05,97.2,4311.25,1033.86,955.74,348.81,2338.41,6649.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19825,56531.0,0.0,2624.25,59155.25,11659.55,12424.5,4643.72,28727.77,87883.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,11605,101109.95,27013.13,19026.94,147150.02,21991.33,9079.44,369.21,31439.98,178590.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,13380,61746.99,17659.84,8736.86,88143.69,13939.99,11890.54,7219.98,33050.51,121194.2 +Calendar,2015,4,Community Health,DPH,Public Health,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",3147,1196.0,0.0,0.0,1196.0,0.0,71.44,92.72,164.16,1360.16 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,49978,145611.99,0.0,0.0,145611.99,29264.72,12424.5,17468.11,59157.33,204769.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30469,124847.65,30934.74,8750.52,164532.91,24679.75,12424.5,2122.65,39226.9,203759.81 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12580,97764.91,25491.23,13817.61,137073.75,26407.67,12424.52,2335.19,41167.38,178241.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15635,2665.28,0.0,0.0,2665.28,0.0,663.04,206.57,869.61,3534.89 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8240,Pub Safety Communication Coord,40525,110307.39,12163.76,9085.24,131556.39,24282.37,12388.66,9977.52,46648.55,178204.94 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0963,Dept Head III,44725,195819.64,0.0,0.0,195819.64,39369.25,12424.5,18384.22,70177.97,265997.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,8426,78204.02,0.0,0.0,78204.02,16117.97,12424.5,6323.6,34866.07,113070.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,25516,125623.7,0.0,0.0,125623.7,25311.84,12281.15,17090.3,54683.29,180306.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,15075,86663.05,0.0,1110.0,87773.05,18093.63,12424.48,7025.14,37543.25,125316.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26809,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15061,6302.29,0.0,54.48,6356.77,417.02,0.0,2743.57,3160.59,9517.36 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",51706,105081.99,0.0,0.0,105081.99,21657.95,12384.18,8602.75,42644.88,147726.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,35481,76720.15,0.0,624.0,77344.15,15971.86,12424.5,6361.9,34758.26,112102.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9481,11563.48,0.0,328.64,11892.12,0.0,4951.88,968.32,5920.2,17812.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,37538,36874.77,32563.52,1668.56,71106.85,2306.02,7362.11,5580.65,15248.78,86355.63 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,47055,76161.0,14599.93,1180.0,91940.93,15925.04,12424.5,7474.23,35823.77,127764.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,34744,3194.67,0.0,0.0,3194.67,0.0,1145.38,258.58,1403.96,4598.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,37685,8613.8,0.0,118.0,8731.8,0.0,1242.44,676.01,1918.45,10650.25 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,5023,63433.44,45.92,125.0,63604.36,13004.23,11946.64,4880.19,29831.06,93435.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28338,5442.61,0.0,250.0,5692.61,1628.96,1082.36,407.65,3118.97,8811.58 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10506,95921.3,14500.04,8622.42,119043.76,25429.7,12191.49,2171.83,39793.02,158836.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,8354,110386.0,349.15,14707.82,125442.97,28903.61,10035.18,2141.01,41079.8,166522.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,35391,32160.0,1968.13,14269.19,48397.32,5709.66,2867.19,796.05,9372.9,57770.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7473,Wireropecable Maint Mech Train,29030,2769.0,1427.77,276.9,4473.67,566.84,477.86,342.39,1387.09,5860.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40414,134052.61,1736.0,27094.94,162883.55,0.0,10536.46,10077.41,20613.87,183497.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,18790,95369.97,0.0,0.0,95369.97,19583.03,11665.85,7410.76,38659.64,134029.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43776,12637.55,1055.75,159.94,13853.24,3065.99,3895.68,1071.12,8032.79,21886.03 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,39856,35193.11,0.0,0.0,35193.11,6858.37,6472.98,2516.57,15847.92,51041.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12510,3926.11,0.0,0.0,3926.11,0.0,1648.64,312.44,1961.08,5887.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,10325,1487.81,0.0,0.0,1487.81,0.0,112.48,0.0,112.48,1600.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21508,66971.53,0.0,11398.03,78369.56,0.0,0.0,6197.78,6197.78,84567.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,13232,116976.01,7432.37,2828.72,127237.1,23904.09,12424.5,9894.24,46222.83,173459.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,11079,87708.51,0.0,0.0,87708.51,18046.99,12424.5,7118.07,37589.56,125298.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,20421,4230.0,82.01,108.0,4420.01,807.3,955.73,332.8,2095.83,6515.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,441C,Court Paralegal,48871,4817.81,0.0,120.0,4937.81,1107.55,806.4,392.55,2306.5,7244.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43318,140026.73,1131.98,27138.16,168296.87,29503.38,11666.67,10584.15,51754.2,220051.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2392,81071.54,14317.36,8471.79,103860.69,16870.17,12424.5,1731.99,31026.66,134887.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,18809,56252.21,538.92,10861.19,67652.32,12898.64,6546.76,5525.64,24971.04,92623.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31832,100159.45,42251.73,10142.0,152553.18,20805.47,12424.5,2548.57,35778.54,188331.72 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,11344,61897.42,4180.07,692.78,66770.27,12757.31,12185.99,6030.21,30973.51,97743.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2900,Human Services,2966,Welfare Fraud Investigator,51897,99554.46,0.0,0.0,99554.46,20513.97,12418.53,8182.67,41115.17,140669.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",4309,15672.0,1972.72,940.32,18585.04,2932.08,1433.6,317.58,4683.26,23268.3 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,40832,161651.33,0.0,0.0,161651.33,32507.08,12424.5,17800.55,62732.13,224383.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19643,13182.1,514.77,427.64,14124.51,3052.67,2867.19,1168.94,7088.8,21213.31 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,4622,71797.01,0.0,0.0,71797.01,15019.61,10292.03,5712.95,31024.59,102821.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,5421,92864.33,0.0,0.0,92864.33,19252.54,9557.31,7452.77,36262.62,129126.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,11618,166523.63,0.0,0.0,166523.63,34144.05,12424.51,10651.0,57219.56,223743.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27421,98811.97,5229.81,6748.8,110790.58,20496.64,12424.5,1957.27,34878.41,145668.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,29709,53862.0,611.15,2305.8,56778.95,11338.97,7645.84,4557.06,23541.87,80320.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,36230,107562.0,0.0,5068.5,112630.5,21660.43,12424.5,31703.27,65788.2,178418.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,41951,65282.62,2660.9,0.0,67943.52,13449.27,12424.5,5456.43,31330.2,99273.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,40043,86049.0,23375.23,1811.23,111235.46,18106.36,12424.5,8703.04,39233.9,150469.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23917,44440.82,5425.67,959.9,50826.39,11760.94,13228.99,3832.8,28822.73,79649.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,25571,23327.16,172.47,2555.52,26055.15,5190.25,5205.75,2092.77,12488.77,38543.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51194,1294.85,0.0,13.22,1308.07,0.0,561.49,101.33,662.82,1970.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,17120,106473.3,25950.34,27749.46,160173.1,21768.66,9557.31,2691.43,34017.4,194190.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",15097,7275.37,0.0,0.0,7275.37,0.0,1732.26,563.25,2295.51,9570.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36566,6809.3,0.0,170.7,6980.0,0.0,2891.08,557.84,3448.92,10428.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48702,16408.84,0.0,2927.64,19336.48,490.22,0.0,3620.93,4111.15,23447.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44212,53494.25,4778.65,2851.04,61123.94,15972.74,10638.3,4762.24,31373.28,92497.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,10337,97934.03,0.0,4896.7,102830.73,21205.47,12424.5,9018.2,42648.17,145478.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44847,0.0,0.0,250.0,250.0,0.0,68.5,0.0,68.5,318.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,20718,56580.02,0.0,576.0,57156.02,11878.1,11468.76,4712.77,28059.63,85215.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40531,101145.03,53274.24,17729.84,172149.11,23498.2,14951.22,2873.84,41323.26,213472.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,16335,1738.0,0.0,0.0,1738.0,0.0,525.65,134.56,660.21,2398.21 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31162,97777.23,29259.17,25351.94,152388.34,29246.33,12424.5,2586.44,44257.27,196645.61 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,45380,56276.02,0.0,1924.0,58200.02,13019.47,12424.5,4778.55,30222.52,88422.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24654,110247.53,33173.51,24096.95,167517.99,26291.81,13905.89,2776.67,42974.37,210492.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,12901,138719.08,50004.93,15069.75,203793.76,27450.82,12424.5,3474.49,43349.81,247143.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37610,66853.62,8497.16,1235.29,76586.07,16671.54,13254.78,5853.75,35780.07,112366.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,11831,24702.96,0.0,0.0,24702.96,4478.66,2389.33,3912.41,10780.4,35483.36 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3746,46415.0,17024.68,282.28,63721.96,11149.3,0.0,5219.04,16368.34,80090.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,39485,112344.05,21049.78,20043.29,153437.12,24699.04,12280.61,2511.85,39491.5,192928.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,42217,117129.72,41217.26,6402.88,164749.86,23205.2,12424.5,2807.19,38436.89,203186.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,22514,139357.01,0.0,0.0,139357.01,28013.61,12424.5,10102.36,50540.47,189897.48 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,30435,81772.77,0.0,545.26,82318.03,16751.41,10856.62,6873.32,34481.35,116799.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,52875,66138.6,0.0,0.0,66138.6,13611.01,12424.51,5341.27,31376.79,97515.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,14880,63642.83,0.0,795.62,64438.45,13276.54,12376.72,5329.62,30982.88,95421.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45169,137155.63,0.0,250.0,137405.63,27566.2,12424.5,10174.27,50164.97,187570.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,3644,147149.01,0.0,0.0,147149.01,29613.71,12424.53,27755.5,69793.74,216942.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25763,119467.4,1027.14,12171.03,132665.57,23621.01,12424.5,2248.88,38294.39,170959.96 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,4714,90978.22,0.0,0.0,90978.22,18743.25,12367.75,7513.06,38624.06,129602.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",42405,41383.62,10827.19,1250.27,53461.08,9468.05,5256.52,4288.95,19013.52,72474.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,26957,38430.0,0.0,0.0,38430.0,4749.84,10760.94,2967.16,18477.94,56907.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,43832,72017.56,16358.5,8642.5,97018.56,15769.45,12081.93,7785.14,35636.52,132655.08 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34874,97756.22,41500.06,15200.93,154457.21,27484.49,12424.5,2579.74,42488.73,196945.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",35458,130329.28,11026.75,18090.1,159446.13,29215.86,15052.75,2662.42,46931.03,206377.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,26648,43341.75,13201.82,2747.22,59290.79,10354.24,11799.15,4498.41,26651.8,85942.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43705,756.92,227.08,0.0,984.0,214.21,0.0,77.74,291.95,1275.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,40105,63576.16,0.0,1902.35,65478.51,13241.38,11742.11,5442.07,30425.56,95904.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,6852,40325.0,0.0,0.0,40325.0,7778.85,7167.99,3326.55,18273.39,58598.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7421,Sewer Maintenance Worker,33350,66595.95,653.95,782.52,68032.42,13841.61,11576.29,5046.75,30464.65,98497.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,1614,101198.08,0.0,0.0,101198.08,20839.31,12424.5,8160.87,41424.68,142622.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",34639,77435.59,11133.17,25295.72,113864.48,18869.83,7869.37,1865.46,28604.66,142469.14 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,23394,136466.0,6421.21,13973.25,156860.46,36599.53,12424.5,407.36,49431.39,206291.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9104,Transit Car Cleaner Asst Sprv,40501,68436.59,8703.25,14371.38,91511.22,16018.17,12347.14,7502.87,35868.18,127379.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,29311,84644.08,20135.96,6249.0,111029.04,17987.02,12424.5,9021.57,39433.09,150462.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19208,14833.24,0.0,45.82,14879.06,0.0,5065.39,1153.6,6218.99,21098.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,20718,3848.3,0.0,34.8,3883.1,722.65,692.9,303.22,1718.77,5601.87 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,42957,88296.01,0.0,5322.0,93618.01,18337.86,12424.5,7694.26,38456.62,132074.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46177,27502.31,2287.32,992.47,30782.1,6864.1,5865.31,2309.19,15038.6,45820.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,26606,135421.01,0.0,13874.59,149295.6,30045.78,12332.36,10349.71,52727.85,202023.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,25020,53966.56,436.42,4259.73,58662.71,13212.44,12423.01,4846.56,30482.01,89144.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,685,92936.3,3307.69,18122.7,114366.69,21860.56,10167.78,9003.83,41032.17,155398.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,24694,129604.96,37609.15,7776.34,174990.45,27026.32,15052.76,2983.26,45062.34,220052.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,44505,56301.96,20.41,3264.91,59587.28,11728.16,12373.85,4884.78,28986.79,88574.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,20430,11679.5,0.0,0.0,11679.5,2173.57,1672.52,905.98,4752.07,16431.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,38100,65201.01,289.0,2069.7,67559.71,13328.19,10704.18,5442.8,29475.17,97034.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",38468,2392.0,0.0,0.0,2392.0,615.46,0.0,324.56,940.02,3332.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,20481,2800.0,0.0,33.6,2833.6,635.58,477.86,219.38,1332.82,4166.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,12210,60248.05,0.0,0.0,60248.05,12417.4,12424.5,4920.54,29762.44,90010.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28101,54768.34,2634.67,791.1,58194.11,12936.1,10862.3,4434.04,28232.44,86426.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10005,26401.16,0.0,7129.16,33530.32,5379.29,0.0,5856.66,11235.95,44766.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,600,69432.48,19414.55,1683.98,90531.01,19514.24,13684.15,7039.02,40237.41,130768.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18787,39484.66,4146.57,860.71,44491.94,10466.32,12342.56,2757.2,25566.08,70058.02 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9770,92543.6,0.0,8352.31,100895.91,24491.66,11780.7,203.37,36475.73,137371.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38619,119467.47,9096.21,11767.63,140331.31,23621.02,12424.5,2350.42,38395.94,178727.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29389,64189.97,7225.73,1054.48,72470.18,17861.68,12646.89,5534.36,36042.93,108513.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,11725,116976.02,0.0,0.0,116976.02,23554.26,12424.51,9609.24,45588.01,162564.03 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,22368,96311.01,40420.53,21470.32,158201.86,28865.75,10035.18,2656.05,41556.98,199758.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28379,64559.85,20413.1,4378.46,89351.41,18844.68,12719.71,6944.57,38508.96,127860.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,24165,8119.11,0.0,61.31,8180.42,0.0,0.0,647.02,647.02,8827.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43531,641.92,0.0,0.0,641.92,0.0,278.36,49.82,328.18,970.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,7888,97934.02,7892.93,5697.37,111524.32,21188.56,12424.5,8989.47,42602.53,154126.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,38883,46344.0,6122.28,2192.89,54659.17,8770.56,5734.39,3474.13,17979.08,72638.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28624,108802.1,25906.43,16156.49,150865.02,24462.06,15052.76,2518.14,42032.96,192897.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,48474,19181.0,0.0,0.0,19181.0,4217.88,4300.79,1518.02,10036.69,29217.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,3801,22831.73,0.0,667.13,23498.86,0.0,5009.4,1664.21,6673.61,30172.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",22919,95852.69,704.08,0.0,96556.77,19646.71,11218.07,7850.89,38715.67,135272.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,14602,42549.55,860.46,737.67,44147.68,9581.43,9555.63,3610.03,22747.09,66894.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11114,27856.85,1688.51,8321.8,37867.16,6020.1,2968.74,620.64,9609.48,47476.64 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8106,339.5,0.0,152.25,491.75,0.0,144.86,38.07,182.93,674.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",24490,12715.6,0.0,0.0,12715.6,0.0,3010.55,986.82,3997.37,16712.97 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41956,97757.96,84492.09,20505.27,202755.32,28764.56,12424.5,3402.92,44591.98,247347.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,27408,51679.0,1068.69,4333.72,57081.41,12988.26,12424.5,4570.63,29983.39,87064.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,28519,89782.35,0.0,0.0,89782.35,18499.16,12289.21,7009.95,37798.32,127580.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,52898,82883.0,1880.24,1501.05,86264.29,17369.28,12424.5,6753.23,36547.01,122811.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,16398,85368.02,19187.99,1400.0,105956.01,17881.18,12424.5,8458.37,38764.05,144720.06 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,34027,55859.45,82.39,4231.38,60173.22,12984.52,11628.08,4846.33,29458.93,89632.15 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",44650,198139.15,0.0,5462.78,203601.93,40974.08,12424.5,11300.5,64699.08,268301.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12137,72430.38,147.3,0.0,72577.68,14897.49,11676.57,5659.32,32233.38,104811.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,42067,97934.0,0.0,3072.35,101006.35,20812.68,12424.5,8372.02,41609.2,142615.55 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,38981,90905.06,2782.38,0.0,93687.44,18770.95,11718.75,7740.93,38230.63,131918.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19886,8405.4,0.0,128.03,8533.43,0.0,3583.99,685.22,4269.21,12802.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,48303,21555.0,0.0,8162.34,29717.34,4729.15,0.0,2425.01,7154.16,36871.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,34818,58007.96,6.01,0.0,58013.97,11856.71,10542.25,4588.12,26987.08,85001.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,36952,16555.01,266.06,0.0,16821.07,3713.29,3345.06,1408.43,8466.78,25287.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39170,66626.19,3117.44,1790.7,71534.33,18729.01,13130.13,5575.99,37435.13,108969.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,47385,117140.89,7986.57,5799.88,130927.34,23164.16,12424.5,2184.48,37773.14,168700.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,21349,21853.08,0.0,270.84,22123.92,4275.4,0.0,1797.48,6072.88,28196.8 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,24498,93959.2,0.0,0.0,93959.2,21440.2,12424.5,1596.92,35461.62,129420.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28520,35819.86,5388.93,865.7,42074.49,9491.76,11187.98,2982.07,23661.81,65736.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25636,37024.28,4236.32,1780.5,43041.1,10154.33,11510.15,3246.01,24910.49,67951.59 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",25786,89891.0,29727.36,8514.6,128132.96,22447.18,12424.5,2486.73,37358.41,165491.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7249,Automotive Mechanic Sprv 1,22957,4121.0,0.0,12532.48,16653.48,1006.38,477.86,1285.22,2769.46,19422.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45820,576.19,0.0,3.39,579.58,0.0,51.01,44.88,95.89,675.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,42351,47478.63,4643.72,3299.48,55421.83,10391.83,10473.74,4599.46,25465.03,80886.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15608,94899.68,21145.45,6399.66,122444.79,19798.57,11946.64,2042.87,33788.08,156232.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",29226,16507.58,0.0,0.0,16507.58,2006.5,3930.42,1320.6,7257.52,23765.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,6553,8860.0,1057.35,861.46,10778.81,2034.48,2867.19,860.83,5762.5,16541.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21572,76059.42,0.0,5063.97,81123.39,16178.56,6570.59,6707.47,29456.62,110580.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12501,117140.97,16459.97,16353.83,149954.77,23164.17,12424.51,2555.76,38144.44,188099.21 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,21071,100149.91,0.0,225.0,100374.91,20660.27,12424.5,8051.45,41136.22,141511.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28206,112616.45,0.0,21688.25,134304.7,20022.19,10991.57,10103.43,41117.19,175421.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,35114,78610.03,0.0,0.0,78610.03,16201.96,12424.5,6520.67,35147.13,113757.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,28986,82883.0,2461.24,9684.62,95028.86,19070.39,12424.5,7393.1,38887.99,133916.85 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,16906,42112.2,0.0,0.0,42112.2,7847.61,5829.97,3358.9,17036.48,59148.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,50623,57056.58,0.0,612.72,57669.3,11866.78,12199.78,4788.82,28855.38,86524.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,26256,57165.4,6223.76,5313.42,68702.58,12239.58,10345.01,5419.57,28004.16,96706.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5150,70245.0,0.0,3736.15,73981.15,14627.15,12424.5,6057.16,33108.81,107089.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6115,Wastewater Control Inspector,24402,87232.12,715.06,0.0,87947.18,17912.92,12424.5,7076.83,37414.25,125361.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32242,56531.02,0.0,1877.5,58408.52,11773.58,12424.5,4584.73,28782.81,87191.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,30925,86250.03,30850.8,745.2,117846.03,17053.59,9557.31,8148.2,34759.1,152605.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,41283,54763.3,2494.62,265.0,57522.92,12286.99,12131.05,4595.95,29013.99,86536.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0402,Deputy Chief 3,3823,189177.92,0.0,8964.72,198142.64,35814.45,8601.58,9594.37,54010.4,252153.04 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,19702,26476.93,0.0,421.46,26898.39,6470.53,6540.79,2221.36,15232.68,42131.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8419,112432.63,0.0,16611.56,129044.19,24763.1,15004.98,2095.46,41863.54,170907.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6477,11604.82,0.0,0.0,11604.82,600.6,4969.8,946.02,6516.42,18121.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,52764,119467.42,9990.55,8462.38,137920.35,24198.38,12424.5,2255.62,38878.5,176798.85 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,30150,99654.05,0.0,0.0,99654.05,22731.78,12424.5,1648.71,36804.99,136459.04 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,8529,Probation Assistant,25877,28410.2,0.0,0.0,28410.2,6428.26,7072.41,2299.42,15800.09,44210.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47706,46272.13,381.6,4355.5,51009.23,11389.31,12239.03,4113.19,27741.53,78750.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",40903,27274.27,0.0,0.0,27274.27,5648.26,5749.32,2114.25,13511.83,40786.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1745,29767.34,0.0,205.32,29972.66,6313.86,5603.45,2605.27,14522.58,44495.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32974,2927.76,0.0,0.0,2927.76,0.0,1427.62,227.03,1654.65,4582.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,32996,6515.2,0.0,0.0,6515.2,1680.92,1481.39,475.31,3637.62,10152.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29687,119455.96,608.21,6195.05,126259.22,23809.65,12424.5,2150.21,38384.36,164643.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,51932,56580.05,329.15,1836.0,58745.2,12138.59,11468.78,4834.48,28441.85,87187.05 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0964,Dept Head IV,5517,229288.32,0.0,0.0,229288.32,46089.9,12424.5,18956.62,77471.02,306759.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45027,2794.73,0.0,66.08,2860.81,0.01,0.0,154.46,154.47,3015.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,47281,4561.68,0.0,155.65,4717.33,0.0,1666.56,365.08,2031.64,6748.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2194,63747.12,4322.77,1138.61,69208.5,15853.5,13181.02,5065.34,34099.86,103308.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26276,44532.48,1711.86,1767.18,48011.52,11032.5,11296.08,3844.65,26173.23,74184.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,19407,78810.53,0.0,0.0,78810.53,16360.48,10909.6,6157.59,33427.67,112238.2 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,51857,7498.1,0.0,101.78,7599.88,1671.2,2222.08,608.96,4502.24,12102.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,32588,93281.04,0.0,2209.0,95490.04,19690.32,12424.5,7913.14,40027.96,135518.0 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,12423,74977.58,579.22,4368.92,79925.72,16331.4,9947.25,6681.49,32960.14,112885.86 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,42315,188612.01,0.0,6110.65,194722.66,38050.15,12511.12,10923.09,61484.36,256207.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34535,7882.63,0.0,185.28,8067.91,0.0,3004.59,626.03,3630.62,11698.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,853,64463.7,8186.6,12698.89,85349.19,15169.69,12424.5,6994.15,34588.34,119937.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34503,13321.76,0.0,491.16,13812.92,0.0,5098.23,1070.84,6169.07,19981.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",30761,12305.43,0.0,0.0,12305.43,0.0,2929.91,952.69,3882.6,16188.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,52505,56276.03,0.0,624.0,56900.03,12731.54,12424.5,4498.44,29654.48,86554.51 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,30386,61770.0,16995.61,0.0,78765.61,12396.68,9557.31,6390.14,28344.13,107109.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,311,10275.92,0.0,0.0,10275.92,0.0,801.92,3846.85,4648.77,14924.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23731,978.05,0.0,857.77,1835.82,239.21,424.1,148.99,812.3,2648.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,27106,54124.0,0.0,624.0,54748.0,12250.24,12424.5,4532.95,29207.69,83955.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24847,69422.18,27847.52,8885.32,106155.02,21438.18,13672.15,8097.28,43207.61,149362.63 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,26540,65133.71,0.0,548.7,65682.41,13564.09,10925.2,5433.4,29922.69,95605.1 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,30121,234796.0,0.0,0.0,234796.0,47237.06,12424.5,11596.28,71257.84,306053.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,12101,42924.85,0.0,500.0,43424.85,10258.08,10318.9,3498.65,24075.63,67500.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,27324,62283.27,2971.88,0.0,65255.15,12807.41,12388.78,5252.51,30448.7,95703.85 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,35539,74412.02,0.0,5055.0,79467.02,15474.52,12424.5,6592.18,34491.2,113958.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45300,58508.52,15896.5,5551.9,79956.92,13200.74,10321.9,1330.75,24853.39,104810.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33343,105363.87,507.48,16793.39,122664.74,22292.57,9079.44,2080.23,33452.24,156116.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43367,36440.36,5182.68,438.16,42061.2,9547.16,11381.26,3158.38,24086.8,66148.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,22492,44944.4,4662.51,0.0,49606.91,10771.74,12424.5,4016.1,27212.34,76819.25 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36565,18285.66,0.0,0.0,18285.66,0.0,0.0,1446.56,1446.56,19732.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31663,50394.6,0.0,8399.11,58793.71,1065.19,0.0,1699.54,2764.73,61558.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,32001,98713.35,16219.5,6796.72,121729.57,20257.48,9025.68,2037.12,31320.28,153049.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,48555,75925.1,0.0,0.0,75925.1,15657.26,12424.5,5964.66,34046.42,109971.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16120,43409.02,871.5,116.2,44396.72,10441.29,12418.53,3608.92,26468.74,70865.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,11150,88090.75,2399.98,12341.51,102832.24,19847.04,11939.71,1713.33,33500.08,136332.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31209,4421.74,0.0,5.27,4427.01,0.0,2216.11,343.25,2559.36,6986.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39714,67987.74,20022.18,5344.15,93354.07,20114.66,13398.51,7084.18,40597.35,133951.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22534,12453.88,0.0,268.21,12722.09,0.0,4768.2,986.46,5754.66,18476.75 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,25797,56149.04,0.0,2491.95,58640.99,12102.4,10314.24,4810.09,27226.73,85867.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41002,67380.32,3295.02,2200.26,72875.6,19084.84,13277.85,5423.64,37786.33,110661.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43619,127522.67,2623.77,10535.14,140681.58,24287.16,10948.91,9822.29,45058.36,185739.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14611,67023.29,34226.49,423.1,101672.88,18485.3,13205.52,7964.53,39655.35,141328.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,14696,53408.7,0.0,573.74,53982.44,11111.32,11423.55,4474.52,27009.39,80991.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",44203,94388.01,9235.21,11254.4,114877.62,21774.86,12424.5,9199.21,43398.57,158276.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,37179,84599.07,0.0,0.0,84599.07,17436.44,12424.51,6852.53,36713.48,121312.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,2114,66102.04,0.0,1090.0,67192.04,13860.18,12424.5,5540.92,31825.6,99017.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",25875,128621.67,0.0,0.0,128621.67,25888.66,12424.5,9926.34,48239.5,176861.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,29688,17465.43,0.0,99.85,17565.28,0.0,3500.37,1361.07,4861.44,22426.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,26539,81942.0,9415.8,16004.13,107361.93,19421.68,12424.51,8386.26,40232.45,147594.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,39886,22795.6,37.66,418.37,23251.63,5104.75,5522.33,1807.93,12435.01,35686.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,25732,25328.19,0.0,0.0,25328.19,5068.75,2807.46,1963.42,9839.63,35167.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34043,56076.45,1033.33,0.0,57109.78,12519.15,12424.5,4598.89,29542.54,86652.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11116,26312.27,2468.94,599.11,29380.32,6651.2,5134.42,2276.95,14062.57,43442.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9055,33432.47,9966.9,338.06,43737.43,8094.08,12297.39,3512.01,23903.48,67640.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9070,118333.71,191.61,29303.18,147828.5,26993.48,9854.3,6460.11,43307.89,191136.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42771,11725.44,0.0,390.69,12116.13,0.0,2914.98,939.17,3854.15,15970.28 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,10392,2401.3,143.26,60.0,2604.56,0.0,525.65,202.15,727.8,3332.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,4208,71641.33,0.0,520.0,72161.33,15033.24,9823.12,5848.37,30704.73,102866.06 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44960,97764.2,8356.43,8869.8,114990.43,25935.71,12424.5,1913.33,40273.54,155263.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10455,60729.14,410.99,3950.11,65090.24,13328.48,11807.75,5142.0,30278.23,95368.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46861,141231.61,183.62,17260.17,158675.4,31641.89,11803.27,10413.58,53858.74,212534.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",52988,93738.0,9997.68,5284.84,109020.52,19862.4,12424.5,8910.78,41197.68,150218.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,8687,6345.0,0.0,0.0,6345.0,1423.17,1433.6,521.97,3378.74,9723.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27402,25997.39,1760.72,970.78,28728.89,7036.0,8136.55,1867.9,17040.45,45769.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44837,36346.2,0.0,1211.6,37557.8,703.51,0.0,5561.27,6264.78,43822.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,39642,97887.24,0.0,1769.04,99656.28,20541.39,12418.53,7493.34,40453.26,140109.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,53106,112039.66,0.0,0.0,112039.66,22943.42,12424.5,23586.19,58954.11,170993.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,191,113233.59,37574.89,27855.16,178663.64,25757.37,15196.12,2993.5,43946.99,222610.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",12469,104820.0,0.0,25644.21,130464.21,21739.55,9557.31,15324.87,46621.73,177085.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34360,119795.91,11199.64,15949.14,146944.69,23698.14,12424.5,2457.25,38579.89,185524.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,45974,135421.0,0.0,0.0,135421.0,27253.5,12424.51,10087.7,49765.71,185186.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25737,113233.6,3270.02,18115.93,134619.55,24917.38,15196.12,2266.94,42380.44,176999.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41928,97440.28,520.1,19694.42,117654.8,22864.7,8925.75,9415.84,41206.29,158861.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,23266,49679.0,0.0,5267.61,54946.61,12953.25,12424.5,4197.08,29574.83,84521.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20641,56531.0,0.0,6940.13,63471.13,12481.55,12424.5,4985.18,29891.23,93362.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,51466,100761.01,3104.87,1790.0,105655.88,21136.01,12424.5,8708.35,42268.86,147924.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1246,Principal Personnel Analyst,9210,19899.34,0.0,0.0,19899.34,3703.28,1911.46,1594.63,7209.37,27108.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15979,62914.71,12543.08,1817.8,77275.59,17664.89,12392.79,6023.08,36080.76,113356.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,44308,138598.31,87653.11,8037.39,234288.81,27926.56,12412.55,608.6,40947.71,275236.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,36192,53393.25,17469.89,2728.25,73591.39,12404.22,11468.78,5869.23,29742.23,103333.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,17850,119321.02,0.0,0.0,119321.02,24013.56,12424.5,9581.54,46019.6,165340.62 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",8875,131577.12,71878.54,10290.28,213745.94,27801.98,15196.12,3635.48,46633.58,260379.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,53193,11321.71,0.0,578.94,11900.65,0.0,0.0,941.25,941.25,12841.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",12773,88316.37,0.0,0.0,88316.37,17462.18,9557.31,13970.39,40989.88,129306.25 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,24845,31505.8,0.0,0.0,31505.8,6450.62,5411.83,2558.81,14421.26,45927.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2107,2875.78,0.0,33.21,2908.99,0.0,1490.34,225.46,1715.8,4624.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",17827,105410.01,68925.33,13393.79,187729.13,23630.89,12120.28,10883.37,46634.54,234363.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,4294,145200.02,0.0,0.0,145200.02,29221.73,12424.5,10285.38,51931.61,197131.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,1137,81410.01,4018.88,4975.45,90404.34,16864.46,11946.64,7284.35,36095.45,126499.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,51121,62733.75,380.56,1988.68,65102.99,13016.53,11816.78,5131.55,29964.86,95067.85 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,21793,7345.94,0.0,0.0,7345.94,0.0,1672.53,569.53,2242.06,9588.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,34582,13388.62,0.0,73.58,13462.2,0.0,4844.36,1043.71,5888.07,19350.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,17940,50949.4,0.0,0.0,50949.4,9773.02,5723.04,4145.96,19642.02,70591.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,8352,108377.54,4149.38,20524.33,133051.25,28716.85,12424.5,2220.11,43361.46,176412.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,14474,42330.02,5425.1,0.0,47755.12,9180.77,8123.71,3823.78,21128.26,68883.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27780,67299.08,8540.25,1927.49,77766.82,18968.34,13262.14,6028.07,38258.55,116025.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,38983,122591.14,0.0,0.0,122591.14,24621.69,12424.5,17147.72,54193.91,176785.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44665,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,29968,59229.0,2735.29,1380.3,63344.59,12207.44,12424.5,5141.87,29773.81,93118.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,22707,19006.5,38.92,0.0,19045.42,0.0,4061.85,1510.07,5571.92,24617.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,53187,106953.0,5368.32,2495.93,114817.25,22067.6,12424.52,9175.42,43667.54,158484.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35148,6211.63,0.0,23.56,6235.19,0.0,2393.8,483.54,2877.34,9112.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,1127,67786.98,78.92,845.0,68710.9,14243.57,11494.87,5644.77,31383.21,100094.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,50541,47618.8,0.0,0.0,47618.8,9175.9,7120.19,3818.66,20114.75,67733.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,43817,7604.0,0.0,0.0,7604.0,1415.1,955.73,596.16,2966.99,10570.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,10829,106701.2,0.0,0.0,106701.2,21979.74,12424.5,8606.19,43010.43,149711.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",29337,9878.76,0.0,0.0,9878.76,0.0,2090.67,766.31,2856.98,12735.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,32446,56660.63,554.99,0.0,57215.62,11217.11,8601.58,4455.89,24274.58,81490.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,7742,4480.0,0.0,0.0,4480.0,1004.86,764.56,368.19,2137.61,6617.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1663,Patient Accounts Supervisor,34506,45074.32,996.49,0.0,46070.81,8593.22,6690.11,3809.35,19092.68,65163.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32438,142399.74,5989.87,17236.54,165626.15,28190.35,12424.5,2881.18,43496.03,209122.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26868,66360.11,530.67,9934.87,76825.65,0.0,5769.74,5955.64,11725.38,88551.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27668,72462.98,6967.86,6410.18,85841.02,15608.31,9079.45,1428.7,26116.46,111957.48 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,31409,61735.03,267.3,624.0,62626.33,12852.62,12424.5,5190.39,30467.51,93093.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8204,Institutional Police Officer,18877,73583.01,56231.53,4246.24,134060.78,17749.39,12424.5,625.63,30799.52,164860.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,24021,79395.05,0.0,2004.0,81399.05,16775.39,12424.51,6692.56,35892.46,117291.51 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,17658,64163.91,0.0,0.0,64163.91,13370.85,9586.93,4801.02,27758.8,91922.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,9550,52155.33,6955.66,1851.25,60962.24,11778.87,11613.5,4874.18,28266.55,89228.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,14591,70245.03,0.0,55.0,70300.03,14499.28,12424.5,5830.67,32754.45,103054.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,7570,25630.0,0.0,0.0,25630.0,4646.7,2389.33,2018.28,9054.31,34684.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,8838,135421.03,0.0,21200.81,156621.84,27268.3,12424.49,10490.86,50183.65,206805.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,10526,97840.4,10046.55,908.88,108795.83,20286.97,12412.56,8973.7,41673.23,150469.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,24731,92020.49,0.0,1000.0,93020.49,19162.3,12255.7,7554.5,38972.5,131992.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",45989,42954.0,0.0,-246.72,42707.28,7742.84,2389.33,812.81,10944.98,53652.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3902,119465.56,23921.55,24723.12,168110.23,23627.22,12424.5,2865.9,38917.62,207027.85 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,9549,101531.07,0.0,0.0,101531.07,20926.04,12424.5,8072.45,41422.99,142954.06 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,16149,29233.8,7060.35,50.35,36344.5,6557.13,4778.65,2799.38,14135.16,50479.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,19588,20647.07,99.28,0.0,20746.35,0.0,5525.32,1610.25,7135.57,27881.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,38001,75705.36,0.0,1331.55,77036.91,15735.26,10034.52,6455.97,32225.75,109262.66 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,9995,185917.17,0.0,0.0,185917.17,37416.01,12424.5,18171.93,68012.44,253929.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,30239,63887.0,0.0,3584.07,67471.07,13909.52,12424.51,5289.22,31623.25,99094.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46743,77225.16,5099.03,11961.5,94285.69,17752.29,15196.12,1525.6,34474.01,128759.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51039,6218.17,1041.99,320.12,7580.28,1871.73,0.0,576.36,2448.09,10028.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,27550,88162.02,0.0,2230.98,90393.0,17512.9,8601.56,6848.0,32962.46,123355.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,6733,59916.5,0.0,23.0,59939.5,11992.8,9318.43,4849.39,26160.62,86100.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,42935,118646.42,0.0,5910.31,124556.73,25024.46,12424.51,9834.17,47283.14,171839.87 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,41246,15596.0,0.0,0.0,15596.0,3498.2,1911.47,1261.61,6671.28,22267.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,18845,94495.51,66967.9,19055.05,180518.46,27641.28,12002.85,3079.83,42723.96,223242.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32249,11312.29,0.0,1569.28,12881.57,2918.56,4762.77,1027.43,8708.76,21590.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15541,69178.31,427.24,17288.52,86894.07,14710.74,6950.55,6192.75,27854.04,114748.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,19614,58972.51,9205.82,6314.79,74493.12,14108.23,12424.5,5977.15,32509.88,107003.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22249,12207.0,0.0,0.0,12207.0,2213.13,1863.67,942.66,5019.46,17226.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15637,2805.6,0.0,31.05,2836.65,731.86,1146.88,233.86,2112.6,4949.25 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,7819,50317.48,0.0,7547.62,57865.1,10490.93,3270.39,4537.24,18298.56,76163.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3288,35149.99,144.02,2387.13,37681.14,8940.51,9434.86,3052.96,21428.33,59109.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,37136,45518.04,0.0,0.0,45518.04,8470.92,5734.39,3736.87,17942.18,63460.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,20360,58123.22,0.0,374.38,58497.6,13041.85,12424.51,4712.32,30178.68,88676.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15467,64797.38,17495.58,651.77,82944.73,14867.9,12766.53,6294.74,33929.17,116873.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,18543,136696.0,40411.81,16445.34,193553.15,27588.25,12424.5,3291.41,43304.16,236857.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27321,1575.51,0.0,0.0,1575.51,372.71,474.88,122.29,969.88,2545.39 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24012,13181.0,0.0,0.0,13181.0,3400.67,3345.06,1086.06,7831.79,21012.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,23054,45836.0,10146.15,2241.75,58223.9,8740.11,6690.11,4595.24,20025.46,78249.36 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8600,Emergency Services Assistant,6821,51789.71,0.0,0.0,51789.71,12439.78,12042.21,3823.12,28305.11,80094.82 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",2800,Public Health,2806,Disease Control Investigator,32496,74552.0,0.0,0.0,74552.0,15357.29,12424.5,5945.67,33727.46,108279.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,3417,53625.06,126.56,49849.08,103600.7,13664.92,6212.25,1640.48,21517.65,125118.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,10549,53754.55,0.0,0.0,53754.55,11988.23,12161.68,4417.11,28567.02,82321.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,26869,0.0,0.0,136.4,136.4,0.0,68.5,10.44,78.94,215.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,48114,74985.62,3325.53,2219.72,80530.87,15675.45,9495.49,6878.19,32049.13,112580.0 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,34846,35281.7,0.0,0.0,35281.7,7102.77,2341.55,2735.06,12179.38,47461.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50020,4544.89,0.0,0.0,4544.89,0.0,1908.47,360.47,2268.94,6813.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2619,Senior Food Service Supervisor,2568,69896.33,788.62,5306.15,75991.1,14826.18,12423.49,5935.41,33185.08,109176.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,39507,97048.01,0.0,0.0,97048.01,19975.73,12424.5,7745.97,40146.2,137194.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,51683,101733.0,0.0,480.0,102213.0,21061.18,12424.5,8178.71,41664.39,143877.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4926,112170.35,15604.82,12473.17,140248.34,24610.92,15052.76,2295.3,41958.98,182207.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,22999,77048.8,0.0,22212.69,99261.49,16904.56,6546.76,12424.16,35875.48,135136.97 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,51921,78963.13,0.0,1483.73,80446.86,16579.46,12424.5,6611.07,35615.03,116061.89 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,3619,99654.0,479.33,0.0,100133.33,20538.99,12424.5,7664.28,40627.77,140761.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43269,119461.61,14666.43,5120.14,139248.18,23641.88,12424.5,2360.21,38426.59,177674.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,48799,80762.0,0.0,0.0,80762.0,16645.3,12424.5,6626.41,35696.21,116458.21 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,30715,98173.96,0.0,2159.58,100333.54,20308.93,12424.5,7968.14,40701.57,141035.11 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11300,97704.19,26233.03,9676.58,133613.8,26116.62,12417.04,2265.59,40799.25,174413.05 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,48361,22135.74,0.0,0.0,22135.74,0.0,5028.04,1716.78,6744.82,28880.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36271,82147.99,2628.63,38054.93,122831.55,16844.05,7274.31,9472.13,33590.49,156422.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,19681,140424.51,27.03,8651.91,149103.45,27755.14,12424.5,2494.4,42674.04,191777.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14914,67506.01,3641.7,3373.34,74521.05,19428.27,13303.24,5806.14,38537.65,113058.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,17888,133087.01,0.0,12873.01,145960.02,26789.53,12424.5,10289.41,49503.44,195463.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4065,121023.53,520.1,12070.6,133614.23,25522.86,11050.64,9982.41,46555.91,180170.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,51445,37687.01,8291.46,805.0,46783.47,7770.57,7645.85,3595.2,19011.62,65795.09 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,3814,90833.06,11016.19,2762.25,104611.5,18730.4,11585.19,8395.21,38710.8,143322.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48463,882.76,0.0,3.54,886.3,0.0,477.86,68.61,546.47,1432.77 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,36676,89028.01,0.0,0.0,89028.01,18349.02,12424.5,7051.67,37825.19,126853.2 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,52322,74292.91,0.0,3623.0,77915.91,15447.58,12404.61,6433.49,34285.68,112201.59 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,23770,93499.0,0.0,624.0,94123.0,19399.27,12424.5,7753.62,39577.39,133700.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,25827,9702.0,0.0,291.75,9993.75,2176.16,1672.53,810.94,4659.63,14653.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38221,54926.56,6983.29,1198.76,63108.61,15692.16,10883.27,4910.41,31485.84,94594.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,3042,7271.6,590.45,765.0,8627.05,1663.98,2341.54,681.44,4686.96,13314.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31062,0.0,0.0,706.66,706.66,0.0,68.5,54.06,122.56,829.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,52146,52241.46,0.0,0.0,52241.46,10755.19,9820.13,3925.42,24500.74,76742.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45355,20002.57,3477.92,380.72,23861.21,4933.27,6194.33,1708.23,12835.83,36697.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7446,53351.6,5240.61,2843.05,61435.26,11932.07,11865.81,4704.14,28502.02,89937.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41327,63627.92,0.0,1948.83,65576.75,1826.58,5417.74,1762.39,9006.71,74583.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,28768,46530.0,586.99,2039.9,49156.89,11491.49,11182.06,3955.51,26629.06,75785.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,24532,8620.01,0.0,0.0,8620.01,1895.53,1911.45,695.53,4502.51,13122.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,49246,46417.5,0.0,0.0,46417.5,0.0,5113.16,3598.26,8711.42,55128.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,14052,72523.45,496.08,3327.33,76346.86,15355.0,12216.75,5916.05,33487.8,109834.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,24920,77430.04,5704.59,60.0,83194.63,15700.27,10465.25,6645.94,32811.46,116006.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,14585,14652.0,2828.25,1466.3,18946.55,3530.77,2867.19,1555.43,7953.39,26899.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,6032,93681.02,0.0,1078.03,94759.05,19527.88,12424.5,7581.43,39533.81,134292.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9203,Sr Airport Communications Disp,40059,42821.11,0.0,831.78,43652.89,8123.8,5698.54,3602.9,17425.24,61078.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,36876,95310.02,0.0,0.0,95310.02,19574.93,11946.64,7487.24,39008.81,134318.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11889,119151.82,7594.23,479.51,127225.56,24047.0,11192.8,9807.9,45047.7,172273.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25788,2904.14,0.0,50.29,2954.43,0.0,0.0,50.41,50.41,3004.84 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,29504,81486.0,0.0,0.0,81486.0,17136.34,8601.58,11682.73,37420.65,118906.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26627,140256.19,0.0,7532.86,147789.05,29723.99,12400.61,10224.75,52349.35,200138.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,5140,97424.0,11446.38,3978.3,112848.68,20655.48,12424.49,9267.24,42347.21,155195.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25069,112004.16,670.0,10166.05,122840.21,15571.71,10866.65,5646.04,32084.4,154924.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,12913,72699.0,0.0,7312.44,80011.44,16300.75,12424.5,6556.72,35281.97,115293.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28281,63887.0,511.29,160.0,64558.29,13199.45,12424.55,5099.8,30723.8,95282.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,45363,6940.87,0.0,0.0,6940.87,0.0,2515.54,537.97,3053.51,9994.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,24726,32842.0,0.0,0.0,32842.0,444.41,6737.9,2647.23,9829.54,42671.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,22734,73380.13,27.36,4147.29,77554.78,15212.63,12005.11,6427.0,33644.74,111199.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,52065,89.81,0.0,0.0,89.81,0.0,29.87,6.96,36.83,126.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,10389,107978.01,1221.64,2110.0,111309.65,22690.89,12424.52,8952.04,44067.45,155377.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,12212,38613.56,0.0,0.0,38613.56,4453.74,8573.68,3129.52,16156.94,54770.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52115,7772.55,0.0,0.0,7772.55,0.0,3370.45,624.16,3994.61,11767.16 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,51626,40393.61,0.0,0.0,40393.61,7323.36,2628.26,3189.14,13140.76,53534.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,6103,150710.0,0.0,15990.3,166700.3,33034.79,12424.5,10519.33,55978.62,222678.92 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,48512,66977.6,0.0,1277.63,68255.23,14035.92,12371.82,5602.41,32010.15,100265.38 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6124,Pr Environmental Hlth Insp,42654,90532.32,0.0,0.0,90532.32,17617.78,9025.68,7111.27,33754.73,124287.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3851,2592.75,0.0,69.14,2661.89,0.0,0.0,184.51,184.51,2846.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,27440,76212.64,6897.68,1757.01,84867.33,16058.74,12285.25,6968.13,35312.12,120179.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,24995,156746.09,0.0,0.0,156746.09,31545.23,12424.48,10447.22,54416.93,211163.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",47455,18066.24,0.0,0.0,18066.24,0.0,4252.99,1402.22,5655.21,23721.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,16359,156746.03,0.0,16097.87,172843.9,34784.9,12424.5,10713.63,57923.03,230766.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,6782,74198.85,6011.6,40.0,80250.45,15257.58,11283.64,6576.11,33117.33,113367.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9830,65033.43,22210.59,1549.99,88794.01,18203.18,12813.36,6934.47,37951.01,126745.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,40473,102813.02,3418.34,9603.81,115835.17,21107.77,9079.45,1936.57,32123.79,147958.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,26675,1987.42,0.0,16.34,2003.76,0.0,436.06,155.13,591.19,2594.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16423,63566.59,10381.39,652.61,74600.59,14568.38,12520.98,5700.46,32789.82,107390.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,9859,31295.19,1085.68,514.26,32895.13,7459.93,10032.19,2663.78,20155.9,53051.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40579,756.93,0.0,75.7,832.63,0.0,0.0,62.72,62.72,895.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29517,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3372.94,18198.79,61966.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,697,12240.0,0.0,0.0,12240.0,2146.56,3655.68,943.68,6745.92,18985.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,53213,119461.73,13249.77,15453.27,148164.77,24291.55,12424.5,2525.96,39242.01,187406.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32282,6726.03,0.0,364.38,7090.41,0.0,2234.03,549.65,2783.68,9874.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27957,119346.2,27459.62,12844.57,159650.39,24390.64,12412.56,2657.75,39460.95,199111.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,41795,81157.01,20618.15,4040.62,105815.78,17348.13,12424.5,8482.11,38254.74,144070.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,46741,22063.04,1290.63,1191.95,24545.62,4278.81,3518.28,1955.13,9752.22,34297.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,20091,50687.01,0.0,0.0,50687.01,11369.15,6212.25,4004.13,21585.53,72272.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,52467,140401.92,0.0,0.0,140401.92,28222.37,12424.5,10155.48,50802.35,191204.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16837,94685.35,23746.64,9513.6,127945.59,19583.36,12424.5,1969.23,33977.09,161922.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28025,0.0,0.0,400.0,400.0,0.0,68.5,21.14,89.64,489.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51097,11348.43,0.0,0.0,11348.43,1566.74,4921.05,908.47,7396.26,18744.69 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,22772,39880.48,0.0,0.0,39880.48,0.0,0.0,3154.38,3154.38,43034.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34089,524.54,0.0,16.34,540.88,0.0,285.23,41.88,327.11,867.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,1539,24662.47,0.0,13.52,24675.99,5930.14,6093.8,1973.45,13997.39,38673.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31070,77856.3,828.92,2486.9,81172.12,15750.04,11946.64,4401.36,32098.04,113270.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,6150,0.0,0.0,150.0,150.0,0.0,0.0,0.0,0.0,150.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,50386,58872.15,4516.8,11720.93,75109.88,17551.3,6690.12,1281.24,25522.66,100632.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41422,1763.9,0.0,0.0,1763.9,0.0,740.69,136.9,877.59,2641.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24480,122221.03,0.0,16766.61,138987.64,26668.18,10821.74,10077.61,47567.53,186555.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,40026,135421.0,0.0,0.0,135421.0,27253.5,12424.5,10126.85,49804.85,185225.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35547,65748.33,216.4,2049.75,68014.48,18545.32,12955.17,5080.17,36580.66,104595.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,48983,58919.64,0.0,0.0,58919.64,12971.31,7290.44,4641.44,24903.19,83822.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45304,53404.75,4033.7,2713.7,60152.15,15017.5,10496.67,4675.74,30189.91,90342.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35222,66088.03,22807.29,1711.05,90606.37,18582.57,13023.39,6867.89,38473.85,129080.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35594,59097.7,0.0,0.0,59097.7,13169.1,12424.51,4570.35,30163.96,89261.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18396,4929.7,0.0,319.5,5249.2,0.0,0.0,415.73,415.73,5664.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18646,39572.74,4886.44,1059.02,45518.2,10544.0,12370.69,3242.64,26157.33,71675.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,2152,129604.93,75383.64,14916.45,219905.02,28432.65,15052.76,3706.47,47191.88,267096.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,46002,100554.02,0.0,0.0,100554.02,20724.83,12424.51,8211.32,41360.66,141914.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7408,Assistant Power House Operator,22510,0.0,0.0,660.52,660.52,0.0,0.0,50.53,50.53,711.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,39946,119066.0,87.04,18536.62,137689.66,32116.46,12424.5,2313.53,46854.49,184544.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38588,102672.13,33654.97,15344.52,151671.62,22545.77,15196.12,2529.81,40271.7,191943.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,52681,75605.01,17507.36,9725.41,102837.78,16672.19,12424.5,8355.6,37452.29,140290.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14381,19373.43,0.0,1104.94,20478.37,290.16,0.0,4780.97,5071.13,25549.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,21360,97934.04,526.5,154.44,98614.98,20195.66,12424.5,7970.47,40590.63,139205.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,44032,97424.01,4608.45,2166.0,104198.46,20526.86,12424.5,8201.13,41152.49,145350.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,16751,116756.11,61297.45,14279.31,192332.87,23159.63,12385.68,3280.15,38825.46,231158.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,26142,77071.04,0.0,2124.0,79195.04,16321.52,12424.5,6516.8,35262.82,114457.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,820,2292.2,0.0,42.42,2334.62,554.95,194.13,1691.22,2440.3,4774.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35867,57368.91,0.0,1321.39,58690.3,0.0,4926.79,1415.17,6341.96,65032.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,298,1879.4,0.0,0.0,1879.4,413.28,573.44,159.12,1145.84,3025.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,48854,54124.02,0.0,0.0,54124.02,12110.46,12424.5,4357.58,28892.54,83016.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,34899,9561.0,0.0,0.0,9561.0,2144.52,1433.6,797.26,4375.38,13936.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12782,55877.3,0.0,0.0,55877.3,12472.59,12379.99,4510.16,29362.74,85240.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,14293,78438.0,0.0,0.0,78438.0,16305.29,11348.05,5836.86,33490.2,111928.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",10643,150988.68,54181.91,14090.73,219261.32,32175.37,14407.64,3730.41,50313.42,269574.74 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,29779,125815.05,0.0,0.0,125815.05,25320.89,12424.5,9931.06,47676.45,173491.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,53095,72148.73,491.81,5329.52,77970.06,16242.28,10671.57,6210.11,33123.96,111094.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,36855,90764.69,0.0,0.0,90764.69,19132.06,9701.0,7034.0,35867.06,126631.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,42165,81942.01,1201.32,2194.06,85337.39,17341.74,12424.5,6813.97,36580.21,121917.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,35601,81116.06,0.0,0.0,81116.06,16718.57,12424.5,6521.03,35664.1,116780.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5130,Sewage Treatment Plant Supt,50140,137450.01,0.0,0.0,137450.01,27779.47,12424.5,10170.2,50374.17,187824.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31630,11604.8,0.0,0.0,11604.8,0.0,4969.8,946.01,5915.81,17520.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,47070,55767.78,0.0,563.66,56331.44,11615.25,11223.39,4692.42,27531.06,83862.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,66,24363.0,0.0,0.0,24363.0,996.15,7884.78,1881.94,10762.87,35125.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,38894,38980.02,0.0,0.0,38980.02,7753.27,7167.99,3002.57,17923.83,56903.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0962,Dept Head II,19220,183293.0,0.0,0.0,183293.0,36868.13,12424.5,28402.42,77695.05,260988.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2278,27573.75,0.0,4232.44,31806.19,0.0,2153.14,2463.77,4616.91,36423.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33260,51456.8,775.29,1695.22,53927.31,12766.96,12424.5,4308.19,29499.65,83426.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19310,6422.5,0.0,275.25,6697.75,1412.32,1672.53,513.09,3597.94,10295.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,37987,4310.0,0.0,0.0,4310.0,1111.98,955.72,333.68,2401.38,6711.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38754,0.0,0.0,14152.05,14152.05,0.0,68.5,1082.63,1151.13,15303.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38390,49052.06,0.0,0.0,49052.06,7562.08,11269.08,3976.9,22808.06,71860.12 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,20789,59208.8,5224.04,5611.82,70044.66,14163.94,12424.5,5646.04,32234.48,102279.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6088,135517.34,0.0,10320.73,145838.07,27299.07,12373.73,5891.42,45564.22,191402.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",45927,93738.03,2821.61,0.0,96559.64,19319.83,12424.52,7816.01,39560.36,136120.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,44365,129948.88,0.0,0.0,129948.88,26693.4,12385.07,9953.37,49031.84,178980.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,53033,52417.23,5478.35,0.0,57895.58,10507.19,9458.63,4779.2,24745.02,82640.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,19019,91835.17,0.0,0.0,91835.17,19312.8,8601.58,17554.39,45468.77,137303.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,18861,59229.0,0.0,0.0,59229.0,12207.44,12424.5,4818.18,29450.12,88679.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,1981,69644.73,861.48,1930.63,72436.84,14887.71,10694.99,5748.86,31331.56,103768.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,23114,5611.49,0.0,2614.88,8226.37,0.0,1260.37,637.56,1897.93,10124.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,44558,115210.1,0.0,0.0,115210.1,23139.07,12424.5,24230.87,59794.44,175004.54 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,40994,64188.79,0.0,1000.0,65188.79,13437.56,12424.51,5264.89,31126.96,96315.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,19344,101323.01,8543.27,1687.5,111553.78,15003.9,12424.5,8941.69,36370.09,147923.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,45695,107978.0,3500.06,0.0,111478.06,22255.03,12424.51,9228.7,43908.24,155386.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15794,67118.29,797.47,5292.89,73208.65,0.0,5883.89,5674.89,11558.78,84767.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,24050,22235.31,0.0,0.0,22235.31,4889.54,4611.4,1782.04,11282.98,33518.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,46496,21660.0,388.08,0.0,22048.08,4410.09,7167.97,1759.24,13337.3,35385.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,16657,70308.0,35139.51,3546.9,108994.41,14602.08,8601.58,8480.29,31683.95,140678.36 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,37289,61428.0,95.09,6115.33,67638.42,13395.28,12424.51,5474.58,31294.37,98932.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32872,91747.61,3058.25,7949.3,102755.16,18716.98,9557.31,1747.11,30021.4,132776.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17526,4175.05,0.0,0.0,4175.05,0.0,1753.16,331.77,2084.93,6259.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41431,118082.73,0.0,810.59,118893.32,23370.51,12281.15,1968.78,37620.44,156513.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,49270,47823.48,0.0,0.0,47823.48,8411.21,6018.12,3777.61,18206.94,66030.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,10678,81942.01,24940.01,18295.94,125177.96,19546.81,12424.5,9788.0,41759.31,166937.27 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,30709,67554.07,21393.67,9375.69,98323.43,15273.54,12358.8,7986.5,35618.84,133942.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,3200,Recreation,3233,Marina Associate Manager,1317,81447.77,0.0,905.89,82353.66,16754.34,12424.63,14554.35,43733.32,126086.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22326,100174.75,2917.72,14285.56,117378.03,0.0,8631.08,9098.06,17729.14,135107.17 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,49306,93681.04,12389.41,14189.06,120259.51,21019.58,12424.5,9431.91,42875.99,163135.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,25839,58601.03,0.0,630.0,59231.03,12193.46,12424.49,4588.35,29206.3,88437.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,35549,106116.02,0.0,0.0,106116.02,21870.85,12424.51,8161.09,42456.45,148572.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,51187,5544.24,0.0,56.38,5600.62,1256.21,1122.63,451.45,2830.29,8430.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7239,Plumber Supervisor 2,10084,65472.35,0.0,24642.32,90114.67,15159.86,6546.76,7296.69,29003.31,119117.98 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16157,184289.07,0.0,5248.28,189537.35,38144.37,12424.5,11001.61,61570.48,251107.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,39088,30506.11,840.26,1062.68,32409.05,7563.79,7338.52,2651.1,17553.41,49962.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4336,56531.0,51455.0,5601.21,113587.21,12804.25,12424.5,9157.07,34385.82,147973.03 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8183,Assistant Chief Attorney 2,2096,218440.04,0.0,1562.5,220002.54,44275.87,12424.5,11538.88,68239.25,288241.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41008,67803.55,7303.68,1381.12,76488.35,18934.35,13359.5,5806.86,38100.71,114589.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,37056,97815.26,0.0,0.0,97815.26,20162.84,12409.81,8063.32,40635.97,138451.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,2852,79722.01,0.0,40.0,79762.01,16433.97,12424.5,6509.83,35368.3,115130.31 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),43059,122217.3,0.0,1562.5,123779.8,24902.54,12424.5,9651.62,46978.66,170758.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,22032,97776.03,61480.47,14928.3,174184.8,26594.74,12424.5,2922.97,41942.21,216127.01 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,45382,9397.54,0.0,0.0,9397.54,0.0,2154.87,727.56,2882.43,12279.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,46681,192100.68,0.0,0.0,192100.68,38622.76,12424.5,18300.08,69347.34,261448.02 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,50304,34476.75,4288.39,1947.02,40712.16,0.0,4993.7,1337.49,6331.19,47043.35 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,28724,6223.5,787.31,0.0,7010.81,0.0,1863.67,544.15,2407.82,9418.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26888,60838.61,7676.83,942.36,69457.8,14964.21,13284.3,5261.4,33509.91,102967.71 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,26282,38251.11,0.0,0.0,38251.11,0.0,2377.38,2965.37,5342.75,43593.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,38642,89210.11,0.0,1964.0,91174.11,18788.85,12424.5,7504.13,38717.48,129891.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25790,56596.7,158.48,570.8,57325.98,12088.56,5200.07,3907.48,21196.11,78522.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,7213,14205.39,0.0,0.0,14205.39,0.0,0.0,1123.13,1123.13,15328.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,49862,12185.75,0.0,0.0,12185.75,0.0,3685.53,943.5,4629.03,16814.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9760,97764.21,14694.69,9679.96,122138.86,26132.63,12424.5,1974.33,40531.46,162670.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,50532,111972.79,9565.39,26151.56,147689.74,27061.16,15027.55,2582.74,44671.45,192361.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27845,59694.5,0.0,12023.71,71718.21,7844.83,0.0,7392.3,15237.13,86955.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,29113,65647.0,3375.97,2340.68,71363.65,13711.19,10035.18,5442.36,29188.73,100552.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2732,30698.21,999.35,1004.76,32702.32,5754.02,3345.06,548.44,9647.52,42349.84 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,16668,3068.5,1483.78,242.25,4794.53,0.0,907.95,372.14,1280.09,6074.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47317,5861.27,0.0,638.33,6499.6,525.97,2541.64,532.49,3600.1,10099.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,24098,35827.0,0.0,0.0,35827.0,6667.4,5734.37,2846.04,15247.81,51074.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6531,74451.0,0.0,0.0,74451.0,14274.77,8123.71,6003.25,28401.73,102852.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36687,9705.0,0.0,297.6,10002.6,0.0,3739.3,774.96,4514.26,14516.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,39450,29145.79,0.0,0.0,29145.79,0.0,0.0,2305.51,2305.51,31451.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",9300,Port Operation,9345,Sheet Metal Supervisor 1,43183,52693.0,0.0,21.0,52714.0,9810.07,5734.39,4111.43,19655.89,72369.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6948,53407.13,2902.9,537.26,56847.29,15213.81,10594.94,4283.78,30092.53,86939.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7421,973.49,0.0,2915.63,3889.12,291.37,193.59,277.63,762.59,4651.71 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16248,184289.01,0.0,5248.28,189537.29,38144.36,12424.5,11015.16,61584.02,251121.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,52402,16630.03,0.0,443.11,17073.14,3454.43,3307.19,344.73,7106.35,24179.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,31913,116976.0,0.0,4316.17,121292.17,24410.33,12424.5,9796.54,46631.37,167923.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,3532,125815.16,0.0,0.0,125815.16,25316.34,12424.5,9825.4,47566.24,173381.4 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,3686,72412.27,0.0,1315.72,73727.99,15193.77,12376.71,6102.27,33672.75,107400.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36102,61494.77,0.0,14513.64,76008.41,2168.46,0.0,6438.34,8606.8,84615.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42048,345.7,0.0,4.32,350.02,0.0,0.0,24.31,24.31,374.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,23985,10180.0,0.0,60.0,10240.0,1905.65,1911.46,838.92,4656.03,14896.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51085,122697.79,1651.44,31239.78,155589.01,28223.18,10864.87,5987.26,45075.31,200664.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5274,Landscape Architect,40447,121484.4,0.0,0.0,121484.4,24448.27,11146.24,9835.86,45430.37,166914.77 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,49674,54847.42,0.0,240.0,55087.42,10557.46,6917.1,4480.35,21954.91,77042.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,5064,60616.87,581.52,4578.39,65776.78,13510.82,11784.58,5406.19,30701.59,96478.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,26621,24954.7,170.67,331.17,25456.54,5801.41,8123.7,2062.67,15987.78,41444.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,50162,55836.21,0.0,1119.05,56955.26,12751.34,12328.92,4578.59,29658.85,86614.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,21112,52404.87,944.24,1252.32,54601.43,11888.24,11922.86,4432.64,28243.74,82845.17 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,18342,4674.0,0.0,0.0,4674.0,869.84,955.73,362.59,2188.16,6862.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,29045,86663.01,5093.74,2870.25,94627.0,18396.45,12424.49,7552.07,38373.01,133000.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,20426,14239.8,2097.13,853.2,17190.13,3894.0,4730.86,1372.57,9997.43,27187.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,17177,97934.03,0.0,624.0,98558.03,20324.33,12424.5,8122.04,40870.87,139428.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,1359,8668.25,0.0,61.31,8729.56,0.0,0.0,690.4,690.4,9419.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,29661,61159.51,68.18,2425.4,63653.09,12908.98,12370.45,4902.08,30181.51,93834.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,35089,8145.05,0.0,0.0,8145.05,0.0,2953.8,631.27,3585.07,11730.12 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,18354,66140.14,0.0,6240.04,72380.18,17472.67,7601.94,677.38,25751.99,98132.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,44792,2442.07,0.0,42.07,2484.14,0.0,807.89,192.69,1000.58,3484.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,37734,49083.1,4376.33,1080.0,54539.43,10211.28,10990.9,4172.12,25374.3,79913.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1621,77065.71,11353.65,3115.07,91534.43,15888.97,15196.13,1526.46,32611.56,124145.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,40476,44560.0,0.0,170.55,44730.55,10848.84,10990.9,3643.44,25483.18,70213.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,37327,3008.42,0.0,61.31,3069.73,0.0,1099.09,237.66,1336.75,4406.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,4001,59065.76,997.14,623.15,60686.05,12292.12,11627.06,4636.29,28555.47,89241.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12064,128143.02,0.0,250.0,128393.02,25787.32,12424.5,9913.86,48125.68,176518.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6583,112159.76,39252.09,16575.45,167987.3,24662.66,15052.76,2808.47,42523.89,210511.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2764,28439.34,0.0,83.82,28523.16,0.0,2015.99,2210.88,4226.87,32750.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8425,12937.49,0.0,0.0,12937.49,1547.61,5610.14,1046.82,8204.57,21142.06 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,16239,19214.16,0.0,0.0,19214.16,3483.55,1248.43,1491.32,6223.3,25437.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4118,4047.33,0.0,21.74,4069.07,0.0,0.0,321.92,321.92,4390.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25909,6431.3,0.0,72.6,6503.9,0.0,1606.81,503.84,2110.65,8614.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,51845,56531.0,5082.4,2350.53,63963.93,11681.45,12424.5,5011.12,29117.07,93081.0 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,17643,145715.12,0.0,5820.0,151535.12,29515.4,8565.74,10309.69,48390.83,199925.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,42896,29613.89,2846.66,2960.69,35421.24,4708.61,6024.09,2712.3,13445.0,48866.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,22643,11378.4,0.0,0.0,11378.4,2935.62,2867.19,893.56,6696.37,18074.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,10704,5353.6,0.0,0.0,5353.6,1200.81,764.58,440.58,2405.97,7759.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,1358,51405.02,568.24,2129.65,54102.91,12354.28,12424.5,4424.15,29202.93,83305.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12820,9230.91,0.0,0.0,9230.91,0.0,3972.85,761.76,4734.61,13965.52 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,13117,85622.65,0.0,405.65,86028.3,17999.62,10320.34,7053.42,35373.38,121401.68 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1362,Special Assistant 3,28316,41878.68,0.0,0.0,41878.68,9574.88,9724.56,3326.07,22625.51,64504.19 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,2.0,Management Unrepresented Employees,8100,Legal & Court,AB44,"Cfdntal Chf Atty 2,(Cvl&Crmnl)",1622,61075.0,0.0,2249.96,63324.96,13399.89,3345.06,6940.3,23685.25,87010.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,44391,68705.33,9363.47,0.0,78068.8,14160.59,12421.52,6443.73,33025.84,111094.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,40908,3321.5,0.0,0.0,3321.5,0.0,1553.06,257.63,1810.69,5132.19 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,16512,108369.26,16574.29,24095.8,149039.35,32217.41,12424.5,2488.78,47130.69,196170.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49536,3215.64,0.0,80.36,3296.0,0.0,1567.99,255.66,1823.65,5119.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,32762,82883.0,6739.8,1367.48,90990.28,17362.22,12424.5,7120.97,36907.69,127897.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,23758,4619.0,0.0,31.54,4650.54,820.82,477.86,79.3,1377.98,6028.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37265,4375.61,0.0,19.42,4395.03,0.0,1458.98,340.95,1799.93,6194.96 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,2209,85583.31,13908.76,2245.2,101737.27,17443.37,11029.5,7950.94,36423.81,138161.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,5641,2430.58,0.0,49.02,2479.6,545.26,710.82,188.5,1444.58,3924.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,43292,54501.81,0.0,727.03,55228.84,12166.57,12424.51,4323.19,28914.27,84143.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,38318,79722.05,0.0,183.0,79905.05,16468.28,12424.51,6550.18,35442.97,115348.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",901,500.0,0.0,0.0,500.0,0.0,119.47,38.72,158.19,658.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14442,33776.0,11777.59,386.16,45939.75,8194.23,12424.5,3653.18,24271.91,70211.66 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,10688,54124.02,0.0,624.0,54748.02,12250.25,12424.5,4537.52,29212.27,83960.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13394,1820.8,0.0,0.0,1820.8,0.0,764.58,141.32,905.9,2726.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,1985,118104.06,0.0,0.0,118104.06,23768.42,12424.5,9387.24,45580.16,163684.22 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,39771,73283.48,0.0,0.0,73283.48,15086.28,12410.65,1175.75,28672.68,101956.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,35178,61548.88,913.29,622.11,63084.28,12810.44,12386.82,5127.06,30324.32,93408.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50474,68760.57,11348.38,5645.51,85754.46,20400.08,13548.03,6347.6,40295.71,126050.17 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,12848,62808.2,8343.4,0.0,71151.6,12925.41,12424.5,5714.47,31064.38,102215.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,35011,142192.05,0.0,0.0,142192.05,28616.29,12424.5,10241.87,51282.66,193474.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28176,60720.07,387.92,6900.95,68008.94,13570.15,11804.74,5594.6,30969.49,98978.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22565,72746.16,8518.12,2088.52,83352.8,14985.41,14861.62,1867.36,31714.39,115067.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13923,58050.73,398.1,3453.19,61902.02,11948.72,10978.78,4934.82,27862.32,89764.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,24927,6958.15,0.0,175.59,7133.74,0.0,1893.54,552.3,2445.84,9579.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20868,47676.52,757.18,0.0,48433.7,10378.37,10513.04,3969.44,24860.85,73294.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,5292,111796.28,0.0,0.0,111796.28,22531.02,12424.5,8515.2,43470.72,155267.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,8108,43991.37,646.69,1460.0,46098.06,10639.02,10001.24,3727.55,24367.81,70465.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20447,56531.0,533.13,391.38,57455.51,11661.71,12424.5,4756.53,28842.74,86298.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39376,53524.0,0.0,6544.5,60068.5,13797.79,12424.5,4789.04,31011.33,91079.83 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,43261,95306.7,0.0,3000.0,98306.7,19497.79,11479.47,30939.89,61917.15,160223.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11981,117140.93,2574.89,13777.71,133493.53,23164.17,12424.5,2227.42,37816.09,171309.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,20931,80570.03,0.0,0.0,80570.03,16603.01,12424.5,6510.89,35538.4,116108.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,8591,81542.04,0.0,0.0,81542.04,16806.17,12424.5,6656.98,35887.65,117429.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31280,42545.73,0.0,0.0,42545.73,0.0,2831.53,3298.62,6130.15,48675.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,29728,59484.0,1544.59,6368.71,67397.3,13153.04,11707.71,5574.17,30434.92,97832.22 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,1033,65300.76,1144.42,4168.1,70613.28,13730.81,11944.01,5594.97,31269.79,101883.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,34472,111918.0,19525.28,3204.62,134647.9,22523.67,12424.49,9978.24,44926.4,179574.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",51892,8028.0,0.0,0.0,8028.0,0.0,1911.46,622.71,2534.17,10562.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39228,72066.4,0.0,11996.24,84062.64,950.07,0.0,7714.62,8664.69,92727.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,25718,56314.91,5074.87,3275.4,64665.18,11731.11,12376.71,5058.65,29166.47,93831.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,22043,176127.05,0.0,250.0,176377.05,35445.72,12424.5,10536.8,58407.02,234784.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,26517,30151.82,0.0,0.0,30151.82,5611.25,3822.92,2575.71,12009.88,42161.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,12443,96930.05,0.0,0.0,96930.05,19977.61,12424.5,7890.11,40292.22,137222.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22478,1680.56,0.0,0.0,1680.56,0.0,728.75,130.11,858.86,2539.42 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,13526,49286.47,754.62,3835.49,53876.58,10625.78,10955.07,4266.77,25847.62,79724.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,18910,19531.57,0.0,0.0,19531.57,3187.75,6426.27,1596.46,11210.48,30742.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52742,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3355.32,18181.17,61948.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,14093,13216.0,0.0,0.0,13216.0,2459.48,1911.46,981.17,5352.11,18568.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,35,63102.04,0.0,583.54,63685.58,13126.32,12424.5,5279.48,30830.3,94515.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,39840,55886.15,0.0,1159.65,57045.8,12751.88,12337.88,4535.75,29625.51,86671.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13189,8197.5,0.0,0.0,8197.5,1205.13,3554.72,657.06,5416.91,13614.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20517,9153.48,0.0,1764.99,10918.47,422.8,0.0,2904.07,3326.87,14245.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,37088,101534.8,22235.48,16723.87,140494.15,22440.77,13625.86,2382.02,38448.65,178942.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,46537,11939.37,0.0,583.46,12522.83,0.0,3954.34,970.4,4924.74,17447.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24735,81899.72,7971.77,4996.53,94868.02,17023.48,12424.5,1337.31,30785.29,125653.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,7653,79829.98,9169.68,5874.92,94874.58,17357.63,12412.56,1535.84,31306.03,126180.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,24519,156746.04,0.0,0.0,156746.04,31545.23,12424.47,10475.63,54445.33,211191.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,21432,77507.8,0.0,0.0,77507.8,15962.76,12424.5,6280.01,34667.27,112175.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1292,66889.37,3745.73,4868.57,75503.67,19639.75,13180.13,5845.76,38665.64,114169.31 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,37704,78963.07,0.0,391.49,79354.56,16356.01,12424.5,6095.67,34876.18,114230.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41444,56531.0,0.0,4706.09,61237.09,13300.05,12424.5,4711.57,30436.12,91673.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11251,20299.37,2724.94,950.21,23974.52,5835.12,6407.76,1452.07,13694.95,37669.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36377,122660.81,735.15,5227.16,128623.12,24584.74,12424.5,9807.9,46817.14,175440.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,31788,167077.5,0.0,0.0,167077.5,33565.06,12424.5,28082.61,74072.17,241149.67 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,5615,76736.03,0.0,0.0,76736.03,15485.64,10035.18,6162.3,31683.12,108419.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,24893,10354.14,0.0,0.0,10354.14,2322.42,2312.09,856.01,5490.52,15844.66 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,51153,93681.03,17439.21,10474.94,121595.18,20672.38,12424.5,9504.28,42601.16,164196.34 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,46953,15654.31,0.0,0.0,15654.31,3429.05,3010.55,1213.59,7653.19,23307.5 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,7727,112138.71,0.0,0.0,112138.71,22809.53,12424.5,9173.12,44407.15,156545.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,23656,70245.01,1815.64,11942.46,84003.11,14491.46,12424.48,5734.84,32650.78,116653.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,27476,80076.66,12275.67,5662.39,98014.72,16950.64,12472.29,1633.64,31056.57,129071.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,8126,97365.58,45713.06,10787.84,153866.48,26297.61,12370.74,2618.16,41286.51,195152.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,23620,60610.18,0.0,0.0,60610.18,12480.07,12406.58,4847.33,29733.98,90344.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,39079,77232.18,0.0,600.0,77832.18,16056.66,11337.48,6395.35,33789.49,111621.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,7880,84599.04,0.0,1529.57,86128.61,17754.7,12424.5,7138.78,37317.98,123446.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,33183,63162.51,646.91,0.0,63809.42,13992.39,11946.63,4947.21,30886.23,94695.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,46119,68337.8,282.86,6357.28,74977.94,6206.78,11420.98,5859.76,23487.52,98465.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50466,89965.2,7384.54,6658.62,104008.36,18340.69,9557.31,1726.1,29624.1,133632.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46696,44234.23,5411.03,849.13,50494.39,11686.9,13314.11,3492.65,28493.66,78988.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6820,122732.78,1481.63,18149.84,142364.25,24160.62,10866.06,5145.18,40171.86,182536.11 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,21463,98157.0,0.0,0.0,98157.0,20230.58,12424.5,8029.76,40684.84,138841.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17395,1298.03,0.0,0.0,1298.03,0.0,545.06,103.69,648.75,1946.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,32761,72657.81,4156.24,937.2,77751.25,14831.11,10608.62,6041.2,31480.93,109232.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,48319,75407.09,0.0,0.0,75407.09,15541.47,12424.5,6138.23,34104.2,109511.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,6351,117565.53,72013.89,7641.74,197221.16,24631.6,15052.76,3261.85,42946.21,240167.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",26201,149167.8,3213.04,17497.42,169878.26,32624.94,15088.84,2606.54,50320.32,220198.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,13069,117129.71,11306.29,10011.21,138447.21,23205.2,12424.5,2356.86,37986.56,176433.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43764,73360.12,11517.32,4962.2,89839.64,15696.27,15196.12,1488.19,32380.58,122220.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,3457,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",9521,106090.13,7687.98,3579.74,117357.85,22087.59,12424.5,9617.9,44129.99,161487.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25488,1763.2,0.0,0.0,1763.2,0.0,764.58,136.51,901.09,2664.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,52936,85368.07,0.0,2629.0,87997.07,18126.91,12424.5,7212.97,37764.38,125761.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,43399,22706.73,0.0,3421.56,26128.29,5319.83,5021.18,2144.08,12485.09,38613.38 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,27982,129895.0,0.0,16745.5,146640.5,26141.48,12424.5,10302.94,48868.92,195509.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,50566,55176.96,0.0,204.83,55381.79,11408.17,12367.75,4504.57,28280.49,83662.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,38338,767.13,0.0,0.0,767.13,0.0,253.86,59.39,313.25,1080.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,44753,74728.02,0.0,0.0,74728.02,15379.1,12424.48,5909.92,33713.5,108441.52 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,30894,60968.8,0.0,0.0,60968.8,12557.56,12424.5,4887.64,29869.7,90838.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,8917,67304.76,50.74,3729.02,71084.52,14735.84,11828.0,5852.82,32416.66,103501.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12831,112159.74,42879.81,20441.36,175480.91,25145.49,15052.76,2947.37,43145.62,218626.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24521,97290.74,20481.76,4655.04,122427.54,24806.78,12361.78,2085.73,39254.29,161681.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,29244,113951.42,0.0,0.0,113951.42,23167.76,12424.5,9322.17,44914.43,158865.85 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,10419,51534.18,2378.09,546.04,54458.31,11001.24,10035.18,4321.16,25357.58,79815.89 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,27886,4891.53,0.0,242.25,5133.78,0.0,1469.55,398.46,1868.01,7001.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,51105,98157.04,0.0,0.0,98157.04,20230.59,12424.5,7604.46,40259.55,138416.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,27730,108038.02,4684.89,12094.51,124817.42,23421.98,12424.5,9860.31,45706.79,170524.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2915,Program Specialist Supervisor,24947,7194.01,0.0,0.0,7194.01,1613.62,955.73,595.42,3164.77,10358.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,18763,65928.43,3344.11,387.3,69659.84,13558.45,12424.5,5763.74,31746.69,101406.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",16249,1081.0,0.0,0.0,1081.0,0.0,0.0,85.5,85.5,1166.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,344,41216.21,6958.23,2634.19,50808.63,12752.94,8196.59,3926.54,24876.07,75684.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29197,11842.0,0.0,866.32,12708.32,2734.03,3106.13,1197.86,7038.02,19746.34 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,36705,31808.0,0.0,437.5,32245.5,7074.66,1911.46,2582.8,11568.92,43814.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,2939,15327.26,0.0,194.14,15521.4,0.0,5874.76,1203.01,7077.77,22599.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,20058,113120.86,31202.17,6753.19,151076.22,23431.95,12412.56,2480.06,38324.57,189400.79 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,38554,2907.0,741.89,242.25,3891.14,0.0,860.16,302.02,1162.18,5053.32 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,51023,87713.01,0.0,0.0,87713.01,18078.18,12424.5,7032.68,37535.36,125248.37 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,42184,28462.01,0.0,0.0,28462.01,5296.81,4300.79,2214.77,11812.37,40274.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35106,11576.36,0.0,0.0,11576.36,0.0,4957.85,943.81,5901.66,17478.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38506,117482.93,2702.84,6836.08,127021.85,23281.45,12219.56,916.46,36417.47,163439.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,26348,30813.23,6049.22,2250.08,39112.53,7341.5,7753.37,3112.26,18207.13,57319.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,29350,8499.91,0.0,0.0,8499.91,0.0,2798.5,659.44,3457.94,11957.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,49363,20808.55,19065.8,2554.87,42429.22,3757.61,5961.37,3346.39,13065.37,55494.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,43483,67261.08,0.0,624.0,67885.08,13987.79,12424.5,5627.94,32040.23,99925.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,134,83387.74,0.0,6181.6,89569.34,18418.24,11465.78,7256.39,37140.41,126709.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",37254,75930.11,0.0,876.41,76806.52,16233.31,10006.86,6389.33,32629.5,109436.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,12648,54727.89,0.0,0.0,54727.89,12197.63,12114.36,4384.54,28696.53,83424.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,44227,64455.8,13512.21,13808.38,91776.39,15558.21,12424.49,7436.77,35419.47,127195.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,33300,87051.56,0.0,0.0,87051.56,17905.78,12400.6,6619.0,36925.38,123976.94 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,23832,25200.0,0.0,0.0,25200.0,4568.75,2389.33,4357.81,11315.89,36515.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,28036,47903.93,0.0,353.4,48257.33,9982.52,7036.57,3930.56,20949.65,69206.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38973,12756.0,0.0,0.0,12756.0,0.0,5519.35,1032.98,6552.33,19308.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,7007,89439.0,57633.77,6340.5,153413.27,19016.52,12089.99,10238.02,41344.53,194757.8 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,49847,132928.06,0.0,18389.17,151317.23,26755.13,12409.57,10348.83,49513.53,200830.76 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,51967,72930.8,0.0,601.93,73532.73,15162.87,11984.93,5649.09,32796.89,106329.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,47797,84973.0,0.0,824.0,85797.0,17641.99,12424.5,7098.22,37164.71,122961.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52304,6214.6,0.0,0.0,6214.6,0.0,2694.87,503.55,3198.42,9413.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,51865,161.3,0.0,8.87,170.17,0.0,0.0,13.45,13.45,183.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,32516,112690.83,2803.81,7829.62,123324.26,22311.18,12424.5,2053.83,36789.51,160113.77 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,39835,74412.06,0.0,5971.0,80383.06,15661.47,12424.5,6427.03,34513.0,114896.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23849,49277.35,0.0,9982.15,59259.5,24641.61,0.0,8073.92,32715.53,91975.03 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,21628,76393.22,0.0,0.0,76393.22,15711.26,12382.69,6127.71,34221.66,110614.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3153,6179.55,289.74,249.05,6718.34,0.0,1678.52,561.92,2240.44,8958.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,45285,49120.4,0.0,0.0,49120.4,11776.14,12424.5,3949.91,28150.55,77270.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33714,0.0,0.0,666.01,666.01,0.0,68.5,31.82,100.32,766.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,6799,91004.0,0.0,1679.0,92683.0,19103.33,12424.5,7630.46,39158.29,131841.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7421,Sewer Maintenance Worker,44501,71467.0,1634.69,8025.34,81127.03,16407.01,12424.51,6270.55,35102.07,116229.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9240,26865.3,0.0,0.0,26865.3,5071.4,4109.64,2072.19,11253.23,38118.53 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,10130,30860.53,202.35,223.69,31286.57,6944.17,3871.66,528.22,11344.05,42630.62 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,47757,4584.01,0.0,9779.1,14363.11,1028.2,955.73,1129.1,3113.03,17476.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,6165,84644.0,28512.36,11497.99,124654.35,19294.77,12424.5,9766.23,41485.5,166139.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17145,56163.3,1292.35,590.55,58046.2,10885.46,8601.58,3981.96,23469.0,81515.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,37208,138710.76,25570.87,9351.59,173633.22,27411.56,12424.5,2952.68,42788.74,216421.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12290,66237.39,9567.46,4298.99,80103.84,19317.03,13050.8,6212.98,38580.81,118684.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,3250,91031.32,28751.6,9185.92,128968.84,19519.17,12291.53,9893.93,41704.63,170673.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,12698,4027.33,0.0,2.56,4029.89,0.0,1883.08,312.69,2195.77,6225.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,18629,81157.03,0.0,720.0,81877.03,16862.82,12424.5,6743.14,36030.46,117907.49 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,16823,88526.1,0.0,2884.76,91410.86,18354.17,12424.51,7354.91,38133.59,129544.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,20880,29127.52,1050.57,945.63,31123.72,6303.84,6451.22,2467.4,15222.46,46346.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,51247,77071.12,0.0,1040.0,78111.12,16098.07,12424.5,6475.19,34997.76,113108.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48381,126155.8,0.0,250.0,126405.8,25354.3,12424.5,9879.92,47658.72,174064.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,31999,45836.0,8573.0,7713.48,62122.48,9693.41,6690.13,4805.12,21188.66,83311.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,30234,8520.0,0.0,477.12,8997.12,1674.36,1911.46,716.37,4302.19,13299.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,24798,23644.8,293.87,2625.34,26564.01,2436.41,6355.61,2074.41,10866.43,37430.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3449,112170.37,3522.2,18555.36,134247.93,24800.93,15052.75,2356.66,42210.34,176458.27 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,18974,55086.15,10450.74,6312.45,71849.34,12149.24,10846.06,5895.23,28890.53,100739.87 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,37460,151373.06,0.0,0.0,151373.06,30424.08,12424.5,17623.48,60472.06,211845.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,12181,41103.02,0.0,0.0,41103.02,7837.7,6690.11,3401.32,17929.13,59032.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,49616,18754.21,2624.98,2312.02,23691.21,3495.09,5770.23,1873.22,11138.54,34829.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43502,14111.85,0.0,0.0,14111.85,0.0,6056.94,1117.45,7174.39,21286.24 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,15306,94695.91,0.0,0.0,94695.91,19514.74,12424.5,7328.81,39268.05,133963.96 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7275,Telecommunications Tech Supv,46330,49038.0,8804.57,7453.78,65296.35,10758.99,5256.52,5318.54,21334.05,86630.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,29261,42896.6,0.0,0.0,42896.6,8530.5,8075.92,3656.88,20263.3,63159.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4278,149099.01,801.42,43178.85,193079.28,35884.64,12424.5,5646.19,53955.33,247034.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31764,54115.92,31494.75,4427.08,90037.75,15654.97,10637.53,6793.12,33085.62,123123.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,36185,83148.0,0.0,0.0,83148.0,17137.11,12424.45,6824.98,36386.54,119534.54 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,19946,96930.05,0.0,0.0,96930.05,19981.15,12424.5,7840.01,40245.66,137175.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,20885,54931.89,3400.07,1337.65,59669.61,11478.54,10916.71,4940.95,27336.2,87005.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,48655,42023.01,0.0,0.0,42023.01,8648.05,8123.71,3403.2,20174.96,62197.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,7363,53858.44,0.0,1420.0,55278.44,13242.42,12424.5,4438.77,30105.69,85384.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,50365,60191.64,0.0,608.4,60800.04,12531.75,12113.89,4499.48,29145.12,89945.16 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,17018,69643.32,0.0,2120.0,71763.32,15389.47,4671.13,5626.64,25687.24,97450.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24507,90535.91,7889.32,7630.83,106056.06,23912.72,11551.21,1775.36,37239.29,143295.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39399,66683.33,5891.43,2123.41,74698.17,18843.81,13139.33,5662.65,37645.79,112343.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10593,72690.21,0.0,20388.94,93079.15,0.0,0.0,7362.28,7362.28,100441.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51449,49733.69,4539.62,723.58,54996.89,12647.61,10279.12,3996.97,26923.7,81920.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),35432,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,11000.41,60813.74,246602.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,45360,37969.5,0.0,0.0,37969.5,7066.12,4539.72,2952.38,14558.22,52527.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,44160,43657.92,203.51,0.0,43861.43,10481.22,11468.78,3580.78,25530.78,69392.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,7143,32994.11,0.0,2140.98,35135.09,7104.62,0.0,2779.03,9883.65,45018.74 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,3987,219503.52,0.0,0.0,219503.52,44025.65,12424.5,19792.57,76242.72,295746.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,6775,51405.07,2320.69,1935.33,55661.09,12433.92,12424.5,4554.19,29412.61,85073.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,22485,2397.44,0.0,0.0,2397.44,0.0,531.62,5.87,537.49,2934.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,1676,49985.46,15465.68,8656.27,74107.41,12151.97,9666.61,5883.53,27702.11,101809.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,30828,84700.52,10436.43,6555.06,101692.01,17908.08,12372.0,1574.18,31854.26,133546.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",46773,94388.0,951.16,2524.34,97863.5,19886.32,12424.5,8018.28,40329.1,138192.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,31959,116976.0,5966.03,4889.85,127831.88,23558.52,12424.5,9915.62,45898.64,173730.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,32700,58970.57,0.0,624.6,59595.17,13328.89,12436.44,4652.78,30418.11,90013.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,43126,29600.0,270.76,1215.48,31086.24,5734.76,4778.65,2434.61,12948.02,44034.26 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",51956,105082.02,0.0,0.0,105082.02,21657.96,12424.5,8523.81,42606.27,147688.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,12505,9351.0,0.0,0.0,9351.0,2097.42,1433.6,767.68,4298.7,13649.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,47444,61735.01,0.0,1644.0,63379.01,13063.07,12424.5,5249.91,30737.48,94116.49 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,35193,69493.0,0.0,0.0,69493.0,14297.47,12376.71,5553.13,32227.31,101720.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,5222,112209.04,1356.08,0.0,113565.12,22870.16,12424.5,9076.58,44371.24,157936.36 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8534,Sprv Adult Prob Ofc (SFERS),47861,119200.01,0.0,0.0,119200.01,24424.43,12424.5,1979.58,38828.51,158028.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,35717,195622.17,0.0,250.0,195872.17,39307.11,12321.1,11021.83,62650.04,258522.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,14839,60147.1,28204.86,3996.6,92348.56,12506.32,11894.3,7254.24,31654.86,124003.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4515,9238.0,1595.01,133.08,10966.09,1641.64,955.73,187.77,2785.14,13751.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48790,118732.38,861.71,13925.33,133519.42,24590.07,10627.13,9985.73,45202.93,178722.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39625,140334.01,0.0,250.0,140584.01,28242.37,12424.47,10137.76,50804.6,191388.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,26532,45624.0,4159.5,3161.2,52944.7,10943.04,12424.5,4257.76,27625.3,80570.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48979,48227.8,0.0,9357.6,57585.4,0.0,0.0,4555.97,4555.97,62141.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8016,147176.32,897.6,17339.04,165412.96,31635.9,12264.84,10551.57,54452.31,219865.27 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,42848,49917.5,0.0,0.0,49917.5,10517.45,9796.24,4085.58,24399.27,74316.77 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,8883,60721.57,9069.38,7213.29,77004.24,13626.23,11692.59,6101.56,31420.38,108424.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,4738,68067.03,0.0,617.7,68684.73,14156.49,12424.5,5526.58,32107.57,100792.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34309,46468.99,0.0,7953.06,54422.05,9887.42,10268.14,4486.77,24642.33,79064.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19808,97340.64,12971.89,19870.52,130183.05,28506.28,12424.49,2182.06,43112.83,173295.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,27890,33741.79,397.44,1443.19,35582.42,7915.19,6546.76,2970.26,17432.21,53014.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9183,"Deputy Dir I, MTA",40571,193929.0,0.0,0.0,193929.0,39029.2,12424.5,18255.26,69708.96,263637.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,51785,1047.0,0.0,0.0,1047.0,270.12,238.93,91.14,600.19,1647.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,20985,25753.51,20.82,480.0,26254.33,4882.04,4778.65,2006.3,11666.99,37921.32 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,45894,127719.38,0.0,0.0,127719.38,25757.67,7208.3,9772.26,42738.23,170457.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16315,614.6,0.0,0.0,614.6,0.0,167.25,47.58,214.83,829.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25509,56531.01,0.0,7065.2,63596.21,12602.26,12424.5,5753.29,30780.05,94376.26 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",21756,1423.66,0.0,75.88,1499.54,0.0,0.0,118.71,118.71,1618.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7317,Senior Water Service Inspector,32192,117750.02,722.83,9420.0,127892.85,25592.67,12424.5,9907.83,47925.0,175817.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,19415,6282.36,0.0,521.14,6803.5,0.0,1368.07,598.99,1967.06,8770.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12514,65983.71,9918.04,2226.9,78128.65,18616.04,12999.67,5971.07,37586.78,115715.43 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,38031,11966.85,0.0,0.0,11966.85,0.0,3130.01,973.89,4103.9,16070.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24763,12520.0,0.0,0.0,12520.0,2269.88,1911.46,940.95,5122.29,17642.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,48520,6720.83,0.0,3.82,6724.65,0.0,1681.49,521.03,2202.52,8927.17 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2555,Physical Therapist Assistant,1715,89631.1,0.0,0.0,89631.1,18468.39,12424.5,7191.88,38084.77,127715.87 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50544,97763.49,3488.94,2974.93,104227.36,24496.42,12424.5,1770.5,38691.42,142918.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22666,4266.28,0.0,4.06,4270.34,2940.92,0.0,1251.09,4192.01,8462.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,40978,8367.64,529.66,194.17,9091.47,0.0,3912.52,704.81,4617.33,13708.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",4392,76569.11,2197.14,771.17,79537.42,15589.48,8973.29,6508.99,31071.76,110609.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,47105,6770.0,0.0,0.0,6770.0,1259.9,955.72,422.44,2638.06,9408.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39154,66900.31,13474.76,1950.77,82325.84,18832.73,13178.04,6368.22,38378.99,120704.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3544,Curator 3,23675,23767.5,0.0,740.36,24507.86,5331.07,3583.99,1977.68,10892.74,35400.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,41343,50774.13,0.0,0.0,50774.13,10588.98,10990.91,4136.73,25716.62,76490.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,17585,110041.08,5118.69,309.0,115468.77,22313.97,12424.49,9215.59,43954.05,159422.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,5456,72315.54,7365.15,1460.0,81140.69,15171.68,12424.5,6282.89,33879.07,115019.76 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,45287,11845.35,0.0,0.0,11845.35,3056.1,2951.24,936.32,6943.66,18789.01 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,20671,74165.04,0.0,0.0,74165.04,15285.75,12424.5,5860.36,33570.61,107735.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,37231,15472.0,0.0,0.0,15472.0,3402.3,3345.06,1255.67,8003.03,23475.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,37094,6266.79,0.0,64.12,6330.91,0.0,1853.22,587.8,2441.02,8771.93 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,9748,68941.2,0.0,0.0,68941.2,14313.4,11468.78,5093.06,30875.24,99816.44 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1071,IS Manager,40143,170237.05,0.0,0.0,170237.05,34260.48,12424.5,17946.54,64631.52,234868.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",11582,89558.41,18791.22,11194.84,119544.47,19000.99,10321.9,2002.79,31325.68,150870.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19478,57407.1,0.0,35.0,57442.1,11910.44,11468.77,4561.38,27940.59,85382.69 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,17248,403.76,333.09,0.0,736.85,0.0,119.47,57.19,176.66,913.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,28710,76728.03,4701.34,2245.0,83674.37,16298.77,12424.68,6620.74,35344.19,119018.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,285,2774.63,0.0,5.88,2780.51,0.0,1352.96,215.73,1568.69,4349.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,31437,63804.56,0.0,0.0,63804.56,12913.93,7337.09,5026.79,25277.81,89082.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,28941,51861.66,0.0,0.0,51861.66,12420.18,12376.71,4121.25,28918.14,80779.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,8413,96332.12,2427.57,15710.84,114470.53,19854.28,12424.5,9390.93,41669.71,156140.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,15481,47337.9,300.05,3892.63,51530.58,11945.04,12424.5,4129.83,28499.37,80029.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31743,97761.23,12940.48,8357.72,119059.43,25809.25,12424.51,1987.01,40220.77,159280.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50738,121704.91,520.1,11364.07,133589.08,25425.64,11020.78,8999.61,45446.03,179035.11 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,50494,2516.15,0.0,0.0,2516.15,497.27,167.25,195.08,859.6,3375.75 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,43052,106570.55,0.0,5328.55,111899.1,22532.06,6180.9,8863.1,37576.06,149475.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,8155,47221.28,0.0,635.45,47856.73,11401.88,11737.59,3884.73,27024.2,74880.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35766,113290.26,883.39,3043.26,117216.91,22742.54,11779.39,297.1,34819.03,152035.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,27427,60404.02,0.0,0.0,60404.02,12449.59,12424.5,4964.46,29838.55,90242.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34411,50234.88,173.64,0.0,50408.52,8083.0,11498.62,4039.24,23620.86,74029.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,26424,100554.02,0.0,0.0,100554.02,20724.83,12424.49,8010.19,41159.51,141713.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,10650,138629.96,40515.54,1421.23,180566.73,27414.76,12424.5,3085.85,42925.11,223491.84 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,17277,74411.45,4394.86,50.33,78856.64,15153.05,10866.54,6406.41,32426.0,111282.64 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,9265,12008.0,0.0,0.0,12008.0,733.76,3631.78,977.85,5343.39,17351.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,52081,11964.2,259.99,1758.02,13982.21,3017.5,2771.61,1112.17,6901.28,20883.49 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,46183,186119.03,0.0,0.0,186119.03,37456.67,12424.5,10905.28,60786.45,246905.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,6809,145460.92,0.0,4764.37,150225.29,30235.7,12119.45,10237.22,52592.37,202817.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,35357,62187.03,0.0,2441.85,64628.88,12945.66,12424.5,5298.88,30669.04,95297.92 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4224,Pr Personal Property Auditor,1261,116384.02,0.0,360.0,116744.02,23495.56,12424.5,9387.47,45307.53,162051.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51648,66756.7,6994.3,3507.8,77258.8,19246.68,13155.03,5988.8,38390.51,115649.31 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,3045,136466.01,5265.86,15223.46,156955.33,35843.25,12424.5,2619.74,50887.49,207842.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,36339,106116.0,0.0,3101.81,109217.81,21882.46,12424.5,8755.95,43062.91,152280.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,23133,13557.31,21.65,1216.07,14795.03,0.0,2805.79,1151.98,3957.77,18752.8 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,21403,80759.28,0.0,0.0,80759.28,16633.02,12170.64,6111.69,34915.35,115674.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6570,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3336.57,18162.42,61929.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25602,0.0,0.0,817.6,817.6,0.0,0.0,62.55,62.55,880.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,31951,9185.69,0.0,0.0,9185.69,0.0,2036.9,711.15,2748.05,11933.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,34219,37779.0,0.0,0.0,37779.0,9061.33,12424.5,3011.89,24497.72,62276.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14850,111614.41,776.85,2950.63,115341.89,22070.15,12305.04,615.12,34990.31,150332.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26304,67532.98,4748.44,5033.97,77315.39,16530.64,13306.22,5869.89,35706.75,113022.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,18423,100484.8,0.0,0.0,100484.8,20696.7,12424.49,8121.54,41242.73,141727.53 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1944,Materials Coordinator,3485,118104.04,0.0,0.0,118104.04,23768.42,12424.5,9460.13,45653.05,163757.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,49930,9188.41,0.0,0.0,9188.41,0.0,1815.89,731.3,2547.19,11735.6 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",40444,22278.58,896.85,2150.13,25325.56,0.0,4584.04,1965.67,6549.71,31875.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,17612,26210.8,260.14,3421.54,29892.48,5962.31,3846.82,476.83,10285.96,40178.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15271,83421.94,0.0,0.0,83421.94,0.0,6467.62,6660.29,13127.91,96549.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",2121,131577.09,9643.5,15991.31,157211.9,28954.01,15196.12,2678.36,46828.49,204040.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,37048,75398.0,6214.03,0.0,81612.03,15539.79,12423.01,6616.6,34579.4,116191.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,16370,97762.86,411.61,3205.45,101379.92,24555.62,12424.49,370.37,37350.48,138730.4 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,52955,73685.38,0.0,854.47,74539.85,15326.48,12311.13,6064.1,33701.71,108241.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46506,25310.86,0.0,1882.02,27192.88,2540.3,0.0,2165.65,4705.95,31898.83 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,38799,59229.0,5418.05,0.0,64647.05,12207.44,12424.5,5193.67,29825.61,94472.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,11330,50488.34,0.0,0.0,50488.34,12118.2,12161.68,4110.65,28390.53,78878.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,37940,1795.98,0.0,0.0,1795.98,0.0,594.34,139.39,733.73,2529.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32539,121470.55,0.0,0.0,121470.55,24813.23,10439.33,9800.42,45052.98,166523.53 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22356,3292.94,0.0,0.0,3292.94,0.0,1404.98,254.94,1659.92,4952.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,12417,55064.96,742.82,1610.0,57417.78,11553.94,10883.09,4711.33,27148.36,84566.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,19465,14464.92,0.0,433.23,14898.15,3758.01,4120.1,1240.33,9118.44,24016.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,22568,63887.0,9881.39,8836.44,82604.83,14678.21,12424.5,6527.32,33630.03,116234.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,28045,61917.2,18769.61,10124.7,90811.51,15611.41,7311.34,7178.63,30101.38,120912.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,21579,47376.99,0.0,400.0,47776.99,9142.52,6893.15,3923.71,19959.38,67736.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36600,14835.0,0.0,3827.44,18662.44,264.74,1194.78,1267.57,2727.09,21389.53 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,25538,74165.08,0.0,624.0,74789.08,15422.66,12424.5,5949.27,33796.43,108585.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,41883,9852.45,0.0,242.14,10094.59,0.0,3276.37,192.29,3468.66,13563.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,6696,34854.04,1339.99,1084.75,37278.78,7391.69,6611.09,3011.28,17014.06,54292.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36658,4381.3,0.0,0.0,4381.3,0.0,1839.78,349.04,2188.82,6570.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37449,66102.11,430.16,843.18,67375.45,13797.51,12424.5,5570.62,31792.63,99168.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,43173,6920.0,0.0,0.0,6920.0,1287.82,955.72,523.57,2767.11,9687.11 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,2112,1231.44,416.37,0.0,1647.81,0.0,364.37,127.9,492.27,2140.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3892,30232.8,5224.82,484.04,35941.66,7805.47,9422.62,2744.07,19972.16,55913.82 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,13100,175212.01,0.0,15769.08,190981.09,36071.78,12424.5,4503.13,52999.41,243980.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10334,42630.18,0.0,2843.45,45473.63,9344.15,0.0,3762.42,13106.57,58580.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,22277,64123.24,863.19,402.75,65389.18,13125.21,11334.96,5191.12,29651.29,95040.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7310,Transit Power Cable Splicer,36077,101593.57,4787.4,1790.0,108170.97,20864.33,11601.44,8858.5,41324.27,149495.24 +Calendar,2015,4,Community Health,DPH,Public Health,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,21434,97424.03,0.0,2720.0,100144.03,20655.26,12424.5,8210.28,41290.04,141434.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2895,117135.31,1453.69,9550.0,128139.0,23184.69,12424.5,2135.7,37744.89,165883.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31379,63351.35,6905.76,2801.53,73058.64,18030.21,12479.57,5480.34,35990.12,109048.76 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,35747,73749.04,2364.79,3460.33,79574.16,15199.98,12424.5,6326.41,33950.89,113525.05 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,482,1270.64,0.0,0.0,1270.64,0.0,542.14,98.37,640.51,1911.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,21193,81974.51,3229.83,2501.73,87706.07,17038.63,11459.7,7029.28,35527.61,123233.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4108,71053.12,0.0,12236.13,83289.25,0.0,5347.13,1396.66,6743.79,90033.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15349,38587.88,4943.99,1681.67,45213.54,10466.33,12083.06,3230.0,25779.39,70992.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,34640,79546.52,0.0,1850.77,81397.29,16720.7,12133.12,6623.59,35477.41,116874.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,27372,44772.14,0.0,1257.79,46029.93,10750.34,9911.41,3603.26,24265.01,70294.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,11424,142192.03,0.0,0.0,142192.03,28616.29,12424.5,10198.34,51239.13,193431.16 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,9352,125476.0,0.0,0.0,125476.0,25252.11,12424.5,9882.5,47559.11,173035.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,34053,21162.0,0.0,0.0,21162.0,4746.66,2867.19,1730.94,9344.79,30506.79 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,47882,90632.96,4336.29,0.0,94969.25,20733.36,11662.78,1560.04,33956.18,128925.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9147,Traf Signal Electrician Sup I,3198,120163.02,10605.92,8806.37,139575.31,24182.87,12424.5,10114.77,46722.14,186297.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,977,18702.0,0.0,4264.06,22966.06,4194.84,2867.19,1964.33,9026.36,31992.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,51856,51159.36,27.63,1507.56,52694.55,12285.79,12484.36,4310.5,29080.65,81775.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,44511,89276.2,8044.32,840.0,98160.52,18561.99,11015.81,7747.13,37324.93,135485.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45160,11576.35,0.0,0.0,11576.35,200.2,4957.85,927.94,6085.99,17662.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,4910,18552.8,0.0,0.0,18552.8,3452.66,4157.43,1485.7,9095.79,27648.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,48313,85368.07,0.0,624.0,85992.07,17723.32,12424.5,7085.99,37233.81,123225.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,50257,53997.21,750.34,0.0,54747.55,11025.86,11468.76,4365.69,26860.31,81607.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,39815,24015.0,3609.85,5459.13,33083.98,0.0,5734.39,2633.84,8368.23,41452.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,16989,53081.15,3953.74,3278.8,60313.69,12342.69,10309.92,4873.06,27525.67,87839.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22955,5541.25,0.0,6.2,5547.45,0.0,2135.46,430.43,2565.89,8113.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9272,0.0,0.0,220.05,220.05,0.0,34.25,16.83,51.08,271.13 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,27140,88200.31,0.0,0.0,88200.31,18625.96,9453.74,6916.72,34996.42,123196.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51061,48762.06,862.11,4046.63,53670.8,11029.02,6195.83,890.04,18114.89,71785.69 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,11291,2730.0,0.0,0.0,2730.0,508.05,477.86,204.66,1190.57,3920.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,19937,32868.0,0.0,0.0,32868.0,7372.29,5734.38,2512.79,15619.46,48487.46 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,1297,1501.65,0.0,0.0,1501.65,336.83,215.04,127.21,679.08,2180.73 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,32120,108202.58,3530.1,20767.92,132500.6,29219.89,12404.79,2210.84,43835.52,176336.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,38230,139053.23,8663.63,8414.98,156131.84,27469.0,12424.51,2617.86,42511.37,198643.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8690,67595.44,14048.39,5555.74,87199.57,20029.4,13318.47,6804.71,40152.58,127352.15 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,28403,2551.0,0.0,0.0,2551.0,572.19,477.86,197.5,1247.55,3798.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,40964,8919.5,0.0,0.0,8919.5,0.0,2628.26,692.3,3320.56,12240.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,48155,56531.0,0.0,2930.55,59461.55,11796.81,12424.5,4863.49,29084.8,88546.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,23298,76728.0,82.49,0.0,76810.49,15813.98,12424.5,6247.58,34486.06,111296.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,47507,76223.36,9511.01,2399.17,88133.54,16010.93,11301.52,1398.85,28711.3,116844.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32488,45353.61,4572.01,504.42,50430.04,12483.47,8901.97,3879.74,25265.18,75695.22 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,11559,58872.69,5080.77,10283.29,74236.75,17279.09,6690.11,1329.85,25299.05,99535.8 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,52260,220899.1,0.0,11044.95,231944.05,46680.27,12424.5,11640.14,70744.91,302688.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,32721,79395.05,0.0,1984.0,81379.05,16781.81,12424.51,6738.15,35944.47,117323.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45992,66904.45,10798.32,1621.93,79324.7,18717.34,13185.26,6065.88,37968.48,117293.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,32297,98028.24,0.0,70.38,98098.62,20265.03,12095.97,8086.58,40447.58,138546.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,32057,21759.45,0.0,0.0,21759.45,4880.67,3107.61,1822.0,9810.28,31569.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,34296,91331.02,0.0,0.0,91331.02,18823.67,12424.5,7127.77,38375.94,129706.96 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,11488,81542.04,0.0,0.0,81542.04,16806.17,12424.5,6386.98,35617.65,117159.69 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,2500,Med Therapy & Auxiliary,2576,Sprv Clincal Psychologist,52676,39709.53,0.0,5070.73,44780.26,8712.28,4121.59,3526.03,16359.9,61140.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,10349,75927.01,0.0,0.0,75927.01,15648.74,12424.5,6174.95,34248.19,110175.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,30228,7926.15,0.0,279.16,8205.31,0.0,1899.51,653.76,2553.27,10758.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47418,5645.68,0.0,0.0,5645.68,0.0,2393.39,453.62,2847.01,8492.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3430,Chief Nursery Specialist,14792,1647.78,0.0,122.36,1770.14,369.6,232.48,191.38,793.46,2563.6 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,6362,227731.09,0.0,0.0,227731.09,46640.1,12424.5,9982.23,69046.83,296777.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,42093,67518.16,0.0,0.0,67518.16,13916.81,12472.29,5598.9,31988.0,99506.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,21427,97424.02,1780.54,3775.5,102980.06,20701.52,12424.5,8314.25,41440.27,144420.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11876,119467.38,88102.99,9726.97,217297.34,23620.96,12424.5,3660.72,39706.18,257003.52 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,43898,58782.01,0.0,1624.0,60406.01,12448.47,12424.5,5003.29,29876.26,90282.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",33422,130433.24,25371.42,19184.45,174989.11,29351.1,14574.9,2821.48,46747.48,221736.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15536,14563.5,0.0,586.2,15149.7,0.0,5585.03,1174.25,6759.28,21908.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,19019,46263.0,0.0,0.0,46263.0,8387.47,3822.92,7526.42,19736.81,65999.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38775,25785.0,165.48,6231.44,32181.92,4056.6,0.0,6190.41,10247.01,42428.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,32793,31637.37,417.19,0.0,32054.56,5631.65,6941.0,2584.29,15156.94,47211.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,26846,107842.0,10998.4,0.0,118840.4,22226.51,12424.5,9710.95,44361.96,163202.36 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,12541,96332.0,13271.07,2593.2,112196.27,19868.34,12424.5,9171.54,41464.38,153660.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,23188,83843.5,1012.78,8246.94,93103.22,17030.56,10990.91,2216.28,30237.75,123340.97 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,29529,3987.76,0.0,0.0,3987.76,0.0,1469.44,309.52,1778.96,5766.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,14535,55929.51,0.0,1494.28,57423.79,10391.54,8637.41,4609.17,23638.12,81061.91 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,7600,0.0,0.0,3302.81,3302.81,0.0,0.0,252.66,252.66,3555.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8523,3031.88,0.0,0.0,3031.88,0.0,1478.4,235.11,1713.51,4745.39 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,39648,403.75,317.95,0.0,721.7,0.0,119.47,56.02,175.49,897.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,7309,95067.0,0.0,0.0,95067.0,19598.59,10035.18,14053.54,43687.31,138754.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4475,111780.33,31872.38,11569.57,155222.28,23856.94,13858.1,2579.89,40294.93,195517.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,1734,76032.53,0.0,0.0,76032.53,15879.87,10827.84,6067.49,32775.2,108807.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25488,11577.25,0.0,0.0,11577.25,0.0,4957.85,943.88,5901.73,17478.98 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,37804,28170.73,0.0,59.97,28230.7,6787.93,8171.5,2272.25,17231.68,45462.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,35346,89095.32,5686.8,4512.0,99294.12,19211.03,12424.5,7936.83,39572.36,138866.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,17111,134.6,0.0,13.46,148.06,0.0,47.79,11.49,59.28,207.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,36477,6133.5,0.0,0.0,6133.5,1375.74,1385.81,506.21,3267.76,9401.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,49180,68189.0,12748.08,4537.36,85474.44,14868.92,12424.5,6851.85,34145.27,119619.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1326,Customer Service Agent Supv,8530,73467.28,0.0,207.3,73674.58,15350.38,10933.8,5609.79,31893.97,105568.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,44074,129895.02,0.0,0.0,129895.02,26141.48,12424.5,10015.24,48581.22,178476.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,24819,37389.84,0.0,0.0,37389.84,3905.05,11237.01,2914.64,18056.7,55446.54 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,23746,163002.44,0.0,4628.0,167630.44,33702.3,12424.5,10537.64,56664.44,224294.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42091,11388.25,0.0,187.9,11576.15,2485.46,4375.45,897.3,7758.21,19334.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9236,Airport Ground Transport Tech,20550,33415.03,730.5,0.0,34145.53,6507.04,6690.12,2681.36,15878.52,50024.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,36076,61488.39,0.0,621.51,62109.9,12800.3,12374.57,5149.53,30324.4,92434.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,7353,10195.6,944.12,0.0,11139.72,0.0,2676.05,864.63,3540.68,14680.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2875,67524.3,14831.86,4764.19,87120.35,19814.73,13304.85,6667.23,39786.81,126907.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),17931,11556.0,325.01,63.08,11944.09,2050.76,955.73,200.27,3206.76,15150.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,10156,82883.0,984.9,1259.25,85127.15,17331.19,12424.5,7017.62,36773.31,121900.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",20238,67702.0,0.0,0.0,67702.0,12274.4,5256.52,10364.38,27895.3,95597.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51448,102244.23,0.0,12972.8,115217.03,21712.52,8793.38,4347.21,34853.11,150070.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,30650,8613.62,0.0,133.38,8747.0,0.0,2843.3,678.69,3521.99,12268.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39357,3371.33,0.0,0.0,3371.33,0.0,1415.68,262.23,1677.91,5049.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,39100,27125.0,0.0,250.0,27375.0,0.0,5734.38,2156.92,7891.3,35266.3 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,9286,75950.0,8.42,0.0,75958.42,15569.69,11707.7,5616.51,32893.9,108852.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8878,104017.14,0.0,9881.75,113898.89,21832.87,9209.66,9321.25,40363.78,154262.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",9077,4839.44,24.11,651.52,5515.07,744.57,0.0,435.69,1180.26,6695.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40365,26051.06,0.0,0.0,26051.06,6721.18,6546.76,2127.27,15395.21,41446.27 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,48132,59163.01,0.0,0.0,59163.01,11800.28,9079.44,4095.89,24975.61,84138.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18395,81512.42,7426.23,4581.31,93519.96,16767.61,12364.76,1559.75,30692.12,124212.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44239,56531.0,0.0,1975.95,58506.95,11651.3,12424.5,4751.76,28827.56,87334.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,5020,99641.42,0.0,0.0,99641.42,20492.93,12384.78,8082.28,40959.99,140601.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5736,36901.48,4215.23,1348.24,42464.95,9890.81,11525.41,3203.91,24620.13,67085.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16511,69968.11,5913.85,4151.88,80033.84,14564.81,12375.22,6329.35,33269.38,113303.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,9728,32843.96,3151.19,393.2,36388.35,6543.83,6728.58,3011.01,16283.42,52671.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,1042,140145.93,12827.33,11673.79,164647.05,27699.72,12424.5,2795.63,42919.85,207566.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37364,29212.36,0.0,970.07,30182.43,7181.86,0.0,4010.75,11192.61,41375.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,34612,117555.23,0.0,0.0,117555.23,23626.16,12424.5,9455.27,45505.93,163061.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9072,52465.79,0.0,4707.57,57173.36,11370.83,11548.93,4738.19,27657.95,84831.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,48170,87531.06,0.0,0.0,87531.06,18040.64,12424.5,7261.19,37726.33,125257.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35016,110044.49,0.0,12574.52,122619.01,23318.78,9447.41,9777.24,42543.43,165162.44 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,27969,52696.92,0.0,1084.24,53781.16,11642.97,7998.27,4326.61,23967.85,77749.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,38191,27886.15,2986.53,4436.5,35309.18,4949.74,2389.33,596.18,7935.25,43244.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7270,Watershed Keeper Supervisor,8685,78309.51,3076.95,7932.84,89319.3,16134.56,12376.71,6682.08,35193.35,124512.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25391,11278.28,0.0,0.0,11278.28,2028.39,4890.65,903.04,7822.08,19100.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20402,64473.48,20206.6,632.51,85312.59,17835.31,12706.44,6658.96,37200.71,122513.3 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,27671,145000.45,0.0,0.0,145000.45,29143.21,12424.5,18694.82,60262.53,205262.98 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,27888,84668.62,243.68,0.0,84912.3,17457.19,12375.22,6792.22,36624.63,121536.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,29751,42469.55,1521.11,1227.0,45217.66,0.0,5381.94,3499.84,8881.78,54099.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,21568,49083.11,1790.76,1140.0,52013.87,10224.73,10990.9,4161.42,25377.05,77390.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,43072,57050.0,0.0,0.0,57050.0,12749.59,6690.11,4677.68,24117.38,81167.38 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,27837,98689.41,3096.07,0.0,101785.48,22519.4,12424.5,1605.0,36548.9,138334.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39953,89406.37,0.0,4139.02,93545.39,840.5,0.0,7463.76,8304.26,101849.65 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,48738,59110.41,0.0,2892.84,62003.25,13244.51,8846.49,4957.36,27048.36,89051.61 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4880,99446.0,0.0,375.0,99821.0,18925.34,7357.64,7932.1,34215.08,134036.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,7644,24475.52,15064.31,3256.13,42795.96,6163.18,6212.25,3408.81,15784.24,58580.2 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",11487,198139.0,0.0,2560.36,200699.36,40409.2,12424.5,11248.09,64081.79,264781.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,6064,46034.06,4729.24,5017.53,55780.83,12129.95,11513.59,4501.11,28144.65,83925.48 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),36500,124553.71,0.0,1562.5,126116.21,25326.14,12424.5,9874.05,47624.69,173740.9 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,20638,112636.0,0.0,48439.25,161075.25,28383.19,6594.55,10235.65,45213.39,206288.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,52210,156746.06,0.0,0.0,156746.06,31545.23,12424.52,10485.4,54455.15,211201.21 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,12439,2599.2,0.0,11568.3,14167.5,622.13,382.3,1090.75,2095.18,16262.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,26789,13132.19,0.0,0.0,13132.19,2945.54,2483.35,1116.62,6545.51,19677.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11472,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3376.05,18201.9,61969.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32074,42344.86,307.09,2234.95,44886.9,797.4,3289.51,3269.15,7356.06,52242.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,1988,68067.01,0.0,0.0,68067.01,14029.01,12424.5,5593.72,32047.23,100114.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10213,45622.49,193.6,4848.39,50664.48,11819.22,11069.5,4031.01,26919.73,77584.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31619,6718.7,0.0,506.31,7225.01,0.0,0.0,821.44,821.44,8046.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,6547,71022.0,841.05,2842.8,74705.85,15285.04,9079.44,6006.89,30371.37,105077.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,430,12276.27,0.0,288.58,12564.85,0.0,4688.56,974.45,5663.01,18227.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,12371,21265.3,0.0,0.0,21265.3,5486.49,5686.6,1735.19,12908.28,34173.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,37247,62231.72,21134.26,1956.88,85322.86,12961.18,12376.71,6713.84,32051.73,117374.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,11530,97793.0,14245.61,24219.05,136257.66,23880.45,12424.51,9994.72,46299.68,182557.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31946,0.0,0.0,4519.7,4519.7,0.0,68.5,326.63,395.13,4914.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,44170,65361.05,0.0,915.87,66276.92,14313.12,7167.97,5331.55,26812.64,93089.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11392,77856.3,802.63,1711.72,80370.65,15750.04,11946.64,4335.53,32032.21,112402.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",39380,182293.01,0.0,0.0,182293.01,36725.46,12424.5,28388.3,77538.26,259831.27 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4090,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,11057.77,60871.1,246660.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33684,62748.9,0.0,10458.2,73207.1,862.38,0.0,6838.33,7700.71,80907.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,51385,63495.07,1689.94,1610.97,66795.98,13148.58,11946.64,5519.27,30614.49,97410.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,46268,72699.04,0.0,624.0,73323.04,15112.31,12424.5,5932.66,33469.47,106792.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,96,2962.5,0.0,0.0,2962.5,0.0,896.0,229.36,1125.36,4087.86 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,3679,40096.82,0.0,0.0,40096.82,0.0,5402.87,3108.13,8511.0,48607.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2262,57116.0,5224.99,719.93,63060.92,15017.72,12912.7,4752.53,32682.95,95743.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48827,58742.01,4704.13,1180.55,64626.69,16668.44,11620.37,4979.63,33268.44,97895.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,27205,66263.03,3657.03,0.0,69920.06,13657.16,12424.5,5775.75,31857.41,101777.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35013,75550.32,0.0,125.0,75675.32,15569.3,12424.51,6276.07,34269.88,109945.2 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,10964,79023.83,0.0,0.0,79023.83,16249.34,12414.05,6239.58,34902.97,113926.8 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,41310,172907.6,0.0,17290.76,190198.36,38329.1,11898.85,10912.31,61140.26,251338.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11687,128592.25,12359.32,2421.48,143373.05,26334.38,11268.07,10129.17,47731.62,191104.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4763,113233.59,12325.1,18132.42,143691.11,25036.02,15196.12,2348.04,42580.18,186271.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16775,77976.5,2297.38,0.0,80273.88,16119.58,10694.52,6353.57,33167.67,113441.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16647,52573.51,0.0,3744.5,56318.01,12204.05,11690.03,4212.42,28106.5,84424.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3273,118245.77,4641.96,6887.48,129775.21,23425.74,12298.71,2208.82,37933.27,167708.48 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,46847,96930.02,0.0,0.0,96930.02,19977.61,12424.5,7854.83,40256.94,137186.96 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,41911,67582.38,7705.69,5509.47,80797.54,14430.59,12364.77,6652.06,33447.42,114244.96 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,48612,35781.91,0.0,120.0,35901.91,7895.3,9963.49,2732.76,20591.55,56493.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,23158,61674.13,0.0,620.1,62294.23,12840.53,12412.56,5164.1,30417.19,92711.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34398,124200.05,8911.1,9971.29,143082.44,24573.29,12424.5,2429.58,39427.37,182509.81 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2492,97773.96,45566.66,8517.94,151858.56,25853.03,12424.5,2534.54,40812.07,192670.63 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,36595,87713.07,0.0,0.0,87713.07,18078.2,12424.51,7206.66,37709.37,125422.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,35182,83148.1,0.0,0.0,83148.1,17137.11,12424.47,6684.72,36246.3,119394.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,10587,8776.0,0.0,0.0,8776.0,1968.44,1911.46,715.9,4595.8,13371.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,22662,46267.21,263.1,0.0,46530.31,10153.8,12203.49,3757.2,26114.49,72644.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,36425,1068.2,0.0,18.36,1086.56,0.0,0.0,0.0,0.0,1086.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,32532,136454.95,0.0,0.0,136454.95,27357.28,11696.11,17359.49,56412.88,192867.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48181,31755.6,6413.34,3736.98,41905.92,7819.74,8458.22,3172.07,19450.03,61355.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,33795,4313.74,0.0,12.27,4326.01,0.0,2017.01,335.48,2352.49,6678.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39478,25701.15,0.0,5071.1,30772.25,1776.98,1935.36,4941.7,8654.04,39426.29 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,44497,67911.0,8508.51,9580.47,85999.98,15520.01,12424.5,6634.55,34579.06,120579.04 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,10482,89081.2,0.0,0.0,89081.2,18341.17,12424.5,7100.71,37866.38,126947.58 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50460,97755.25,5955.89,11222.55,114933.69,26491.45,12424.5,1910.23,40826.18,155759.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,5910,251.48,0.0,0.0,251.48,0.0,83.62,24.15,107.77,359.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,11898,0.0,0.0,6969.94,6969.94,0.0,0.0,533.2,533.2,7503.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,48131,67997.0,0.0,1080.0,69077.0,14210.06,12424.5,5574.5,32209.06,101286.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,45860,66102.0,9275.15,3574.49,78951.64,14358.92,12424.5,6479.97,33263.39,112215.03 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,40618,40808.34,860.49,4742.93,46411.76,10738.87,12424.5,3752.39,26915.76,73327.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,38146,118104.06,0.0,0.0,118104.06,23768.42,12424.5,9322.16,45515.08,163619.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,34806,142116.58,11566.62,4193.09,157876.29,28744.0,12424.5,1362.21,42530.71,200407.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45998,97784.93,72876.47,18744.29,189405.69,28349.47,12424.5,3117.63,43891.6,233297.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,28747,9169.41,0.0,0.0,9169.41,0.0,3034.45,728.19,3762.64,12932.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,46123,78963.09,0.0,624.0,79587.09,16403.16,12424.5,6153.55,34981.21,114568.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,7854,84630.01,0.0,6109.64,90739.65,18567.78,6212.25,10746.22,35526.25,126265.9 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,4024,95264.0,0.0,0.0,95264.0,18102.2,7645.84,5651.28,31399.32,126663.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,29917,31584.0,600.43,11386.73,43571.16,5607.96,2867.19,712.35,9187.5,52758.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4976,2205.01,0.0,0.0,2205.01,0.0,1075.2,171.08,1246.28,3451.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17247,1556.59,0.0,0.0,1556.59,0.0,674.99,120.51,795.5,2352.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,24690,91331.04,0.0,0.0,91331.04,18823.69,12424.5,6813.1,38061.29,129392.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2820,Senior Health Program Planner,36620,105804.01,0.0,0.0,105804.01,21806.52,12424.5,8569.6,42800.62,148604.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,1.0,Miscellaneous Unrepresented Employees,3400,Agriculture & Horticulture,3438,Arborist Technician Supv II,9300,92455.01,0.0,0.0,92455.01,19131.22,11946.64,7403.46,38481.32,130936.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17562,149099.0,0.0,8902.45,158001.45,29436.25,12424.5,9116.22,50976.97,208978.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34678,426.61,0.0,0.88,427.49,0.0,232.96,33.09,266.05,693.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21523,147581.65,1060.04,31349.55,179991.24,34300.09,12297.27,10783.77,57381.13,237372.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,17854,171335.0,0.0,0.0,171335.0,34460.98,12424.5,19022.5,65907.98,237242.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9314,46071.25,1040.82,1872.16,48984.23,0.0,3464.53,872.5,4337.03,53321.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2922,Senior Medical Social Worker,24711,2990.84,0.0,251.19,3242.03,675.17,383.79,255.55,1314.51,4556.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,3136,8139.41,0.0,0.0,8139.41,0.0,1682.98,630.61,2313.59,10453.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,32651,50910.69,0.0,1432.59,52343.28,11476.59,10971.85,4265.14,26713.58,79056.86 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,4575,5640.0,0.0,0.0,5640.0,0.0,336.9,437.32,774.22,6414.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,39879,8469.33,0.0,114.96,8584.29,0.0,2816.42,665.96,3482.38,12066.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,19290,80808.71,7415.5,7923.91,96148.12,17032.97,12376.71,7760.66,37170.34,133318.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,23904,97587.3,52724.64,14575.34,164887.28,27302.2,12400.61,2813.34,42516.15,207403.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51135,99272.7,9415.9,4948.8,113637.4,20618.27,12424.5,1363.76,34406.53,148043.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17503,9022.63,0.0,1102.0,10124.63,1649.02,3912.52,795.34,6356.88,16481.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,14435,2672.6,0.0,0.0,2672.6,0.0,669.02,207.42,876.44,3549.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45210,8293.52,0.0,569.52,8863.04,0.0,707.84,541.81,1249.65,10112.69 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,6749,137101.02,0.0,0.0,137101.02,27592.1,12424.5,17353.8,57370.4,194471.42 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,10316,57735.6,0.0,4067.5,61803.1,11896.71,12424.5,5072.46,29393.67,91196.77 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,15861,88296.06,0.0,5322.0,93618.06,18337.86,12424.5,7768.54,38530.9,132148.96 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,750,62104.0,0.0,0.0,62104.0,12387.08,9079.45,4820.89,26287.42,88391.42 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,48385,101047.03,0.0,3314.45,104361.48,21477.48,12424.5,8367.52,42269.5,146630.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,13413,0.0,0.0,5216.41,5216.41,0.0,0.0,399.06,399.06,5615.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,5305,65592.0,0.0,824.0,66416.0,13647.34,12424.5,5437.67,31509.51,97925.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4643,61891.91,0.0,3082.93,64974.84,13509.91,5686.6,2653.34,21849.85,86824.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,29156,80290.54,0.0,1170.0,81460.54,16673.74,10245.37,5964.34,32883.45,114343.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,598,78610.03,0.0,40.0,78650.03,16220.88,12424.5,6272.03,34917.41,113567.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45066,68762.68,20797.99,637.58,90198.25,19037.05,13555.01,6807.39,39399.45,129597.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9481,1418.83,0.0,46.83,1465.66,0.0,615.25,113.47,728.72,2194.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,13309,158264.0,0.0,5372.24,163636.24,32940.48,12424.5,10479.25,55844.23,219480.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,33440,54124.03,9226.7,2530.2,65880.93,12250.25,12424.5,5373.25,30048.0,95928.93 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,44679,58885.97,38985.27,13496.24,111367.48,18084.07,6690.11,1908.51,26682.69,138050.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,16290,51688.1,0.0,0.0,51688.1,12394.49,12424.5,3928.91,28747.9,80436.0 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8602,Emergency Services Coord II,8121,64466.45,0.0,0.0,64466.45,13116.05,9858.79,5031.85,28006.69,92473.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,27645,49083.1,0.0,40.0,49123.1,10006.25,10990.9,3988.93,24986.08,74109.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),47380,10710.9,0.0,0.0,10710.9,0.0,3058.33,831.33,3889.66,14600.56 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,28417,240727.0,0.0,0.0,240727.0,48347.77,12424.5,20116.59,80888.86,321615.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,13022,64746.87,0.0,0.0,64746.87,13274.31,9603.6,5034.34,27912.25,92659.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,10785,58242.31,3159.64,1670.0,63071.95,12314.21,11530.53,4929.26,28774.0,91845.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",3513,93738.0,5855.89,0.0,99593.89,19319.82,12424.5,8043.26,39787.58,139381.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,42583,56246.11,393.53,0.0,56639.64,11689.89,11468.77,4426.37,27585.03,84224.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,51198,67325.31,0.0,0.0,67325.31,13873.55,12436.45,5536.32,31846.32,99171.63 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1041,IS Engineer-Assistant,10832,108004.62,0.0,2361.63,110366.25,22004.66,12376.71,8947.71,43329.08,153695.33 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,10563,56276.05,201.65,1671.6,58149.3,12681.79,12424.5,4814.89,29921.18,88070.48 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,2970,3129.2,1425.94,164.81,4719.95,613.02,477.86,366.16,1457.04,6176.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,18563,56713.48,9956.32,8619.71,75289.51,13788.5,12251.27,5991.93,32031.7,107321.21 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,16048,77781.1,0.0,17877.17,95658.27,16216.96,5098.23,7536.53,28851.72,124509.99 +Calendar,2015,4,Community Health,DPH,Public Health,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,33278,86663.01,23877.37,2874.83,113415.21,18351.7,12424.5,9217.96,39994.16,153409.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,50388,52528.06,0.0,0.0,52528.06,11739.03,6690.11,4230.87,22660.01,75188.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47691,112356.44,19901.28,12402.62,144660.34,24002.29,14766.03,2086.89,40855.21,185515.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52083,55195.94,360.32,4728.08,60284.34,12222.37,12131.69,4984.88,29338.94,89623.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51188,30246.59,4035.47,516.7,34798.76,7810.11,9424.64,2499.42,19734.17,54532.93 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,355C,Ct Comp Facilities Coord,24813,9153.75,0.0,0.0,9153.75,0.0,0.0,726.29,726.29,9880.04 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,29176,72620.81,2636.53,5618.2,80875.54,15911.8,9622.18,6653.56,32187.54,113063.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27949,42524.15,2309.34,1540.24,46373.73,11350.39,12622.94,3551.66,27524.99,73898.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,29606,108038.01,16882.75,14969.77,139890.53,24275.1,12424.5,10074.99,46774.59,186665.12 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),48808,182107.15,0.0,5204.64,187311.79,37740.88,12281.15,10954.82,60976.85,248288.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,41978,106116.0,0.0,4960.38,111076.38,22896.24,12424.51,8513.46,43834.21,154910.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,25405,20865.22,0.0,0.0,20865.22,4588.26,5734.37,1693.39,12016.02,32881.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,43229,3486.5,0.0,550.5,4037.0,766.68,907.95,303.07,1977.7,6014.7 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,29560,172953.38,0.0,26588.72,199542.1,35842.0,8571.71,10972.04,55385.75,254927.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,16086,44498.1,0.0,3480.74,47978.84,10752.02,9079.44,3857.66,23689.12,71667.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39273,61422.19,14615.17,4534.65,80572.01,17966.15,12098.42,6046.51,36111.08,116683.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30427,71349.23,0.0,15.77,71365.0,0.0,0.0,5583.08,5583.08,76948.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32026,138880.64,74851.17,23242.77,236974.58,27438.65,12424.5,3996.35,43859.5,280834.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,22863,64463.71,5008.96,14773.51,84246.18,15768.02,12424.5,6903.2,35095.72,119341.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,16348,68067.02,0.0,624.0,68691.02,14157.65,12424.5,5638.52,32220.67,100911.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,6912,70245.0,22088.3,4559.5,96892.8,14616.8,12424.5,7914.43,34955.73,131848.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,52229,56312.47,0.0,0.0,56312.47,12557.19,12405.98,4535.69,29498.86,85811.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25703,335.25,0.0,0.0,335.25,0.0,0.0,519.39,519.39,854.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,33079,100554.0,0.0,0.0,100554.0,20724.83,12424.5,8211.31,41360.64,141914.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,50123,89206.34,0.0,552.3,89758.64,18486.09,10996.88,7288.68,36771.65,126530.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,4935,93681.04,0.0,1134.31,94815.35,19541.1,12424.5,7715.98,39681.58,134496.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,28410,121141.51,11040.63,3160.66,135342.8,24045.6,12424.5,2297.7,38767.8,174110.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49848,14631.88,0.0,0.0,14631.88,0.0,4853.34,1134.47,5987.81,20619.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,17594,88600.08,284.01,4990.12,93874.21,18285.04,12423.34,7563.89,38272.27,132146.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,41202,84599.08,0.0,1480.0,86079.08,17740.79,12424.5,7089.17,37254.46,123333.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,31521,140925.56,16423.22,16936.89,174285.67,27888.67,12424.5,2915.13,43228.3,217513.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",50143,130329.31,1964.41,16550.01,148843.73,28746.11,15052.76,2525.57,46324.44,195168.17 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0648,"Court Invstgtor, Superior Crt",32657,103575.8,0.0,5623.0,109198.8,21487.06,12380.0,9024.67,42891.73,152090.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,9727,142941.44,8945.43,26794.66,178681.53,29080.4,12424.5,2991.73,44496.63,223178.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35154,11664.2,0.0,825.75,12489.95,2564.97,3058.34,999.42,6622.73,19112.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,28680,155969.55,0.0,0.0,155969.55,31289.28,12316.98,18727.64,62333.9,218303.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,39706,23837.0,0.0,0.0,23837.0,4180.0,4061.86,1904.28,10146.14,33983.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,10107,71491.01,1679.95,9603.12,82774.08,16700.27,12424.51,6785.42,35910.2,118684.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3320,Animal Keeper,19831,34530.4,47.61,5921.58,40499.59,7745.2,6498.97,3314.01,17558.18,58057.77 +Calendar,2015,1,Public Protection,PDR,Public Defender,1.0,Miscellaneous Unrepresented Employees,8400,Probation & Parole,8446,Court Alternative Specialist 1,20788,70448.01,0.0,960.0,71408.01,14715.18,12424.5,5883.64,33023.32,104431.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,50038,63814.15,0.0,441.51,64255.66,13145.02,11361.26,5068.18,29574.46,93830.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,4670,24756.0,292.43,3346.21,28394.64,6819.23,5734.39,2346.04,14899.66,43294.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,8145,53976.86,0.0,802.13,54778.99,11383.35,10781.9,4506.29,26671.54,81450.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,3354,30663.72,7497.38,7386.82,45547.92,8196.0,3552.27,763.9,12512.17,58060.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,48571,114782.37,0.0,0.0,114782.37,23166.2,12084.02,8606.5,43856.72,158639.09 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,38075,23273.03,7955.11,2445.38,33673.52,4557.05,3345.06,2728.93,10631.04,44304.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,36462,22384.75,36.66,0.0,22421.41,0.0,5471.56,1735.86,7207.42,29628.83 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,18946,87713.02,0.0,0.0,87713.02,18078.17,12424.5,7448.58,37951.25,125664.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51003,19799.7,0.0,0.0,19799.7,0.0,1672.53,1536.55,3209.08,23008.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,18259,72611.87,0.0,905.32,73517.19,15151.04,12409.51,6015.96,33576.51,107093.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,13411,102732.0,23077.69,4389.29,130198.98,21692.24,11946.68,9910.93,43549.85,173748.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,40747,133087.02,0.0,2546.69,135633.71,26783.95,12424.5,10101.41,49309.86,184943.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,30321,37867.51,0.0,830.0,38697.51,7967.6,7471.9,2979.47,18418.97,57116.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45354,51381.61,0.0,0.0,51381.61,0.0,4211.19,3988.03,8199.22,59580.83 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,26741,83088.13,0.0,4698.0,87786.13,17041.06,11737.28,7057.53,35835.87,123622.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,32884,75536.52,10115.69,30.0,85682.21,15565.65,12230.4,6985.31,34781.36,120463.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13397,1426.87,0.0,0.0,1426.87,337.56,430.07,110.76,878.39,2305.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,5425,0.0,0.0,150.0,150.0,0.0,68.5,0.0,68.5,218.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3051,1460.15,0.0,0.0,1460.15,0.0,633.17,113.33,746.5,2206.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,45336,50218.2,5075.55,3984.6,59278.35,11618.89,11086.43,4755.05,27460.37,86738.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40622,11231.94,0.0,0.0,11231.94,1125.07,4812.46,907.42,6844.95,18076.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,45130,9489.8,266.89,227.96,9984.65,0.0,2198.18,774.63,2972.81,12957.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,19185,87225.92,0.0,0.0,87225.92,17926.12,12177.85,6982.76,37086.73,124312.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47589,61049.91,4756.43,732.34,66538.68,13987.76,12022.56,5025.86,31036.18,97574.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,4780,68078.09,0.0,0.0,68078.09,14079.85,11952.13,5204.97,31236.95,99315.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,13723,100761.0,1864.44,8915.11,111540.55,22606.04,12424.49,8916.5,43947.03,155487.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,38761,88954.2,0.0,0.0,88954.2,18331.65,12424.5,7242.68,37998.83,126953.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,30502,17315.84,0.0,0.0,17315.84,3807.77,5734.39,1400.4,10942.56,28258.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25989,33514.83,9661.94,2686.59,45863.36,5954.33,3345.06,773.24,10072.63,55935.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9203,Sr Airport Communications Disp,9169,92340.23,484.52,11365.87,104190.62,20600.71,12364.77,8547.96,41513.44,145704.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,49016,81157.01,348.98,2600.0,84105.99,17248.33,12424.5,7032.88,36705.71,120811.7 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,14242,25452.01,0.0,0.0,25452.01,6545.79,6690.11,2130.68,15366.58,40818.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,31596,17961.99,0.0,366.84,18328.83,0.0,4460.59,1420.8,5881.39,24210.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,10890,67261.0,0.0,0.0,67261.0,13862.82,12424.5,5443.16,31730.48,98991.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,8448,58292.0,16339.49,6871.54,81503.03,12879.23,6212.25,1349.61,20441.09,101944.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0951,Dep Dir I,14636,90527.57,0.0,21798.1,112325.67,19118.42,10513.04,16187.95,45819.41,158145.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,34667,26060.0,9784.73,3101.68,38946.41,5626.3,2389.33,658.93,8674.56,47620.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,17665,5550.04,0.0,19.55,5569.59,0.0,1844.26,432.0,2276.26,7845.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,21919,56250.93,0.0,0.0,56250.93,0.0,8628.46,4359.31,12987.77,69238.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",28703,122878.81,8983.14,8088.23,139950.18,25562.68,14190.52,2329.86,42083.06,182033.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,8542,53885.09,6092.32,6615.67,66593.08,13076.37,11985.46,5311.31,30373.14,96966.22 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,355,16884.0,952.81,1553.48,19390.29,3824.73,3345.06,1599.04,8768.83,28159.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,22344,12899.0,0.0,0.0,12899.0,2400.49,2867.19,1036.69,6304.37,19203.37 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,31465,9620.03,234.03,0.0,9854.06,0.0,2389.33,763.58,3152.91,13006.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16577,132058.28,611.59,30691.42,163361.29,18409.31,11005.24,3465.45,32880.0,196241.29 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1814,Benefits Supervisor,38845,109563.01,0.0,160.0,109723.01,22083.36,12424.5,8813.73,43321.59,153044.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,50629,83755.01,11356.47,8796.42,103907.9,18068.55,12364.77,8543.41,38976.73,142884.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,11846,68067.04,0.0,624.0,68691.04,14157.65,12424.5,5690.27,32272.42,100963.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27749,41083.62,1302.53,3099.34,45485.49,10287.88,10793.79,3666.87,24748.54,70234.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,13962,158707.03,0.0,0.0,158707.03,31940.4,12424.5,17760.66,62125.56,220832.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,3821,51553.99,590.29,0.0,52144.28,11702.64,10564.6,4004.3,26271.54,78415.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,20950,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5121.38,30398.5,92757.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5345,125552.99,0.0,18506.9,144059.89,28679.0,11115.45,10104.83,49899.28,193959.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,38857,85004.01,22073.96,10421.16,117499.13,19003.5,12424.5,9575.67,41003.67,158502.8 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,789,166640.09,0.0,0.0,166640.09,33536.82,12424.5,18341.67,64302.99,230943.08 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,41326,43660.0,0.0,0.0,43660.0,9360.25,8840.51,3524.33,21725.09,65385.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,36178,130845.83,10513.69,7850.79,149210.31,27258.47,15196.12,2488.12,44942.71,194153.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35236,2469.7,0.0,490.69,2960.39,334.07,0.0,1141.65,1475.72,4436.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18840,7622.52,0.0,0.0,7622.52,2972.8,628.82,1630.63,5232.25,12854.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24145,113233.6,61253.74,14255.88,188743.22,24152.73,15196.12,3215.68,42564.53,231307.75 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,50314,123427.0,0.0,0.0,123427.0,24740.24,12424.53,17146.55,54311.32,177738.32 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),24084,50115.5,3919.31,1020.0,55054.81,9961.27,7645.86,939.48,18546.61,73601.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4537,129229.03,1417.32,17573.46,148219.81,28663.94,11096.03,10257.24,50017.21,198237.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,33556,61454.05,9698.17,7883.55,79035.77,13487.84,12367.75,6468.46,32324.05,111359.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28993,84816.54,0.0,11877.03,96693.57,19425.53,7507.26,7852.79,34785.58,131479.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27455,76461.1,520.1,250.0,77231.2,15324.33,6991.17,6330.61,28646.11,105877.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,823,112879.2,88769.0,22794.05,224442.25,25991.57,15148.34,3775.17,44915.08,269357.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,6231,156746.0,0.0,0.0,156746.0,31545.23,12424.47,10384.75,54354.45,211100.45 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,26597,121883.61,0.0,0.0,121883.61,24494.82,12233.36,9577.97,46306.15,168189.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,42308,39475.74,117.23,960.66,40553.63,8952.46,4730.88,3157.44,16840.78,57394.41 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,41058,94956.47,0.0,0.0,94956.47,19532.68,12331.32,6895.98,38759.98,133716.45 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,17675,11500.5,0.0,0.0,11500.5,2523.2,955.73,1265.32,4744.25,16244.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,41550,43641.53,7128.41,1342.01,52111.95,8147.78,5298.33,4147.42,17593.53,69705.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28443,59583.23,2725.31,604.07,62912.61,16508.06,11740.08,4581.34,32829.48,95742.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,22259,32486.61,2830.23,4047.91,39364.75,6112.17,3345.06,661.09,10118.32,49483.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10575,60363.6,0.0,10691.28,71054.88,13302.44,6307.83,1175.84,20786.11,91840.99 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,9319,78141.2,0.0,0.0,78141.2,16087.49,12424.5,6115.21,34627.2,112768.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28787,97762.85,541.91,4676.7,102981.46,24924.25,12424.5,991.57,38340.32,141321.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,18247,60789.16,5671.49,0.0,66460.65,12510.83,12372.23,5349.4,30232.46,96693.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10726,9617.4,0.0,1602.9,11220.3,882.81,0.0,3663.13,4545.94,15766.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,45895,86533.89,7988.32,19218.0,113740.21,17838.4,12424.52,9234.36,39497.28,153237.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,20674,70917.16,6492.5,7575.09,84984.75,14140.03,9079.45,6747.43,29966.91,114951.66 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,20735,92282.06,0.0,564.0,92846.06,19134.75,12424.5,7469.66,39028.91,131874.97 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,32896,83528.02,0.0,880.0,84408.02,17397.65,12424.5,6930.51,36752.66,121160.68 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,52190,79500.84,0.0,0.0,79500.84,16218.29,11038.67,6282.31,33539.27,113040.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33602,1313.5,0.0,35.27,1348.77,4602.29,101.96,40.6,4744.85,6093.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,44046,36768.75,0.0,773.74,37542.49,7947.88,7436.78,2296.67,17681.33,55223.82 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),12095,85031.38,462.3,4350.72,89844.4,18374.09,12424.49,1495.96,32294.54,122138.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,29469,48983.23,0.0,10.62,48993.85,10087.25,9857.95,4063.8,24009.0,73002.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,9443,16394.0,0.0,25.76,16419.76,3682.95,3345.06,1344.13,8372.14,24791.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9329,4103.58,0.0,0.0,4103.58,0.0,1369.38,318.32,1687.7,5791.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,18889,4248.0,0.0,0.0,4248.0,790.56,955.73,329.71,2076.0,6324.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35562,60506.26,71.66,200.0,60777.92,12463.03,11457.66,5043.26,28963.95,89741.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,42891,33987.65,0.0,1385.32,35372.97,7353.11,6241.94,2863.1,16458.15,51831.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22581,692.3,0.0,0.0,692.3,0.0,0.0,47.2,47.2,739.5 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42511,128953.92,0.0,1562.5,130516.42,26244.44,12424.5,9966.13,48635.07,179151.49 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,1855,9245.2,0.0,2877.41,12122.61,0.0,0.0,175.78,175.78,12298.39 +Calendar,2015,4,Community Health,DPH,Public Health,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,8707,66102.02,770.1,3090.0,69962.12,14280.49,12424.5,5769.59,32474.58,102436.7 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,27272,52708.6,0.0,428.0,53136.6,12723.47,12424.5,4320.57,29468.54,82605.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29477,2204.0,179.35,63.23,2446.58,584.95,955.74,199.21,1739.9,4186.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,42426,97761.79,3712.62,14161.06,115635.47,27215.9,12424.5,1913.16,41553.56,157189.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8857,81856.6,3965.04,2747.03,88568.67,16861.28,12424.5,1415.33,30701.11,119269.78 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",43162,9075.83,0.0,436.61,9512.44,0.0,1889.96,737.13,2627.09,12139.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40167,41188.99,2304.16,4963.32,48456.47,11797.13,0.0,6605.93,18403.06,66859.53 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",1437,13160.95,4615.65,505.04,18281.64,0.0,0.0,1445.17,1445.17,19726.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,13976,125334.13,0.0,3898.23,129232.36,26004.18,12376.73,9986.63,48367.54,177599.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,27034,113369.02,80492.78,20038.96,213900.76,24007.93,12424.51,11345.83,47778.27,261679.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52241,65964.8,6018.85,752.97,72736.62,18302.22,13000.63,4902.03,36204.88,108941.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,34183,46358.0,0.0,4841.23,51199.23,10468.12,6212.25,4190.93,20871.3,72070.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,30630,70245.0,264.05,8649.54,79158.59,15575.62,12424.5,6259.9,34260.02,113418.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,9827,63964.36,3059.53,1240.0,68263.89,13458.41,11550.6,5392.08,30401.09,98664.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,14600,67911.01,4386.26,2857.9,75155.17,14125.56,12424.5,5934.34,32484.4,107639.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42860,149099.0,0.0,10660.13,159759.13,18083.61,12424.5,5327.9,35836.01,195595.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",2632,0.0,0.0,62.39,62.39,0.0,0.0,4.77,4.77,67.16 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,29541,53754.16,905.18,1470.0,56129.34,13170.95,12376.71,4444.92,29992.58,86121.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16912,127869.18,4133.32,47959.58,179962.08,27059.0,10981.35,5435.69,43476.04,223438.12 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,24872,106116.03,0.0,0.0,106116.03,21870.85,12424.5,8469.63,42764.98,148881.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11598,65008.3,20778.32,1631.79,87418.41,18264.17,12810.32,6831.34,37905.83,125324.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,1884,25582.0,351.0,0.0,25933.0,2581.63,8416.41,2046.16,13044.2,38977.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36651,70245.01,352.53,9965.3,80562.84,15754.64,12424.5,6577.7,34756.84,115319.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39599,36517.54,3605.67,1091.03,41214.24,9742.74,11409.38,3141.88,24294.0,65508.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,49835,75616.85,0.0,9206.77,84823.62,16797.61,12373.43,7001.7,36172.74,120996.36 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,3180,212076.0,0.0,0.0,212076.0,42570.8,12424.5,26372.7,81368.0,293444.0 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,7215,32093.97,0.0,194.3,32288.27,7902.78,7962.42,2640.22,18505.42,50793.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51463,6158.9,0.0,0.0,6158.9,0.0,525.65,478.03,1003.68,7162.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,50753,89.81,0.0,0.0,89.81,0.0,0.0,0.0,0.0,89.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,36157,21348.46,0.0,0.0,21348.46,0.0,2833.33,1654.89,4488.22,25836.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44281,70245.0,15225.48,4317.29,89787.77,14940.08,12424.5,7352.48,34717.06,124504.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33174,0.0,0.0,10379.45,10379.45,0.0,0.0,794.03,794.03,11173.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,40060,84644.0,5736.61,14205.46,104586.07,19761.48,12424.5,8220.52,40406.5,144992.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45721,94425.47,3497.09,14178.77,112101.33,26384.23,12012.89,1907.03,40304.15,152405.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12375,42824.7,4237.87,1129.69,48192.26,11425.33,13042.92,3652.26,28120.51,76312.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,20120,84644.01,4667.25,4188.05,93499.31,17615.41,12424.5,7456.36,37496.27,130995.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16194,42050.15,199.4,4736.55,46986.1,10935.77,11122.31,3783.04,25841.12,72827.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40775,56015.76,0.0,5360.25,61376.01,12303.57,12313.99,4933.63,29551.19,90927.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39263,118680.0,873.89,1892.17,121446.06,23162.78,12376.71,9776.91,45316.4,166762.46 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,30053,99679.61,0.0,0.0,99679.61,20501.52,12137.78,7729.22,40368.52,140048.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,12543,71612.0,1072.28,624.0,73308.28,14889.33,12424.5,6074.02,33387.85,106696.13 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,14291,116612.51,0.0,0.0,116612.51,23441.33,12424.5,9335.98,45201.81,161814.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,23279,4188.0,0.0,0.0,4188.0,779.39,477.87,323.46,1580.72,5768.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,50443,138705.48,12244.01,10833.74,161783.23,27430.96,12424.5,2710.14,42565.6,204348.83 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,33486,78963.0,0.0,624.0,79587.0,16403.15,12424.5,6108.77,34936.42,114523.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,25224,118427.04,0.0,0.0,118427.04,23833.78,12424.5,16966.51,53224.79,171651.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,45412,139379.75,44115.65,5821.44,189316.84,27589.02,12424.5,3182.28,43195.8,232512.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,19797,72550.8,0.0,0.0,72550.8,9386.48,12424.5,5859.92,27670.9,100221.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31816,112159.74,22969.97,21228.46,156358.17,25264.14,15052.76,2618.83,42935.73,199293.9 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,51427,97584.16,11794.96,11674.46,121053.58,26580.45,12400.61,2061.75,41042.81,162096.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,49809,83409.62,0.0,1060.0,84469.62,17404.02,11110.37,6872.0,35386.39,119856.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19855,39272.03,5424.2,1544.55,46240.78,10588.85,12282.64,3116.86,25988.35,72229.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,41178,49625.4,59.48,1460.0,51144.88,10399.73,10990.9,4016.29,25406.92,76551.8 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,20797,129895.07,0.0,0.0,129895.07,26141.51,12424.5,9937.24,48503.25,178398.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,20878,66102.0,872.62,1733.77,68708.39,13955.41,12424.5,5670.13,32050.04,100758.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32090,2321.09,0.0,830.63,3151.72,598.84,1006.51,258.19,1863.54,5015.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17511,64734.07,26216.61,6972.58,97923.26,19786.85,12779.68,7650.57,40217.1,138140.36 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,6964,108407.62,8027.85,16302.08,132737.55,28802.89,12424.5,2253.11,43480.5,176218.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,45823,55824.73,264.38,515.0,56604.11,12550.06,12367.63,4606.98,29524.67,86128.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",4768,6519.98,0.0,0.0,6519.98,253.23,1379.84,520.27,2153.34,8673.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,10930,32384.3,1913.69,4942.06,39240.05,5749.23,2867.19,662.26,9278.68,48518.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18923,133508.44,0.0,8112.8,141621.24,26432.68,12156.42,8381.17,46970.27,188591.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3215,Aquatics Facility Supervisor,14494,72612.46,0.0,686.99,73299.45,15060.06,11994.43,5835.72,32890.21,106189.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,12146,0.0,0.0,2765.67,2765.67,0.0,68.5,211.57,280.07,3045.74 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,27941,50915.45,0.0,0.0,50915.45,10321.29,10460.77,4048.07,24830.13,75745.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,40612,51388.09,0.0,0.0,51388.09,10242.71,8979.69,4081.85,23304.25,74692.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,44953,42966.09,108.93,176.0,43251.02,0.0,5301.28,3351.79,8653.07,51904.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8540,112043.97,256.14,20130.01,132430.12,25111.07,9914.75,9987.34,45013.16,177443.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,40701,139239.99,0.0,6928.68,146168.67,27520.19,12424.5,1490.5,41435.19,187603.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,16596,1744.81,0.0,3.59,1748.4,0.0,570.45,135.7,706.15,2454.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,31126,0.0,0.0,10863.28,10863.28,0.0,68.5,0.0,68.5,10931.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,32975,27708.02,0.0,0.0,27708.02,6214.92,5734.39,2242.28,14191.59,41899.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,27474,69383.63,95.46,9272.89,78751.98,14583.03,4729.67,4755.52,24068.22,102820.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,36243,128629.03,0.0,0.0,128629.03,25856.67,12424.5,17149.67,55430.84,184059.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,34242,67574.3,0.0,0.0,67574.3,13904.38,12424.51,5322.81,31651.7,99226.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,11597,76048.8,8057.04,5591.51,89697.35,13864.16,6690.11,1500.8,22055.07,111752.42 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,38950,4158.3,0.0,294.27,4452.57,979.11,991.57,360.4,2331.08,6783.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40469,117315.8,1754.03,20067.64,139137.47,26356.4,12376.71,10065.72,48798.83,187936.3 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),51900,40454.34,0.0,0.0,40454.34,7334.36,2673.06,3020.92,13028.34,53482.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7934,0.0,0.0,26560.84,26560.84,0.0,68.5,0.0,68.5,26629.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2713,112685.49,47076.75,5510.73,165272.97,22330.92,12424.5,2816.55,37571.97,202844.94 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1706,Telephone Operator,24525,53713.09,0.0,624.0,54337.09,13032.9,12424.5,4507.92,29965.32,84302.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,15821,13496.34,0.0,0.0,13496.34,2970.66,3049.38,1080.03,7100.07,20596.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37957,65177.91,14975.34,665.26,80818.51,17984.33,12839.36,6294.48,37118.17,117936.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29612,16179.2,0.0,1307.49,17486.69,154.55,0.0,2577.43,2731.98,20218.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",20024,1200.0,0.0,0.0,1200.0,0.0,0.0,94.92,94.92,1294.92 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,10378,61735.13,0.0,624.0,62359.13,12852.62,12424.5,4896.1,30173.22,92532.35 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,20793,20164.28,0.0,274.78,20439.06,4638.29,4910.06,1635.74,11184.09,31623.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31675,56531.0,0.0,7500.46,64031.46,13790.54,12424.5,4928.17,31143.21,95174.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,16923,49978.99,2060.91,326.85,52366.75,10269.54,9944.21,4065.69,24279.44,76646.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,1406,90221.0,0.0,0.0,90221.0,18567.36,12424.5,7102.72,38094.58,128315.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,46655,222138.61,3380.52,9837.61,235356.74,46679.05,11202.6,11722.37,69604.02,304960.76 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,35412,86033.5,4855.84,14153.54,105042.88,18580.1,12424.5,8218.83,39223.43,144266.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3672,48256.2,0.0,0.0,48256.2,8970.21,6690.11,3750.77,19411.09,67667.29 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",5300,Sub-Professional Engineering,5322,Graphic Artist,20284,7714.33,0.0,0.0,7714.33,1730.32,1433.6,646.61,3810.53,11524.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,24609,17085.0,0.0,10.8,17095.8,0.0,0.0,292.22,292.22,17388.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,40222,66580.0,17323.4,5593.99,89497.39,14610.03,12424.5,7041.63,34076.16,123573.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33864,72664.25,14803.77,7467.04,94935.06,15970.81,15052.75,1582.41,32605.97,127541.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50259,61341.56,6279.41,6458.66,74079.63,18608.21,12091.01,5724.53,36423.75,110503.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10761,70245.0,7622.43,9407.43,87274.86,15808.27,12424.5,7108.18,35340.95,122615.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,34023,51750.6,0.0,3939.97,55690.57,10853.51,9318.38,4430.46,24602.35,80292.92 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,988,112160.4,0.0,0.0,112160.4,22830.26,12424.5,9175.27,44430.03,156590.43 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,52971,67649.36,2597.78,6297.51,76544.65,14821.36,12376.71,6270.58,33468.65,110013.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44556,80949.92,11993.52,8254.09,101197.53,16774.33,12424.51,1813.44,31012.28,132209.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,5778,16573.77,0.0,0.0,16573.77,0.0,5459.02,1284.84,6743.86,23317.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,837,119461.63,5078.51,8049.73,132589.87,23641.9,12424.49,2258.9,38325.29,170915.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,47233,156746.1,0.0,0.0,156746.1,31536.67,12424.51,10439.57,54400.75,211146.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,12578,94130.04,312.44,4758.0,99200.48,20426.25,12424.5,8168.58,41019.33,140219.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36290,4378.91,0.0,0.0,4378.91,0.0,342.15,339.01,681.16,5060.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45553,47540.22,5485.6,651.9,53677.72,13550.3,9281.09,4138.69,26970.08,80647.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,14099,49156.8,0.0,536.84,49693.64,11025.83,6355.62,4020.26,21401.71,71095.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17106,21046.72,2385.06,508.98,23940.76,5216.42,6519.22,1804.97,13540.61,37481.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,34399,44697.62,1379.03,0.0,46076.65,10699.88,11793.66,3751.65,26245.19,72321.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50352,80953.78,9057.79,5890.62,95902.19,16730.9,12424.5,1785.96,30941.36,126843.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,37162,84233.66,7134.16,9537.39,100905.21,17362.57,12304.86,8015.98,37683.41,138588.62 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,11057,93573.89,27991.41,18006.88,139572.18,19215.54,11890.72,9910.65,41016.91,180589.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6730,18233.7,0.0,3039.0,21272.7,56.15,0.0,3791.3,3847.45,25120.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,31747,48527.09,0.0,18.48,48545.57,10884.59,6274.19,3931.86,21090.64,69636.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,294,30402.26,93.2,0.0,30495.46,1880.85,8691.18,2461.03,13033.06,43528.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16307,68816.01,24789.34,4786.83,98392.18,20160.03,13558.72,7442.62,41161.37,139553.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,22004,82090.73,0.0,0.0,82090.73,17332.04,12424.5,6540.26,36296.8,118387.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,51776,80357.0,6569.43,0.0,86926.43,16562.14,12424.5,7029.34,36015.98,122942.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,19456,900.05,0.0,0.0,900.05,0.0,293.29,115.7,408.99,1309.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,8285,72522.01,0.0,0.0,72522.01,14956.33,12424.5,5762.09,33142.92,105664.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,6274,3122.65,243.68,0.0,3366.33,0.0,1033.38,260.63,1294.01,4660.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10409,22465.87,4200.52,1680.85,28347.24,7117.73,4467.74,2117.85,13703.32,42050.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19262,38028.31,797.29,6127.55,44953.15,1708.19,3137.49,2844.79,7690.47,52643.62 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,34010,84315.05,0.0,0.0,84315.05,16899.01,8840.52,14143.48,39883.01,124198.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15427,2471.07,0.0,34.38,2505.45,0.0,618.23,193.97,812.2,3317.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,40762,97207.56,15134.78,7939.53,120281.87,20608.94,12424.5,9782.24,42815.68,163097.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48942,108491.11,27900.95,17520.28,153912.34,23891.09,14556.68,2689.79,41137.56,195049.9 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,43397,51829.2,77.33,5550.1,57456.63,11474.62,10205.3,4756.08,26436.0,83892.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25448,2716.44,0.0,13.23,2729.67,0.0,1324.58,211.85,1536.43,4266.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,50886,61735.0,0.0,0.0,61735.0,12724.0,12424.5,4773.14,29921.64,91656.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25871,1038.7,0.0,0.0,1038.7,0.0,561.49,80.41,641.9,1680.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44772,20580.0,0.0,3184.25,23764.25,5780.75,4778.65,1925.34,12484.74,36248.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,43132,62840.0,0.0,0.0,62840.0,12611.29,9557.31,4915.35,27083.95,89923.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,31179,56463.5,36468.11,8443.86,101375.47,13506.8,12424.5,7986.54,33917.84,135293.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38494,112159.75,34531.87,19655.46,166347.08,25136.25,15052.75,2698.82,42887.82,209234.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",34298,34492.91,0.0,2394.82,36887.73,0.0,5193.8,2845.61,8039.41,44927.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,25674,9922.0,0.0,22436.74,32358.74,2176.88,955.73,2536.07,5668.68,38027.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",41436,106090.13,10163.25,3061.05,119314.43,21892.67,12424.49,9572.0,43889.16,163203.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39730,49828.91,0.0,1933.82,51762.73,2831.15,0.0,4101.69,6932.84,58695.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31965,149099.01,0.0,9942.43,159041.44,31966.55,12424.5,10427.84,54818.89,213860.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3050,132416.0,0.0,3055.39,135471.39,27149.46,12424.5,10004.31,49578.27,185049.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,41879,169637.67,0.0,1560.0,171197.67,34139.74,12424.5,17790.29,64354.53,235552.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,13658,60672.14,0.0,3781.19,64453.33,13204.88,12063.12,5175.22,30443.22,94896.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1630,112025.02,35981.99,18464.66,166471.67,24805.11,15035.44,2727.59,42568.14,209039.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,14622,149059.62,0.0,5200.0,154259.62,29967.91,12424.5,10304.94,52697.35,206956.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7200,Supervisory-Labor & Trade,7247,Sheet Metal Wrk Supervisor 2,13733,123163.03,18246.95,0.0,141409.98,24933.35,12424.5,10101.32,47459.17,188869.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,45679,91388.02,0.0,0.0,91388.02,16568.68,5734.38,2497.58,24800.64,116188.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,3980,81157.02,10026.69,6585.54,97769.25,17038.58,12424.5,7753.04,37216.12,134985.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,43842,49653.4,0.0,0.0,49653.4,9884.03,8936.08,4002.84,22822.95,72476.35 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,49748,139101.0,0.0,0.0,139101.0,27954.69,12424.5,20500.0,60879.19,199980.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,14045,61781.61,1004.26,2307.32,65093.19,12984.86,12287.06,5319.83,30591.75,95684.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,43423,1419.37,0.0,24.61,1443.98,0.0,467.41,112.08,579.49,2023.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,25179,117313.5,42210.03,8039.32,167562.85,23194.62,12424.5,2802.03,38421.15,205984.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,29373,3095.6,0.0,0.0,3095.6,0.0,1024.43,239.66,1264.09,4359.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,41006,60940.09,5493.48,1737.5,68171.07,13304.29,9557.22,5469.68,28331.19,96502.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44109,69016.22,15788.03,3297.55,88101.8,19776.02,13594.08,6879.97,40250.07,128351.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28239,12656.65,0.0,2.34,12658.99,0.0,5431.18,1049.49,6480.67,19139.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,45771,138633.98,18379.87,9988.7,167002.55,27400.21,12424.5,2039.09,41863.8,208866.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18552,1959.21,0.0,1970.83,3930.04,439.45,382.28,302.35,1124.08,5054.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,28083,3867.15,0.0,256.03,4123.18,0.0,1039.36,319.21,1358.57,5481.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",3609,6773.63,0.0,0.0,6773.63,0.0,1612.78,524.39,2137.17,8910.8 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,8968,67259.96,496.83,5502.49,73259.28,15008.22,12305.04,5683.69,32996.95,106256.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1500,56314.9,4288.35,4509.32,65112.57,12397.35,12376.71,5114.74,29888.8,95001.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,19826,73957.02,0.0,0.0,73957.02,15242.9,12424.51,5853.76,33521.17,107478.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39150,37831.4,0.0,3517.26,41348.66,428.67,0.0,1821.51,2250.18,43598.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30486,56531.0,0.0,7129.01,63660.01,13800.5,12424.5,5099.39,31324.39,94984.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,36602,76728.02,19138.73,5413.89,101280.64,15972.92,12424.5,8038.81,36436.23,137716.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,17456,61546.28,10878.04,11809.47,84233.79,14512.8,12172.79,6863.1,33548.69,117782.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0402,Deputy Chief 3,16675,269898.93,0.0,7128.02,277026.95,54251.94,12424.5,13376.06,80052.5,357079.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,42457,59584.0,418.95,1716.68,61719.63,13355.75,7645.84,5103.04,26104.63,87824.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28879,19261.9,0.0,0.0,19261.9,1007.71,1455.7,4777.62,7241.03,26502.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52883,8652.75,0.0,288.44,8941.19,1827.65,0.0,988.14,2815.79,11756.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,34706,107005.76,3484.66,1388.37,111878.79,22083.38,12430.49,8905.62,43419.49,155298.28 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,11257,119624.58,0.0,0.0,119624.58,24145.42,11946.64,9673.11,45765.17,165389.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,23711,60650.1,2519.26,6708.32,69877.68,13366.36,11994.43,5768.08,31128.87,101006.55 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),1055,122719.2,0.0,1562.5,124281.7,24993.54,12376.71,9841.98,47212.23,171493.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31629,61321.3,892.4,2979.68,65193.38,0.0,5207.9,5055.28,10263.18,75456.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,44822,9193.25,0.0,82.1,9275.35,0.0,3521.28,719.69,4240.97,13516.32 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,19072,52064.15,0.0,0.0,52064.15,11445.07,7345.62,4219.82,23010.51,75074.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28469,56163.3,6.11,0.0,56169.41,10885.46,8601.58,3951.2,23438.24,79607.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,8848,44000.8,2090.07,6815.3,52906.17,10292.14,9700.66,4047.62,24040.42,76946.59 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,31281,143373.54,0.0,0.0,143373.54,28812.16,12424.5,17454.02,58690.68,202064.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,36578,106418.52,0.0,4509.22,110927.74,22452.35,12108.58,944.6,35505.53,146433.27 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,27229,27808.0,0.0,169.84,27977.84,6237.36,3775.14,2260.44,12272.94,40250.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,3477,43238.03,0.0,698.5,43936.53,8901.44,8685.2,3527.39,21114.03,65050.56 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),236,184289.01,0.0,1562.5,185851.51,37402.56,12424.5,10827.9,60654.96,246506.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,24126,8591.8,407.48,1057.22,10056.5,1976.53,1624.74,877.52,4478.79,14535.29 +Calendar,2015,1,Public Protection,POL,Police,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",38000,1104.0,0.0,0.0,1104.0,0.0,65.94,85.58,151.52,1255.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28098,3148.26,0.0,1.96,3150.22,0.0,1535.15,244.36,1779.51,4929.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36031,136587.15,340.57,18420.73,155348.45,30310.09,12095.01,10336.25,52741.35,208089.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1719,11370.44,0.0,0.0,11370.44,0.0,4868.26,927.82,5796.08,17166.52 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,8757,16733.8,0.0,0.0,16733.8,3679.75,3739.3,1351.24,8770.29,25504.09 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),29602,82819.17,6173.85,11671.56,100664.58,18821.65,12424.5,1668.86,32915.01,133579.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,10986,38290.72,0.0,2178.45,40469.17,1121.54,6303.35,3263.97,10688.86,51158.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25382,64353.15,0.0,10876.59,75229.74,455.29,4802.55,2092.7,7350.54,82580.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43145,2357.36,0.0,2.86,2360.22,0.0,780.01,183.2,963.21,3323.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38606,41163.86,3965.11,1984.98,47113.95,11221.31,12598.32,3353.08,27172.71,74286.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7245,"Chf Statnry Eng,Wtrtreat Plnt",44588,57860.04,10309.24,4886.51,73055.79,12782.04,5256.52,6118.32,24156.88,97212.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,27694,79395.02,0.0,1520.0,80915.02,16684.36,12424.51,6413.2,35522.07,116437.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,50247,48645.02,0.0,0.0,48645.02,9383.71,7167.99,3768.83,20320.53,68965.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40388,20252.8,0.0,0.0,20252.8,1176.08,8721.05,1570.22,11467.35,31720.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,19177,97934.02,0.0,624.0,98558.02,20308.12,12424.5,8173.79,40906.41,139464.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,23719,24221.92,6251.17,2964.78,33437.87,6224.12,6224.2,2625.81,15074.13,48512.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10579,65196.76,17563.37,1889.89,84650.02,18424.66,12858.88,6396.64,37680.18,122330.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,10683,47847.4,4618.35,1678.52,54144.27,11546.94,12424.5,4370.12,28341.56,82485.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,6879,27708.0,0.0,0.0,27708.0,6214.92,5734.39,2260.5,14209.81,41917.81 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,660,85285.0,0.0,0.0,85285.0,16040.7,7167.98,16138.2,39346.88,124631.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,20668,68753.16,0.0,0.0,68753.16,14151.46,12424.5,5570.85,32146.81,100899.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17462,139487.36,15792.46,14788.01,170067.83,27542.73,12424.5,2888.01,42855.24,212923.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,33828,70931.02,0.0,1834.0,72765.02,14946.21,12424.51,5963.6,33334.32,106099.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10209,11281.46,0.0,0.0,11281.46,200.2,4832.41,920.92,5953.53,17234.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,1564,97462.82,51270.34,22849.17,171582.33,28859.05,12386.32,2909.63,44155.0,215737.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,51945,56120.04,0.0,1040.0,57160.04,12787.79,12424.51,4568.73,29781.03,86941.07 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34107,52760.0,2779.85,3945.09,59484.94,13579.81,12424.5,4654.41,30658.72,90143.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,21083,351.59,0.0,59.48,411.07,90.71,0.0,32.33,123.04,534.11 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,11797,43810.71,0.0,0.0,43810.71,0.0,2903.04,3395.99,6299.03,50109.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,44850,101821.55,2803.7,4010.39,108635.64,21659.39,12424.48,8514.13,42598.0,151233.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",23813,90409.74,23497.17,11442.28,125349.19,21277.55,9175.02,2096.8,32549.37,157898.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,30222,62432.81,0.0,250.0,62682.81,12875.27,12351.57,5183.82,30410.66,93093.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,5493,76338.0,0.0,1118.09,77456.09,15970.81,12424.5,6168.66,34563.97,112020.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34338,3414.0,176.14,108.81,3698.95,0.0,1433.6,281.58,1715.18,5414.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41965,120520.74,23056.61,15644.03,159221.38,23838.69,12424.5,2712.86,38976.05,198197.43 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,28891,103075.01,0.0,0.0,103075.01,21244.17,12424.49,8283.53,41952.19,145027.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,34026,104354.01,5148.3,1575.68,111077.99,21593.56,12424.5,8677.59,42695.65,153773.64 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,4492,58778.18,6427.06,5847.04,71052.28,13736.29,12424.5,5592.56,31753.35,102805.63 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,1499,43449.01,96.98,0.0,43545.99,10123.85,10035.18,3344.83,23503.86,67049.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,43586,87713.06,0.0,0.0,87713.06,18078.19,12424.5,7200.7,37703.39,125416.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36367,0.0,0.0,13118.8,13118.8,0.0,0.0,190.22,190.22,13309.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,52853,105916.21,0.0,0.0,105916.21,21197.6,11134.26,8045.87,40377.73,146293.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49681,9965.92,0.0,0.0,9965.92,0.0,4276.06,818.81,5094.87,15060.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,52287,116976.07,0.0,0.0,116976.07,23541.49,12424.5,9537.0,45502.99,162479.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,39289,106116.0,0.0,0.0,106116.0,21870.85,12424.47,8382.5,42677.82,148793.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,47378,51516.03,0.0,1214.65,52730.68,11300.01,8601.58,4407.16,24308.75,77039.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2771,80989.2,3459.32,8053.18,92501.7,16869.79,12424.5,1540.25,30834.54,123336.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,18149,21031.73,1879.69,2048.25,24959.67,5373.96,6185.38,1960.15,13519.49,38479.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",26762,18138.66,0.0,0.0,18138.66,0.0,4294.81,1407.84,5702.65,23841.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22227,454.24,0.0,8.99,463.23,0.0,221.49,35.96,257.45,720.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,47221,62811.0,23990.66,14352.95,101154.61,14906.62,12424.5,8197.65,35528.77,136683.38 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,37144,1215.68,0.0,0.0,1215.68,0.0,370.34,94.37,464.71,1680.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,19913,140334.02,0.0,6562.92,146896.94,29502.68,12424.5,10122.13,52049.31,198946.25 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,22678,154381.67,0.0,15438.16,169819.83,34260.65,11800.53,10495.72,56556.9,226376.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20504,10138.88,0.0,680.94,10819.82,0.0,3878.17,838.94,4717.11,15536.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,9124,13361.56,0.0,0.0,13361.56,0.0,4421.75,1035.49,5457.24,18818.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3617,108189.0,43819.34,19677.73,171686.07,24305.91,14394.92,2845.57,41546.4,213232.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,18514,58782.02,0.0,624.0,59406.02,12243.99,12424.5,4841.26,29509.75,88915.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,51274,58454.41,0.0,374.4,58828.81,12114.95,7454.7,4825.45,24395.1,83223.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13947,3871.4,0.0,89.34,3960.74,0.0,310.62,307.41,618.03,4578.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44061,112159.76,16600.6,18539.19,147299.55,24756.8,15052.76,2502.33,42311.89,189611.44 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8416,"Director, Probation Services",52396,131525.32,0.0,0.0,131525.32,30027.98,12424.5,9935.87,52388.35,183913.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1802,Research Assistant,4899,72319.05,0.0,0.0,72319.05,14902.52,12424.5,5998.49,33325.51,105644.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,5487,60765.02,0.0,694.88,61459.9,12665.12,12194.53,4725.92,29585.57,91045.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,44189,30724.47,0.0,1463.28,32187.75,5419.16,9993.9,2521.91,17934.97,50122.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35413,69654.92,21179.83,2257.68,93092.43,19736.8,13727.34,7224.72,40688.86,133781.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",16599,179465.32,0.0,14357.23,193822.55,38096.63,12424.5,3250.15,53771.28,247593.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35889,113233.61,8876.28,18791.57,140901.46,25075.55,15196.12,2400.14,42671.81,183573.27 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,51493,100554.04,0.0,2200.0,102754.04,21168.18,12424.5,8435.76,42028.44,144782.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24641,3639.48,924.7,270.62,4834.8,1032.54,1148.85,353.65,2535.04,7369.84 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4306,Collections Officer,14161,2254.66,0.0,0.0,2254.66,419.59,475.9,175.0,1070.49,3325.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,40741,70245.0,2537.95,3092.85,75875.8,14606.18,12424.5,6257.57,33288.25,109164.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24646,81464.07,24463.3,6152.02,112079.39,16957.36,12424.49,1842.33,31224.18,143303.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33144,1442.38,0.0,4.3,1446.68,0.0,481.34,112.29,593.63,2040.31 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,32281,3688.3,0.0,0.0,3688.3,0.0,525.65,283.96,809.61,4497.91 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,51638,147874.95,0.0,0.0,147874.95,29710.13,12424.5,18433.8,60568.43,208443.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36737,66600.73,5692.64,5946.98,78240.35,19872.02,13122.06,5889.94,38884.02,117124.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33031,137568.55,11218.23,5017.36,153804.14,27185.64,12328.93,2620.42,42134.99,195939.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27666,82737.37,0.0,25718.64,108456.01,18955.67,7105.86,6390.93,32452.46,140908.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24381,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3376.05,18201.9,61969.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45002,97764.54,17536.1,18383.9,133684.54,28230.85,12424.5,2230.85,42886.2,176570.74 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,547,127835.01,0.0,27184.97,155019.98,25831.76,11946.64,10436.06,48214.46,203234.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,34526,61063.42,807.36,1490.0,63360.78,12858.43,12077.75,5087.63,30023.81,93384.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16106,56531.0,0.0,1975.95,58506.95,11651.3,12424.5,4751.76,28827.56,87334.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49464,41017.22,1368.51,1144.56,43530.29,9855.92,10430.56,3484.8,23771.28,67301.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,24824,65262.97,0.0,200.0,65462.97,12675.31,12361.78,3594.04,28631.13,94094.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29708,86.21,0.0,0.0,86.21,0.0,28.36,6.7,35.06,121.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25237,84454.8,6753.56,13450.34,104658.7,18244.79,11325.1,1727.64,31297.53,135956.23 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),2726,121699.5,0.0,1500.0,123199.5,24790.72,12424.5,9831.48,47046.7,170246.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,39658,84106.22,0.0,1480.0,85586.22,17630.22,12424.5,6872.5,36927.22,122513.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,43901,49311.46,0.0,0.0,49311.46,11810.79,12424.5,4010.69,28245.98,77557.44 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,9422,98949.21,0.0,0.0,98949.21,19594.84,10369.67,7735.2,37699.71,136648.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10749,1450.71,0.0,102.37,1553.08,0.0,359.89,120.41,480.3,2033.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10217,112159.77,10247.22,22419.03,144826.02,24593.3,15052.76,2411.9,42057.96,186883.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,37582,5729.6,59.02,179.85,5968.47,0.0,2679.04,462.91,3141.95,9110.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",24871,129093.79,27591.04,26893.91,183578.74,30654.78,14909.4,3042.47,48606.65,232185.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,36893,66084.12,469.13,0.0,66553.25,14762.85,12424.49,5036.85,32224.19,98777.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8148,113233.58,53544.89,20539.54,187318.01,25036.01,15196.12,3136.95,43369.08,230687.09 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,8210,108374.67,119352.07,18671.84,246398.58,30101.28,12424.52,4148.83,46674.63,293073.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,47755,4510.5,0.0,0.0,4510.5,0.0,1738.22,349.38,2087.6,6598.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6115,Wastewater Control Inspector,50569,91482.82,0.0,0.0,91482.82,18768.04,11804.77,7040.68,37613.49,129096.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,29211,16009.02,3495.68,109.76,19614.46,3615.44,3345.06,1531.71,8492.21,28106.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,34268,138605.42,31466.41,5802.21,175874.04,27385.73,12376.71,2952.45,42714.89,218588.93 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,26798,86222.75,0.0,0.0,86222.75,18009.62,10939.06,6888.99,35837.67,122060.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,38132,92085.02,0.0,0.0,92085.02,18979.21,12424.5,7567.94,38971.65,131056.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,38536,14620.5,0.0,0.0,14620.5,2915.22,4838.39,1191.07,8944.68,23565.18 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,52417,2880.0,0.0,0.0,2880.0,0.0,172.04,223.24,395.28,3275.28 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,4269,42767.04,1743.82,2918.2,47429.06,8134.74,6212.25,3687.18,18034.17,65463.23 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,2318,63102.0,2724.01,9666.14,75492.15,14170.01,12424.5,6118.67,32713.18,108205.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,416,199043.0,0.0,250.0,199293.0,40057.7,12424.5,11116.21,63598.41,262891.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,37865,90736.08,14831.72,10923.82,116491.62,19889.72,12292.61,1936.18,34118.51,150610.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9140,Transit Manager 1,6813,56090.01,0.0,22086.79,78176.8,12785.06,6510.44,6330.32,25625.82,103802.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,9589,30262.31,0.0,0.0,30262.31,0.0,3321.17,2345.37,5666.54,35928.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3921,119467.36,12636.23,8980.6,141084.19,23620.95,12424.5,2340.58,38386.03,179470.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,28936,85368.01,8759.82,1460.0,95587.83,17892.35,12424.5,7829.76,38146.61,133734.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6116,Sprv Wastewater Cont Inspector,34227,111968.4,5997.9,0.0,117966.3,22453.86,11950.22,9443.61,43847.69,161813.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,52781,38870.28,0.0,650.42,39520.7,8339.95,6839.44,3236.47,18415.86,57936.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49165,436.95,0.0,25.55,462.5,0.0,143.35,35.88,179.23,641.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,40302,108038.0,11282.47,1299.7,120620.17,22275.2,12424.5,9701.58,44401.28,165021.45 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,26667,72688.58,0.0,673.11,73361.69,15120.68,12422.71,6030.63,33574.02,106935.71 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2566,Rehabilitation Counselor,5434,78435.01,0.0,0.0,78435.01,16150.58,12424.5,6433.87,35008.95,113443.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5540,1035.14,0.0,10.78,1045.92,0.0,504.75,81.18,585.93,1631.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,3360,106812.09,16322.84,0.0,123134.93,22013.95,12424.5,9679.36,44117.81,167252.74 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,3481,2206.4,0.0,0.0,2206.4,0.0,0.0,174.31,174.31,2380.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4528,3613.75,0.0,49.98,3663.73,0.0,1762.13,284.22,2046.35,5710.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1760,Offset Machine Operator,37190,62655.0,0.0,0.0,62655.0,12913.52,12424.5,5144.51,30482.53,93137.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,11856,73749.0,1063.97,3155.78,77968.75,15427.23,12424.5,6199.25,34050.98,112019.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36482,68559.08,4537.55,4408.11,77504.74,16628.5,13509.92,5872.95,36011.37,113516.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,27773,103301.07,0.0,0.0,103301.07,21258.7,12400.61,25352.14,59011.45,162312.52 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,174,36520.0,0.0,17100.0,53620.0,8303.63,5256.52,4244.56,17804.71,71424.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,7781,81743.1,19886.5,3264.55,104894.15,16973.76,12424.56,8345.4,37743.72,142637.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,46539,75891.03,152.0,0.0,76043.03,15529.48,11392.91,5982.37,32904.76,108947.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39387,81051.94,11431.08,7789.45,100272.47,16866.52,12424.5,1671.78,30962.8,131235.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,4885,41964.34,6297.85,5796.11,54058.3,9045.19,8275.44,4422.17,21742.8,75801.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,8681,63887.0,457.88,1146.15,65491.03,13402.75,12424.5,5395.81,31223.06,96714.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21905,116948.16,73251.82,17449.11,207649.09,25533.88,14813.82,3446.53,43794.23,251443.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,2952,70245.0,550.5,4977.7,75773.2,14606.45,12424.5,6198.93,33229.88,109003.08 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,49995,67911.03,4233.2,10681.58,82825.81,15206.36,12424.5,6812.08,34442.94,117268.75 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8414,"Sprv Prob Ofc, Juv Court",20745,110958.34,0.0,0.0,110958.34,25311.51,12409.57,470.7,38191.78,149150.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,16922,24808.01,0.0,0.0,24808.01,5564.41,3822.92,2018.83,11406.16,36214.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,8207,123776.01,3947.44,48473.5,176196.95,24910.01,12424.49,10738.97,48073.47,224270.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,42747,65592.0,20249.71,5574.68,91416.39,14098.91,12424.5,7438.35,33961.76,125378.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17729,3356.51,0.0,0.0,3356.51,0.0,1636.68,260.29,1896.97,5253.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",12516,13479.88,0.0,0.0,13479.88,0.0,2837.33,1046.26,3883.59,17363.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,2416,32769.32,0.0,17.91,32787.23,6101.73,4300.79,2633.16,13035.68,45822.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,41868,83205.39,0.0,0.0,83205.39,17172.74,12190.71,6833.79,36197.24,119402.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,40748,9637.72,0.0,309.97,9947.69,2231.26,1791.34,850.48,4873.08,14820.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),22007,16418.7,0.0,0.0,16418.7,2125.55,4730.88,1273.13,8129.56,24548.26 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,17018,100060.9,0.0,1160.0,101220.9,18984.87,5956.17,4956.62,29897.66,131118.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,18683,11147.74,1462.72,0.0,12610.46,0.0,3004.58,976.3,3980.88,16591.34 +Calendar,2015,1,Public Protection,ADP,Adult Probation,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,38295,87030.8,0.0,0.0,87030.8,17920.86,12424.5,6643.19,36988.55,124019.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32023,138631.34,6061.23,5622.6,150315.17,27954.9,12424.51,2560.29,42939.7,193254.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,9975,58086.99,4506.79,1161.16,63754.94,11781.2,10513.04,5263.36,27557.6,91312.54 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,19596,9922.0,0.0,20975.11,30897.11,2176.88,955.73,2424.44,5557.05,36454.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,36823,64960.2,8371.25,1411.16,74742.61,13645.77,12424.5,6128.15,32198.42,106941.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,47894,60249.83,0.0,3.46,60253.29,12426.38,12340.87,4858.2,29625.45,89878.74 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,33780,22148.01,2941.12,759.96,25849.09,0.0,5004.15,2001.24,7005.39,32854.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9071,9549.25,0.0,415.5,9964.75,0.0,3661.64,772.41,4434.05,14398.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11953,21811.54,447.4,1750.29,24009.23,1296.78,1902.62,1837.09,5036.49,29045.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,52429,119465.65,50979.07,17380.88,187825.6,23627.24,12424.5,3156.42,39208.16,227033.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,29690,66684.22,0.0,2007.24,68691.46,14467.37,8936.08,5445.27,28848.72,97540.18 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),18080,184289.0,0.0,5185.78,189474.78,38130.64,12424.51,11016.99,61572.14,251046.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5859,119463.83,1620.22,12710.96,133795.01,23633.5,12424.5,1799.43,37857.43,171652.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,31426,88144.05,0.0,742.32,88886.37,18320.69,12424.5,7160.34,37905.53,126791.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22434,42779.2,0.0,4205.87,46985.07,10912.83,11420.99,3789.95,26123.77,73108.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12617,1019.35,29.89,28.1,1077.34,0.0,442.03,83.62,525.65,1602.99 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,24881,67261.04,0.0,624.0,67885.04,13991.51,12424.5,5397.7,31813.71,99698.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,8509,184879.49,0.0,0.0,184879.49,37100.41,12424.5,19288.69,68813.6,253693.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40486,65276.51,2302.27,2308.03,69886.81,18488.84,12859.84,5439.34,36788.02,106674.83 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8104,Victim & Witness Technician,36022,0.0,0.0,3623.91,3623.91,0.0,0.0,277.23,277.23,3901.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,36222,21087.6,0.0,825.75,21913.35,2017.6,5591.03,1665.04,9273.67,31187.02 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,4474,112209.04,0.0,0.0,112209.04,22582.31,12424.5,8709.24,43716.05,155925.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28374,2989.0,0.0,0.0,2989.0,0.0,1457.49,231.84,1689.33,4678.33 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,52977,46399.41,0.0,0.0,46399.41,9427.24,5156.47,3544.81,18128.52,64527.93 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8301,Sheriff's Property Keeper,35566,26896.89,0.0,0.0,26896.89,6431.96,0.0,2159.28,8591.24,35488.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,9057,31938.97,127.58,1639.18,33705.73,7546.41,8926.4,2708.99,19181.8,52887.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,19442,37064.0,2971.07,941.71,40976.78,0.0,5734.39,3281.37,9015.76,49992.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,8843,143255.74,4687.07,20840.14,168782.95,28301.57,12424.5,2794.91,43520.98,212303.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",7368,182293.0,0.0,0.0,182293.0,36724.36,12424.5,18125.98,67274.84,249567.84 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,7616,79162.85,0.0,0.0,79162.85,16160.36,11205.95,6356.4,33722.71,112885.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24937,56531.0,1969.2,5676.47,64176.67,12129.21,12424.5,5241.17,29794.88,93971.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,36830,138637.94,27449.07,22265.95,188352.96,27385.65,12424.5,3156.55,42966.7,231319.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,9024,96917.92,18389.08,2583.34,117890.34,20046.75,12848.62,9435.48,42330.85,160221.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,28725,67261.02,0.0,1624.0,68885.02,14195.87,12424.5,5331.84,31952.21,100837.23 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,15961,181.69,211.97,0.0,393.66,0.0,53.76,30.55,84.31,477.97 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8251,Fingerprint Technician 3,31310,72319.02,10447.49,4906.77,87673.28,15452.32,12424.5,7029.89,34906.71,122579.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,36709,116776.67,88.46,1673.75,118538.88,23085.44,12385.67,2083.16,37554.27,156093.15 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),37304,184289.05,0.0,5248.28,189537.33,38144.37,12424.5,11039.71,61608.58,251145.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21997,118976.59,1775.86,10719.04,131471.49,22224.12,11047.06,6108.19,39379.37,170850.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,21217,62468.86,17280.0,3175.83,82924.69,13142.42,12424.5,6775.84,32342.76,115267.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7245,"Chf Statnry Eng,Wtrtreat Plnt",11225,117597.32,3936.38,5825.39,127359.09,23643.65,12291.89,9913.52,45849.06,173208.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,46496,11965.55,0.0,0.0,11965.55,2631.23,3569.65,980.93,7181.81,19147.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5644,Principal Environ Specialist,42559,116976.04,0.0,0.0,116976.04,23556.39,12424.5,9503.56,45484.45,162460.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,14277,18528.48,0.0,0.0,18528.48,4155.92,2855.25,1483.49,8494.66,27023.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,4031,4748.83,0.0,81.88,4830.71,0.0,1560.53,374.8,1935.33,6766.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38234,77381.89,0.0,825.0,78206.89,15137.83,8446.75,6293.83,29878.41,108085.3 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",4100,Property Administration,4119,Events & Facilities Specialist,25164,2784.81,0.0,0.0,2784.81,0.0,0.0,220.0,220.0,3004.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,45839,61428.0,0.0,624.0,62052.0,12789.24,12424.49,4891.95,30105.68,92157.68 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,33017,102019.01,0.0,0.0,102019.01,21026.26,12424.5,8014.62,41465.38,143484.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,52733,156746.16,0.0,0.0,156746.16,31545.23,12424.48,10482.83,54452.54,211198.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,34584,33572.01,0.0,264.16,33836.17,7530.19,3345.05,2802.3,13677.54,47513.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,50262,17929.15,0.0,1488.0,19417.15,0.0,4229.1,1504.7,5733.8,25150.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,13938,81020.38,7595.36,3259.34,91875.08,17312.87,12366.38,7546.58,37225.83,129100.91 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4805,8122.54,0.0,0.0,8122.54,0.0,2027.94,629.87,2657.81,10780.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,18909,79722.23,3186.33,2000.0,84908.56,16827.1,12424.5,7023.53,36275.13,121183.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7220,Asphalt Finisher Supervisor 1,19413,59891.5,3983.91,367.75,64243.16,12704.0,8166.99,5213.38,26084.37,90327.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",6450,0.0,0.0,69.45,69.45,0.0,68.5,5.32,73.82,143.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46619,111777.37,2377.66,17712.47,131867.5,24784.63,15002.89,2234.04,42021.56,173889.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,3009,86989.9,0.0,396.24,87386.14,18491.67,5632.66,7129.09,31253.42,118639.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46379,119465.65,15180.23,5148.0,139793.88,23627.27,12424.5,2335.99,38387.76,178181.64 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,3336,25154.02,0.0,492.01,25646.03,6155.94,6212.25,1870.56,14238.75,39884.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35982,139954.21,0.0,11439.75,151393.96,21120.75,12221.71,6440.42,39782.88,191176.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8753,6481.14,0.0,1074.58,7555.72,1728.32,2810.45,614.06,5152.83,12708.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,38392,776.4,0.0,0.0,776.4,140.76,71.68,65.88,278.32,1054.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52104,75896.4,0.0,538.5,76434.9,15269.1,6334.88,6025.46,27629.44,104064.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,21149,45911.81,2550.67,2876.69,51339.17,11669.58,12424.5,4235.26,28329.34,79668.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19040,65141.93,11311.4,7729.47,84182.8,19945.31,12830.03,6545.84,39321.18,123503.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23920,8073.48,0.0,1245.6,9319.08,4399.39,627.67,305.7,5332.76,14651.84 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,13196,145926.16,26686.6,4728.6,177341.36,28966.52,11128.28,10991.98,51086.78,228428.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,21829,158362.33,1821.97,4646.92,164831.22,31276.34,12424.5,2808.27,46509.11,211340.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29873,97758.75,4024.67,12976.88,114760.3,26925.18,12424.5,1945.52,41295.2,156055.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32329,67840.47,5617.13,4704.36,78161.96,19888.58,13369.56,6610.98,39869.12,118031.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12346,4725.05,568.61,2014.48,7308.14,1414.2,939.66,549.11,2902.97,10211.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13943,33326.49,3890.85,1356.13,38573.47,9974.61,6627.57,2895.69,19497.87,58071.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,8575,14479.89,0.0,0.0,14479.89,0.0,5377.48,1122.81,6500.29,20980.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,8211,28337.85,0.0,0.0,28337.85,2624.72,9183.98,2425.57,14234.27,42572.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18479,11013.6,0.0,0.0,11013.6,1996.77,1863.69,847.48,4707.94,15721.54 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,42776,78619.2,0.0,480.0,79099.2,16299.19,12424.5,5869.42,34593.11,113692.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator,Taxi & Accesssvcs",26940,90486.02,0.0,0.0,90486.02,18603.49,12424.5,7163.29,38191.28,128677.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36407,1822.03,30.19,262.02,2114.24,545.48,362.34,144.59,1052.41,3166.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,36624,93210.31,62445.92,9923.01,165579.24,20586.2,12591.75,10474.89,43652.84,209232.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23354,73605.46,23414.15,8279.7,105299.31,13747.13,7645.84,1771.29,23164.26,128463.57 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,28205,0.0,0.0,1774.39,1774.39,0.0,68.5,135.74,204.24,1978.63 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,39153,118427.03,0.0,0.0,118427.03,23833.76,12424.5,17059.57,53317.83,171744.86 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",8414,69419.01,18241.09,4892.9,92553.0,16945.45,12424.5,1852.99,31222.94,123775.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,47215,83397.27,0.0,0.0,83397.27,18629.72,12319.97,6679.74,37629.43,121026.7 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,24981,43959.48,0.0,964.33,44923.81,10782.7,10856.51,3466.82,25106.03,70029.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,39068,100296.03,0.0,0.0,100296.03,20793.81,11707.7,7911.79,40413.3,140709.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47327,97767.68,5006.8,10836.13,113610.61,25579.09,12424.5,1934.69,39938.28,153548.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52056,120612.7,0.0,250.0,120862.7,18176.68,12359.21,9258.37,39794.26,160656.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40297,60731.89,3224.69,2173.43,66130.01,15369.55,13288.42,4877.0,33534.97,99664.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,25235,66642.54,5436.12,4126.86,76205.52,15727.08,11786.19,6026.18,33539.45,109744.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,14405,82717.0,130.44,0.0,82847.44,17048.47,12424.5,6863.8,36336.77,119184.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,5264,83699.01,0.0,624.0,84323.01,17379.24,12424.5,6699.59,36503.33,120826.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39141,4338.41,0.0,1281.18,5619.59,0.0,382.3,435.07,817.37,6436.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,23686,13715.62,0.0,0.0,13715.62,2552.48,2239.99,1106.05,5898.52,19614.14 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,42930,88296.0,0.0,3624.0,91920.0,18337.86,12424.5,7467.34,38229.7,130149.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,39345,71612.02,0.0,624.0,72236.02,14888.01,12424.5,5989.14,33301.65,105537.67 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,46638,33142.92,0.0,242.71,33385.63,6806.52,5399.88,2708.73,14915.13,48300.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48543,65589.6,2387.79,140.0,68117.39,13516.96,12424.5,5380.15,31321.61,99439.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",38218,11540.25,0.0,0.0,11540.25,0.0,2747.72,895.71,3643.43,15183.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,5290,16683.0,340.88,0.0,17023.88,0.0,4348.58,1321.33,5669.91,22693.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33019,106038.98,3078.84,18564.2,127682.02,18168.98,10979.55,9479.12,38627.65,166309.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,43104,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5056.73,30333.85,92692.85 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,45514,111911.6,0.0,546.1,112457.7,21912.89,10513.04,9309.04,41734.97,154192.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,35052,27130.14,0.0,315.31,27445.45,6580.0,6504.94,2159.14,15244.08,42689.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,9387,14331.0,305.05,2037.9,16673.95,3046.26,2867.18,1273.24,7186.68,23860.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,44395,41813.31,1756.83,36961.7,80531.84,9036.22,4456.1,1268.18,14760.5,95292.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,41833,81942.02,7271.95,5517.05,94731.02,17279.34,12424.5,7516.51,37220.35,131951.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,36196,35189.0,0.0,0.0,35189.0,7892.94,5256.52,2896.01,16045.47,51234.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,24997,129604.95,11627.44,21576.88,162809.27,28569.74,15052.76,2700.64,46323.14,209132.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11096,11683.91,0.0,0.0,11683.91,0.0,5063.23,972.87,6036.1,17720.01 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,1603,21410.02,2815.51,0.0,24225.53,0.0,0.0,1917.05,1917.05,26142.58 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,20554,85136.13,8521.75,9084.0,102741.88,22986.03,10804.06,1427.36,35217.45,137959.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,29427,6427.5,0.0,5800.49,12227.99,1384.03,1146.88,981.37,3512.28,15740.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,22870,83013.0,9130.74,1863.9,94007.64,16836.07,10513.04,7673.32,35022.43,129030.07 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,32306,100554.02,0.0,480.0,101034.02,20823.31,12424.5,8058.09,41305.9,142339.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20948,19075.08,0.0,747.94,19823.02,384.44,0.0,468.07,852.51,20675.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6081,91773.46,7497.1,8120.09,107390.65,20422.58,12782.43,1702.26,34907.27,142297.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H006,"Invstgtor,Fire Dept",28536,56675.57,20915.05,7375.93,84966.55,11253.65,6260.04,1457.03,18970.72,103937.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12536,113233.6,1761.1,18266.21,133260.91,25036.03,15196.12,2269.05,42501.2,175762.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",23306,130329.27,55101.41,17730.4,203161.08,28976.53,15052.76,3421.7,47450.99,250612.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,36117,65592.0,0.0,824.0,66416.0,13657.0,12424.5,5489.41,31570.91,97986.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,26951,40855.3,7605.11,4594.17,53054.58,10409.74,12407.42,4631.64,27448.8,80503.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49652,19618.44,0.0,602.04,20220.48,0.0,5243.08,1567.79,6810.87,27031.35 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,36809,42165.63,333.15,0.0,42498.78,10042.78,9031.66,3427.63,22502.07,65000.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38481,63134.86,6130.67,663.48,69929.01,14443.84,10804.3,5305.22,30553.36,100482.37 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,21,67402.86,2921.41,7166.2,77490.47,14966.92,12331.92,6345.54,33644.38,111134.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,13033,107978.02,1044.9,68.0,109090.92,22269.23,12424.52,9142.44,43836.19,152927.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,9961,103165.81,0.0,0.0,103165.81,21240.1,12424.5,8236.34,41900.94,145066.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34491,80957.64,2054.12,4712.3,87724.06,16556.63,12424.51,3330.54,32311.68,120035.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,11352,25798.2,0.0,0.0,25798.2,5308.69,6690.11,2088.56,14087.36,39885.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,40959,71903.02,0.0,6840.8,78743.82,17276.39,6212.25,6392.04,29880.68,108624.5 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,42619,76473.17,0.0,604.2,77077.37,15840.23,12030.26,6396.51,34267.0,111344.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33365,310.0,0.0,1.24,311.24,0.0,119.47,24.09,143.56,454.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47298,65942.17,16842.84,2794.6,85579.61,18790.37,12992.49,6646.0,38428.86,124008.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9715,11294.6,0.0,1536.89,12831.49,367.19,931.84,2591.24,3890.27,16721.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,1908,74860.6,0.0,4131.25,78991.85,15437.7,12376.71,6392.05,34206.46,113198.31 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,2163,112209.01,0.0,0.0,112209.01,22582.31,12424.5,8960.46,43967.27,156176.28 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,22022,77296.02,0.0,0.0,77296.02,15748.78,10990.91,6159.19,32898.88,110194.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,23582,145200.01,0.0,0.0,145200.01,29221.73,12424.49,10295.28,51941.5,197141.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,38150,167391.21,2581.34,28221.1,198193.65,36946.46,12167.65,10976.33,60090.44,258284.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12362,11066.96,0.0,0.0,11066.96,782.02,4737.73,904.27,6424.02,17490.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8614,65886.18,21788.63,539.88,88214.69,18171.5,12984.2,6843.54,37999.24,126213.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,702,55688.75,0.0,7733.71,63422.46,13512.89,12387.29,5178.78,31078.96,94501.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11208,119467.38,40761.47,16703.35,176932.2,23621.0,12424.5,3005.13,39050.63,215982.83 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,36532,30702.5,833.71,0.0,31536.21,6722.23,5256.52,2553.13,14531.88,46068.09 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52026,19442.01,0.0,0.0,19442.01,4275.3,4778.65,1519.57,10573.52,30015.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3543,9967.8,0.0,1661.33,11629.13,342.37,0.0,2221.86,2564.23,14193.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,5209,3027.0,0.0,60.0,3087.0,574.49,477.86,237.62,1289.97,4376.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,26725,117135.35,14297.89,1687.09,133120.33,23184.69,12424.5,2211.75,37820.94,170941.27 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,671,55381.02,0.0,2410.69,57791.71,11774.67,10136.72,4708.93,26620.32,84412.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27295,38391.66,0.0,96.24,38487.9,5267.28,0.0,6147.94,11415.22,49903.12 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3218,97769.06,13751.92,10897.59,122418.57,26436.88,12424.5,2084.93,40946.31,163364.88 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,45341,11800.0,0.0,0.0,11800.0,2646.75,2389.33,945.3,5981.38,17781.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,11990,63589.42,7733.91,7015.03,78338.36,14545.06,12366.26,6190.4,33101.72,111440.08 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24052,3853.5,0.0,367.0,4220.5,0.0,1003.51,327.58,1331.09,5551.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5046,6477.56,0.0,7516.28,13993.84,1233.45,1152.85,1109.51,3495.81,17489.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44115,27702.96,4508.25,316.1,32527.31,6717.56,11896.58,2588.78,21202.92,53730.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,407,42772.96,0.0,3242.84,46015.8,0.0,0.0,605.19,605.19,46620.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10488,9576.9,0.0,180.71,9757.61,2148.12,1874.07,836.3,4858.49,14616.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",20181,93281.02,0.0,1420.0,94701.02,19516.84,12424.51,7855.34,39796.69,134497.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39963,141512.3,0.0,14456.03,155968.33,30096.97,12328.92,10385.6,52811.49,208779.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,28468,62220.5,6979.1,921.64,70121.24,12948.33,12376.71,5717.97,31043.01,101164.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16014,113720.81,58614.84,12515.52,184851.17,22511.28,12537.99,3151.7,38200.97,223052.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,18945,31325.67,343.04,399.05,32067.76,404.17,7126.17,2597.29,10127.63,42195.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20625,5206.02,0.0,0.0,5206.02,0.0,2198.18,419.5,2617.68,7823.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,43348,10586.61,0.0,266.31,10852.92,0.0,3830.39,865.73,4696.12,15549.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33001,15593.73,0.0,330.78,15924.51,3777.82,2995.62,1223.82,7997.26,23921.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,31978,57086.8,187.2,1373.2,58647.2,11707.54,10622.54,4752.66,27082.74,85729.94 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,15412,2382.13,802.45,0.0,3184.58,0.0,704.85,247.18,952.03,4136.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,29420,65180.79,0.0,3152.82,68333.61,13602.28,10904.3,5019.59,29526.17,97859.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",1400,"Clerical, Secretarial & Steno",1466,Meter Reader,26623,54027.39,0.0,0.0,54027.39,11099.47,10360.61,4402.16,25862.24,79889.63 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",1400,"Clerical, Secretarial & Steno",1434,Shelter Service Rep,14936,50637.45,309.35,1451.63,52398.43,10453.18,10716.25,3895.0,25064.43,77462.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,5896,10878.01,0.0,0.0,10878.01,2439.93,1433.6,891.95,4765.48,15643.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45133,45655.4,1578.36,5484.81,52718.57,11671.28,11325.41,4197.57,27194.26,79912.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,22595,32440.59,22.76,417.03,32880.38,6973.38,6399.76,2799.04,16172.18,49052.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,53055,77107.87,1021.89,1440.0,79569.76,16186.58,12382.7,6545.5,35114.78,114684.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,729,4775.01,0.0,21.97,4796.98,0.0,1194.67,372.19,1566.86,6363.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5218,Structural Engineer,32003,149312.08,0.0,0.0,149312.08,30049.2,12424.42,10315.82,52789.44,202101.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,13425,49849.36,0.0,3552.53,53401.89,11079.19,9483.13,4238.54,24800.86,78202.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9198,21408.2,3051.4,860.59,25320.19,5389.97,6633.36,1956.12,13979.45,39299.64 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,7451,26409.22,0.0,0.0,26409.22,4914.76,5256.52,2111.55,12282.83,38692.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22269,96154.5,2474.68,8930.12,107559.3,19957.71,12399.95,1802.61,34160.27,141719.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",13712,11064.2,0.0,0.0,11064.2,0.0,2341.54,858.76,3200.3,14264.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,12814,75927.18,0.0,624.0,76551.18,15787.21,12424.5,6054.43,34266.14,110817.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,50647,86663.06,4535.55,783.92,91982.53,17940.84,12424.5,7181.87,37547.21,129529.74 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,31971,77352.81,0.0,0.0,77352.81,15934.31,9939.6,6228.38,32102.29,109455.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16955,18017.89,0.0,0.0,18017.89,774.52,7752.77,1464.85,9992.14,28010.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,8895,2185.6,0.0,0.0,2185.6,406.75,382.3,155.84,944.89,3130.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5899,60025.11,4081.58,630.36,64737.05,16858.81,11870.74,4941.69,33671.24,98408.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10031,117133.57,19433.32,9802.97,146369.86,23190.84,12424.5,2438.66,38054.0,184423.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,16778,52750.86,25001.91,4235.64,81988.41,13311.86,12433.46,6527.63,32272.95,114261.36 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1926,Sr Materials & Supplies Sprv,26315,44431.81,0.0,0.0,44431.81,9568.52,10035.18,3559.61,23163.31,67595.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,42558,14159.25,0.0,0.0,14159.25,3653.11,3703.45,1131.57,8488.13,22647.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,45573,27232.0,366.3,1983.2,29581.5,5346.08,4396.36,2325.68,12068.12,41649.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,21347,100761.01,26456.21,2586.9,129804.12,21019.5,12424.49,9893.98,43337.97,173142.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,4798,31925.5,0.0,0.0,31925.5,5941.34,5495.46,2572.2,14009.0,45934.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39129,2486.39,0.0,83.71,2570.1,0.0,1078.19,206.45,1284.64,3854.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,40792,122180.67,11455.58,14828.51,148464.76,26892.25,15052.76,2518.39,44463.4,192928.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18201,43140.09,4619.0,3904.79,51663.88,9325.58,4778.65,858.45,14962.68,66626.56 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,40605,2613.69,0.0,17.52,2631.21,590.18,348.79,838.97,1777.94,4409.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30235,7530.72,254.64,28.85,7814.21,1786.45,2269.86,599.47,4655.78,12469.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,44439,85707.0,0.0,0.0,85707.0,17646.27,12424.5,6898.82,36969.59,122676.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43662,62428.19,2625.49,3530.18,68583.86,0.0,4683.56,5285.59,9969.15,78553.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,42481,62413.91,4479.48,4584.61,71478.0,13819.53,12137.79,5647.25,31604.57,103082.57 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,26637,24334.37,517.82,0.0,24852.19,0.0,3558.61,1926.36,5484.97,30337.16 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,20560,63705.03,329.96,0.0,64034.99,13129.85,12424.5,5309.57,30863.92,94898.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,50590,138952.91,7655.51,10418.72,157027.14,27461.13,12424.5,2620.05,42505.68,199532.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32036,2495.5,0.0,0.0,2495.5,0.0,961.71,193.61,1155.32,3650.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17261,119463.8,4111.24,3678.17,127253.21,23633.47,12424.5,325.98,36383.95,163637.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,4303,84599.02,33437.93,4042.05,122079.0,17548.1,12424.49,9415.09,39387.68,161466.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,10120,65145.0,14203.45,2299.73,81648.18,13902.89,12424.48,6689.12,33016.49,114664.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4510,68766.7,14184.92,3219.74,86171.36,19718.46,13551.01,6515.94,39785.41,125956.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50401,48203.16,2964.0,165.76,51332.92,11642.94,11934.69,4152.87,27730.5,79063.42 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,18569,104591.1,0.0,0.0,104591.1,20563.72,10011.28,22762.45,53337.45,157928.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28732,65680.13,27274.69,5440.31,98395.13,19505.04,12936.66,7649.31,40091.01,138486.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47675,15014.75,0.0,881.19,15895.94,1948.95,6510.91,1282.85,9742.71,25638.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48831,23354.91,0.0,232.16,23587.07,5723.64,0.0,1979.58,7703.22,31290.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),20810,75244.11,32186.85,11921.37,119352.33,16849.95,11468.78,1993.58,30312.31,149664.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43874,23340.54,2145.21,1066.11,26551.86,6072.33,4519.06,1877.06,12468.45,39020.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,31282,51398.87,0.0,2730.08,54128.95,12492.88,12423.01,4248.47,29164.36,83293.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20739,53477.3,14387.34,1701.9,69566.54,15459.74,10593.38,5443.04,31496.16,101062.7 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,15406,136915.58,0.0,0.0,136915.58,27483.67,12424.51,27603.11,67511.29,204426.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,15646,69502.25,0.0,1289.74,70791.99,5421.02,10844.61,5693.54,21959.17,92751.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7787,1457.71,0.0,250.0,1707.71,344.17,276.81,115.46,736.44,2444.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46904,34943.72,1900.39,415.32,37259.43,9877.7,6948.34,2894.2,19720.24,56979.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13156,68461.36,16534.75,1737.49,86733.6,19185.06,13484.88,6738.49,39408.43,126142.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator,Taxi & Accesssvcs",10840,93037.0,0.0,0.0,93037.0,19175.76,12424.5,7132.41,38732.67,131769.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,13428,58181.11,943.39,0.0,59124.5,11967.42,12424.51,4806.12,29198.05,88322.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,20552,66102.0,15614.7,6341.61,88058.31,14608.82,12424.5,7049.53,34082.85,122141.16 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,45616,92874.71,986.94,10441.46,104303.11,20266.35,12319.97,8360.08,40946.4,145249.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",15117,16056.0,451.58,0.0,16507.58,4142.48,3822.93,1339.25,9304.66,25812.24 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",6100,Health & Sanitation Inspection,6139,Senior Industrial Hygienist,30790,130910.08,0.0,0.0,130910.08,26346.5,12424.5,9899.33,48670.33,179580.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2996,"Rep, Human Rights Comm",16553,79028.52,0.0,0.0,79028.52,16279.83,12424.5,6430.1,35134.43,114162.95 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,27624,56494.36,0.0,0.0,56494.36,11163.44,8444.01,4633.77,24241.22,80735.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50153,68265.66,9784.93,4561.25,82611.84,19934.71,13451.92,6063.49,39450.12,122061.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,4009,30015.48,6601.77,4754.97,41372.22,5626.96,3345.06,694.93,9666.95,51039.17 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,40226,45418.3,0.0,0.0,45418.3,8957.41,7648.83,3561.78,20168.02,65586.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50686,10095.49,0.0,551.01,10646.5,0.0,4319.01,856.7,5175.71,15822.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,48367,3578.05,0.0,250.0,3828.05,785.02,253.98,315.17,1354.17,5182.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,4111,70866.77,0.0,0.0,70866.77,14969.19,9915.88,5876.91,30761.98,101628.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32641,41179.0,0.0,4579.7,45758.7,10515.61,10990.9,3680.38,25186.89,70945.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,30553,80171.52,0.0,0.0,80171.52,16469.38,9341.79,6670.98,32482.15,112653.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,7646,46180.31,0.0,0.0,46180.31,8804.81,6690.11,3801.82,19296.74,65477.05 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,42790,79718.3,0.0,1420.0,81138.3,16699.98,12424.5,6336.74,35461.22,116599.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,7277,11943.25,0.0,115.59,12058.84,2704.8,2413.22,933.59,6051.61,18110.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42967,67422.55,16373.74,3404.65,87200.94,19401.83,13285.08,6474.69,39161.6,126362.54 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",51627,87142.2,19770.14,6226.56,113138.9,21317.75,12042.21,2269.9,35629.86,148768.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,30164,36004.0,1939.29,0.0,37943.29,6700.34,4300.79,3013.36,14014.49,51957.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39846,56531.0,40.52,1975.95,58547.47,11651.3,12424.5,4595.7,28671.5,87218.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,808,49309.57,2151.82,0.0,51461.39,10056.21,9775.33,3913.36,23744.9,75206.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,672,97764.92,45704.31,13468.43,156937.66,27022.18,12424.51,2733.14,42179.83,199117.49 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,14285,29296.02,0.0,560.0,29856.02,5811.96,6690.11,2395.43,14897.5,44753.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,47241,11407.03,0.0,1113.27,12520.3,2224.61,1175.55,1003.84,4404.0,16924.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,6929,100554.01,0.0,0.0,100554.01,20724.83,12424.49,8261.64,41410.96,141964.97 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1032,IS Trainer-Journey,41253,87713.04,0.0,0.0,87713.04,18078.17,12424.5,7200.7,37703.37,125416.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,13165,100761.02,23678.02,5523.14,129962.18,21782.31,12424.5,9905.0,44111.81,174073.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,38349,49679.0,0.0,4597.79,54276.79,12587.8,12424.5,4482.87,29495.17,83771.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10928,66988.67,13840.53,684.05,81513.25,18521.19,13200.51,6195.84,37917.54,119430.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18177,12267.59,0.0,0.0,12267.59,2946.04,1021.62,2992.23,6959.89,19227.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32963,78742.8,1499.87,8926.64,89169.31,16395.5,8085.49,6861.1,31342.09,120511.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32645,102762.79,32800.65,15896.56,151460.0,23836.9,15196.12,2467.06,41500.08,192960.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,21425,101531.01,5319.05,0.0,106850.06,20926.02,12424.5,8548.62,41899.14,148749.2 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,27487,113073.02,0.0,5615.84,118688.86,23886.19,12424.5,9622.21,45932.9,164621.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,49154,97924.76,13922.5,8057.33,119904.59,20286.63,12072.56,9577.11,41936.3,161840.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O840,Harbor Attendant (OCII),17735,51719.01,0.0,366.6,52085.61,10437.16,10035.17,4222.64,24694.97,76780.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51957,2786.5,0.0,68.84,2855.34,0.0,1048.31,221.62,1269.93,4125.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,43072,54526.0,0.0,1465.33,55991.33,10147.33,5734.39,4563.61,20445.33,76436.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34812,119455.89,883.38,6133.96,126473.23,24132.87,12424.5,2151.82,38709.19,165182.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,29265,85368.02,0.0,25.0,85393.02,17599.26,12424.5,6728.96,36752.72,122145.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,13528,50402.32,6162.34,18395.0,74959.66,11305.24,6546.76,5939.11,23791.11,98750.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,40551,62187.01,0.0,6048.27,68235.28,13511.12,12424.5,5584.15,31519.77,99755.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,42338,71311.04,0.0,0.0,71311.04,14697.59,12424.5,5596.49,32718.58,104029.62 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8152,"Srclaimsinvstgtor,Cty Atty Ofc",24379,115838.09,0.0,0.0,115838.09,23312.74,12424.5,9280.8,45018.04,160856.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,52440,24566.0,0.0,0.0,24566.0,4571.74,2867.19,1911.69,9350.62,33916.62 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,2016,74412.07,0.0,3000.0,77412.07,15345.94,12424.5,6302.76,34073.2,111485.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,47463,63887.0,620.89,6358.18,70866.07,14487.43,12424.51,5838.06,32750.0,103616.07 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,46404,169900.35,0.0,27405.07,197305.42,39418.62,10226.33,10962.28,60607.23,257912.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,26675,510.47,0.0,0.0,510.47,0.0,112.0,39.62,151.62,662.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,4471,62210.98,723.62,7342.63,70277.23,14325.33,11005.24,5736.67,31067.24,101344.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,50864,107429.6,0.0,0.0,107429.6,22099.79,12376.63,8110.87,42587.29,150016.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,19852,75.0,0.0,0.0,75.0,0.0,0.0,5.94,5.94,80.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12302,43467.17,4423.74,1283.59,49174.5,11616.04,13231.56,3512.2,28359.8,77534.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,23090,5164.0,0.0,0.0,5164.0,0.0,955.73,388.9,1344.63,6508.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,10844,51410.26,152.85,1480.11,53043.22,12625.99,12364.77,4280.87,29271.63,82314.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10603,113559.44,1639.38,23114.04,138312.86,25385.06,11014.8,9951.31,46351.17,184664.03 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,15017,108373.95,18104.99,13786.12,140265.06,28925.48,12424.5,2334.91,43684.89,183949.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",15384,73713.74,29561.37,3827.8,107102.91,15275.8,12326.18,8696.69,36298.67,143401.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,16491,16534.54,0.0,1510.21,18044.75,0.0,3144.96,1399.13,4544.09,22588.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,2131,58515.02,0.0,0.0,58515.02,12496.28,9557.31,4561.72,26615.31,85130.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48499,113739.44,0.0,10671.69,124411.13,16399.59,11449.65,9634.99,37484.23,161895.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39717,111206.03,110195.29,20701.29,242102.61,25113.01,14926.23,4125.72,44164.96,286267.57 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40265,5330.5,0.0,147.0,5477.5,0.0,2274.35,424.07,2698.42,8175.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,9644,61875.03,2462.73,898.43,65236.19,12752.69,12424.5,5397.43,30574.62,95810.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,51555,8213.81,0.0,61.31,8275.12,0.0,2974.72,641.43,3616.15,11891.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37706,30257.58,5084.51,495.76,35837.85,7816.32,9429.76,2540.55,19786.63,55624.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,19232,67166.54,0.0,0.0,67166.54,12634.51,6881.27,13273.41,32789.19,99955.73 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,17214,3779.21,0.0,0.0,3779.21,0.0,1379.83,304.5,1684.33,5463.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,43323,100876.3,54715.81,11334.07,166926.18,22277.28,12376.71,10536.73,45190.72,212116.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38787,5262.25,0.0,39.06,5301.31,0.0,2027.94,411.47,2439.41,7740.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,36960,46220.01,0.0,0.0,46220.01,9084.55,8601.58,3819.96,21506.09,67726.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44096,54635.8,0.0,6921.65,61557.45,14250.67,12424.5,4928.58,31603.75,93161.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,21316,27162.5,0.0,0.0,27162.5,5107.52,5973.31,2203.85,13284.68,40447.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7228,Automotive Trnst Shop Sprv 1,9913,118936.0,41415.2,6877.68,167228.88,24699.89,12424.51,10593.81,47718.21,214947.09 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,7229,55256.3,0.0,0.0,55256.3,12446.39,11838.81,4460.7,28745.9,84002.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,10861,76338.02,0.0,4808.33,81146.35,16724.46,12424.5,6460.59,35609.55,116755.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,23521,13370.82,492.8,160.92,14024.54,0.0,3097.17,1088.53,4185.7,18210.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6249,Senior Electrical Inpsector,26371,61000.98,1625.48,11827.25,74453.71,13654.72,6133.04,5997.53,25785.29,100239.0 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,36390,30866.92,0.0,360.0,31226.92,6096.4,6262.07,2390.65,14749.12,45976.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20271,7052.79,0.0,0.0,7052.79,0.0,3058.34,546.03,3604.37,10657.16 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,6350,53312.7,0.0,0.0,53312.7,6474.11,7598.06,4262.09,18334.26,71646.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37641,97532.81,1269.88,13571.75,112374.44,18844.53,10035.18,1870.28,30749.99,143124.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34345,67657.14,24397.45,6355.28,98409.87,20245.76,13328.81,7505.5,41080.07,139489.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3928,22002.9,0.0,0.0,22002.9,4827.43,3392.84,1692.41,9912.68,31915.58 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,26126,75028.01,0.0,624.0,75652.01,15592.37,12424.5,6163.22,34180.09,109832.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,45559,53411.42,285.04,1774.85,55471.31,11396.98,9913.02,4512.62,25822.62,81293.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,24587,108038.01,6265.76,13828.57,128132.34,24541.7,12424.5,9874.08,46840.28,174972.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,50197,72913.04,0.0,0.0,72913.04,15457.91,8123.71,5995.86,29577.48,102490.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,50593,20946.01,0.0,10130.45,31076.46,4698.19,2771.62,2468.5,9938.31,41014.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,28228,8552.9,0.0,3035.8,11588.7,1918.42,1063.25,963.36,3945.03,15533.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,14665,81777.33,12058.78,499.1,94335.21,16860.53,12399.4,7742.32,37002.25,131337.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,36953,22020.39,1665.38,0.0,23685.77,0.0,6621.42,1904.59,8526.01,32211.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,16789,50241.44,0.0,1439.97,51681.41,12381.64,12424.51,4087.59,28893.74,80575.15 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,2192,58964.18,0.0,13639.29,72603.47,12936.69,6224.2,9947.3,29108.19,101711.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,28707,56531.01,0.0,0.0,56531.01,11651.3,12424.5,4346.71,28422.51,84953.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,3986,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,3703,47831.24,3462.25,1984.47,53277.96,11780.04,11440.28,4360.91,27581.23,80859.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,43920,27442.06,0.0,1789.64,29231.7,5898.14,4643.54,2036.1,12577.78,41809.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22950,112685.46,21438.8,10639.51,144763.77,22169.45,12424.5,2361.87,36955.82,181719.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,16655,48269.64,39.74,7385.33,55694.71,12618.94,12421.52,4501.45,29541.91,85236.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,7651,423.42,0.0,9.68,433.1,0.0,125.44,137.67,263.11,696.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,34222,35922.0,0.0,0.0,35922.0,6845.8,6690.12,2915.85,16451.77,52373.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,42458,13564.3,1402.69,704.0,15670.99,0.0,3583.99,1216.32,4800.31,20471.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13177,81856.6,8924.66,6351.38,97132.64,17030.41,12424.5,1565.95,31020.86,128153.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40331,119467.41,24220.37,10425.33,154113.11,24090.21,12424.5,2571.49,39086.2,193199.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33547,3657.26,0.0,0.0,3657.26,0.0,1535.74,289.38,1825.12,5482.38 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,46822,78963.11,0.0,1432.04,80395.15,16568.27,12424.5,6347.78,35340.55,115735.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11165,117129.7,15559.22,14707.16,147396.08,23205.2,12424.51,2350.78,37980.49,185376.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,13477,53519.6,0.0,496.5,54016.1,11142.84,9885.84,4318.45,25347.13,79363.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,23757,139744.97,29495.01,7824.54,177064.52,27627.29,12424.5,2964.19,43015.98,220080.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,42828,7895.88,0.0,990.02,8885.9,1732.35,776.54,1049.98,3558.87,12444.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,3419,65869.49,10485.51,2943.33,79298.33,18292.25,12400.85,6446.7,37139.8,116438.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,52215,138601.02,0.0,0.0,138601.02,27864.05,12424.5,27638.21,67926.76,206527.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,27491,8017.81,0.0,228.22,8246.03,0.0,2649.17,638.87,3288.04,11534.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1944,Materials Coordinator,1141,118104.04,0.0,0.0,118104.04,23768.42,12424.5,9665.81,45858.73,163962.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,45909,99842.71,0.0,3678.12,103520.83,21309.43,11692.97,7967.31,40969.71,144490.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6232,Street Inspection Supervisor,1875,56087.84,230.29,22272.9,78591.03,12663.27,6546.76,6353.53,25563.56,104154.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,990.0,Executive Contract Employees,0900,Management,9989,Executive Contract Employee,24256,176910.61,0.0,0.0,176910.61,34182.01,8601.57,19165.93,61949.51,238860.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,29877,71311.1,1516.68,624.0,73451.78,14826.41,12424.5,5791.18,33042.09,106493.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29228,118434.97,23855.13,6264.2,148554.3,23411.18,12316.98,1927.26,37655.42,186209.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,21891,117129.7,11258.34,8053.4,136441.44,23205.21,12424.5,2268.72,37898.43,174339.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,34928,29897.01,1440.95,0.0,31337.96,5563.81,4300.79,2560.31,12424.91,43762.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,24121,154204.04,0.0,0.0,154204.04,31033.61,12424.5,10401.86,53859.97,208064.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,19024,10278.0,0.0,0.0,10278.0,1912.74,1433.61,780.26,4126.61,14404.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,35953,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5102.79,30379.91,92738.92 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,52811,6037.66,757.03,0.0,6794.69,0.0,1806.92,527.37,2334.29,9128.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,7896,6345.0,0.0,0.0,6345.0,1423.17,1433.6,522.58,3379.35,9724.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14605,116607.15,13487.76,11594.55,141689.46,23092.95,12368.83,2368.1,37829.88,179519.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,4870,56276.02,0.0,1544.0,57820.02,12940.13,12424.5,4784.29,30148.92,87968.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,39374,41159.64,0.0,1965.6,43125.24,8659.99,9047.54,3591.74,21299.27,64424.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8226,131114.98,569.9,13243.11,144927.99,27542.02,10928.78,8435.68,46906.48,191834.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,47743,67283.75,0.0,927.98,68211.73,13883.4,11694.87,5589.91,31168.18,99379.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28472,37420.51,1010.93,2994.13,41425.57,8448.97,5734.39,870.21,15053.57,56479.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,38018,129811.06,0.0,0.0,129811.06,26124.19,12424.5,10006.17,48554.86,178365.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,31490,144737.76,2635.44,2938.81,150312.01,29150.37,9901.37,10289.05,49340.79,199652.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6108,8543.4,0.0,3002.33,11545.73,1945.35,1385.81,950.9,4282.06,15827.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,41297,68067.04,0.0,566.4,68633.44,14145.29,12424.5,5627.02,32196.81,100830.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,27549,24827.65,0.0,256.91,25084.56,6029.07,6935.03,1989.52,14953.62,40038.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,7810,15628.2,0.0,312.56,15940.76,3749.26,2007.04,267.57,6023.87,21964.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,41341,69902.02,1776.91,637.5,72316.43,14538.87,12424.5,5988.69,32952.06,105268.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,4716,59262.01,0.0,0.0,59262.01,12853.01,8123.74,4738.53,25715.28,84977.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6157,49976.28,16653.64,7440.91,74070.83,13097.82,12139.4,5917.32,31154.54,105225.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17465,4748.67,0.0,227.94,4976.61,2523.85,0.0,1400.53,3924.38,8900.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33526,140493.34,15680.76,10229.46,166403.56,28355.64,12424.5,423.04,41203.18,207606.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,11621,13607.93,521.14,389.4,14518.47,0.0,3094.18,1126.87,4221.05,18739.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,40665,111918.0,29468.42,828.0,142214.42,22523.67,12424.51,10108.72,45056.9,187271.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,28482,50000.0,0.0,0.0,50000.0,10160.0,0.0,125.0,10285.0,60285.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7258,Maintenance Machinist Sprv 1,21064,107816.03,0.0,600.0,108416.03,22389.41,12424.49,8909.95,43723.85,152139.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,48176,16813.58,487.35,0.0,17300.93,728.75,2472.95,1335.77,4537.47,21838.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24024,25932.0,8116.94,2124.85,36173.79,5881.2,5734.39,2965.58,14581.17,50754.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,53201,77529.2,10759.53,2657.82,90946.55,15848.93,11373.19,7090.67,34312.79,125259.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,899,4648.5,116.21,0.0,4764.71,1019.88,716.79,367.05,2103.72,6868.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,5538,154948.8,0.0,0.0,154948.8,31213.68,12281.13,10416.31,53911.12,208859.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5216,Chief Surveyor,38168,55470.02,0.0,0.0,55470.02,0.0,5447.63,4300.51,9748.14,65218.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50481,101376.43,1114.28,20764.08,123254.79,19849.88,10999.27,9443.81,40292.96,163547.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,41228,85368.0,33162.58,1464.0,119994.58,17893.38,12424.5,9720.17,40038.05,160032.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,27652,12379.0,259.99,1810.3,14449.29,3120.22,2867.19,1151.42,7138.83,21588.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,43595,88326.0,0.0,0.0,88326.0,18204.26,12424.43,6842.87,37471.56,125797.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,41608,32255.93,1450.2,298.43,34004.56,6811.25,6419.82,2788.59,16019.66,50024.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",37341,82485.7,23746.46,12201.88,118434.04,18351.77,12417.04,9643.87,40412.68,158846.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,5465,96163.3,3946.27,572.25,100681.82,19809.84,12424.5,8096.77,40331.11,141012.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",1400,"Clerical, Secretarial & Steno",1434,Shelter Service Rep,23349,37885.83,827.24,932.25,39645.32,9168.97,9286.0,3274.57,21729.54,61374.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,462,59088.25,34.65,6946.58,66069.48,13256.53,10463.64,5440.04,29160.21,95229.69 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,44780,11513.65,0.0,0.0,11513.65,0.0,1693.43,891.95,2585.38,14099.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2470,Diagnostic Imaging Tech IV,38868,94981.74,5728.23,6271.02,106980.99,19718.93,9900.05,8613.76,38232.74,145213.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12779,7529.3,0.0,0.0,7529.3,488.96,2183.25,558.14,3230.35,10759.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,36449,21470.0,0.0,0.0,21470.0,4721.24,5734.38,1725.18,12180.8,33650.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,38624,77852.6,27042.21,8564.86,113459.67,17103.35,11420.98,8836.92,37361.25,150820.92 +Calendar,2015,4,Community Health,DPH,Public Health,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",21205,1196.0,0.0,0.0,1196.0,0.0,71.44,92.72,164.16,1360.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,15220,30097.01,263.56,0.0,30360.57,1268.61,7645.85,2442.8,11357.26,41717.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48050,3038.01,0.0,3.92,3041.93,0.0,1481.39,235.95,1717.34,4759.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2295,119465.59,39541.05,12075.51,171082.15,23627.22,12424.5,2870.47,38922.19,210004.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,10571,118427.0,0.0,1316.96,119743.96,24143.77,12424.5,24421.99,60990.26,180734.22 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,44581,57913.08,10361.21,5242.24,73516.53,13163.97,12414.05,5911.43,31489.45,105005.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,42846,90428.21,0.0,604.8,91033.01,18751.51,12042.21,7362.95,38156.67,129189.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29926,81845.99,7386.18,9426.87,98659.04,16997.81,12364.77,1644.78,31007.36,129666.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,20751,119066.02,27288.43,12270.38,158624.83,31073.28,12424.5,2658.51,46156.29,204781.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",12545,21579.0,0.0,0.0,21579.0,3912.27,1433.57,1293.84,6639.68,28218.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36879,55172.59,0.0,0.0,55172.59,12365.74,12179.36,4385.62,28930.72,84103.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11307,7570.8,0.0,0.0,7570.8,0.0,3225.59,610.5,3836.09,11406.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51739,64318.44,7643.27,1060.0,73021.71,13418.32,11373.2,5753.08,30544.6,103566.31 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,17726,170317.89,0.0,0.0,170317.89,34276.58,12424.5,17887.7,64588.78,234906.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30690,100304.06,0.0,27.12,100331.18,0.0,8768.23,7779.49,16547.72,116878.9 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15037,62035.03,1778.4,9849.11,73662.54,17757.03,7838.61,1088.83,26684.47,100347.01 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,7218,51809.68,1984.97,7405.96,61200.61,12163.49,6852.53,4881.25,23897.27,85097.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28017,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34745,14364.36,0.0,39.33,14403.69,0.0,4759.24,1116.91,5876.15,20279.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51364,63887.0,4115.71,958.8,68961.51,13358.17,12424.48,5687.23,31469.88,100431.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,33729,68571.02,13703.03,10978.13,93252.18,14281.57,12424.5,7627.73,34333.8,127585.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",39867,97989.0,37603.98,15390.09,150983.07,22023.35,12424.5,10299.31,44747.16,195730.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",20783,650.0,0.0,0.0,650.0,1749.08,0.0,1578.08,3327.16,3977.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17582,7218.1,0.0,1090.23,8308.33,1921.77,3130.01,679.79,5731.57,14039.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,7397,17934.74,0.0,0.0,17934.74,2929.96,1439.57,2854.23,7223.76,25158.5 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,34834,20097.01,0.0,0.0,20097.01,5185.02,6078.27,1633.04,12896.33,32993.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,20495,75073.25,0.0,593.07,75666.32,15534.63,11808.59,6289.59,33632.81,109299.13 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,41676,33304.32,0.0,0.0,33304.32,6197.94,4902.25,2891.89,13992.08,47296.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51839,25198.73,2570.15,1212.2,28981.08,6971.33,7954.32,2017.63,16943.28,45924.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,48165,112496.7,25738.44,5925.8,144160.94,22290.11,12403.6,2401.3,37095.01,181255.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23853,64959.31,45943.3,5523.31,116425.92,11822.86,6690.11,1964.8,20477.77,136903.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,12159,9012.0,0.0,0.0,9012.0,0.0,2867.18,724.13,3591.31,12603.31 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,45978,173724.86,0.0,0.0,173724.86,35803.16,11558.37,10251.0,57612.53,231337.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,24445,90960.83,0.0,1299.3,92260.13,18937.43,11534.48,7500.65,37972.56,130232.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28579,62269.89,570.56,4159.93,67000.38,13141.24,11014.8,5522.56,29678.6,96678.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23353,54124.09,0.0,624.0,54748.09,12250.29,12424.51,4285.71,28960.51,83708.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,23007,99495.43,10784.71,3948.86,114229.0,21345.13,12272.18,9334.95,42952.26,157181.26 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,474C,Senior Fiscal Technician,30675,80442.86,0.0,3568.5,84011.36,16788.52,11319.44,6773.95,34881.91,118893.27 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,17881,56276.02,0.0,624.0,56900.02,12731.54,12424.5,4664.35,29820.39,86720.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,11918,30888.97,590.06,282.75,31761.78,4796.89,4844.36,2536.42,12177.67,43939.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,48474,25220.75,0.0,0.0,25220.75,6308.29,7627.93,1971.2,15907.42,41128.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,17994,33890.0,0.0,250.0,34140.0,7806.08,8123.71,2561.87,18491.66,52631.66 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,11304,1334.92,0.0,0.0,1334.92,0.0,401.71,103.35,505.06,1839.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,32220,97793.02,18474.95,8053.47,124321.44,20386.02,12424.5,9835.44,42645.96,166967.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,22574,100183.37,75.15,9827.63,110086.15,21599.69,12352.85,8833.15,42785.69,152871.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,40284,1533.0,0.0,0.0,1533.0,0.0,716.79,118.98,835.77,2368.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,43857,72522.0,0.0,0.0,72522.0,14944.42,12424.51,5830.93,33199.86,105721.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26309,94565.19,8287.58,5926.22,108778.99,19637.87,12424.5,1752.47,33814.84,142593.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4309,104980.18,2284.2,13866.05,121130.43,23100.44,12567.86,2055.35,37723.65,158854.08 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,50909,75927.07,2011.82,337.16,78276.05,15657.05,12424.5,6378.6,34460.15,112736.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,50157,80557.86,89.78,1261.01,81908.65,16820.72,12074.58,6711.37,35606.67,117515.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,42607,86663.04,1009.65,958.17,88630.86,17967.64,12424.49,6880.83,37272.96,125903.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11986,94531.3,18442.81,5856.33,118830.44,19612.16,12424.5,1937.19,33973.85,152804.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8159,Child Support Officer III,23808,93058.17,0.0,622.5,93680.67,19304.24,12394.64,7537.49,39236.37,132917.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,34154,61428.06,0.0,2224.0,63652.06,13074.27,12424.5,5131.13,30629.9,94281.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,43628,88408.37,2800.5,0.0,91208.87,18407.02,11271.83,7349.52,37028.37,128237.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",18579,500.0,0.0,0.0,500.0,0.0,0.0,39.55,39.55,539.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15634,27142.13,3267.98,1331.57,31741.68,7137.37,8448.1,2390.78,17976.25,49717.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,41374,59990.04,0.0,0.0,59990.04,12106.32,10035.17,4973.71,27115.2,87105.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9149,Traf Signal Electrician Sup II,41190,134241.05,0.0,10587.53,144828.58,27016.12,12424.5,10206.05,49646.67,194475.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,289,10064.32,0.0,899.58,10963.9,1718.0,0.0,2935.7,4653.7,15617.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,24657,66102.02,8240.17,5456.18,79798.37,14759.75,12424.49,6546.9,33731.14,113529.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44392,62704.45,4020.14,756.1,67480.69,14523.19,12348.22,4903.43,31774.84,99255.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51804,67939.6,25920.06,1413.09,95272.75,19052.02,13388.6,7408.16,39848.78,135121.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",19222,131564.78,62968.19,20103.83,214636.8,29704.54,15196.12,3606.68,48507.34,263144.14 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,14707,140101.08,0.0,0.0,140101.08,28136.02,12424.5,25141.63,65702.15,205803.23 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,8731,206537.03,0.0,0.0,206537.03,41550.24,12424.5,11183.05,65157.79,271694.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,13971,77813.72,0.0,0.0,77813.72,16004.77,12316.74,6282.27,34603.78,112417.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11215,39949.41,3764.19,1424.81,45138.41,10733.22,12491.4,3445.5,26670.12,71808.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,41903,97934.02,12572.59,1946.39,112453.0,20219.83,12424.5,9221.18,41865.51,154318.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,23183,81411.61,6347.52,4274.8,92033.93,17080.58,12424.48,7172.49,36677.55,128711.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30296,51792.59,2801.2,647.9,55241.69,14498.22,10224.17,4192.0,28914.39,84156.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,47542,54901.65,0.0,827.39,55729.04,11342.5,10874.43,4530.64,26747.57,82476.61 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,53013,75094.55,3706.82,2184.58,80985.95,15745.99,10967.02,6516.45,33229.46,114215.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17104,50715.32,0.0,6176.53,56891.85,13204.51,11684.65,4566.05,29455.21,86347.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,30730,138633.97,3841.36,7940.95,150416.28,27400.21,12424.5,1054.68,40879.39,191295.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,35335,66102.03,6195.04,1756.35,74053.42,13985.54,12424.51,5859.25,32269.3,106322.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,18546,29985.01,0.0,0.0,29985.01,6185.64,9079.44,2432.03,17697.11,47682.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,9703,68204.48,4244.63,1085.1,73534.21,14497.05,10068.51,5867.16,30432.72,103966.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35593,29177.35,1352.6,389.96,30919.91,6355.28,5690.72,2175.29,14221.29,45141.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,1704,64455.8,733.69,14467.38,79656.87,15512.59,12424.5,6489.9,34426.99,114083.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42629,112685.43,674.06,5734.74,119094.23,22330.92,12424.5,2027.69,36783.11,155877.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24135,24208.52,2456.17,1020.93,27685.62,6218.96,7517.61,1993.54,15730.11,43415.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6594,67376.21,5269.01,6873.82,79519.04,20295.0,13275.35,6531.93,40102.28,119621.32 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,25477,72399.0,0.0,440.0,72839.0,15303.58,10405.52,5826.88,31535.98,104374.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,6848,6244.44,0.0,0.0,6244.44,0.0,1140.91,484.06,1624.97,7869.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,33899,58706.21,3539.31,8556.27,70801.79,13513.04,11608.61,5841.0,30962.65,101764.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,28085,111817.22,0.0,0.0,111817.22,22409.66,12158.67,8736.33,43304.66,155121.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,53166,57344.01,331.43,0.0,57675.44,11793.3,12424.5,4533.25,28751.05,86426.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,23169,128888.8,0.0,0.0,128888.8,25937.66,12424.5,9952.55,48314.71,177203.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,37836,139479.47,0.0,2831.28,142310.75,28098.12,10121.9,10038.28,48258.3,190569.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,46494,66036.56,0.0,0.0,66036.56,14488.44,5734.39,8911.67,29134.5,95171.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,32957,7941.0,0.0,0.0,7941.0,1781.16,1433.6,623.74,3838.5,11779.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41880,26081.67,0.0,1943.99,28025.66,8741.1,2012.41,726.36,11479.87,39505.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44563,17691.57,3037.53,746.02,21475.12,4417.69,5463.25,1643.5,11524.44,32999.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49353,56531.0,17085.83,3267.45,76884.28,11780.12,12424.5,6045.73,30250.35,107134.63 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,42174,87713.0,0.0,0.0,87713.0,18090.98,12424.5,7200.7,37716.18,125429.18 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",39382,105483.72,0.0,0.0,105483.72,21748.05,12472.29,8555.71,42776.05,148259.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,20233,7746.0,0.0,0.0,7746.0,1703.34,955.74,595.56,3254.64,11000.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,7671,1820.81,0.0,0.0,1820.81,0.0,764.58,139.71,904.29,2725.1 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),33091,159345.62,0.0,1500.0,160845.62,32365.56,12424.5,10563.99,55354.05,216199.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,41721,26165.73,1072.13,146.0,27383.86,0.0,3282.34,1980.67,5263.01,32646.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,30437,145266.04,26490.31,19478.69,191235.04,29417.33,12424.5,3249.53,45091.36,236326.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25491,119467.35,13004.72,7991.24,140463.31,23620.97,12424.5,2292.07,38337.54,178800.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,33794,62461.1,20383.54,2575.0,85419.64,13370.82,12424.5,6608.96,32404.28,117823.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,37888,5702.12,0.0,0.0,5702.12,0.0,1800.95,441.46,2242.41,7944.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19701,77071.0,11222.73,1440.0,89733.73,16181.0,12424.5,7270.76,35876.26,125609.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,40598,112505.22,27341.23,31291.53,171137.98,23255.17,12354.79,10573.71,46183.67,217321.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,37891,55180.35,0.0,200.0,55380.35,12348.81,12184.67,4528.32,29061.8,84442.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,6144,15155.0,115.93,36287.56,51558.49,3334.23,1194.67,776.01,5304.91,56863.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36954,97763.78,7509.42,7724.98,112998.18,25657.1,12424.5,1905.8,39987.4,152985.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,49061,133087.05,0.0,0.0,133087.05,26783.95,12424.5,9924.0,49132.45,182219.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,23290,96311.03,11141.97,12279.21,119732.21,25900.62,10035.18,2006.42,37942.22,157674.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,37016,21113.01,0.0,0.0,21113.01,3929.11,3327.14,1664.91,8921.16,30034.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,23301,64793.42,3841.17,1420.0,70054.59,13633.03,12281.15,5681.92,31596.1,101650.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,14075,145200.01,0.0,0.0,145200.01,29926.35,12424.5,10251.17,52602.02,197802.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2991,"Coord, Human Rights Comm",28700,111798.0,0.0,0.0,111798.0,22810.94,12424.5,9031.59,44267.03,156065.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,51886,56662.82,465.77,13422.94,70551.53,14132.7,6594.55,5763.19,26490.44,97041.97 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),22841,163157.01,0.0,4388.14,167545.15,33319.28,10990.9,9116.64,53426.82,220971.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21449,68463.28,5220.82,4961.09,78645.19,17234.63,13487.76,5796.62,36519.01,115164.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35123,33562.34,4018.85,1042.47,38623.66,8900.01,10472.55,2773.19,22145.75,60769.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,51834,56077.95,10372.19,2031.03,68481.17,10798.13,6690.11,1145.83,18634.07,87115.24 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,376C,Sr Human Resources Analyst,13885,38111.29,0.0,3000.0,41111.29,7092.49,4533.75,3347.93,14974.17,56085.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,13086,61372.8,0.0,0.0,61372.8,12638.56,12328.92,4934.44,29901.92,91274.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,9598,126994.04,0.0,0.0,126994.04,25557.71,12424.5,9911.95,47894.16,174888.2 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,37184,69247.02,0.0,72.0,69319.02,14285.55,12424.5,5697.35,32407.4,101726.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,42965,98070.64,0.0,880.0,98950.64,20451.61,12053.87,8090.48,40595.96,139546.6 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,23592,55100.21,8797.59,7369.12,71266.92,12220.14,10849.04,5848.58,28917.76,100184.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,20505,85368.05,0.0,0.0,85368.05,17594.6,12424.5,6902.17,36921.27,122289.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,7275,25256.0,0.0,0.0,25256.0,4700.15,4235.09,2012.89,10948.13,36204.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20494,31281.5,0.0,1285.42,32566.92,8431.22,2459.93,4512.52,15403.67,47970.59 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,48250,10967.16,0.0,0.0,10967.16,1988.34,955.73,1072.59,4016.66,14983.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,5768,34180.0,0.0,0.0,34180.0,6659.83,7645.85,2757.59,17063.27,51243.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41388,59319.05,80.15,11289.72,70688.92,296.06,0.0,6978.19,7274.25,77963.17 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,5536,62153.22,463.76,4816.61,67433.59,13751.34,12237.53,5476.65,31465.52,98899.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,3865,80357.0,0.0,0.0,80357.0,16562.14,12424.5,6413.81,35400.45,115757.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,8999,76338.03,0.0,4642.62,80980.65,16689.57,12424.5,6447.48,35561.55,116542.2 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1110,"Ex Asst To Ex Dir, Retirement",23112,124338.01,0.0,0.0,124338.01,25023.46,12424.5,17162.98,54610.94,178948.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23960,49786.81,20351.9,15193.05,85331.76,15754.3,9901.02,6626.23,32281.55,117613.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9675,67345.84,23584.93,1653.9,92584.67,18849.59,13267.34,7241.15,39358.08,131942.75 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,52321,192.2,0.0,13412.68,13604.88,43.11,23.89,1041.25,1108.25,14713.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,50835,7677.25,0.0,168.53,7845.78,1452.62,1714.34,625.28,3792.24,11638.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42032,126734.54,7844.45,5945.44,140524.43,25588.24,12424.5,2338.63,40351.37,180875.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38059,13272.9,0.0,177.64,13450.54,0.0,3307.2,1042.99,4350.19,17800.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,48132,18753.01,0.0,0.0,18753.01,4206.3,3345.06,1303.89,8855.25,27608.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,23174,185178.0,0.0,0.0,185178.0,37267.22,12424.51,10951.26,60642.99,245820.99 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,22149,56120.03,0.0,1020.0,57140.03,12782.63,12424.5,4635.27,29842.4,86982.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",7982,94388.0,676.5,833.87,95898.37,19455.81,12424.5,7711.74,39592.05,135490.42 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,1571,31039.23,0.0,6036.48,37075.71,6810.01,3440.63,3042.93,13293.57,50369.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,17171,83974.8,26662.57,5017.92,115655.29,17434.15,12328.94,9256.25,39019.34,154674.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,47827,53237.92,1945.02,661.77,55844.71,11312.22,10038.64,4651.53,26002.39,81847.1 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",34386,75740.01,0.0,750.0,76490.01,16781.94,4778.65,6212.5,27773.09,104263.1 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,22065,3226.5,0.0,10120.93,13347.43,841.73,716.79,1046.91,2605.43,15952.86 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,5238,87039.11,3120.45,552.3,90711.86,17988.48,12424.5,7230.95,37643.93,128355.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43425,119450.17,45372.04,9574.32,174396.53,24154.22,12424.5,2952.66,39531.38,213927.91 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,28729,85004.0,0.0,0.0,85004.0,17519.6,12424.5,6881.47,36825.57,121829.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,5496,8122.9,0.0,80.0,8202.9,0.0,1720.32,636.67,2356.99,10559.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,9706,6106.45,41.4,180.89,6328.74,0.0,2855.25,490.89,3346.14,9674.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",7021,17151.02,3301.57,1715.1,22167.69,3341.51,1433.6,374.48,5149.59,27317.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,47405,142646.15,0.0,0.0,142646.15,28684.24,12418.53,17423.66,58526.43,201172.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,34999,114379.41,23431.21,7876.43,145687.05,23731.62,12424.5,10122.27,46278.39,191965.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35635,7576.5,318.92,38.42,7933.84,1799.55,2283.66,602.37,4685.58,12619.42 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,36203,33517.0,0.0,0.0,33517.0,7517.84,5256.52,2731.8,15506.16,49023.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,24643,81755.02,868.77,1898.56,84522.35,16841.87,11946.64,6758.87,35547.38,120069.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8394,10697.39,0.0,331.61,11029.0,2845.48,4503.88,900.0,8249.36,19278.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",49251,21663.92,0.0,0.0,21663.92,0.0,5082.82,1681.46,6764.28,28428.2 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45513,18153.98,0.0,0.0,18153.98,3992.07,4462.07,1456.81,9910.95,28064.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,29575,34041.06,0.0,0.0,34041.06,8341.51,8945.52,2576.17,19863.2,53904.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,30055,81157.0,10153.93,12331.15,103642.08,18045.12,12424.5,8095.66,38565.28,142207.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,11566,79551.0,0.0,624.0,80175.0,16524.65,12424.5,6396.27,35345.42,115520.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,6747,56705.0,0.0,0.0,56705.0,11380.24,9557.31,4480.56,25418.11,82123.11 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,37067,198269.07,0.0,5925.0,204194.07,40114.94,12376.71,11161.15,63652.8,267846.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25503,58859.49,4287.48,1627.12,64774.09,15711.42,13295.95,4721.61,33728.98,98503.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,27089,61735.01,0.0,624.0,62359.01,12849.21,12424.5,4941.29,30215.0,92574.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35449,40492.83,3267.79,1092.13,44852.75,10824.18,12432.81,3057.57,26314.56,71167.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,21189,135421.0,0.0,4996.14,140417.14,28264.15,12424.51,10182.13,50870.79,191287.93 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,35758,93681.03,0.0,1373.43,95054.46,19589.42,12424.5,7514.73,39528.65,134583.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,49891,74165.02,0.0,0.0,74165.02,15285.76,12424.5,5782.22,33492.48,107657.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,49572,73000.54,2634.7,1942.91,77578.15,15072.16,9890.32,6375.45,31337.93,108916.08 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,38741,92085.01,0.0,0.0,92085.01,18979.21,12424.5,7304.91,38708.62,130793.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,23643,11460.01,0.0,0.0,11460.01,2077.7,955.74,708.83,3742.27,15202.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,368,54124.0,19.55,1088.28,55231.83,12353.93,12424.5,4575.78,29354.21,84586.04 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,1941,81157.02,6926.9,600.0,88683.92,16838.39,12424.5,6935.89,36198.78,124882.7 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,7665,50239.39,0.0,1209.34,51448.73,10654.38,7380.05,4139.17,22173.6,73622.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",32099,130341.6,32379.26,19502.12,182222.98,29247.18,15052.76,3061.62,47361.56,229584.54 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,12368,93735.03,29000.84,1842.37,124578.24,19555.69,12176.31,9796.17,41528.17,166106.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,38928,40712.85,5251.2,2642.72,48606.77,10333.44,9785.79,3955.74,24074.97,72681.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",7812,7977.83,0.0,0.0,7977.83,0.0,1899.53,618.81,2518.34,10496.17 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,28275,35027.55,0.0,3502.76,38530.31,6985.54,2333.54,2453.91,11772.99,50303.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,793.0,"SEIU - Firefighter Paramedics, Local 1021",H000,Fire Services,H001,Fire Rescue Paramedic,40985,121653.5,0.0,9419.04,131072.54,25761.84,12185.51,2199.24,40146.59,171219.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",41183,8830.8,0.0,0.0,8830.8,0.0,2102.62,685.02,2787.64,11618.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,45134,7851.34,0.0,0.0,7851.34,1761.05,1209.9,632.92,3603.87,11455.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34019,29173.5,0.0,9630.76,38804.26,6692.9,6451.18,3142.04,16286.12,55090.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,8824,69375.48,203.73,3193.32,72772.53,14764.2,11689.19,6040.04,32493.43,105265.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51915,2485.07,0.0,250.0,2735.07,648.85,471.89,191.28,1312.02,4047.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47511,67726.72,17265.2,5992.4,90984.32,20208.0,13344.1,6857.79,40409.89,131394.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,40147,47913.45,0.0,0.0,47913.45,10242.88,8099.1,3973.44,22315.42,70228.87 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,23047,66366.29,0.0,0.0,66366.29,13696.24,7624.94,5431.56,26752.74,93119.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,6046,28295.07,0.0,440.94,28736.01,6910.96,6997.86,2362.52,16271.34,45007.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28368,61429.0,1007.82,6831.83,69268.65,0.0,5356.28,5374.92,10731.2,79999.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,11562,2129.29,0.0,10.05,2139.34,0.0,704.85,165.97,870.82,3010.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,4236,116976.01,0.0,0.0,116976.01,23541.49,12424.49,9241.76,45207.74,162183.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,35000,100554.04,0.0,0.0,100554.04,20724.83,12424.5,8051.21,41200.54,141754.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17540,11295.5,0.0,0.0,11295.5,227.45,4898.12,896.91,6022.48,17317.98 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",38380,74685.0,14257.21,12316.72,101258.93,17160.37,12424.5,8296.89,37881.76,139140.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,29062,26147.0,44.87,981.9,27173.77,5923.94,5256.52,2172.69,13353.15,40526.92 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,1954,42598.02,0.0,2434.82,45032.84,10702.95,9079.44,3873.79,23656.18,68689.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,27572,29896.0,724.5,1834.18,32454.68,5733.28,4826.44,2526.55,13086.27,45540.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,31787,26397.0,0.0,793.48,27190.48,5920.85,5017.58,2241.98,13180.41,40370.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43917,9600.59,0.0,994.18,10594.77,1584.16,4125.17,866.66,6575.99,17170.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17722,28662.0,0.0,5717.87,34379.87,6036.53,0.0,3508.26,9544.79,43924.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,11826,16172.5,0.0,234.23,16406.73,3053.29,2867.19,1317.21,7237.69,23644.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38313,59989.26,0.0,1496.5,61485.76,0.0,5253.53,4764.47,10018.0,71503.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6259,11182.56,1951.93,314.85,13449.34,3138.87,2194.06,1038.91,6371.84,19821.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,51923,158367.03,1545.11,13884.86,173797.0,31259.77,12424.51,2962.6,46646.88,220443.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,47957,11288.54,0.0,0.0,11288.54,0.0,4094.71,874.84,4969.55,16258.09 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,2584,5885.11,0.0,3056.86,8941.97,1291.2,621.23,1362.8,3275.23,12217.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,14720,67261.09,0.0,624.0,67885.09,13987.79,12424.5,5582.99,31995.28,99880.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18381,8908.69,0.0,138.69,9047.38,0.0,3807.99,732.58,4540.57,13587.95 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42824,162792.84,0.0,1562.5,164355.34,33070.42,12424.5,10419.96,55914.88,220270.22 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,9416,17248.48,518.4,0.0,17766.88,0.0,4126.08,1377.35,5503.43,23270.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,16346,138635.29,0.0,6909.62,145544.91,27940.06,12424.5,2479.92,42844.48,188389.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50874,85432.29,31323.89,24811.39,141567.57,17550.1,9079.44,2343.51,28973.05,170540.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,16132,100554.0,0.0,0.0,100554.0,20724.83,12424.48,8272.18,41421.49,141975.49 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,15394,205167.03,0.0,36846.03,242013.06,45419.07,12424.5,11837.67,69681.24,311694.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39597,4402.83,986.19,278.22,5667.24,1250.72,1389.82,413.12,3053.66,8720.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,47621,41617.5,1724.29,7118.71,50460.5,9263.04,7406.92,4127.25,20797.21,71257.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,44651,137373.8,4534.75,3262.2,145170.75,12594.43,11851.06,10088.13,34533.62,179704.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,34318,92103.56,3767.08,3785.53,99656.17,18960.27,12543.97,1660.35,33164.59,132820.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,52230,92709.6,4935.16,9191.22,106835.98,20346.9,12520.08,8543.07,41410.05,148246.03 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9157,Claims Adjuster,12670,116384.01,2127.18,0.0,118511.19,23422.64,12424.5,9801.87,45649.01,164160.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,45741,87047.01,0.0,0.0,87047.01,17940.63,12424.5,15055.66,45420.79,132467.8 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,32337,66223.37,0.0,450.0,66673.37,13635.14,9252.19,5391.76,28279.09,94952.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8475,70560.27,38487.41,8496.29,117543.97,21629.38,13904.03,8998.17,44531.58,162075.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,52949,5634.01,0.0,1757.1,7391.11,1453.57,1720.32,596.58,3770.47,11161.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,8368,24799.99,16392.35,3569.35,44761.69,6414.21,6218.22,3517.11,16149.54,60911.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,20968,34250.93,53.29,1117.05,35421.27,0.0,5692.57,2748.86,8441.43,43862.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41299,118124.48,1015.01,26197.57,145337.06,27927.64,11172.49,9683.98,48784.11,194121.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,47922,124607.85,0.0,0.0,124607.85,24404.49,9557.31,21002.06,54963.86,179571.71 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,11682,18860.48,1959.73,0.0,20820.21,0.0,4297.79,1614.08,5911.87,26732.08 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,45656,33056.88,0.0,45.0,33101.88,6176.02,3769.17,2740.8,12685.99,45787.87 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,28995,22284.25,0.0,0.0,22284.25,4998.37,3785.59,1779.33,10563.29,32847.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22859,25884.01,5254.32,3352.28,34490.61,5595.31,2867.19,597.61,9060.11,43550.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13634,10463.38,0.0,391.85,10855.23,0.0,701.81,840.41,1542.22,12397.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,46020,222.1,0.0,0.0,222.1,49.82,47.79,4.97,102.58,324.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,20419,65786.13,1019.73,1619.83,68425.69,13755.0,12364.77,5562.82,31682.59,100108.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,44475,26010.01,0.0,0.0,26010.01,5834.07,4300.79,2138.43,12273.29,38283.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3292,Asst Superintendent Rec,17008,97760.53,0.0,519.43,98279.96,19640.82,10342.26,7868.22,37851.3,136131.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",8180,181363.31,3657.01,16932.5,201952.82,39029.59,15243.91,3385.33,57658.83,259611.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",4690,13712.6,0.0,0.0,13712.6,0.0,3249.49,1064.32,4313.81,18026.41 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,45811,102825.41,13187.83,8399.35,124412.59,21716.87,12125.89,9864.97,43707.73,168120.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,1326,21650.5,0.0,0.0,21650.5,4856.22,3345.06,1726.15,9927.43,31577.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,45898,109076.06,0.0,0.0,109076.06,21787.68,11468.77,8724.37,41980.82,151056.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,5433,56531.01,0.0,3948.63,60479.64,12460.83,12424.5,4955.35,29840.68,90320.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,31313,8432.76,0.0,61.31,8494.07,0.0,3056.84,658.34,3715.18,12209.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,39962,139378.99,14595.2,16213.68,170187.87,28118.03,12424.5,2959.04,43501.57,213689.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",28229,116603.49,11677.36,6996.24,135277.09,24609.56,13475.8,2264.03,40349.39,175626.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,17046,2054.25,210.38,277.0,2541.63,492.82,237.98,5.92,736.72,3278.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2110,117292.86,68287.5,13145.29,198725.65,23697.62,12424.5,508.55,36630.67,235356.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,20017,18904.6,0.0,0.0,18904.6,0.0,4168.19,1446.69,5614.88,24519.48 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8603,Emergency Services Coord III,32112,106116.0,2585.7,0.0,108701.7,21870.85,12424.5,8880.09,43175.44,151877.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43772,69433.29,41694.26,5516.33,116643.88,20561.94,13684.04,9103.29,43349.27,159993.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32938,67325.48,8653.01,7716.92,83695.41,20569.87,13267.03,6320.47,40157.37,123852.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,36477,49083.1,912.09,1100.0,51095.19,10215.78,10990.9,4063.27,25269.95,76365.14 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,47661,37000.18,1920.01,1319.19,40239.38,8940.27,9965.16,3313.18,22218.61,62457.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,5969,136466.01,15180.75,11867.28,163514.04,36069.23,12424.5,2776.67,51270.4,214784.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30217,62807.89,14844.31,4374.5,82026.7,18316.31,12366.74,6399.25,37082.3,119109.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6794,3854.98,0.0,0.0,3854.98,0.0,1618.77,306.92,1925.69,5780.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,2397,79722.05,0.0,2057.0,81779.05,16853.79,12424.5,6775.63,36053.92,117832.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35837,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,26197,97010.85,0.0,666.92,97677.77,19756.03,10104.65,759.53,30620.21,128297.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,22.0,"Prof & Tech Engineers - Personnel, Local 21",1500,Administrative Secretarial,1543,"Secretary, Comm On The Environ",4047,56708.43,0.0,7550.9,64259.33,11850.15,6935.02,5237.0,24022.17,88281.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,9322,32537.5,2162.85,15915.45,50615.8,5776.28,2867.19,836.97,9480.44,60096.24 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,44672,49553.79,0.0,2960.97,52514.76,10891.86,9100.35,4370.65,24362.86,76877.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,8390,72472.67,9612.75,6550.69,88636.11,15585.38,12363.28,7087.48,35036.14,123672.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26327,2947.18,0.0,76.01,3023.19,0.0,731.73,234.25,965.98,3989.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23925,16339.76,41.33,620.07,17001.16,872.2,7085.49,1377.16,9334.85,26336.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2565,68431.37,12287.85,10810.16,91529.38,19287.9,8694.0,1287.23,29269.13,120798.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37722,6315.2,0.0,0.0,6315.2,0.0,2676.05,504.48,3180.53,9495.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7314,Aprnt Stationary Engineer I,1499,10905.0,736.09,0.0,11641.09,2029.4,2389.33,889.16,5307.89,16948.98 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,37269,74412.0,0.0,3624.0,78036.0,15474.51,12424.5,6482.7,34381.71,112417.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7956,65589.62,0.0,1500.0,67089.62,13796.87,12424.5,5366.75,31588.12,98677.74 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,37599,9463.59,0.0,0.0,9463.59,0.0,12424.5,137.22,12561.72,22025.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6978,11315.93,0.0,0.0,11315.93,1712.91,4848.12,923.6,7484.63,18800.56 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8452,Criminal Justice Specialist 2,2955,14274.05,0.0,44.02,14318.07,3201.67,1859.62,1223.86,6285.15,20603.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,21637,59398.29,11.09,2303.27,61712.65,12643.53,12011.57,5101.25,29756.35,91469.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14910,14914.92,0.0,24.78,14939.7,0.0,4942.94,1158.54,6101.48,21041.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,47547,56231.16,0.0,5968.95,62200.11,12311.79,12358.2,5080.06,29750.05,91950.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,35608,58772.16,10095.08,2155.25,71022.49,12637.38,11153.7,5850.41,29641.49,100663.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,23025,24420.0,1410.72,457.9,26288.62,5580.1,4778.66,2088.08,12446.84,38735.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,14531,56497.23,0.0,4551.47,61048.7,12175.21,12417.04,4953.36,29545.61,90594.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1924,23751.47,5300.34,1432.71,30484.52,6245.12,4599.46,2131.2,12975.78,43460.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,17593,2890.0,0.0,0.0,2890.0,0.0,477.86,224.12,701.98,3591.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20301,0.0,0.0,3781.62,3781.62,0.0,68.5,289.29,357.79,4139.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43208,7141.88,0.0,65.88,7207.76,0.0,2749.23,558.99,3308.22,10515.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,41531,36151.99,38.79,834.8,37025.58,1808.48,8252.14,2962.77,13023.39,50048.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,50088,97934.0,0.0,0.0,97934.0,20184.94,12424.5,8124.44,40733.88,138667.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,43057,20415.0,8005.01,2327.68,30747.69,4710.13,4778.67,2426.36,11915.16,42662.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,50363,13914.7,301.35,168.76,14384.81,0.0,3249.49,1116.49,4365.98,18750.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",52405,158710.5,0.0,0.0,158710.5,31979.69,12424.5,17697.17,62101.36,220811.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,9011,70186.24,0.0,0.0,70186.24,14385.61,10657.29,5562.38,30605.28,100791.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",1400,"Clerical, Secretarial & Steno",1434,Shelter Service Rep,20414,25308.39,0.0,0.0,25308.39,6059.04,6206.28,2139.98,14405.3,39713.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47627,36762.64,6594.18,578.7,43935.52,9661.23,11483.76,3347.7,24492.69,68428.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9984,23393.11,2070.95,909.75,26373.81,6335.37,7285.18,1993.89,15614.44,41988.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",10898,116420.41,12793.1,1268.76,130482.27,23996.29,12424.5,9950.08,46370.87,176853.14 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4334,"Investigator, Tax Collector",46101,87160.95,0.0,603.26,87764.21,18060.67,12011.39,6997.13,37069.19,124833.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17727,141016.23,18799.17,36955.43,196770.83,27839.95,12424.5,3274.41,43538.86,240309.69 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,6588,62163.61,1514.19,0.0,63677.8,12752.15,12028.77,5182.29,29963.21,93641.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,50955,11415.94,0.0,85.84,11501.78,0.0,4136.52,891.51,5028.03,16529.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12918,3758.75,50.22,115.94,3924.91,0.0,1448.53,304.64,1753.17,5678.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,22685,119450.22,2215.7,3429.75,125095.67,23683.8,12424.5,2083.89,38192.19,163287.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,25769,81157.01,581.04,5275.12,87013.17,17731.44,12424.5,6943.4,37099.34,124112.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20531,5361.05,0.0,63.01,5424.06,0.0,1789.01,420.61,2209.62,7633.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,49329,27337.19,0.0,484.51,27821.7,6456.07,6200.31,1485.21,14141.59,41963.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8601,43283.86,4527.53,2841.86,50653.25,11992.05,13164.6,3803.32,28959.97,79613.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7314,Aprnt Stationary Engineer I,46809,2181.0,0.0,0.0,2181.0,405.88,477.87,162.47,1046.22,3227.22 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,15923,21742.0,0.0,0.0,21742.0,4046.17,2867.19,1738.95,8652.31,30394.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,7889,65452.04,20357.77,624.0,86433.81,13618.71,12424.5,7036.35,33079.56,119513.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51899,146506.72,643.45,17291.24,164441.41,32545.77,12209.46,4210.81,48966.04,213407.45 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,7449,7945.9,188.75,0.0,8134.65,0.0,1899.52,630.72,2530.24,10664.89 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,376C,Sr Human Resources Analyst,43867,68656.96,0.0,3000.0,71656.96,13250.87,7778.27,5949.31,26978.45,98635.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,13560,72418.69,4814.52,2442.5,79675.71,15832.73,9264.37,6570.93,31668.03,111343.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11329,119465.6,28890.98,14901.36,163257.94,24204.64,12424.5,2723.03,39352.17,202610.11 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,16492,88592.07,0.0,0.0,88592.07,18259.52,12424.5,7279.3,37963.32,126555.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2399,52369.61,5721.88,2999.92,61091.41,12783.76,12137.78,4665.0,29586.54,90677.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44925,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1848.37,10262.14,34266.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",28796,27558.65,349.65,0.0,27908.3,5199.53,6487.02,2235.36,13921.91,41830.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,15611,93738.1,12217.31,2364.2,108319.61,19446.25,12424.5,8849.95,40720.7,149040.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,52707,55191.39,0.0,321.04,55512.43,12354.56,12392.31,4446.67,29193.54,84705.97 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,5645,40903.1,4020.6,4324.27,49247.97,10781.83,12424.5,3972.26,27178.59,76426.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,52750,18249.7,0.0,460.0,18709.7,4452.21,4348.58,1462.62,10263.41,28973.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,51851,53169.7,6435.27,23493.41,83098.38,12398.61,6546.75,6694.8,25640.16,108738.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,17626,46139.35,344.62,4024.33,50508.3,11807.03,12031.21,4075.47,27913.71,78422.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,9023,32482.7,1026.19,12227.9,45736.79,7286.26,6546.76,3710.62,17543.64,63280.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,41708,3433.22,0.0,0.0,3433.22,0.0,1231.99,277.09,1509.08,4942.3 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,50148,169630.18,0.0,8040.0,177670.18,32664.22,11256.73,10709.23,54630.18,232300.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51054,39731.84,4792.3,2216.76,46740.9,10849.65,12422.05,3492.18,26763.88,73504.78 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,5724,2151.0,0.0,899.39,3050.39,554.96,477.86,238.73,1271.55,4321.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4889,43829.01,5149.95,1596.09,50575.05,11776.16,13182.88,3797.41,28756.45,79331.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,37405,29621.0,0.0,0.0,29621.0,5512.5,4300.79,2408.76,12222.05,41843.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7490,19620.48,316.11,342.79,20279.38,4383.64,3866.28,1471.44,9721.36,30000.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34538,55343.54,408.19,2075.02,57826.75,11624.3,12161.92,4538.52,28324.74,86151.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14296,36749.36,3638.54,1360.28,41748.18,9867.85,11480.54,3148.26,24496.65,66244.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",25961,11197.12,0.0,0.0,11197.12,2083.78,2329.6,869.08,5282.46,16479.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47403,124734.12,1804.1,23269.89,149808.11,28022.0,11375.88,6641.07,46038.95,195847.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20959,132807.41,0.0,17536.77,150344.18,25438.43,12376.71,5418.56,43233.7,193577.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,43372,70080.3,0.0,0.0,70080.3,13385.14,7741.42,5640.82,26767.38,96847.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,7402,84781.0,6122.22,0.0,90903.22,17109.17,10035.17,7277.5,34421.84,125325.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11526,0.0,0.0,880.36,880.36,0.0,68.5,67.35,135.85,1016.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38485,58529.58,7678.06,526.96,66734.6,16008.42,11522.0,4847.3,32377.72,99112.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32381,119462.7,6310.9,1516.46,127290.06,23633.25,12424.38,2112.45,38170.08,165460.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,1050,111791.97,50161.66,8023.98,169977.61,24046.24,12250.55,10638.73,46935.52,216913.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,25997,98471.04,0.0,0.0,98471.04,20276.98,12424.5,7956.48,40657.96,139129.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22908,64292.77,0.0,0.0,64292.77,13117.03,10351.76,5197.03,28665.82,92958.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,43937,4694.55,0.0,0.0,4694.55,1029.98,477.86,366.92,1874.76,6569.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,17995,56410.01,1143.12,0.0,57553.13,5073.88,11946.64,4648.51,21669.03,79222.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,43610,2546.2,0.0,0.0,2546.2,559.91,692.9,197.63,1450.44,3996.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",45489,93281.01,0.0,1280.0,94561.01,19483.92,12424.51,7839.73,39748.16,134309.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,20159,11376.0,0.0,0.0,11376.0,2062.47,1146.88,879.29,4088.64,15464.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,21785,92709.6,44465.57,11015.9,148191.07,20557.33,12520.08,10187.75,43265.16,191456.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,1022,101104.06,15575.8,13813.88,130493.74,23229.66,11548.57,2170.19,36948.42,167442.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,30169,81942.01,2174.07,2173.75,86289.83,17337.03,12424.5,6848.21,36609.74,122899.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,34158,52869.99,7990.39,2222.42,63082.8,10936.51,10397.34,5223.2,26557.05,89639.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,3285,63887.0,13104.39,5280.77,82272.16,14034.91,12424.5,7052.62,33512.03,115784.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,1788,109807.04,0.0,5073.36,114880.4,22105.97,12424.51,9433.44,43963.92,158844.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1366,119463.86,4067.48,15480.86,139012.2,23633.51,12424.5,941.88,36999.89,176012.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,44356,87807.1,0.0,0.0,87807.1,18091.19,12376.71,7116.68,37584.58,125391.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0490,Commander 3,8737,75573.01,0.0,4923.24,80496.25,17251.93,4300.79,198.65,21751.37,102247.62 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",25167,52667.7,3613.87,2622.2,58903.77,12463.77,9461.8,399.78,22325.35,81229.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7430,19039.93,0.0,3449.99,22489.92,4273.42,1393.52,2719.53,8386.47,30876.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,39769,54909.05,0.0,1624.0,56533.05,12649.33,12424.62,4632.23,29706.18,86239.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42003,6507.0,0.0,173.52,6680.52,1440.09,716.79,517.87,2674.75,9355.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,44536,106116.0,0.0,0.0,106116.0,21866.98,12424.5,8687.23,42978.71,149094.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,40509,21002.35,0.0,0.0,21002.35,0.0,4630.51,1629.27,6259.78,27262.13 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8564,"Counselor,Log Cabin Rnch SFERS",14102,68894.1,812.84,2111.51,71818.45,14442.76,12376.71,1497.57,28317.04,100135.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6873,16861.21,2591.39,569.85,20022.45,4179.92,5213.39,1530.74,10924.05,30946.5 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,8901,171097.4,0.0,1050.0,172147.4,34558.0,9826.17,10550.87,54935.04,227082.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,20654,53536.33,0.0,0.0,53536.33,11979.73,12113.89,4187.56,28281.18,81817.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19286,2938.64,0.0,13.12,2951.76,0.0,980.64,228.52,1209.16,4160.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47141,1005.55,0.0,0.0,1005.55,0.0,543.57,77.85,621.42,1626.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9144,56531.0,0.0,2289.75,58820.75,11667.81,12424.5,4776.05,28868.36,87689.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,53094,27258.04,1068.64,0.0,28326.68,6114.02,5256.52,2218.67,13589.21,41915.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,20343,138629.27,47914.56,6877.89,193421.72,27417.19,12424.5,3299.82,43141.51,236563.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,36493,11105.0,0.0,2539.44,13644.44,2490.85,2389.33,1127.29,6007.47,19651.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21314,129604.92,9633.58,17568.4,156806.9,28683.66,15052.76,2626.46,46362.88,203169.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,45067,74165.05,0.0,0.0,74165.05,15285.76,12424.5,5899.91,33610.17,107775.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3365,80379.48,4559.96,5248.37,90187.81,16927.67,12496.18,1430.32,30854.17,121041.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18358,54279.51,0.0,5226.95,59506.46,11752.92,11926.62,4829.07,28508.61,88015.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,3202,96254.03,0.0,720.0,96974.03,19987.51,12424.5,7873.1,40285.11,137259.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45087,8703.42,0.0,0.0,8703.42,0.0,3725.38,705.89,4431.27,13134.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,21022,54328.46,204.7,7354.98,61888.14,13087.28,11358.15,4753.39,29198.82,91086.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,51801,67128.6,0.0,0.0,67128.6,915.31,6690.12,5224.79,12830.22,79958.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7983,129531.8,0.0,1346.58,130878.38,24068.35,12272.18,9906.75,46247.28,177125.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,860,87713.07,0.0,0.0,87713.07,18084.6,12424.5,6920.78,37429.88,125142.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35308,0.0,0.0,382.07,382.07,0.0,34.25,29.23,63.48,445.55 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,10507,101531.01,0.0,0.0,101531.01,20926.03,12424.5,8089.57,41440.1,142971.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,23468,78549.15,304.6,0.0,78853.75,16058.56,11420.99,6357.29,33836.84,112690.59 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,1187,93681.1,2722.87,1312.05,97716.02,19585.57,12424.5,8091.02,40101.09,137817.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45833,144706.02,0.0,11066.02,155772.04,31309.79,12424.5,10361.33,54095.62,209867.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,17411,67261.09,385.65,0.0,67646.74,13862.82,12424.5,5600.01,31887.33,99534.07 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,40820,88627.38,0.0,0.0,88627.38,18252.5,11898.67,7115.82,37266.99,125894.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,22232,16609.34,284.29,10477.89,27371.52,3725.49,3140.89,2160.35,9026.73,36398.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27332,4135.76,0.0,102.08,4237.84,0.01,0.0,580.53,580.54,4818.38 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,20730,105158.45,43897.75,10825.85,159882.05,23559.47,12400.61,10470.76,46430.84,206312.89 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,14853,9711.72,0.0,0.0,9711.72,0.0,1134.93,752.66,1887.59,11599.31 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,20311,60555.0,0.0,3665.2,64220.2,13239.32,12185.57,5321.04,30745.93,94966.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,29057,100501.81,34125.94,12530.56,147158.31,22769.46,12328.92,10246.05,45344.43,192502.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,23524,112466.33,28694.95,34716.0,175877.28,23164.11,11887.2,10724.37,45775.68,221652.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2328,59785.74,14002.23,1528.96,75316.93,16640.1,11770.72,5874.39,34285.21,109602.14 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),35443,99423.53,0.0,4689.02,104112.55,20619.49,10751.97,8403.06,39774.52,143887.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,30520,52285.51,678.99,18996.0,71960.5,12951.73,6451.18,5837.65,25240.56,97201.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16771,59097.73,9806.0,0.0,68903.73,13169.1,12424.5,5488.42,31082.02,99985.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31136,64728.52,19317.23,1606.37,85652.12,18169.53,12757.21,6648.17,37574.91,123227.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,46770,129149.23,22181.71,10097.33,161428.27,27366.7,12424.51,2622.56,42413.77,203842.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,51934,50729.99,880.73,564.69,52175.41,6684.71,11278.11,4143.46,22106.28,74281.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10077,4986.8,0.0,0.0,4986.8,1773.59,0.0,3665.05,5438.64,10425.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",38816,148823.28,21940.68,9827.31,180591.27,31169.43,15052.76,3080.04,49302.23,229893.5 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,38233,89179.74,22162.16,14860.9,126202.8,20359.49,11826.04,9859.06,42044.59,168247.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,26145,10408.2,0.0,21967.81,32376.01,2283.56,1051.3,3139.88,6474.74,38850.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36018,7217.84,0.0,134.05,7351.89,0.0,3129.9,566.09,3695.99,11047.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7238,99880.43,59452.99,5869.48,165202.9,20658.04,12424.49,2758.64,35841.17,201044.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,42075,112375.03,0.0,0.0,112375.03,21136.27,7167.99,14242.34,42546.6,154921.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,12371,27479.56,72.98,360.0,27912.54,6244.96,6690.12,2263.53,15198.61,43111.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,18732,92285.7,0.0,0.0,92285.7,18998.32,12424.5,7381.94,38804.76,131090.46 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8234,Fire Alarm Dispatcher,30591,78637.54,21975.0,6844.08,107456.62,16728.22,12424.5,8796.06,37948.78,145405.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8461,74125.06,20488.1,1697.8,96310.96,15685.34,11946.65,7794.75,35426.74,131737.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,39212,61755.93,0.0,0.0,61755.93,12834.65,11403.0,4849.76,29087.41,90843.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,51292,0.0,0.0,0.0,0.0,0.0,0.0,190.32,190.32,190.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,35541,93281.16,0.0,624.0,93905.16,19354.57,12424.5,7787.83,39566.9,133472.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,10053,70725.54,18126.79,14770.42,103622.75,16541.68,10713.14,8427.38,35682.2,139304.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,30041,1631.0,0.0,0.0,1631.0,358.66,477.86,126.6,963.12,2594.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,9356,Wharfinger 2,35614,86191.1,555.02,0.0,86746.12,17743.33,12334.12,6902.1,36979.55,123725.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,37551,64797.79,2984.71,1515.0,69297.5,13586.43,9838.0,5505.0,28929.43,98226.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2973,113233.61,21479.02,21820.89,156533.52,25752.75,15196.12,2658.36,43607.23,200140.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,43061,181945.11,0.0,13144.81,195089.92,39332.78,12424.51,11068.48,62825.77,257915.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,6778,63276.51,1022.19,1640.25,65938.95,13371.7,12305.04,5465.36,31142.1,97081.05 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,17520,42785.6,728.63,5143.52,48657.75,11207.11,9077.65,3938.71,24223.47,72881.22 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,19229,25752.5,0.0,0.0,25752.5,4792.55,3583.99,2041.28,10417.82,36170.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,9949,101834.22,5170.34,3397.99,110402.55,20937.15,9079.44,1869.95,31886.54,142289.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",45228,27360.98,0.0,3420.13,30781.11,5432.87,2293.76,519.08,8245.71,39026.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1293,87265.35,1793.44,19757.78,108816.57,0.0,6379.68,7988.36,14368.04,123184.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,4372,84599.03,0.0,844.87,85443.9,17625.31,12424.5,7084.62,37134.43,122578.33 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,5078,75028.05,0.0,456.0,75484.05,15554.64,12424.5,5987.15,33966.29,109450.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,42875,74938.74,0.0,2695.58,77634.32,15761.26,6565.53,6370.17,28696.96,106331.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,25986,33433.42,0.0,0.0,33433.42,7806.04,9175.01,2671.89,19652.94,53086.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,5873,29957.69,0.0,0.0,29957.69,1523.34,8037.1,2337.16,11897.6,41855.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,22831,79463.74,0.0,0.0,79463.74,16513.87,7917.63,6546.99,30978.49,110442.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28230,39706.35,0.0,6617.77,46324.12,10033.89,3081.57,1206.17,14321.63,60645.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,27836,99127.97,0.0,0.0,99127.97,20415.7,12424.5,7781.44,40621.64,139749.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1031,IS Trainer-Assistant,28875,72153.09,0.0,40.0,72193.09,14878.52,12424.51,5815.48,33118.51,105311.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,50171,7213.0,0.0,0.0,7213.0,1617.88,1433.6,597.4,3648.88,10861.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,46187,17509.36,0.0,0.0,17509.36,3927.36,1911.46,1444.55,7283.37,24792.73 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,19041,110871.0,16303.25,16333.62,143507.87,24144.01,12215.43,10170.53,46529.97,190037.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43656,77269.94,32049.22,14027.56,123346.72,22167.06,9826.6,2044.2,34037.86,157384.58 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,36168,2734.7,0.0,0.0,2734.7,0.0,692.9,210.28,903.18,3637.88 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,165C,"Director, Probate",31440,127530.03,0.0,5452.5,132982.53,25681.53,12424.5,32202.05,70308.08,203290.61 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,44272,9463.59,0.0,6360.6,15824.19,0.0,0.0,229.45,229.45,16053.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24282,81106.94,12620.13,4603.01,98330.08,16884.62,12424.5,1640.67,30949.79,129279.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25975,9536.25,0.0,39.48,9575.73,0.0,3652.68,741.95,4394.63,13970.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,46429,86663.01,0.0,2046.25,88709.26,18272.81,12424.5,7309.68,38006.99,126716.25 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,18153,46693.01,0.0,432.0,47125.01,9533.28,8601.58,3514.93,21649.79,68774.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42841,488.25,0.0,0.0,488.25,0.0,188.16,37.81,225.97,714.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,19023,103283.13,0.0,0.0,103283.13,21287.16,12424.5,8065.58,41777.24,145060.37 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,44031,52686.6,0.0,1526.54,54213.14,11640.13,7167.99,4491.5,23299.62,77512.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,45689,144078.09,0.0,0.0,144078.09,28975.56,12424.5,10176.12,51576.18,195654.27 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,21675,82914.01,0.0,0.0,82914.01,17088.82,12424.51,6882.51,36395.84,119309.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",52967,106090.0,27359.13,7183.97,140633.1,22476.02,12424.51,10126.35,45026.88,185659.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,25805,68722.01,10417.39,0.0,79139.4,14164.02,12424.5,6353.5,32942.02,112081.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36032,57601.57,2829.2,1257.93,61688.7,15295.72,13200.5,4698.81,33195.03,94883.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,44623,100761.01,2978.19,4058.83,107798.03,21603.04,12424.52,8661.31,42688.87,150486.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,25498,24588.0,0.0,0.0,24588.0,4575.8,5328.2,1936.31,11840.31,36428.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27234,48808.55,12419.31,1745.43,62973.29,14237.3,9652.76,4910.68,28800.74,91774.03 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,22332,63094.22,22480.88,2828.95,88404.05,13100.48,12423.01,7183.76,32707.25,121111.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20235,13925.37,0.0,337.7,14263.07,0.0,5366.5,1105.57,6472.07,20735.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43535,97187.79,25296.04,9359.1,131842.93,20207.98,12424.5,2200.47,34832.95,166675.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51349,1763.2,0.0,0.0,1763.2,0.0,764.58,133.32,897.9,2661.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",19756,31378.98,2582.45,871.5,34832.93,0.0,4121.59,2703.6,6825.19,41658.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,49982,156746.0,0.0,0.0,156746.0,31545.23,12424.5,10481.84,54451.57,211197.57 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,9205,99654.02,0.0,0.0,99654.02,22727.03,12424.5,161.32,35312.85,134966.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29020,7160.0,228.23,48.68,7436.91,0.0,2389.33,576.91,2966.24,10403.15 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,24660,57384.57,124.09,6862.6,64371.26,14175.16,12376.71,4959.11,31510.98,95882.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,30959,81157.01,11966.73,13963.8,107087.54,18698.73,12424.5,8490.59,39613.82,146701.36 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,23401,5907.6,0.0,0.0,5907.6,1099.4,860.16,458.53,2418.09,8325.69 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,8453,63102.01,390.74,3846.44,67339.19,13734.27,12424.5,5573.08,31731.85,99071.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1303,119467.43,10815.62,12333.97,142617.02,23620.98,12424.51,2430.86,38476.35,181093.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18963,77071.06,0.0,1554.0,78625.06,16204.95,12424.5,6045.61,34675.06,113300.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30067,81265.23,11693.36,5289.23,98247.82,16766.02,12364.77,1586.42,30717.21,128965.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37379,104310.63,2023.97,23210.13,129544.73,23828.06,9523.14,9972.71,43323.91,172868.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,16055,145659.01,0.0,0.0,145659.01,29314.83,12424.5,10277.48,52016.81,197675.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,47619,75605.01,47253.71,10967.2,133825.92,17013.43,12424.5,9924.05,39361.98,173187.9 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,732,24954.0,363.68,87.83,25405.51,5487.39,5181.01,2022.43,12690.83,38096.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,25856,97934.03,0.0,624.0,98558.03,20309.93,12424.5,7921.99,40656.42,139214.45 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,29107,96332.0,2728.47,0.0,99060.47,19854.28,12424.5,7914.75,40193.53,139254.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9061,43124.79,754.31,1834.42,45713.52,0.0,0.0,3615.11,3615.11,49328.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,49177,19922.8,2200.9,191.5,22315.2,3743.27,2484.91,1821.28,8049.46,30364.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,14662,6364.41,334.97,106.2,6805.58,0.0,1532.16,515.04,2047.2,8852.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,48569,44397.66,0.0,1598.37,45996.03,9740.85,4959.34,3337.41,18037.6,64033.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12385,58446.42,1348.95,2233.98,62029.35,16622.76,11513.87,4606.4,32743.03,94772.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,20513,70147.55,3369.23,2321.29,75838.07,14574.25,11816.12,6282.93,32673.3,108511.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",45099,67466.21,11034.61,4047.97,82548.79,12622.21,4730.87,1347.93,18701.01,101249.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",18098,148809.24,66416.78,18880.85,234106.87,32933.97,15052.77,3844.92,51831.66,285938.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,47447,7356.8,36.3,290.4,7683.5,0.0,1815.89,594.74,2410.63,10094.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,2657,28856.55,0.0,141.0,28997.55,5765.71,4447.2,2601.34,12814.25,41811.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,40153,12180.29,0.0,0.0,12180.29,3142.51,3147.94,993.48,7283.93,19464.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10596,124594.06,50057.62,11773.45,186425.13,24657.86,12424.51,3132.67,40215.04,226640.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4187,77071.03,5581.36,3199.0,85851.39,16545.9,12424.5,7031.15,36001.55,121852.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,15639,4459.49,0.0,2216.73,6676.22,0.0,0.0,521.89,521.89,7198.11 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,48383,0.0,0.0,735.8,735.8,0.0,68.5,56.29,124.79,860.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4894,662.31,85.15,0.0,747.46,187.44,0.0,59.05,246.49,993.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,26065,99145.41,0.0,1000.0,100145.41,20637.81,12430.47,8224.18,41292.46,141437.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,6481,6349.18,41.4,172.21,6562.79,0.0,2968.74,508.98,3477.72,10040.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,26538,73705.44,0.0,2418.74,76124.18,15392.91,12058.88,6020.73,33472.52,109596.7 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38012,91738.87,15138.87,9375.33,116253.07,24622.53,11654.31,2038.06,38314.9,154567.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,28213,138629.28,20687.59,11028.07,170344.94,27417.19,12424.5,2892.6,42734.29,213079.23 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,46591,63094.22,9697.94,6370.77,79162.93,14137.03,12423.01,6503.23,33063.27,112226.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21298,82245.22,7099.1,8698.49,98042.81,17117.67,12424.5,1633.11,31175.28,129218.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,22539,4469.85,0.0,2048.59,6518.44,1153.22,1027.41,537.99,2718.62,9237.06 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,17954,46609.0,0.0,0.0,46609.0,8673.98,5734.38,3715.94,18124.3,64733.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,35311,26342.01,27.95,2406.86,28776.82,6277.89,5734.39,2308.44,14320.72,43097.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32659,102809.85,36482.5,17473.36,156765.71,22730.32,15196.13,2672.96,40599.41,197365.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,35044,61735.0,0.0,0.0,61735.0,12724.0,12424.5,4956.7,30105.2,91840.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17720,65129.16,20044.69,1542.08,86715.93,18238.64,12834.63,6518.63,37591.9,124307.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,36161,61985.84,0.0,1733.92,63719.76,13053.93,12327.38,5211.31,30592.62,94312.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,42501,81157.02,0.0,1404.15,82561.17,17003.98,12424.5,6798.68,36227.16,118788.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,36978,79722.01,0.0,160.0,79882.01,16466.81,12424.5,6385.95,35277.26,115159.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31271,134235.84,0.0,250.0,134485.84,25959.89,11889.3,9303.59,47152.78,181638.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,25529,6608.0,0.0,0.0,6608.0,1229.74,955.73,512.71,2698.18,9306.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36795,3129.74,0.0,2589.46,5719.2,692.04,305.53,441.47,1439.04,7158.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24889,6270.23,0.0,0.0,6270.23,0.0,1836.31,486.67,2322.98,8593.21 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,37474,97764.46,61605.44,23960.74,183330.64,28904.89,12424.39,2943.56,44272.84,227603.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,23875,9845.0,0.0,20.25,9865.25,2169.36,3297.27,717.76,6184.39,16049.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,8287,58739.31,5856.86,4659.58,69255.75,12174.13,11059.84,5489.76,28723.73,97979.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,20455,82883.0,952.2,1281.75,85116.95,17334.43,12424.5,6800.33,36559.26,121676.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,4322,101733.0,1768.95,0.0,103501.95,20967.28,12424.5,7926.54,41318.32,144820.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,18370,61735.0,0.0,694.0,62429.0,12867.35,12424.5,5174.76,30466.61,92895.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,7315,92001.3,0.0,2682.38,94683.68,19501.29,12424.5,7667.57,39593.36,134277.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31990,55153.07,0.0,6909.78,62062.85,12341.16,12122.85,5032.06,29496.07,91558.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23153,34491.97,167.96,400.0,35059.93,6325.92,3723.77,2818.96,12868.65,47928.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31444,5510.03,0.0,0.0,5510.03,0.0,2389.33,441.53,2830.86,8340.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15007,52587.53,29386.73,4597.96,86572.22,15316.86,10341.43,6739.74,32398.03,118970.25 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35916,97043.82,5368.16,12661.24,115073.22,25984.09,12331.32,1440.57,39755.98,154829.2 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,17124,89209.62,4268.43,0.0,93478.05,14318.05,9793.25,7508.19,31619.49,125097.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43426,1892.4,0.0,1584.92,3477.32,54.58,143.35,88.94,286.87,3764.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,2231,72726.46,0.0,0.0,72726.46,14956.24,10145.67,5832.29,30934.2,103660.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14383,112696.23,6070.1,17721.31,136487.64,22291.43,12424.5,2278.64,36994.57,173482.21 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,38832,23537.6,0.0,0.0,23537.6,4380.35,4205.21,1859.64,10445.2,33982.8 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25547,97783.06,97308.53,19024.65,214116.24,28392.77,12424.5,3597.2,44414.47,258530.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,14757,59068.32,0.0,0.0,59068.32,12457.62,8034.12,4511.94,25003.68,84072.0 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,13966,7116.76,65.85,0.0,7182.61,0.0,1962.23,557.49,2519.72,9702.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1168,236.55,0.0,0.0,236.55,0.0,17.92,467.19,485.11,721.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,38943,7688.0,0.0,0.0,7688.0,1430.74,955.73,604.92,2991.39,10679.39 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,39834,4093.08,0.0,51.65,4144.73,749.78,0.0,327.43,1077.21,5221.94 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,45312,101353.03,0.0,0.0,101353.03,20876.87,12424.5,8150.25,41451.62,142804.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,3066,107322.27,0.0,0.0,107322.27,21680.3,11926.8,8644.83,42251.93,149574.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23119,33784.85,0.0,7.0,33791.85,0.0,2938.87,2622.78,5561.65,39353.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2084,80953.78,5748.38,7304.47,94006.63,16760.25,12424.51,1755.35,30940.11,124946.74 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,27807,85135.21,0.0,0.0,85135.21,17511.79,12424.51,6784.86,36721.16,121856.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47977,44701.22,15809.95,556.66,61067.83,11838.25,8767.41,4644.05,25249.71,86317.54 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2550,Senior Occupational Therapist,26117,126218.06,0.0,105.77,126323.83,25430.32,12397.63,9897.87,47725.82,174049.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7817,112690.88,2274.2,7341.15,122306.23,22311.21,12424.5,2036.5,36772.21,159078.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,17040,81157.03,23120.96,11701.61,115979.6,17978.09,12424.5,9051.08,39453.67,155433.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,35774,45725.01,0.0,1159.9,46884.91,9943.24,9557.31,3803.06,23303.61,70188.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",41302,19358.95,0.0,0.0,19358.95,0.0,4073.8,1418.16,5491.96,24850.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25447,65352.35,0.0,0.0,65352.35,13434.65,12378.2,4771.12,30583.97,95936.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18894,38257.12,3407.25,578.9,42243.27,10218.77,7689.45,3212.06,21120.28,63363.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21443,127560.22,0.0,18100.21,145660.43,17796.56,12375.22,5467.8,35639.58,181300.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,45762,8954.18,0.0,67.44,9021.62,0.0,3244.11,699.28,3943.39,12965.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7398,Apprentice Cement Mason I,28862,11057.2,196.8,0.0,11254.0,0.0,2699.93,890.84,3590.77,14844.77 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,32375,14117.69,0.0,0.0,14117.69,2627.31,1821.87,1118.48,5567.66,19685.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",39091,9031.5,0.0,0.0,9031.5,0.0,2150.42,700.99,2851.41,11882.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46377,67638.32,4758.04,2282.01,74678.37,19140.07,13328.2,5772.2,38240.47,112918.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,24633,66358.23,0.0,0.0,66358.23,13660.28,12424.5,5274.76,31359.54,97717.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8772,68067.5,10392.67,3864.0,82324.17,19686.37,13414.76,6298.39,39399.52,121723.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,36924,200.0,0.0,0.0,200.0,0.0,0.0,15.82,15.82,215.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15148,67313.47,666.42,1426.59,69406.48,0.0,5381.84,5380.98,10762.82,80169.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,48311,62468.82,11839.49,1706.2,76014.51,13081.78,12424.5,5792.79,31299.07,107313.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,24965,109770.43,0.0,0.0,109770.43,22437.59,10740.44,16967.15,50145.18,159915.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,50770,63887.05,665.95,2106.0,66659.0,13605.46,12424.5,5488.28,31518.24,98177.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28661,82037.47,4550.09,4465.03,91052.59,21140.51,10408.69,1539.99,33089.19,124141.78 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0904,Mayoral Staff XVI,37369,130426.16,0.0,0.0,130426.16,26248.4,12424.49,27346.82,66019.71,196445.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,6038,175.99,0.0,0.0,175.99,0.0,58.24,13.66,71.9,247.89 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,40263,116050.33,0.0,0.0,116050.33,23312.3,12173.63,16982.31,52468.24,168518.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7328,77071.04,0.0,624.0,77695.04,16013.39,12424.5,6442.27,34880.16,112575.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,21047,72254.0,0.0,4692.7,76946.7,15766.48,11695.75,6211.32,33673.55,110620.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,37723,116684.62,168.15,1816.89,118669.66,23095.99,12376.71,1959.2,37431.9,156101.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45655,9809.52,467.78,84.27,10361.57,2362.0,2999.86,793.35,6155.21,16516.78 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,30126,62194.26,0.0,0.0,62194.26,12804.61,11975.55,4963.87,29744.03,91938.29 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,35977,39688.01,0.0,12316.94,52004.95,8777.76,3822.92,4185.63,16786.31,68791.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,24084,29233.8,831.47,875.7,30940.97,6557.13,4778.65,2429.97,13765.75,44706.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,13026,5491.0,0.0,0.0,5491.0,1021.88,907.95,415.93,2345.76,7836.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50198,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2336.97,12790.32,44090.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3429,68240.1,57.76,8972.86,77270.72,14629.31,7215.77,6434.13,28279.21,105549.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,2294,1669.63,27.08,0.0,1696.71,0.0,552.54,131.69,684.23,2380.94 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,20637,48049.5,20925.53,1957.85,70932.88,10737.23,10846.06,5431.01,27014.3,97947.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,48442,52873.03,1303.41,0.0,54176.44,11364.88,12418.53,4368.11,28151.52,82327.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,23893,26233.9,0.0,0.0,26233.9,0.0,5208.83,2071.14,7279.97,33513.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13649,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9156,Senior Claims Investigator,52709,116384.01,20585.82,6869.87,143839.7,23883.95,12424.5,10120.52,46428.97,190268.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,39995,124608.43,5184.36,4687.73,134480.52,24322.36,10990.9,2086.81,37400.07,171880.59 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",33013,87357.03,0.0,0.0,87357.03,17973.63,12376.71,7001.3,37351.64,124708.67 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),22339,179627.0,0.0,1500.0,181127.0,36369.8,12424.5,10913.9,59708.2,240835.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,7570,93191.01,0.0,0.0,93191.01,19199.28,10035.18,7447.69,36682.15,129873.16 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,3347,87320.19,0.0,0.0,87320.19,16973.8,5177.5,8562.05,30713.35,118033.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41471,119294.1,6062.78,7218.22,132575.1,24058.82,12406.58,2257.19,38722.59,171297.69 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,36584,11386.68,0.0,181.27,11567.95,0.0,2416.21,895.59,3311.8,14879.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,26009,126994.11,0.0,3930.01,130924.12,26344.77,12424.53,9986.02,48755.32,179679.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,10039,95283.52,0.0,34775.0,130058.52,20905.24,6546.74,9715.02,37167.0,167225.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47715,7945.02,0.0,859.19,8804.21,1571.4,3431.68,712.52,5715.6,14519.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16931,55228.08,867.82,4031.79,60127.69,11243.72,4604.22,4385.92,20233.86,80361.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38398,112159.74,48311.5,23186.17,183657.41,24862.31,15052.75,3084.33,42999.39,226656.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,18296,140902.97,7823.03,26875.53,175601.53,27859.78,12424.5,2954.7,43238.98,218840.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,50586,0.0,0.0,325.21,325.21,0.0,0.0,24.88,24.88,350.09 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45631,97764.75,26012.82,19599.08,143376.65,28544.14,12424.5,2396.47,43365.11,186741.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15549,11486.73,415.99,80.71,11983.43,2777.71,3548.62,922.52,7248.85,19232.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,7084,88988.72,2997.7,10601.24,102587.66,24237.97,11303.13,1499.22,37040.32,139627.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25215,66527.9,4282.46,828.8,71639.16,18468.89,13110.78,5419.99,36999.66,108638.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,46024,61539.5,0.0,0.0,61539.5,12660.91,12424.5,4882.56,29967.97,91507.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,26093,151861.41,5448.25,6229.62,163539.28,30276.46,12424.5,2161.62,44862.58,208401.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,37279,76452.52,0.0,900.0,77352.52,15935.75,12422.11,6099.65,34457.51,111810.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,50977,106953.0,16534.21,2488.08,125975.29,22043.42,12424.51,9884.11,44352.04,170327.33 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,4439,2303.0,0.0,0.0,2303.0,428.59,477.86,176.77,1083.22,3386.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7236,Locksmith Supervisor 1,16693,106812.04,0.0,22.0,106834.04,22018.89,12424.43,8390.56,42833.88,149667.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2465,66649.94,19275.8,4317.79,90243.53,19505.82,13139.33,6377.63,39022.78,129266.31 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,8868,205341.74,0.0,10267.1,215608.84,43400.18,12353.42,11298.55,67052.15,282660.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19135,65300.38,8890.1,833.21,75023.69,16182.7,13062.22,5732.55,34977.47,110001.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14799,96574.12,35966.43,7880.14,140420.69,25387.7,12276.01,2346.61,40010.32,180431.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,22199,48968.06,495.19,3634.91,53098.16,11865.65,11835.36,4060.62,27761.63,80859.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,21032,128523.75,0.0,1693.82,130217.57,26201.4,8038.89,9923.07,44163.36,174380.93 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,9178,111918.0,0.0,480.0,112398.0,22621.38,12424.5,9066.62,44112.5,156510.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",12758,90136.0,0.0,0.0,90136.0,18551.54,12424.5,7431.91,38407.95,128543.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,50923,4927.13,378.22,370.24,5675.59,917.71,961.94,440.66,2320.31,7995.9 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,6535,54055.76,1667.47,987.94,56711.17,11128.14,10866.96,4558.25,26553.35,83264.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17412,75912.03,895.12,8578.07,85385.22,15608.9,8293.35,6965.2,30867.45,116252.67 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,19137,93839.8,0.0,0.0,93839.8,19305.8,12424.5,7454.51,39184.81,133024.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,38382,145659.03,0.0,0.0,145659.03,29314.84,12424.48,10257.62,51996.94,197655.97 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,30257,48483.66,12651.18,125.0,61259.84,9705.05,8980.9,4925.07,23611.02,84870.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,36319,128609.83,44609.01,14903.12,188121.96,28138.46,14883.24,2892.13,45913.83,234035.79 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,38260,130888.02,0.0,4810.19,135698.21,26359.35,12520.08,10104.56,48983.99,184682.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,37307,64027.01,0.0,0.0,64027.01,13045.25,10990.91,5101.12,29137.28,93164.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43347,119459.79,24817.26,12970.42,157247.47,23648.11,12424.5,2678.79,38751.4,195998.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51738,63887.02,2902.54,1634.15,68423.71,13512.93,12424.51,5627.97,31565.41,99989.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,14751,107171.72,13389.45,2143.43,122704.6,21896.31,11803.27,9710.22,43409.8,166114.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35606,34264.32,2509.67,320.32,37094.31,8310.07,10990.91,2916.38,22217.36,59311.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41005,67116.3,12820.9,3436.49,83373.69,19343.61,13223.85,6505.41,39072.87,122446.56 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),26877,20133.0,0.0,375.0,20508.0,4499.45,1433.6,1669.75,7602.8,28110.8 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7430,Asst Electronic Main Tech,43482,20340.43,0.0,821.52,21161.95,4235.86,2725.75,1804.31,8765.92,29927.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,53125,123550.67,0.0,0.0,123550.67,24814.61,12328.94,9854.33,46997.88,170548.55 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,6734,16400.6,0.0,114.96,16515.56,3941.61,4910.06,1337.61,10189.28,26704.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46620,62446.59,9346.39,999.13,72792.11,13005.68,12420.02,5974.09,31399.79,104191.9 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,1428,81157.0,2921.45,1685.08,85763.53,17059.29,12424.5,7009.69,36493.48,122257.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,29849,65994.0,2551.93,7991.83,76537.76,19780.15,12424.5,6213.64,38418.29,114956.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40698,56531.0,0.0,5081.52,61612.52,12465.53,12424.5,4838.05,29728.08,91340.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16638,26149.77,216.03,2122.62,28488.42,3071.04,6988.78,2358.58,12418.4,40906.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1822,40380.47,6670.19,655.96,47706.62,9642.24,8218.8,3635.75,21496.79,69203.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,51076,67261.02,0.0,624.0,67885.02,13991.51,12424.5,5349.49,31765.5,99650.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45579,105177.22,19421.44,18811.22,143409.88,23093.19,14113.22,2442.71,39649.12,183059.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,42370,6534.0,0.0,0.0,6534.0,1465.59,1433.6,542.4,3441.59,9975.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,14134,69176.0,0.0,0.0,69176.0,4849.2,10274.11,5052.73,20176.04,89352.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,24548,66102.0,23186.78,2322.41,91611.19,13935.24,12424.5,7457.9,33817.64,125428.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24821,94670.3,1777.62,2307.35,98755.27,19107.54,10448.05,1669.34,31224.93,129980.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15559,113233.6,21248.12,24692.37,159174.09,26319.02,15196.12,2713.34,44228.48,203402.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,17350,66102.0,0.0,0.0,66102.0,13624.06,12424.5,5474.41,31522.97,97624.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46750,4497.55,0.0,0.0,4497.55,0.0,1950.29,378.96,2329.25,6826.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,37976,81157.0,22257.25,15427.66,118841.91,19276.54,12424.5,9490.46,41191.5,160033.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,21396,45650.41,1133.49,1364.71,48148.61,10395.89,6212.25,3858.81,20466.95,68615.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38664,34111.45,37.85,3991.52,38140.82,6196.14,9091.39,3008.63,18296.16,56436.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27382,56314.9,1215.57,1317.3,58847.77,11602.83,12376.71,4875.84,28855.38,87703.15 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,5253,1624.31,0.0,0.0,1624.31,0.0,404.69,125.75,530.44,2154.75 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,39200,106116.0,0.0,0.0,106116.0,21870.85,12424.5,8618.35,42913.7,149029.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,8094,81628.81,2452.4,600.0,84681.21,16930.0,12376.71,6587.35,35894.06,120575.27 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36327,2110.0,0.0,0.0,2110.0,392.67,477.86,163.76,1034.29,3144.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,37806,156746.02,0.0,5497.06,162243.08,32654.63,12424.51,10485.16,55564.3,217807.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44251,112170.34,56414.99,17124.75,185710.08,24520.6,15052.76,476.07,40049.43,225759.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,28044,96930.02,0.0,0.0,96930.02,19977.61,12424.5,7775.03,40177.14,137107.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,45661,136959.78,0.0,13530.16,150489.94,30213.58,12125.84,10219.72,52559.14,203049.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,23701,28873.0,0.0,0.0,28873.0,6476.21,6212.25,2366.89,15055.35,43928.35 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,24406,3538.0,0.0,0.0,3538.0,0.0,955.73,273.91,1229.64,4767.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,42205,129271.02,0.0,0.0,129271.02,26015.91,12424.5,9938.64,48379.05,177650.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,46540,69942.94,20841.9,9762.89,100547.73,15576.93,12370.74,7950.6,35898.27,136446.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,13016,13886.01,0.0,0.0,13886.01,3053.51,3822.92,1120.68,7997.11,21883.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,28940,174131.03,4885.31,11234.66,190251.0,36858.31,11923.22,10973.51,59755.04,250006.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,50476,92800.58,415.91,0.0,93216.49,19055.58,12090.5,7628.92,38775.0,131991.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41789,8079.51,0.0,1476.06,9555.57,0.0,646.6,492.67,1139.27,10694.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3444,56465.07,9223.02,561.67,66249.76,14783.96,12922.49,4713.62,32420.07,98669.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,48461,104642.52,0.0,0.0,104642.52,21521.98,12424.5,8188.88,42135.36,146777.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,51405,73497.45,0.0,1038.17,74535.62,15370.34,12269.19,6042.3,33681.83,108217.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27297,3192.44,0.0,103.54,3295.98,2118.89,239.18,80.62,2438.69,5734.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2151,70219.83,20768.96,12355.19,103343.98,17522.9,12420.02,8396.82,38339.74,141683.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22246,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,35693,40552.89,0.0,465.12,41018.01,8436.71,5956.06,3353.6,17746.37,58764.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19287,48748.84,535.36,915.0,50199.2,10110.27,10916.24,4050.08,25076.59,75275.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,31681,84293.41,0.0,0.0,84293.41,17023.76,9808.07,6865.0,33696.83,117990.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,29846,67261.11,0.0,624.0,67885.11,13987.79,12424.5,5582.99,31995.28,99880.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,39210,97934.01,0.0,780.17,98714.18,20339.02,12424.5,8186.14,40949.66,139663.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,8600,79722.05,502.76,1920.0,82144.81,16826.05,12424.51,6704.86,35955.42,118100.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,36004,43921.29,0.0,0.0,43921.29,4477.59,5111.67,3460.11,13049.37,56970.66 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,31335,95806.93,15115.71,0.0,110922.64,21886.25,11886.91,1841.84,35615.0,146537.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36836,12191.46,0.0,529.61,12721.07,0.0,3028.48,986.35,4014.83,16735.9 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,25392,20543.94,0.0,0.0,20543.94,4793.91,0.0,4496.65,9290.56,29834.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,728,42299.53,0.0,1552.0,43851.53,9056.42,6212.25,3567.99,18836.66,62688.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1158,64869.03,34.26,10079.98,74983.27,15379.99,6716.94,5993.89,28090.82,103074.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5215,Fire Protection Engineer,17614,26225.77,684.16,0.0,26909.93,4754.73,2747.73,2150.21,9652.67,36562.6 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,51395,97206.84,25030.36,12840.05,135077.25,26042.13,12353.9,2255.78,40651.81,175729.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,46488,50224.2,263.6,3085.19,53572.99,11069.75,9844.03,4232.08,25145.86,78718.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,40029,31250.0,0.0,0.0,31250.0,4252.39,5256.52,2493.88,12002.79,43252.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,14815,11340.0,0.0,0.0,11340.0,2543.56,1911.46,939.4,5394.42,16734.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14668,8421.47,0.0,750.07,9171.54,3025.95,637.35,531.3,4194.6,13366.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,46131,78963.04,0.0,423.09,79386.13,16360.78,12424.5,6531.69,35316.97,114703.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,32483,110046.36,3407.74,13406.32,126860.42,23957.33,12073.45,2103.52,38134.3,164994.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52512,56531.0,0.0,2055.15,58586.15,11664.71,12424.5,4798.84,28888.05,87474.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46607,112443.52,96.55,29968.22,142508.29,26268.14,9850.12,9640.46,45758.72,188267.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27040,23151.88,0.0,0.0,23151.88,4646.42,4309.75,2019.74,10975.91,34127.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,52526,93422.97,49275.27,19059.55,161757.79,27362.3,11872.57,2701.44,41936.31,203694.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,4365,23003.26,0.0,0.0,23003.26,2805.7,0.0,5586.5,8392.2,31395.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,822,9745.51,0.0,67.44,9812.95,0.0,0.0,776.06,776.06,10589.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,12830,3480.76,0.0,0.0,3480.76,763.68,238.93,255.27,1257.88,4738.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51913,119989.95,776.82,21743.48,142510.25,0.0,9031.96,9736.05,18768.01,161278.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,23311,15080.0,0.0,0.0,15080.0,3382.45,2389.33,1166.34,6938.12,22018.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,8948,62468.8,23806.21,2144.28,88419.29,13167.36,12424.5,7204.75,32796.61,121215.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,15757,5118.59,0.0,0.0,5118.59,969.95,0.0,537.38,1507.33,6625.92 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,24955,68360.76,0.0,0.0,68360.76,14024.04,11767.43,5521.73,31313.2,99673.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6399,108100.57,3472.08,3669.0,115241.65,0.0,9390.24,9323.64,18713.88,133955.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20943,2287.28,0.0,0.0,2287.28,0.0,862.12,177.52,1039.64,3326.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26095,10941.07,0.0,0.0,10941.07,0.0,4744.43,876.94,5621.37,16562.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,35497,91331.04,0.0,0.0,91331.04,18823.67,12424.5,7505.55,38753.72,130084.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,24713,44927.05,0.0,0.0,44927.05,9048.27,8420.23,3783.95,21252.45,66179.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,26219,52086.97,40716.16,2657.11,95460.24,10855.76,10173.39,7568.59,28597.74,124057.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,48509,87840.63,8736.55,8799.48,105376.66,23483.38,11164.37,1314.67,35962.42,141339.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,1583,62441.54,0.0,280.0,62721.54,12906.71,12424.5,5056.87,30388.08,93109.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",39666,82535.0,25579.74,8364.53,116479.27,17716.28,12424.5,9200.6,39341.38,155820.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,14514,5548.88,0.0,0.0,5548.88,0.0,776.53,430.49,1207.02,6755.9 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,14351,109420.61,0.0,0.0,109420.61,22275.09,12424.5,8705.05,43404.64,152825.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,16366,25854.12,0.0,154.3,26008.42,6250.11,6415.35,1977.6,14643.06,40651.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,25619,50759.4,85.36,3049.22,53893.98,12828.12,12424.5,4326.49,29579.11,83473.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,530,128259.46,1750.17,32996.02,163005.65,30049.16,11013.01,6607.5,47669.67,210675.32 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,659,89516.16,6994.22,0.0,96510.38,20429.47,12424.5,1639.59,34493.56,131003.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3306,125480.13,40589.38,9106.47,175175.98,25341.74,12424.5,1998.49,39764.73,214940.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,29767,52060.74,0.0,0.0,52060.74,10365.79,8037.1,3971.5,22374.39,74435.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,32178,67033.16,0.0,140.0,67173.16,13881.84,10581.32,5514.35,29977.51,97150.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17162,4771.06,0.0,29.36,4800.42,0.0,1260.37,372.58,1632.95,6433.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17676,2568.65,0.0,5.73,2574.38,0.0,857.17,199.69,1056.86,3631.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2470,Diagnostic Imaging Tech IV,28780,75582.17,19947.67,250.0,95779.84,15193.81,7480.09,7555.47,30229.37,126009.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8185,24923.75,0.0,6246.74,31170.49,0.0,0.0,2465.43,2465.43,33635.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,16531,64710.3,2962.48,3430.37,71103.15,18177.43,12180.61,5582.52,35940.56,107043.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35072,43339.48,13977.67,5165.51,62482.66,14133.81,8618.85,4857.04,27609.7,90092.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29842,117140.94,19269.76,11284.73,147695.43,23164.17,12424.5,2515.6,38104.27,185799.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,47963,46681.02,0.0,0.0,46681.02,8782.19,6212.25,7540.2,22534.64,69215.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51506,55855.0,0.0,5640.81,61495.81,13435.65,12424.5,5033.23,30893.38,92389.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47018,10683.78,0.0,0.0,10683.78,0.0,4576.63,874.54,5451.17,16134.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37965,90845.7,0.0,5845.52,96691.22,19709.74,8895.28,7829.43,36434.45,133125.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43644,60590.7,4564.6,1670.28,66825.58,16917.73,11930.87,4893.38,33741.98,100567.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,8538,271.54,0.0,0.0,271.54,49.23,29.87,22.65,101.75,373.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,22643,44230.02,0.0,0.0,44230.02,9445.83,9557.3,3475.8,22478.93,66708.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,47925,20.16,0.0,1.61,21.77,0.0,5.97,8.64,14.61,36.38 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,49910,93246.83,31782.64,11018.45,136047.92,20719.57,12366.56,9948.94,43035.07,179082.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,4014,61428.02,5043.41,2653.02,69124.45,12780.17,12424.5,5687.21,30891.88,100016.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23735,345.7,0.0,34.57,380.27,0.0,0.0,0.0,0.0,380.27 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28425,6778.94,0.0,157.5,6936.44,0.0,0.0,547.98,547.98,7484.42 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,9879,99654.01,0.0,0.0,99654.01,23126.79,12424.5,1206.54,36757.83,136411.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38222,119455.92,5023.12,11979.14,136458.18,24132.87,12424.5,2325.1,38882.47,175340.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50056,11100.47,1132.86,281.06,12514.39,2925.99,3504.01,944.67,7374.67,19889.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,53191,38866.2,477.43,0.0,39343.63,7321.6,6212.25,3201.98,16735.83,56079.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O840,Harbor Attendant (OCII),44073,51411.53,0.0,1111.65,52523.18,10389.28,9975.43,4301.89,24666.6,77189.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,34254,68067.07,0.0,624.0,68691.07,14157.67,12424.5,5646.17,32228.34,100919.41 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,50868,27378.87,65.87,0.0,27444.74,5095.22,5508.89,2208.78,12812.89,40257.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46458,167.62,0.0,0.0,167.62,0.01,0.0,0.01,0.02,167.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,29247,72526.38,3345.37,9838.43,85710.18,15993.37,9774.08,7026.57,32794.02,118504.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27079,0.0,0.0,0.0,0.0,0.0,0.0,22.09,22.09,22.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,43634,76727.99,1778.13,0.0,78506.12,15813.99,12424.5,6367.73,34606.22,113112.34 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,32935,162416.7,0.0,0.0,162416.7,32612.96,12424.51,25523.31,70560.78,232977.48 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1830,Perf Analyst III Project Mgr,5261,66901.91,0.0,0.0,66901.91,14075.95,6875.29,5412.33,26363.57,93265.48 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,50800,11829.38,0.0,40.0,11869.38,2151.92,1344.01,940.51,4436.44,16305.82 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,3884,100498.03,0.0,0.0,100498.03,20702.88,12424.5,7845.69,40973.07,141471.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,43797,140141.35,16782.25,20925.65,177849.25,27705.16,12424.51,2978.02,43107.69,220956.94 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1071,IS Manager,15914,135556.0,0.0,0.0,135556.0,27215.59,12137.78,27474.73,66828.1,202384.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,46786,10664.17,0.0,0.0,10664.17,0.0,1478.4,827.72,2306.12,12970.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,33543,10830.0,0.0,0.0,10830.0,186.28,3583.99,830.08,4600.35,15430.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6332,27593.55,0.0,919.8,28513.35,505.86,2078.71,1129.43,3714.0,32227.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14675,113233.59,44304.17,20619.98,178157.74,25496.3,15196.12,2983.12,43675.54,221833.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,8495,84686.93,0.0,0.0,84686.93,17423.5,12424.5,6455.13,36303.13,120990.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,5476,70226.02,0.0,2754.79,72980.81,15968.69,6690.12,5961.3,28620.11,101600.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9832,66399.63,14584.42,662.96,81647.01,18366.48,13084.67,6158.57,37609.72,119256.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13255,65116.14,3294.56,920.74,69331.44,16131.91,13026.73,5251.22,34409.86,103741.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,46859,61711.6,0.0,6083.33,67794.93,13441.13,12328.92,5601.03,31371.08,99166.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47119,10014.52,1656.33,556.97,12227.82,1740.15,0.0,4126.45,5866.6,18094.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6116,Sprv Wastewater Cont Inspector,25103,104466.44,166.84,0.0,104633.28,21261.98,11180.2,8588.44,41030.62,145663.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,14883,40115.03,0.0,349.2,40464.23,7530.39,4778.65,3223.58,15532.62,55996.85 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",36253,22061.24,6360.31,0.0,28421.55,0.0,0.0,2248.04,2248.04,30669.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50552,8991.5,0.0,732.18,9723.68,2071.66,2341.54,762.33,5175.53,14899.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9156,87432.63,0.0,3829.35,91261.98,18611.35,11821.98,6890.28,37323.61,128585.59 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,16004,112160.4,0.0,0.0,112160.4,22830.26,12424.5,9221.05,44475.81,156636.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2677,71265.33,21356.38,7364.39,99986.1,21506.31,14041.0,7862.98,43410.29,143396.39 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1435,Shelter Officer Supervisor,17622,64963.06,0.0,7431.44,72394.5,13633.86,12424.5,5743.94,31802.3,104196.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,49380,85004.01,32950.56,990.6,118945.17,17519.6,12424.5,9485.17,39429.27,158374.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,9688,2820.89,0.0,178.26,2999.15,0.0,766.07,232.37,998.44,3997.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,48065,79756.62,0.0,0.0,79756.62,16381.22,12424.5,6495.19,35300.91,115057.53 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,37239,19365.2,347.03,0.0,19712.23,3603.86,3452.6,1557.28,8613.74,28325.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,31429,22555.5,2058.67,268.63,24882.8,0.0,5113.16,1931.3,7044.46,31927.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,10790,12588.3,1612.32,0.0,14200.62,0.0,3392.84,1099.41,4492.25,18692.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,31388,95039.21,15789.65,7076.03,117904.89,19611.65,12328.93,9436.19,41376.77,159281.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,50023,66189.49,696.46,1308.43,68194.38,18420.25,11946.64,5344.25,35711.14,103905.52 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,4114,62705.35,5663.3,1579.28,69947.93,12585.6,8290.96,5605.85,26482.41,96430.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29010,138922.56,11691.26,7770.85,158384.67,27477.56,12424.5,2690.76,42592.82,200977.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18490,52760.0,0.0,0.0,52760.0,12635.04,12424.5,4365.07,29424.61,82184.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11565,40613.22,3496.98,2020.73,46130.93,11033.14,12695.63,3497.87,27226.64,73357.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,5793,37941.82,4272.18,2494.73,44708.73,9168.14,10614.65,3551.59,23334.38,68043.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,50225,158707.0,0.0,0.0,158707.0,31940.4,12424.5,17649.22,62014.12,220721.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,1284,113590.12,0.0,0.0,113590.12,22771.6,11946.63,9563.99,44282.22,157872.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21012,28701.4,0.0,2318.19,31019.59,0.0,2174.4,2403.48,4577.88,35597.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,23957,66102.01,521.2,0.0,66623.21,13624.07,12424.5,5271.79,31320.36,97943.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,49303,53831.18,13275.86,7200.42,74307.46,13518.92,12391.65,5828.06,31738.63,106046.09 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2550,Senior Occupational Therapist,5891,123709.96,0.0,0.0,123709.96,24871.79,12149.73,9843.16,46864.68,170574.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9054,109134.38,0.0,13302.22,122436.6,22357.64,9901.43,9498.99,41758.06,164194.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7219,Maintenance Scheduler,24545,66842.0,5931.01,0.0,72773.01,13751.34,12424.48,5897.05,32072.87,104845.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,2314,76112.2,4084.39,3964.53,84161.12,16533.94,11535.01,6892.52,34961.47,119122.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4117,3283.0,0.0,0.0,3283.0,0.0,1600.85,254.72,1855.57,5138.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,37348,99090.51,4057.79,9627.3,112775.6,26382.79,11375.59,1910.54,39668.92,152444.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,20111,16786.72,0.0,41.4,16828.12,0.0,1387.3,1303.9,2691.2,19519.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52339,17734.79,3033.62,838.14,21606.55,4450.15,5476.63,1653.7,11580.48,33187.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,31777,49072.5,0.0,0.0,49072.5,9604.84,7884.77,3522.86,21012.47,70084.97 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),20286,175576.0,0.0,1500.0,177076.0,35635.35,12424.5,10726.67,58786.52,235862.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,7504,138635.25,22049.56,8868.34,169553.15,27395.36,12424.5,2788.82,42608.68,212161.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6200,Public Safety Inspection,6220,"Inspector, Weights & Measures",43484,23406.14,0.0,136.06,23542.2,6038.79,5024.69,1882.32,12945.8,36488.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37480,119450.11,62079.35,12203.11,193732.57,23683.74,12424.5,3262.0,39370.24,233102.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,17774,55183.65,108.38,0.0,55292.03,11548.08,9090.31,4668.16,25306.55,80598.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51485,112685.46,29579.68,10620.89,152886.03,22330.93,12424.5,2596.4,37351.83,190237.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",39626,93738.04,3113.54,365.83,97217.41,19324.44,12424.5,7646.12,39395.06,136612.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,44527,41349.47,0.0,0.0,41349.47,0.0,0.0,3270.85,3270.85,44620.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3424,Integrated Pest Mgmt Specialst,41112,84374.81,7086.92,0.0,91461.73,17390.2,12424.5,7519.25,37333.95,128795.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,23166,85368.05,0.0,0.0,85368.05,17589.93,12424.5,7029.83,37044.26,122412.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,5284,102019.04,0.0,0.0,102019.04,21026.27,12424.5,8269.72,41720.49,143739.53 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,41684,7817.16,0.0,0.0,7817.16,0.0,0.0,618.51,618.51,8435.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32347,1068.6,0.0,35.62,1104.22,0.0,0.0,439.74,439.74,1543.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,9510,107978.02,77.4,460.0,108515.42,22342.49,12424.5,8757.01,43524.0,152039.42 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,22754,102019.07,0.0,0.0,102019.07,21026.27,12424.5,8321.28,41772.05,143791.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,43654,3557.4,0.0,605.97,4163.37,797.92,525.65,359.14,1682.71,5846.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",41748,150234.01,51207.09,30415.59,231856.69,35473.94,15196.12,3911.43,54581.49,286438.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,44468,6931.03,0.0,133.91,7064.94,1442.49,1369.32,567.87,3379.68,10444.62 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,27929,119066.0,17019.23,21525.54,157610.77,33717.91,12424.5,2684.13,48826.54,206437.31 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,51936,107328.0,0.0,5903.04,113231.04,23059.13,12424.5,9375.84,44859.47,158090.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28454,30580.49,0.0,680.11,31260.6,7483.83,7777.26,2639.93,17901.02,49161.62 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,11287,29027.0,0.0,3000.0,32027.0,5528.98,6212.25,2583.16,14324.39,46351.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,14807,8741.04,0.0,0.0,8741.04,0.0,0.0,691.44,691.44,9432.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,39653,3501.7,0.0,0.0,3501.7,0.0,1158.82,271.1,1429.92,4931.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,7510,3362.63,0.0,0.0,3362.63,0.0,1639.68,260.82,1900.5,5263.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40558,114227.79,0.0,8887.68,123115.47,24568.98,10838.88,9354.51,44762.37,167877.84 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,20860,227731.03,0.0,0.0,227731.03,45815.72,12424.5,11550.42,69790.64,297521.67 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,376C,Sr Human Resources Analyst,3517,100545.64,0.0,3000.0,103545.64,20713.82,12424.5,8251.46,41389.78,144935.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41453,64612.46,12656.85,1320.64,78589.95,18040.81,12732.37,6127.0,36900.18,115490.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,18515,83560.18,10957.08,10559.06,105076.32,18741.95,12336.22,8384.1,39462.27,144538.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39111,4954.9,0.0,885.75,5840.65,1097.09,382.41,198.73,1678.23,7518.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,51742,35851.05,54.15,535.02,36440.22,8597.51,11794.67,2972.36,23364.54,59804.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,37594,80278.3,1966.46,417.5,82662.26,16613.97,12376.63,6477.71,35468.31,118130.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3766,111389.82,55784.83,16718.22,183892.87,24455.76,14813.82,3235.27,42504.85,226397.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,37080,62362.4,12638.58,1576.78,76577.76,12869.12,12403.06,6228.48,31500.66,108078.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48403,21057.78,2771.37,893.45,24722.6,6090.73,6647.17,1710.69,14448.59,39171.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,749,37456.65,0.0,9806.77,47263.42,8455.58,5770.22,3832.5,18058.3,65321.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,27284,169252.21,3694.16,16567.71,189514.08,35638.33,11516.55,10733.46,57888.34,247402.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",40457,12577.64,0.0,0.0,12577.64,0.0,2643.19,975.33,3618.52,16196.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21140,3744.36,900.22,392.96,5037.54,0.0,744.63,383.62,1128.25,6165.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,52098,136147.7,33174.5,14435.54,183757.74,26926.68,12424.51,3086.69,42437.88,226195.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17023,9000.89,0.0,87.86,9088.75,0.0,2251.94,704.97,2956.91,12045.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6384,110911.54,1560.3,11171.4,123643.24,23427.85,10123.76,9741.81,43293.42,166936.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7219,Maintenance Scheduler,22969,2466.0,0.0,24.0,2490.0,463.39,477.86,182.09,1123.34,3613.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30720,66686.76,24946.29,3622.48,95255.53,19207.82,13136.58,7411.89,39756.29,135011.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42644,66211.27,13011.91,2808.47,82031.65,18894.23,13048.66,6913.48,38856.37,120888.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,43322,55198.3,0.0,250.0,55448.3,12331.14,12222.78,4237.12,28791.04,84239.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,22392,97934.02,0.0,0.0,97934.02,20179.57,12424.5,8124.44,40728.51,138662.53 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,49509,68617.13,1916.15,0.0,70533.28,14121.48,12424.5,1173.38,27719.36,98252.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17532,112159.76,5229.61,17260.58,134649.95,24704.17,15052.76,2196.0,41952.93,176602.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52611,112170.37,39089.99,17115.44,168375.8,24616.23,15052.76,427.57,40096.56,208472.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,16731,73466.01,640.42,711.65,74818.08,15122.24,12424.5,6062.77,33609.51,108427.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,6779,49110.8,0.0,4461.55,53572.35,12473.98,12424.5,4104.72,29003.2,82575.55 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,52586,93884.01,0.0,0.0,93884.01,19350.03,12424.5,7443.36,39217.89,133101.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,33028,7909.45,0.0,98.78,8008.23,0.0,2630.23,620.94,3251.17,11259.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,25714,57079.19,0.0,6426.89,63506.08,12370.59,10430.61,5220.65,28021.85,91527.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46513,51456.8,1525.3,642.6,53624.7,12352.46,12424.5,4394.75,29171.71,82796.41 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,31952,88379.7,0.0,0.0,88379.7,18143.67,12424.5,6170.18,36738.35,125118.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14203,66506.33,20081.48,3505.91,90093.72,19206.5,13108.5,6992.24,39307.24,129400.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,10771,84599.0,46200.32,5012.25,135811.57,17548.1,12424.5,9982.43,39955.03,175766.6 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,13808,72175.32,0.0,0.0,72175.32,14867.91,11182.06,5622.05,31672.02,103847.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27019,56531.0,0.0,2689.07,59220.07,12932.18,12424.5,4855.69,30212.37,89432.44 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,25001,64298.28,392.78,9230.97,73922.03,14517.46,12424.5,5683.68,32625.64,106547.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11322,8805.85,0.0,0.0,8805.85,0.0,0.0,138.47,138.47,8944.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6444,2352.0,0.0,0.0,2352.0,0.0,1146.88,182.5,1329.38,3681.38 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,38507,77071.01,0.0,1605.0,78676.01,16189.21,12424.5,6509.98,35123.69,113799.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44964,96833.06,34644.75,5987.41,137465.22,20145.63,12364.77,2295.89,34806.29,172271.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,16056,49324.0,6894.18,711.27,56929.45,10659.33,5256.52,960.94,16876.79,73806.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,45400,62745.89,0.0,1000.0,63745.89,13137.07,12411.54,5164.35,30712.96,94458.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",50144,28347.59,0.0,0.0,28347.59,0.0,5943.45,2199.79,8143.24,36490.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16061,68141.46,14827.21,3011.01,85979.68,19498.27,13429.21,6502.25,39429.73,125409.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,5224,68589.32,0.0,909.9,69499.22,14104.44,10683.28,5610.14,30397.86,99897.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),40513,11556.0,2085.5,564.14,14205.64,2050.76,955.73,239.17,3245.66,17451.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,27848,116887.37,14264.69,24650.27,155802.33,26720.15,12358.69,10342.55,49421.39,205223.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49927,44059.76,2182.16,2117.9,48359.82,12914.95,8762.08,3683.69,25360.72,73720.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4279,66233.12,6325.23,2136.94,74695.29,18720.06,13052.71,5851.46,37624.23,112319.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,51709,77071.07,0.0,1520.0,78591.07,16195.9,12424.5,6468.2,35088.6,113679.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23062,56531.0,0.0,5975.81,62506.81,13349.07,12424.5,5016.88,30790.45,93297.26 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,12695,88966.4,0.0,450.0,89416.4,20408.02,12424.5,1473.78,34306.3,123722.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,5694,110011.57,11141.33,0.0,121152.9,22701.52,12424.5,9736.67,44862.69,166015.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,28321,20646.4,0.0,2125.28,22771.68,0.0,3440.63,1766.12,5206.75,27978.43 +Calendar,2015,6,General Administration & Finance,CON,Controller,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,46252,26409.21,0.0,0.0,26409.21,4914.76,5256.52,2123.81,12295.09,38704.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2363,60267.83,4479.03,1263.04,66009.9,15292.1,11997.95,5035.51,32325.56,98335.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,43963,88632.06,0.0,0.0,88632.06,18413.99,11468.76,7227.7,37110.45,125742.51 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,31404,86850.05,0.0,1200.0,88050.05,18156.07,12424.5,7091.02,37671.59,125721.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,40298,80570.01,0.0,0.0,80570.01,16605.95,12424.5,6244.16,35274.61,115844.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,39912,37904.0,0.0,0.0,37904.0,7053.89,5734.39,2967.84,15756.12,53660.12 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,4914,42059.88,0.0,0.0,42059.88,764.63,7141.1,3382.26,11287.99,53347.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",29677,112812.5,0.0,0.0,112812.5,22376.95,10704.18,21928.03,55009.16,167821.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,52017,57021.35,748.21,2042.81,59812.37,12746.76,12412.56,4854.88,30014.2,89826.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1040,3374.88,0.0,6.13,3381.01,0.0,1645.65,262.19,1907.84,5288.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4712,18067.13,0.0,1006.32,19073.45,0.0,4823.46,1478.81,6302.27,25375.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,46766,11340.01,3774.1,240.0,15354.11,2597.4,1911.46,1230.0,5738.86,21092.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,35983,80356.12,0.0,0.0,80356.12,16619.57,0.0,6646.11,23265.68,103621.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33382,23404.47,0.0,0.0,23404.47,5134.95,1911.46,1905.55,8951.96,32356.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16719,610.09,0.0,17.75,627.84,0.0,197.13,48.73,245.86,873.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,10827,75927.04,1615.56,1061.7,78604.3,15777.43,12424.5,6431.6,34633.53,113237.83 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,21308,7656.53,0.0,0.0,7656.53,0.0,2496.84,594.27,3091.11,10747.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,48045,112209.05,0.0,1427.89,113636.94,22582.31,12424.5,8896.06,43902.87,157539.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8383,68040.95,21098.51,5035.79,94175.25,19990.62,13405.15,7326.12,40721.89,134897.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,45243,62187.0,9175.03,4137.93,75499.96,13150.72,12424.5,5958.4,31533.62,107033.58 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8143,Sr Public Defenders Invstgtor,41733,101531.0,0.0,0.0,101531.0,20926.02,12424.5,7942.98,41293.5,142824.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,12143,98132.8,0.0,0.0,98132.8,20236.83,12421.52,7906.29,40564.64,138697.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,29442,56746.9,13459.91,15027.65,85234.46,14940.65,12424.49,6829.41,34194.55,119429.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7926,2304.42,0.0,0.0,2304.42,0.0,976.64,194.29,1170.93,3475.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46405,90033.5,18896.82,13370.6,122300.92,25194.2,11439.5,2036.99,38670.69,160971.61 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,30084,92932.08,23864.42,8926.93,125723.43,19826.25,12325.7,9807.9,41959.85,167683.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22411,53906.8,3460.75,3071.5,60439.05,12922.98,12424.5,4862.06,30209.54,90648.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35736,13214.63,0.0,612.44,13827.07,0.0,5063.9,1072.13,6136.03,19963.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,49094,74819.31,22016.5,9826.82,106662.63,16626.15,12294.58,8456.25,37376.98,144039.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50841,77071.0,305.47,1964.0,79340.47,16288.7,12424.5,6515.45,35228.65,114569.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,14068,97793.01,26743.19,22856.03,147392.23,23533.93,12424.5,10232.34,46190.77,193583.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),27157,5929.2,46.32,0.0,5975.52,0.0,1720.32,463.46,2183.78,8159.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,27425,87713.02,16762.98,0.0,104476.0,18078.17,12424.5,8480.79,38983.46,143459.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,8524,9548.73,0.0,360.0,9908.73,0.0,3121.06,810.87,3931.93,13840.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,16854,63102.0,0.0,776.6,63878.6,13166.58,12424.5,5141.93,30733.01,94611.61 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,34626,39968.02,4460.26,1434.8,45863.08,9685.67,12135.34,3710.1,25531.11,71394.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,27214,112544.17,0.0,0.0,112544.17,22605.95,12424.5,17664.2,52694.65,165238.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,1794,18128.0,0.0,0.0,18128.0,3373.64,3822.92,1426.28,8622.84,26750.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,5718,108198.08,548.79,11952.52,120699.39,29202.67,12404.61,1360.05,42967.33,163666.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,126,83699.04,0.0,0.0,83699.04,17250.56,12424.5,6943.06,36618.12,120317.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,4844,160640.18,0.0,0.0,160640.18,32399.58,12424.51,10504.55,55328.64,215968.82 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,38572,115320.2,0.0,0.0,115320.2,23197.85,12400.61,9466.94,45065.4,160385.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28556,9862.23,415.17,74.58,10351.98,2374.07,3015.76,792.14,6181.97,16533.95 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,11032,45759.97,0.0,1167.86,46927.83,10039.75,2867.19,3794.05,16700.99,63628.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13993,74268.34,5715.8,15561.61,95545.75,18201.55,9891.81,1593.54,29686.9,125232.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32141,55297.48,991.8,1510.75,57800.03,12366.74,12384.18,4672.86,29423.78,87223.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51871,66413.2,26512.32,583.76,93509.28,18356.97,13088.61,7055.19,38500.77,132010.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,50720,4339.84,0.0,107.31,4447.15,984.8,581.57,368.75,1935.12,6382.27 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,12046,113369.17,0.0,0.0,113369.17,23007.22,12233.34,16739.7,51980.26,165349.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,6484,51394.55,1990.24,760.0,54144.79,10309.26,8443.29,4478.9,23231.45,77376.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,40146,26771.0,7206.01,5158.31,39135.32,5497.71,3345.06,3185.15,12027.92,51163.24 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),17568,171050.34,0.0,1562.5,172612.84,34803.02,12089.99,10661.95,57554.96,230167.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6737,32934.0,0.0,1860.56,34794.56,0.0,2867.19,2700.3,5567.49,40362.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,23744,47674.0,5755.43,2807.0,56236.43,10557.66,5256.52,4438.18,20252.36,76488.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50959,55828.31,45.76,8841.54,64715.61,13762.99,12418.53,5287.89,31469.41,96185.02 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14610,182757.22,0.0,1500.0,184257.22,37052.77,12424.5,10954.96,60432.23,244689.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,8406,70245.0,10748.87,3762.25,84756.12,14606.45,12424.5,6702.79,33733.74,118489.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,47890,3258.85,0.0,3.75,3262.6,0.0,964.69,256.47,1221.16,4483.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,29703,97424.01,709.51,10.0,98143.52,20081.77,12424.5,8064.06,40570.33,138713.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,9660,58247.01,0.0,0.0,58247.01,11935.77,6690.12,4672.55,23298.44,81545.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,51208,82717.69,37391.02,2832.67,122941.38,17288.44,10990.92,9764.71,38044.07,160985.45 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4767,124575.5,0.0,1500.0,126075.5,25314.1,12424.5,9880.9,47619.5,173695.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10967,51877.52,13987.87,70.0,65935.39,12425.05,12209.35,5312.06,29946.46,95881.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",51959,15524.03,0.0,0.0,15524.03,0.0,3688.52,1204.17,4892.69,20416.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47350,7791.01,0.0,0.0,7791.01,0.0,3367.93,648.26,4016.19,11807.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28633,65028.59,3393.86,1681.35,70103.8,18240.22,12811.28,5410.36,36461.86,106565.66 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,772,89564.06,0.0,0.0,89564.06,18248.41,10990.9,14102.33,43341.64,132905.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20480,21006.1,0.0,0.0,21006.1,5419.57,5256.52,1701.15,12377.24,33383.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6933,58492.11,514.6,8890.13,67896.84,13013.65,10342.44,5341.73,28697.82,96594.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,2951,22214.73,0.0,0.0,22214.73,0.0,5504.4,1722.29,7226.69,29441.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38097,132530.25,2346.12,3441.61,138317.98,0.0,0.0,2255.97,2255.97,140573.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29058,946.2,0.0,157.7,1103.9,1660.05,71.68,0.0,1731.73,2835.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,51882,67261.03,2083.0,3977.2,73321.23,14207.34,12424.5,6053.3,32685.14,106006.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,708,10949.56,0.0,17.55,10967.11,2411.66,3648.2,840.14,6900.0,17867.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,49578,702.4,0.0,0.0,702.4,0.0,191.14,54.38,245.52,947.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,50630,3844.0,0.0,0.0,3844.0,862.21,477.87,298.55,1638.63,5482.63 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,46940,37443.09,0.0,0.0,37443.09,8974.67,12313.34,2793.75,24081.76,61524.85 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,3556,41552.56,0.0,0.0,41552.56,5145.25,11576.29,3317.5,20039.04,61591.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48579,72394.3,0.0,80.0,72474.3,14851.91,11665.89,5763.24,32281.04,104755.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12601,17580.45,0.0,0.0,17580.45,600.6,7562.23,1423.56,9586.39,27166.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,39411,78812.27,0.0,622.8,79435.07,16369.05,12400.61,6479.52,35249.18,114684.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,49153,6054.0,0.0,0.0,6054.0,0.0,955.73,469.89,1425.62,7479.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,16591,126549.86,170.13,3199.71,129919.7,26506.33,9919.12,9813.66,46239.11,176158.81 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,9191,38434.18,0.0,774.97,39209.15,9355.63,11110.37,3119.09,23585.09,62794.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13685,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3372.94,18198.79,61966.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,48707,97424.02,558.6,627.5,98610.12,20214.05,12424.53,7989.39,40627.97,139238.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51834,44700.05,4069.87,2353.0,51122.92,10111.09,5734.39,715.54,16561.02,67683.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,49539,48947.81,1735.6,3731.29,54414.7,11040.43,11011.51,4362.77,26414.71,80829.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,45158,75825.6,6144.03,1326.6,83296.23,15612.02,12424.52,6677.55,34714.09,118010.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",5300,Sub-Professional Engineering,5322,Graphic Artist,42121,19982.0,0.0,0.0,19982.0,3718.63,3822.92,1613.04,9154.59,29136.59 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,4381,104811.01,31547.92,320.0,136678.93,21663.74,12424.5,9945.99,44034.23,180713.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,24754,183523.33,0.0,0.0,183523.33,36903.11,12424.5,10950.79,60278.4,243801.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,12033,83694.03,0.0,0.0,83694.03,17249.65,12424.5,6874.66,36548.81,120242.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18186,63488.8,19294.57,550.04,83333.41,17480.1,12502.09,6250.96,36233.15,119566.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12149,45125.98,2776.66,1703.85,49606.49,12479.22,13304.38,3726.81,29510.41,79116.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43230,61693.81,3636.26,692.75,66022.82,17070.92,12149.49,4966.17,34186.58,100209.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,33059,34278.05,313.32,449.35,35040.72,2339.8,7940.03,2762.31,13042.14,48082.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",50775,127296.46,0.0,0.0,127296.46,25645.96,12292.07,17197.78,55135.81,182432.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,7682,55128.34,4935.21,6581.0,66644.55,10437.46,6212.25,1123.36,17773.07,84417.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47653,25703.13,0.0,1372.84,27075.97,2549.22,0.0,1055.67,3604.89,30680.86 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),44065,184289.06,0.0,5248.28,189537.34,38144.36,12424.5,10909.98,61478.84,251016.18 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,4792,46194.96,2589.77,8054.92,56839.65,11234.59,6164.46,4546.45,21945.5,78785.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7340,58364.94,5481.22,809.5,64655.66,13615.44,11544.04,4733.14,29892.62,94548.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5373,113697.93,3085.55,10879.14,127662.62,23676.4,15148.33,2127.88,40952.61,168615.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,5507,23233.34,0.0,338.38,23571.72,5994.22,5918.12,1875.74,13788.08,37359.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,44181,17883.05,0.0,221.39,18104.44,0.0,5913.59,1403.33,7316.92,25421.36 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,37785,5597.4,0.0,8672.66,14270.06,1255.5,907.95,1117.68,3281.13,17551.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29468,125196.48,2734.2,17574.17,145504.85,25720.53,11086.48,6667.11,43474.12,188978.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",8437,94388.0,2682.27,1887.76,98958.03,19842.92,12424.5,7939.95,40207.37,139165.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,37903,34131.6,0.0,0.0,34131.6,6435.68,5160.95,2664.44,14261.07,48392.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,33425,63438.32,0.0,890.0,64328.32,13314.62,11936.24,5303.06,30553.92,94882.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,18077,4985.0,0.0,11.96,4996.96,206.48,1194.67,387.85,1789.0,6785.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9546,9362.51,0.0,262.67,9625.18,0.0,3077.74,746.92,3824.66,13449.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,33468,67911.04,0.0,874.0,68785.04,14125.56,12424.5,5630.14,32180.2,100965.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,35936,42664.62,0.0,1010.0,43674.62,10333.8,10386.04,3506.37,24226.21,67900.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,48802,77832.39,14418.74,3115.89,95367.02,15916.93,11417.99,8083.81,35418.73,130785.75 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,34958,71218.43,0.0,628.53,71846.96,14688.56,11475.16,5945.58,32109.3,103956.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,52808,101256.02,0.0,0.0,101256.02,20105.28,10744.33,8104.45,38954.06,140210.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,42276,32160.0,0.0,17219.05,49379.05,5823.18,2867.19,792.91,9483.28,58862.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,15530,90223.72,0.0,0.0,90223.72,18398.32,11186.81,7248.59,36833.72,127057.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,2178,11769.46,0.0,12.98,11782.44,0.0,3912.51,913.52,4826.03,16608.47 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,33373,84036.99,0.0,4698.0,88734.99,17253.89,11825.2,7380.44,36459.53,125194.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,51577,64114.12,685.19,6979.65,71778.96,14580.65,12229.24,5914.94,32724.83,104503.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47611,113233.59,14466.34,22137.66,149837.59,26148.66,15196.11,2553.61,43898.38,193735.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6991,68148.01,7610.96,683.04,76442.01,18851.5,13430.23,5802.38,38084.11,114526.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,31873,55837.41,0.0,2536.36,58373.77,11677.87,9906.75,4818.57,26403.19,84776.96 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,3903,78108.01,0.0,5250.0,83358.01,16428.48,10990.9,6927.18,34346.56,117704.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33746,3142.6,0.0,68.99,3211.59,0.0,1087.14,248.85,1335.99,4547.58 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,36622,30329.2,5567.99,3244.29,39141.48,3550.27,6634.86,3128.41,13313.54,52455.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,45288,3527.0,0.0,11814.57,15341.57,791.11,477.86,1182.45,2451.42,17792.99 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",48040,69145.3,1094.01,10788.23,81027.54,18224.24,12376.71,1655.82,32256.77,113284.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26044,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,3078,56531.0,4029.05,3594.0,64154.05,11788.47,12424.5,5290.57,29503.54,93657.59 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,46518,66325.52,0.0,0.0,66325.52,13675.0,12376.71,5199.24,31250.95,97576.47 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40893,42390.8,926.11,0.0,43316.91,9925.45,9557.31,3481.06,22963.82,66280.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,37357,130171.17,9845.58,14976.45,154993.2,28501.56,14670.47,2233.53,45405.56,200398.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,9432,64417.05,0.0,6515.49,70932.54,13943.61,12205.28,5790.33,31939.22,102871.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,26875,433.2,0.0,0.0,433.2,0.0,0.0,34.22,34.22,467.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,45012,137974.61,23486.81,14025.17,175486.59,27242.45,12364.76,2937.09,42544.3,218030.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,14722,32254.38,4824.0,15850.84,52929.22,5726.31,2867.19,900.33,9493.83,62423.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48618,60605.5,26751.42,5747.69,93104.61,17975.76,11927.64,7063.08,36966.48,130071.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,41700,92349.92,61792.36,7992.98,162135.26,19783.93,12472.29,10462.94,42719.16,204854.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37838,13139.92,0.0,403.26,13543.18,0.0,5662.7,1103.17,6765.87,20309.05 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,30100,91533.6,0.0,0.0,91533.6,18844.09,12424.5,7377.35,38645.94,130179.54 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,19624,18565.01,0.0,0.0,18565.01,3680.69,4778.65,1503.86,9963.2,28528.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47260,128065.0,0.0,250.0,128315.0,25773.16,12424.5,9884.06,48081.72,176396.72 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,1074,39667.02,3796.29,1460.49,44923.8,0.0,4539.72,2935.29,7475.01,52398.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21503,85726.77,1183.63,792.62,87703.02,16777.32,7807.13,7005.85,31590.3,119293.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,10319,6422.5,0.0,343.15,6765.65,0.0,1672.53,525.12,2197.65,8963.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15346,72143.31,3520.14,10848.68,86512.13,0.0,0.0,6838.21,6838.21,93350.34 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,3662,97321.84,0.0,0.0,97321.84,19313.3,10751.97,22377.36,52442.63,149764.47 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,38424,54809.99,0.0,1000.0,55809.99,12439.47,12132.65,4511.39,29083.51,84893.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29951,56531.01,0.0,3802.45,60333.46,12680.14,12424.5,4891.77,29996.41,90329.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36390,22952.11,0.0,480.0,23432.11,6045.48,5734.39,2028.86,13808.73,37240.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,23889,63480.0,716.57,2715.61,66912.18,15059.37,11946.64,5219.98,32225.99,99138.17 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,24227,156544.69,0.0,0.0,156544.69,30755.21,10035.17,15353.62,56144.0,212688.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17440,119271.1,804.98,16658.52,136734.6,24090.73,12370.74,2427.53,38889.0,175623.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,22286,117129.74,3340.21,15028.32,135498.27,23205.2,12424.5,2285.13,37914.83,173413.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,1772,117533.97,35166.64,17331.67,170032.28,23261.51,12424.5,2843.37,38529.38,208561.66 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,8577,22935.83,3339.5,1723.97,27999.3,4515.88,4533.75,2233.27,11282.9,39282.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18891,134476.9,0.0,18120.41,152597.31,24913.72,12281.15,8604.12,45798.99,198396.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",9802,106090.01,1596.66,1864.35,109551.02,21865.57,12424.49,8964.94,43255.0,152806.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",18847,113405.03,0.0,0.0,113405.03,22204.9,9557.31,14331.45,46093.66,159498.69 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,45903,61126.9,9158.19,3255.19,73540.28,14132.88,12090.0,5704.24,31927.12,105467.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28974,1002.13,0.0,16.4,1018.53,0.0,380.79,79.06,459.85,1478.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36159,63651.57,227.54,2234.4,66113.51,8233.1,5813.53,5029.71,19076.34,85189.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,27587,67007.8,0.0,0.0,67007.8,13806.01,12377.43,4835.81,31019.25,98027.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",15798,97320.88,152.58,7409.44,104882.9,20398.42,12400.61,8582.64,41381.67,146264.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4700,707.15,0.0,29.58,736.73,0.0,228.49,57.18,285.67,1022.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,41866,79395.02,0.0,0.0,79395.02,16360.85,12424.51,6534.03,35319.39,114714.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,50018,93648.51,3045.63,2262.64,98956.78,19457.92,12412.56,8147.76,40018.24,138975.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,22180,63887.0,266.7,4865.32,69019.02,14092.8,12424.54,5411.61,31928.95,100947.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25302,108749.86,5981.73,19624.6,134356.19,25159.0,15052.77,2370.91,42582.68,176938.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,46684,56406.02,5848.17,980.0,63234.19,11810.68,12424.5,5182.09,29417.27,92651.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,2817,1812.25,0.0,0.0,1812.25,0.0,262.83,140.3,403.13,2215.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,31427,171.48,102.34,6.5,280.32,0.0,56.75,21.7,78.45,358.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5439,68193.76,22133.9,4263.46,94591.12,19758.02,13432.97,6994.02,40185.01,134776.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,46683,84586.82,11927.57,2385.41,98899.8,17139.15,10417.47,7712.2,35268.82,134168.62 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),26445,184289.04,0.0,5185.78,189474.82,38130.64,12424.5,11042.06,61597.2,251072.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,35086,84548.19,4721.41,10836.57,100106.17,18706.29,12350.07,1695.05,32751.41,132857.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,50989,98823.0,9599.95,2955.72,111378.67,20339.06,12183.97,8822.81,41345.84,152724.51 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,24663,70804.6,0.0,0.0,70804.6,7025.3,9031.66,5600.92,21657.88,92462.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,29853,77795.1,0.0,1540.0,79335.1,16317.65,12424.51,6524.77,35266.93,114602.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,17470,61683.95,0.0,504.23,62188.18,12799.73,12131.69,5062.76,29994.18,92182.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",10285,130329.26,87472.6,16478.82,234280.68,28877.25,15052.76,3989.95,47919.96,282200.64 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,41213,42324.29,1159.95,950.59,44434.83,10010.63,10315.92,3556.32,23882.87,68317.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49055,70668.34,0.0,13640.89,84309.23,17152.54,6169.06,4764.8,28086.4,112395.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,41424,71440.4,11869.71,2979.74,86289.85,14961.43,12424.5,7031.57,34417.5,120707.35 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,35239,27508.04,0.0,609.56,28117.6,5232.71,4756.78,2251.04,12240.53,40358.13 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,6767,33761.0,0.0,0.0,33761.0,6282.95,3822.92,2649.76,12755.63,46516.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17435,8664.0,0.0,346.56,9010.56,0.0,716.79,699.36,1416.15,10426.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49477,77856.3,1066.12,1135.85,80058.27,15750.04,11946.64,4330.26,32026.94,112085.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21353,1196.04,0.0,0.0,1196.04,0.0,502.23,92.83,595.06,1791.1 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,4408,121472.0,0.0,3934.4,125406.4,24461.52,12424.5,32234.9,69120.92,194527.32 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,41817,76132.54,0.0,0.0,76132.54,16106.91,9189.47,5952.81,31249.19,107381.73 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),25283,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10981.99,60795.32,246584.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,11764,51405.0,1937.97,3340.08,56683.05,12480.33,12424.5,4679.99,29584.82,86267.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51707,70245.0,451.46,9960.98,80657.44,15572.22,12424.5,6387.56,34384.28,115041.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",23509,17612.4,0.0,0.0,17612.4,3950.46,3727.35,1449.65,9127.46,26739.86 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30916,4767.0,0.0,288.75,5055.75,0.0,2033.91,400.9,2434.81,7490.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,24591,106605.02,0.0,0.0,106605.02,21971.81,12424.5,8510.09,42906.4,149511.42 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,16082,102425.51,0.0,2560.0,104985.51,21696.96,11942.16,7655.38,41294.5,146280.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,31354,165131.37,0.0,0.0,165131.37,33163.07,12424.5,28059.21,73646.78,238778.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27556,121965.94,390.34,26172.83,148529.11,27724.41,11110.37,3957.69,42792.47,191321.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,16066,81549.53,0.0,1095.0,82644.53,17027.69,12424.5,5950.28,35402.47,118047.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,28728,26087.59,2418.03,860.67,29366.29,6687.27,6662.94,2401.71,15751.92,45118.21 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,13275,20721.71,243.68,55.24,21020.63,0.0,3028.48,1629.57,4658.05,25678.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,18934,234419.52,0.0,0.0,234419.52,47280.69,12424.52,29201.65,88906.86,323326.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8448,61018.14,16453.13,9487.91,86959.18,11246.54,6212.25,1456.76,18915.55,105874.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,34498,23076.67,299.44,0.0,23376.11,4334.3,3452.61,1862.89,9649.8,33025.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,6235,64310.04,210.09,1560.0,66080.13,13542.4,12424.51,5323.92,31290.83,97370.96 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,2365,160115.0,0.0,14410.35,174525.35,32223.34,12424.5,10644.37,55292.21,229817.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,51238,974.7,0.0,0.0,974.7,0.0,322.56,75.46,398.02,1372.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,25145,37695.0,0.0,0.0,37695.0,8155.5,6433.26,3032.02,17620.78,55315.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,44231,4496.81,0.0,0.0,4496.81,0.0,2102.6,348.78,2451.38,6948.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,41028,94115.1,58272.45,5019.45,157407.0,19824.96,12711.22,10388.71,42924.89,200331.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,34504,97934.03,2462.53,1486.95,101883.51,20475.03,12424.5,8185.2,41084.73,142968.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38769,4118.73,0.0,0.0,4118.73,0.0,1786.02,333.81,2119.83,6238.56 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,24270,12072.13,0.0,183.69,12255.82,0.0,2132.48,951.25,3083.73,15339.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,2857,14344.82,0.0,0.0,14344.82,3700.92,2666.25,1217.83,7585.0,21929.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",14762,149729.82,0.0,0.0,149729.82,30867.67,10035.18,24115.66,65018.51,214748.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3401,95370.73,18054.18,10357.13,123782.04,25722.37,12119.74,1848.56,39690.67,163472.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",9091,2392.0,0.0,0.0,2392.0,0.0,142.88,185.42,328.3,2720.3 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,11448,12826.01,0.0,220.0,13046.01,793.57,2628.26,1029.78,4451.61,17497.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,35763,28227.02,0.0,255.93,28482.95,6074.81,4886.77,2430.15,13391.73,41874.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,35306,68530.51,1501.28,0.0,70031.79,12945.9,7167.97,10475.28,30589.15,100620.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,12700,73957.01,1696.22,0.0,75653.23,15242.9,12424.5,5989.29,33656.69,109309.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,13381,52354.18,1275.47,0.0,53629.65,10905.45,11188.03,4412.24,26505.72,80135.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,38484,81250.4,0.0,0.0,81250.4,16701.25,12328.92,6443.42,35473.59,116723.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35181,69519.76,21218.05,6533.76,97271.57,20880.18,13702.68,7393.62,41976.48,139248.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,5662,74664.77,16391.27,1619.2,92675.24,15379.87,12424.5,7596.0,35400.37,128075.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,44478,66102.07,0.0,0.0,66102.07,13624.09,12424.5,5469.85,31518.44,97620.51 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,17438,97771.18,20471.62,19885.25,138128.05,28607.48,12424.5,2195.68,43227.66,181355.71 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,37029,5005.28,0.0,0.0,5005.28,0.0,0.0,395.42,395.42,5400.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13161,114140.3,624.49,7055.59,121820.38,23538.81,9840.75,9567.69,42947.25,164767.63 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,4067,7253.0,0.0,156.15,7409.15,1629.26,2150.39,593.97,4373.62,11782.77 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21237,116668.06,0.0,1500.0,118168.06,23766.32,12424.5,8830.33,45021.15,163189.21 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,6916,99654.02,0.0,0.0,99654.02,22731.77,12424.5,1622.17,36778.44,136432.46 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,37938,7672.0,0.0,0.0,7672.0,1979.36,1911.46,621.62,4512.44,12184.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,3458,31216.4,0.0,0.0,31216.4,7001.82,4778.65,2507.48,14287.95,45504.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,26238,124598.1,1680.83,8220.54,134499.47,25132.13,12424.5,43.35,37599.98,172099.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1041,IS Engineer-Assistant,40768,91469.8,0.0,0.0,91469.8,18823.05,12424.5,6909.93,38157.48,129627.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19377,97775.17,123126.39,23062.42,243963.98,29380.44,12424.5,4164.85,45969.79,289933.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21409,6394.78,0.0,0.0,6394.78,0.0,2133.98,495.54,2629.52,9024.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,10587,0.0,20.42,0.0,20.42,0.0,0.0,1.58,1.58,22.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,44908,135421.0,0.0,0.0,135421.0,27248.57,12424.5,10115.97,49789.04,185210.04 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,18061,72621.6,0.0,120.0,72741.6,14980.57,12424.5,5771.81,33176.88,105918.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,41212,105042.87,0.0,3467.96,108510.83,22381.27,12302.01,8588.01,43271.29,151782.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,29983,62803.52,0.0,1853.93,64657.45,13275.71,12423.01,5042.65,30741.37,95398.82 +Calendar,2015,1,Public Protection,PDR,Public Defender,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,9990,118427.03,0.0,0.0,118427.03,23833.76,12424.5,26888.48,63146.74,181573.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",13403,127129.01,0.0,319.28,127448.29,25648.49,12424.5,17562.67,55635.66,183083.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,46511,4230.0,39.66,0.0,4269.66,787.2,955.73,321.13,2064.06,6333.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32116,46035.9,9759.48,4661.86,60457.24,14190.22,9069.23,4671.12,27930.57,88387.81 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,10018,55959.02,0.0,0.0,55959.02,11260.88,6212.25,4366.8,21839.93,77798.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,643,135421.01,0.0,0.0,135421.01,27253.5,12424.5,9980.29,49658.29,185079.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,49585,116976.06,0.0,3215.42,120191.48,24190.87,12424.48,9662.21,46277.56,166469.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,21720,74165.13,0.0,0.0,74165.13,15285.81,12424.5,6109.01,33819.32,107984.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,500,25475.34,0.0,0.0,25475.34,5714.15,4634.1,2096.24,12444.49,37919.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,3454,85206.18,0.0,0.0,85206.18,17527.73,12416.14,6932.76,36876.63,122082.81 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",40746,89891.03,15071.47,6024.21,110986.71,21881.05,12424.5,2184.97,36490.52,147477.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,32713,30700.97,0.0,0.0,30700.97,864.83,7484.58,2481.5,10830.91,41531.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22691,67403.27,13300.84,4475.92,85180.03,19632.93,13278.09,6482.78,39393.8,124573.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23016,1666.25,0.0,9.92,1676.17,0.0,642.12,129.77,771.89,2448.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,36913,73749.02,5214.13,4352.65,83315.8,15560.6,12424.5,6874.47,34859.57,118175.37 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),10562,179679.66,0.0,5156.09,184835.75,37138.72,12111.79,10928.05,60178.56,245014.31 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,13595,8690.4,2643.14,306.45,11639.99,0.0,2054.82,903.45,2958.27,14598.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,18469,143475.42,31940.38,10844.55,186260.35,30227.29,13141.31,3034.43,46403.03,232663.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,2428,120275.25,1349.76,2577.35,124202.36,24337.28,9915.7,9812.68,44065.66,168268.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,669,0.0,0.0,250.0,250.0,0.0,0.0,16.74,16.74,266.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36902,56531.0,0.0,5785.9,62316.9,12422.53,12424.5,5100.73,29947.76,92264.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13755,110765.09,547.8,5267.65,116580.54,21050.88,10742.24,8983.05,40776.17,157356.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43947,67083.77,31572.22,4117.98,102773.97,19492.49,13220.11,7994.56,40707.16,143481.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38483,3429.98,0.0,0.0,3429.98,0.0,1487.36,273.02,1760.38,5190.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1664,Patient Accounts Manager,50620,70823.92,0.0,0.0,70823.92,14060.33,8747.45,5945.49,28753.27,99577.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,1818,55122.4,10567.32,4841.08,70530.8,13308.53,12424.52,5665.14,31398.19,101928.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50151,967.75,0.0,26.46,994.21,0.0,471.89,77.17,549.06,1543.27 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,28678,99654.05,0.0,0.0,99654.05,22731.78,12424.5,257.85,35414.13,135068.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,11120,33373.32,2975.13,3457.18,39805.63,5923.81,2867.19,671.29,9462.29,49267.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30528,4642.16,0.0,677.95,5320.11,783.43,0.0,2768.83,3552.26,8872.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13579,35775.96,5326.83,7794.07,48896.86,9090.16,4730.87,815.82,14636.85,63533.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,10271,92001.31,53265.32,10368.62,155635.25,20093.01,12424.5,10333.53,42851.04,198486.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,52785,71725.62,2047.5,0.0,73773.12,14753.37,12424.5,5742.71,32920.58,106693.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35027,57489.24,9177.33,900.69,67567.26,15149.76,13163.39,5148.53,33461.68,101028.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,6182,80570.03,0.0,0.0,80570.03,16605.95,12424.5,6650.09,35680.54,116250.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,11389,16746.99,0.0,0.0,16746.99,4320.74,4534.17,1384.25,10239.16,26986.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,48047,91446.05,0.0,1067.96,92514.01,18531.36,10513.04,7281.71,36326.11,128840.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,3112,22496.0,0.0,0.0,22496.0,4935.64,1911.46,2736.97,9584.07,32080.07 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,47042,106197.52,0.0,0.0,106197.52,21880.41,12376.71,8735.32,42992.44,149189.96 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,27651,32310.54,0.0,656.17,32966.71,8004.65,8267.09,2586.52,18858.26,51824.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38128,1796.69,0.0,785.73,2582.42,419.24,779.09,214.5,1412.83,3995.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36341,2575.68,0.0,515.15,3090.83,0.0,0.0,94.31,94.31,3185.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7360,Pipe Welder,40981,100761.0,32154.07,2626.7,135541.77,21184.9,12424.53,9991.94,43601.37,179143.14 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,50334,48588.4,0.0,18084.64,66673.04,10898.33,6188.36,5339.63,22426.32,89099.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38792,27258.37,2701.23,589.46,30549.06,6983.87,8484.62,2331.41,17799.9,48348.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,40381,150642.01,0.0,0.0,150642.01,30317.9,12424.5,10378.44,53120.84,203762.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21566,3374.88,0.0,1.96,3376.84,0.0,1645.65,262.01,1907.66,5284.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,7189,10266.0,0.0,0.0,10266.0,2257.49,2867.19,825.19,5949.87,16215.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4779,56531.0,0.0,7153.59,63684.59,13799.01,12424.5,4698.26,30921.77,94606.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,38126,29757.01,0.0,0.0,29757.01,5537.76,4300.79,2372.31,12210.86,41967.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,2719,61428.0,4927.81,12766.74,79122.55,13498.98,12424.5,6421.08,32344.56,111467.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13306,59663.94,69.4,0.0,59733.34,13304.02,12424.51,4858.74,30587.27,90320.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2520,97269.43,4912.37,10941.54,113123.34,20208.16,12424.5,1840.24,34472.9,147596.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,17756,46004.02,0.0,456.0,46460.02,9266.85,0.0,3840.74,13107.59,59567.61 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1280,Employee Relations Representat,45809,94931.0,0.0,0.0,94931.0,19533.75,12424.51,7689.41,39647.67,134578.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,42404,62559.36,94.46,572.1,63225.92,13204.65,10793.79,5214.44,29212.88,92438.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,18372,53630.6,1924.44,6939.86,62494.9,13171.95,10417.46,5030.71,28620.12,91115.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3715,5101.5,0.0,100.23,5201.73,0.0,1702.4,402.72,2105.12,7306.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,7704,53991.01,0.0,0.0,53991.01,11393.27,10035.18,3983.7,25412.15,79403.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,34869,74121.9,0.0,0.0,74121.9,15293.89,12424.5,5871.97,33590.36,107712.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,3415,57995.02,4761.76,628.23,63385.01,13089.23,12424.5,5088.48,30602.21,93987.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2114,Medical Records Tech Sprv,32632,83699.0,1055.68,2538.0,87292.68,17379.24,12424.5,6934.79,36738.53,124031.21 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,11610,81496.74,0.0,0.0,81496.74,16771.46,12424.5,6564.25,35760.21,117256.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1226,Chf Payroll & Personnel Clerk,27916,88368.05,63.64,624.0,89055.69,18341.81,12424.5,7340.09,38106.4,127162.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,1356,62468.8,134.27,1491.04,64094.11,13111.57,12424.5,5240.85,30776.92,94871.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43679,56531.0,6952.94,648.3,64132.24,11659.55,12424.5,5289.07,29373.12,93505.36 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,6392,12591.1,0.0,0.0,12591.1,2343.21,1768.1,4808.63,8919.94,21511.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",49195,106090.0,23784.64,741.47,130616.11,22144.22,12424.5,9952.01,44520.73,175136.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,47458,63754.11,0.0,5378.81,69132.92,13948.77,7620.29,5561.92,27130.98,96263.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16365,56163.3,181.56,586.88,56931.74,10885.46,8601.58,3960.35,23447.39,80379.13 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,51243,93272.5,17038.24,7947.69,118258.43,20114.18,12370.74,9715.45,42200.37,160458.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,14488,61976.84,0.0,970.0,62946.84,12973.3,12328.92,5056.6,30358.82,93305.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,38251,4473.22,0.0,90.58,4563.8,1003.57,967.68,323.17,2294.42,6858.22 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,23180,97761.24,1138.62,8835.24,107735.1,25919.32,12424.5,842.43,39186.25,146921.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",44460,131577.12,11584.07,26565.89,169727.08,31240.49,15196.11,2845.45,49282.05,219009.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,49191,35639.9,3440.66,1567.0,40647.56,8545.38,9694.58,3276.56,21516.52,62164.08 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,9652,99654.0,0.0,0.0,99654.0,22731.77,12424.5,1690.01,36846.28,136500.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49234,97192.43,16625.38,5179.66,118997.47,20190.91,12424.5,1985.67,34601.08,153598.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,26429,25814.32,395.89,536.5,26746.71,1697.27,6289.91,2118.75,10105.93,36852.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,38591,74664.74,4597.22,745.39,80007.35,15378.75,12424.5,6340.6,34143.85,114151.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,28848,83412.22,7666.9,9348.96,100428.08,17148.89,12137.79,7852.88,37139.56,137567.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,18310,12393.57,0.0,0.0,12393.57,0.0,1478.4,962.47,2440.87,14834.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,45063,11159.67,0.0,0.0,11159.67,0.0,1547.09,866.17,2413.26,13572.93 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,11035,4789.01,107.88,0.0,4896.89,0.0,1191.68,379.78,1571.46,6468.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,24890,433.2,0.0,0.0,433.2,0.0,143.35,33.54,176.89,610.09 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,9537,113623.1,7408.11,0.0,121031.21,22881.25,12424.51,9797.28,45103.04,166134.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27071,56531.0,0.0,7261.19,63792.19,12718.33,12424.5,5262.33,30405.16,94197.35 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,34313,14752.58,0.0,0.0,14752.58,3146.5,0.0,1166.38,4312.88,19065.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,3613,15126.0,4403.1,4198.1,23727.2,3312.97,2867.19,1866.83,8046.99,31774.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,11720,49083.13,541.71,1020.0,50644.84,10200.11,10990.9,4059.88,25250.89,75895.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,22598,102019.05,0.0,0.0,102019.05,21037.45,12424.49,8306.13,41768.07,143787.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,27685,78765.0,0.0,0.0,78765.0,16216.26,12424.5,5948.27,34589.03,113354.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42285,54535.95,14403.35,3848.14,72787.44,15700.35,10719.54,5462.37,31882.26,104669.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,51832,56241.65,0.0,11500.54,67742.19,12339.4,5953.91,5406.55,23699.86,91442.05 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),25336,63784.7,0.0,750.0,64534.7,9021.75,7502.48,5169.82,21694.05,86228.75 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9770,Community Development Asst,39205,65951.02,0.0,0.0,65951.02,13592.82,12424.49,5218.07,31235.38,97186.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41937,32339.57,0.0,2346.65,34686.22,3757.61,0.0,3804.71,7562.32,42248.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,35679,133087.0,0.0,0.0,133087.0,26783.95,12424.5,9894.76,49103.21,182190.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17736,10726.15,0.0,0.0,10726.15,1410.56,4598.73,877.82,6887.11,17613.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",2601,63480.47,20597.26,6834.71,90912.44,15089.63,6451.18,1507.08,23047.89,113960.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,47904,17127.5,0.0,220.0,17347.5,3228.38,2389.33,1337.78,6955.49,24302.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19414,74364.18,7439.25,11665.7,93469.13,17625.93,9891.81,1553.84,29071.58,122540.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,30069,97127.46,4786.43,10956.79,112870.68,26293.55,12342.5,1910.98,40547.03,153417.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51084,61117.66,2136.37,1425.72,64679.75,17275.31,12070.76,4723.68,34069.75,98749.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,20703,30727.7,0.0,2557.8,33285.5,5947.05,8181.95,2632.45,16761.45,50046.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,31231,145659.03,0.0,0.0,145659.03,29314.84,12424.5,10279.2,52018.54,197677.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,49340,23900.1,2091.82,0.0,25991.92,0.0,3625.8,2017.39,5643.19,31635.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2153,73360.12,13282.77,5923.73,92566.62,16108.73,15196.11,1531.65,32836.49,125403.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23096,150107.0,0.0,10911.65,161018.65,28721.47,12424.5,6853.98,47999.95,209018.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",1903,96310.8,0.0,0.0,96310.8,19827.44,12424.5,7892.86,40144.8,136455.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,19380,51483.9,0.0,0.0,51483.9,12337.13,12424.5,4187.11,28948.74,80432.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,32226,72340.0,1844.25,0.0,74184.25,14265.03,12269.21,5930.09,32464.33,106648.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,28300,17595.01,122.19,3690.8,21408.0,4601.9,4300.79,1697.47,10600.16,32008.16 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,20707,17675.84,0.0,0.0,17675.84,0.0,4040.94,1369.71,5410.65,23086.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,5777,65989.29,0.0,550.04,66539.33,18215.33,12423.6,5433.02,36071.95,102611.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,42696,54819.0,0.0,0.0,54819.0,10858.95,8601.58,4320.63,23781.16,78600.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,20792,51362.04,0.0,0.0,51362.04,10443.84,8791.05,3849.7,23084.59,74446.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10545,16564.44,0.0,1038.13,17602.57,3819.68,5352.09,1427.2,10598.97,28201.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,28456,181622.05,0.0,1325.0,182947.05,36765.53,12424.5,10806.66,59996.69,242943.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,24728,55757.02,0.0,0.0,55757.02,12233.13,6212.25,4416.54,22861.92,78618.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,5448,10722.0,0.0,0.0,10722.0,2766.3,2867.19,788.03,6421.52,17143.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,4931,135421.01,0.0,0.0,135421.01,27253.5,12424.52,10116.83,49794.85,185215.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,18309,44122.01,0.0,1169.4,45291.41,8702.17,8123.71,3733.67,20559.55,65850.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,42985,72600.34,47035.79,6760.09,126396.22,13363.91,7138.11,2137.46,22639.48,149035.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,27049,73957.01,861.75,0.0,74818.76,15242.9,12424.5,6649.91,34317.31,109136.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44193,62432.26,950.49,5501.05,68883.8,13195.12,11044.67,5671.42,29911.21,98795.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25729,9492.57,2029.53,211.5,11733.6,2405.59,2996.45,876.22,6278.26,18011.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,50446,84644.02,20091.05,5224.93,109960.0,17768.31,12424.5,8988.54,39181.35,149141.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,316C,Sr Court Staff Attorney,45767,100179.71,0.0,624.0,100803.71,21257.54,8285.29,8423.1,37965.93,138769.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7484,Sr Power Generation Tech,28575,38046.6,8200.93,2977.98,49225.51,7341.91,4175.34,3172.64,14689.89,63915.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",883,27074.52,0.0,0.0,27074.52,0.0,6378.59,2072.19,8450.78,35525.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,20836,63887.0,2199.98,4180.56,70267.54,15246.27,12424.49,5782.87,33453.63,103721.17 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,17702,185941.22,0.0,18594.12,204535.34,41174.35,12412.56,11153.86,64740.77,269276.11 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,33147,57472.7,0.0,685.0,58157.7,11592.99,9245.5,4831.04,25669.53,83827.23 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0116,"Brd Comm Mbr, M=$200/Mtg",935,11200.0,0.0,0.0,11200.0,0.0,0.0,886.16,886.16,12086.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7322,Auto Body&Fender Wrk Asst Sprv,38651,60413.0,1504.77,7258.07,69175.84,13060.02,7645.84,5509.15,26215.01,95390.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,48563,63904.76,4795.34,5648.93,74349.03,16925.4,8113.5,1220.46,26259.36,100608.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5782,31604.48,1243.63,40.59,32888.7,7380.06,9037.93,2663.75,19081.74,51970.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,49592,18606.0,0.0,0.0,18606.0,4173.3,2867.19,1502.25,8542.74,27148.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,42972,99400.8,0.0,0.0,99400.8,20517.56,12281.14,8098.88,40897.58,140298.38 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8318,Counselor 2,4041,81721.96,7400.75,3478.97,92601.68,19427.25,12154.21,1105.08,32686.54,125288.22 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,3420,62630.16,279.3,0.0,62909.46,13568.02,8031.55,5286.35,26885.92,89795.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",9695,80029.89,25826.88,5335.4,111192.17,16652.59,12046.34,8783.34,37482.27,148674.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,16522,23910.72,0.0,728.83,24639.55,5507.41,5422.28,2006.6,12936.29,37575.84 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,3534,104658.35,3079.61,0.0,107737.96,21567.66,12406.28,8833.28,42807.22,150545.18 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11452,2660.0,0.0,0.0,2660.0,0.0,1134.93,205.94,1340.87,4000.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,5337,112692.91,20964.96,5144.23,138802.1,22303.28,12424.49,2309.24,37037.01,175839.11 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",24906,5627.72,0.0,427.28,6055.0,0.0,1170.29,469.3,1639.59,7694.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,11466,102270.7,15953.16,4992.81,123216.67,20566.9,11825.68,9718.71,42111.29,165327.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,52725,132760.85,0.0,0.0,132760.85,26718.26,12424.5,17305.68,56448.44,189209.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1804,Statistician,3571,69031.42,0.0,0.0,69031.42,14014.15,10608.62,5502.94,30125.71,99157.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,30953,58694.03,0.0,10.0,58704.03,12184.03,11605.32,4779.08,28568.43,87272.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42767,605.54,113.54,0.0,719.08,171.37,191.14,55.67,418.18,1137.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,36972,54660.62,0.0,1280.0,55940.62,12456.54,12424.5,3926.6,28807.64,84748.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,35580,8453.17,0.0,61.31,8514.48,0.0,0.0,673.46,673.46,9187.94 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,13759,96893.73,25382.0,17235.5,139511.23,27757.25,12313.22,2335.01,42405.48,181916.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,42384,56110.74,2488.25,521.67,59120.66,12675.49,12388.66,4840.13,29904.28,89024.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,21369,31820.3,688.11,1832.18,34340.59,8131.44,7406.92,2795.8,18334.16,52674.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44185,149075.49,0.0,42172.68,191248.17,40114.32,12422.54,3694.99,56231.85,247480.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,52091,49937.04,0.0,0.0,49937.04,11960.39,12424.5,4023.89,28408.78,78345.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21015,3044.15,0.0,94.31,3138.46,0.0,1278.29,252.24,1530.53,4668.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,17818,83858.9,0.0,652.9,84511.8,17457.24,12203.49,6761.9,36422.63,120934.43 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,17763,93470.2,0.0,3267.17,96737.37,19496.38,12424.5,7780.92,39701.8,136439.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,39558,29154.0,0.0,0.0,29154.0,6396.36,2867.19,3891.9,13155.45,42309.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27183,17823.07,2196.53,751.78,20771.38,5153.3,5626.08,1543.66,12323.04,33094.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,20446,85309.0,0.0,0.0,85309.0,17550.77,12424.5,6913.86,36889.13,122198.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,50058,62468.83,36250.53,5468.19,104187.55,13641.0,12424.5,8458.25,34523.75,138711.3 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8152,"Srclaimsinvstgtor,Cty Atty Ofc",20428,115838.04,0.0,0.0,115838.04,23312.72,12424.5,9524.32,45261.54,161099.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,31758,5688.0,0.0,0.0,5688.0,0.0,1720.32,440.37,2160.69,7848.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34990,132414.35,534.28,13610.64,146559.27,28690.19,11034.21,6938.71,46663.11,193222.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50731,62461.1,9077.19,1545.0,73083.29,13161.2,12424.5,5904.89,31490.59,104573.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,31387,138635.26,12226.73,16345.47,167207.46,27395.36,12424.5,2809.25,42629.11,209836.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",31671,120522.37,3248.0,4143.42,127913.79,24250.14,12424.51,9861.11,46535.76,174449.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,295,18774.7,1669.08,2563.86,23007.64,0.0,4444.12,1783.39,6227.51,29235.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,1345,35609.34,0.0,0.0,35609.34,7749.2,11709.2,2855.91,22314.31,57923.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33853,20826.22,0.0,0.0,20826.22,9848.66,1620.5,-156.49,11312.67,32138.89 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",34855,37919.69,7978.28,4323.0,50220.97,8626.33,6827.62,1003.4,16457.35,66678.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,39313,110041.02,0.0,0.0,110041.02,22145.92,12424.78,9015.48,43586.18,153627.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,10365,28913.15,0.0,1140.45,30053.6,6107.58,5754.52,2392.36,14254.46,44308.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,5583,106605.0,0.0,0.0,106605.0,21971.81,12424.5,8510.09,42906.4,149511.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,35296,87531.03,0.0,0.0,87531.03,18040.65,12424.5,7261.18,37726.33,125257.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51579,1047.66,0.0,0.0,1047.66,2353.76,74.72,906.95,3335.43,4383.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,20692,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6246,Senior Plumbing Inspector,52635,124338.01,2635.44,7769.12,134742.57,26572.74,12424.5,9977.94,48975.18,183717.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27762,119808.33,0.0,6308.98,126117.31,24113.07,11129.49,9836.41,45078.97,171196.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,35478,75757.82,0.0,0.0,75757.82,15603.2,11974.0,6257.37,33834.57,109592.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2622,Dietetic Technician,8820,59494.08,0.0,1522.38,61016.46,12534.64,12424.5,4736.73,29695.87,90712.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3499,46985.6,3775.98,6507.56,57269.14,12068.57,12424.5,4553.36,29046.43,86315.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35404,55851.95,0.0,409.2,56261.15,12578.34,12364.77,4524.21,29467.32,85728.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,30791,1412.65,0.0,0.0,1412.65,0.0,453.97,109.64,563.61,1976.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,9544,59827.02,1387.68,1283.79,62498.49,12605.03,12424.5,5172.76,30202.29,92700.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,3689,77071.0,0.0,1584.0,78655.0,16210.31,12424.5,6409.55,35044.36,113699.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51676,27765.44,2872.0,260.8,30898.24,7200.24,6439.6,2260.62,15900.46,46798.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42193,27367.39,2442.13,856.38,30665.9,7363.97,8519.39,2336.62,18219.98,48885.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,11140,61428.0,0.0,1924.0,63352.0,13016.85,12424.5,5230.76,30672.11,94024.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13875,67461.86,19452.3,723.7,87637.86,18698.98,13297.09,6633.07,38629.14,126267.0 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,11377,25174.2,0.0,741.56,25915.76,6224.07,6218.22,2143.66,14585.95,40501.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34825,68852.12,13566.96,2801.09,85220.17,19674.18,13570.12,6056.31,39300.61,124520.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,22829,108181.81,0.0,100.0,108281.81,21549.69,10883.38,8879.69,41312.76,149594.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28770,47231.1,1492.42,1553.49,50277.01,11516.97,12424.5,4031.86,27973.33,78250.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,38418,67552.98,0.0,0.0,67552.98,13828.9,11624.08,5355.6,30808.58,98361.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,36952,46446.0,4599.23,0.0,51045.23,9263.99,9079.44,4201.61,22545.04,73590.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,16683,94429.04,28264.34,285.15,122978.53,19458.91,12424.5,9779.63,41663.04,164641.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18782,61981.19,3096.23,4683.05,69760.47,16229.21,13545.33,4980.95,34755.49,104515.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,24537,84644.01,19176.47,4796.37,108616.85,17571.05,12424.5,8494.48,38490.03,147106.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32914,8502.5,0.0,10.73,8513.23,0.0,2837.33,660.07,3497.4,12010.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25836,16245.84,0.0,0.0,16245.84,3377.33,3670.59,1312.07,8359.99,24605.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51162,113233.61,62497.1,18427.78,194158.49,25036.04,15196.12,3255.32,43487.48,237645.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,21961,122637.72,0.0,7764.32,130402.04,26111.14,11894.66,9808.48,47814.28,178216.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20907,10758.28,0.0,0.0,10758.28,0.0,4665.16,862.79,5527.95,16286.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5214,Building Plans Engineer,32357,149312.02,0.0,0.0,149312.02,30049.2,12424.5,10355.69,52829.39,202141.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12110,149134.68,0.0,3591.39,152726.07,29359.95,12427.49,5382.11,47169.55,199895.62 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",32798,112273.99,0.0,0.0,112273.99,22580.79,12424.5,16382.8,51388.09,163662.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35775,43689.89,4658.2,1883.96,50232.05,11820.39,13278.1,3810.42,28908.91,79140.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,51876,60751.71,17346.38,735.0,78833.09,13735.49,12424.5,5654.96,31814.95,110648.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51137,61991.79,1067.18,27.0,63085.97,12767.0,12056.72,5222.72,30046.44,93132.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,36315,69746.0,1005.75,624.0,71375.75,14503.67,12424.5,5785.95,32714.12,104089.87 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,23720,26409.21,0.0,0.0,26409.21,4914.76,5256.52,2097.15,12268.43,38677.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43501,56314.92,0.0,908.14,57223.06,11736.87,12376.71,4733.63,28847.21,86070.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,5898,81942.0,31293.55,2319.9,115555.45,17359.47,12424.53,9205.45,38989.45,154544.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14526,64641.04,0.0,9203.52,73844.56,689.27,0.0,6564.37,7253.64,81098.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28094,36617.34,4862.16,1204.22,42683.72,9789.53,11440.52,3065.4,24295.45,66979.17 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,14140,36495.55,0.0,0.0,36495.55,0.0,5617.91,2829.33,8447.24,44942.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41838,20670.55,0.0,772.52,21443.07,0.0,5523.83,1662.11,7185.94,28629.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,37406,91673.01,0.0,1340.0,93013.01,19170.57,12131.81,7422.99,38725.37,131738.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9770,Community Development Asst,9241,39768.22,0.0,0.0,39768.22,8617.32,8123.71,3042.4,19783.43,59551.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",14376,97989.0,19037.24,4647.36,121673.6,20306.85,12424.5,9799.84,42531.19,164204.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,665,55952.43,2916.29,67.37,58936.09,12526.91,12387.16,4876.74,29790.81,88726.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31124,6067.2,0.0,581.87,6649.07,0.0,0.0,77.72,77.72,6726.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,47914,6771.01,0.0,353.87,7124.88,0.0,896.0,553.0,1449.0,8573.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49491,41156.13,610.4,6932.7,48699.23,8833.89,4179.83,3910.17,16923.89,65623.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",53210,137452.4,10911.06,16942.75,165306.21,30311.21,14097.03,2197.16,46605.4,211911.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,48888,37154.17,0.0,585.27,37739.44,9024.75,9175.02,3079.13,21278.9,59018.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,21866,57318.42,2876.2,606.55,60801.17,11799.89,11122.31,4913.77,27835.97,88637.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,12222,112776.07,2631.53,2255.52,117663.12,23150.48,12424.5,9553.32,45128.3,162791.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24614,97762.99,2194.67,13021.07,112978.73,26228.76,12424.5,1867.74,40521.0,153499.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,9333,62478.81,0.0,1300.0,63778.81,8821.26,9943.19,5183.44,23947.89,87726.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35125,68174.84,23544.59,5514.27,97233.7,20189.26,13430.35,7391.58,41011.19,138244.89 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,52324,52825.02,0.0,0.0,52825.02,11548.34,7645.85,4216.7,23410.89,76235.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,40.0,"Roofers and Waterproofers, Local 40",7200,Supervisory-Labor & Trade,9343,Roofer,20457,80918.04,0.0,0.0,80918.04,16677.56,12424.55,6419.38,35521.49,116439.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,51883,65248.6,3333.72,8592.22,77174.54,13830.84,12424.5,6319.6,32574.94,109749.48 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,51797,53725.32,3655.13,5147.3,62527.75,12150.4,7853.95,5007.19,25011.54,87539.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36714,1398.32,0.0,37.84,1436.16,0.0,587.18,111.47,698.65,2134.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,28084,138633.92,26322.91,23923.55,188880.38,27400.21,12424.52,3166.13,42990.86,231871.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,49933,140749.17,9396.4,843.59,150989.16,27825.04,12400.61,2562.1,42787.75,193776.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44036,1680.55,0.0,866.59,2547.14,433.58,728.75,211.35,1373.68,3920.82 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,36677,67911.03,16473.69,5960.69,90345.41,14711.69,12424.5,7114.48,34250.67,124596.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35965,2967.0,0.0,0.0,2967.0,0.0,238.93,681.61,920.54,3887.54 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,30513,99049.14,0.0,1980.0,101029.14,20819.88,12418.53,7993.55,41231.96,142261.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50914,3119.2,0.0,175.38,3294.58,3884.96,238.93,1755.18,5879.07,9173.65 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,40904,56768.75,0.0,624.0,57392.75,12823.23,12424.5,4710.18,29957.91,87350.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",44158,131564.8,41208.81,19052.94,191826.55,29673.33,15196.12,3271.12,48140.57,239967.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,45704,24020.66,0.0,194.63,24215.29,0.0,5480.52,1877.4,7357.92,31573.21 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",43985,69418.34,32184.96,7473.3,109076.6,17540.22,12424.38,1884.32,31848.92,140925.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,42464,58177.48,1414.28,5217.6,64809.36,12661.2,11568.53,5244.94,29474.67,94284.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24190,119455.92,1488.02,3726.07,124670.01,23662.82,12424.5,2123.01,38210.33,162880.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,41175,67911.03,11110.22,1697.22,80718.47,14288.68,12424.5,6581.01,33294.19,114012.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,22848,21430.23,0.0,91.47,21521.7,5154.41,6283.93,1746.41,13184.75,34706.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2531,3086.84,0.0,0.0,3086.84,0.0,1296.21,241.0,1537.21,4624.05 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,25889,69638.11,0.0,0.0,69638.11,14258.45,11492.67,5485.26,31236.38,100874.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,25032,58538.02,0.0,1040.0,59578.02,13312.63,12424.5,4841.89,30579.02,90157.04 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,39230,58514.99,93.98,1601.38,60210.35,12321.81,11515.72,4960.03,28797.56,89007.91 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,24329,79797.81,7950.15,0.0,87747.96,16440.65,12368.95,7208.1,36017.7,123765.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,33978,70885.76,0.0,1540.0,72425.76,14901.12,12424.51,5688.36,33013.99,105439.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,44188,59166.04,0.0,10379.39,69545.43,13162.91,9963.26,5785.21,28911.38,98456.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,36318,9580.74,0.0,0.0,9580.74,0.0,3150.92,742.68,3893.6,13474.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,40952,43978.34,50.91,500.0,44529.25,10647.06,11908.4,3697.43,26252.89,70782.14 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,26182,46161.54,0.0,21277.43,67438.97,8069.44,8428.36,5410.66,21908.46,89347.43 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,43821,81116.05,0.0,0.0,81116.05,16718.54,12424.5,6535.89,35678.93,116794.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,38985,76393.01,0.0,330.0,76723.01,15691.42,11468.77,5996.94,33157.13,109880.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10586,250.43,0.0,0.0,250.43,0.0,137.38,19.39,156.77,407.2 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3549,Arts Program Assistant,48847,67257.17,0.0,0.0,67257.17,13844.68,11779.16,5048.18,30672.02,97929.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,50542,53374.02,0.0,0.0,53374.02,10645.92,9079.44,4200.29,23925.65,77299.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,22906,20167.99,0.0,0.0,20167.99,4523.68,3822.92,1500.78,9847.38,30015.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8090,94612.94,9644.98,7554.29,111812.21,19612.34,12424.5,1865.27,33902.11,145714.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8541,1820.81,0.0,0.0,1820.81,0.0,764.58,141.32,905.9,2726.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28536,70419.71,20364.49,6582.63,97366.83,15832.71,8888.29,1652.62,26373.62,123740.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,29272,81459.71,0.0,0.0,81459.71,16760.5,12090.0,6766.09,35616.59,117076.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,24014,30509.61,0.0,2494.53,33004.14,6465.99,5898.72,2757.22,15121.93,48126.07 +Calendar,2015,1,Public Protection,SHF,Sheriff,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,17061,106605.0,0.0,0.0,106605.0,21971.81,12424.5,8715.76,43112.07,149717.07 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7368,Senior Comm Systems Technican,7287,62328.0,6427.36,851.72,69607.08,11423.42,6212.25,4790.77,22426.44,92033.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,20241,1899.1,0.0,0.0,1899.1,0.0,421.12,147.03,568.15,2467.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11038,17742.23,0.0,910.83,18653.06,1875.34,7693.64,1504.29,11073.27,29726.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,37142,91007.62,0.0,360.0,91367.62,18695.35,11540.45,8168.8,38404.6,129772.22 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,18255,107562.05,0.0,4965.08,112527.13,21660.43,12424.5,31941.1,66026.03,178553.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,220,11755.25,0.0,32.84,11788.09,0.0,4488.94,914.19,5403.13,17191.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",13890,130557.84,40165.99,17992.99,188716.82,29197.73,14766.04,3166.28,47130.05,235846.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9473,94030.84,8356.37,8365.45,110752.66,19499.91,12424.5,1817.87,33742.28,144494.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,34860,75636.8,0.0,0.0,75636.8,15583.65,12376.71,6199.41,34159.77,109796.57 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",19843,6852.0,0.0,668.09,7520.09,0.0,0.0,594.09,594.09,8114.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,47101,85221.01,43643.83,3469.65,132334.49,17563.59,12424.5,9923.25,39911.34,172245.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,37277,92282.0,0.0,3440.53,95722.53,19735.38,12424.5,7634.81,39794.69,135517.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,52464,0.0,0.0,166.47,166.47,37.34,34.25,2.78,74.37,240.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,16524,92985.5,0.0,0.0,92985.5,19170.77,12384.9,7670.1,39225.77,132211.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6207,58247.34,10753.57,760.71,69761.62,15318.49,13141.83,5108.25,33568.57,103330.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,36675,46891.2,2205.02,1208.91,50305.13,9133.33,5256.51,3964.8,18354.64,68659.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1662,Patient Accounts Asst Sprv,3833,68911.94,2292.58,0.0,71204.52,14190.9,12424.5,5395.86,32011.26,103215.78 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,52223,74147.32,985.2,1479.85,76612.37,15584.8,12421.52,6052.4,34058.72,110671.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,35734,56276.0,4096.96,0.0,60372.96,12591.79,12424.5,4990.93,30007.22,90380.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47152,114556.95,113.71,29882.11,144552.77,17294.98,11114.56,5593.24,34002.78,178555.55 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,47724,70561.74,0.0,0.0,70561.74,15842.74,8852.46,1196.62,25891.82,96453.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,6878,53973.05,0.0,2193.73,56166.78,13472.25,12424.5,4597.38,30494.13,86660.91 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,14952,94060.63,1686.1,1264.55,97011.28,19504.95,12418.53,7881.16,39804.64,136815.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,28838,82476.69,60.64,600.0,83137.33,17072.04,12110.91,6729.56,35912.51,119049.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,19482,69514.77,0.0,5771.0,75285.77,14712.83,11606.81,6195.3,32514.94,107800.71 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,12484,46693.33,0.0,840.0,47533.33,9932.74,9914.87,3681.31,23528.92,71062.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,22970,8055.01,270.9,1518.39,9844.3,1849.8,1433.6,815.93,4099.33,13943.63 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,730,24894.51,0.0,572.29,25466.8,5461.86,2338.56,2088.11,9888.53,35355.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,43996,37472.0,0.0,0.0,37472.0,7751.9,7645.85,2969.6,18367.35,55839.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34542,121839.78,587.23,8172.53,130599.54,25657.94,11124.71,9888.11,46670.76,177270.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,14908,8358.98,0.0,151.07,8510.05,1874.92,1441.25,601.1,3917.27,12427.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23108,6697.85,0.0,55.5,6753.35,0.0,2290.77,523.96,2814.73,9568.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,9074,11784.03,0.0,0.0,11784.03,2643.16,1911.46,924.31,5478.93,17262.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21528,4832.73,0.0,93.73,4926.46,0.0,2036.9,387.26,2424.16,7350.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11246,3595.38,0.0,0.0,3595.38,0.0,1753.16,278.89,2032.05,5627.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,24294,62811.0,0.0,744.0,63555.0,13101.26,12424.5,5223.09,30748.85,94303.85 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0902,Mayoral Staff XIV,32948,126728.24,0.0,0.0,126728.24,25480.5,12400.6,17137.08,55018.18,181746.42 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,12392,133488.01,0.0,6674.4,140162.41,27991.33,8016.19,9939.84,45947.36,186109.77 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",41145,14145.08,3481.0,0.0,17626.08,0.0,0.0,1394.24,1394.24,19020.32 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,22368,20625.0,7297.14,4856.04,32778.18,5993.13,2389.33,547.0,8929.46,41707.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,21514,84644.0,27827.32,13204.51,125675.83,19073.01,12424.5,9765.91,41263.42,166939.25 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,38776,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8465.85,42862.16,149467.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16674,54666.7,0.0,6938.91,61605.61,14247.83,12424.5,4732.34,31404.67,93010.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",7257,82487.59,30706.86,7376.52,120570.97,17515.86,12417.52,9714.78,39648.16,160219.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,8084,44021.66,0.0,0.0,44021.66,8448.0,6842.44,3464.83,18755.27,62776.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,6395,625.04,0.0,20.16,645.2,0.0,185.17,49.95,235.12,880.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,35452,137101.01,0.0,0.0,137101.01,27592.09,12424.5,17347.72,57364.31,194465.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,21959,74165.03,179.28,624.0,74968.31,15414.47,12424.5,6215.26,34054.23,109022.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,50274,7445.7,0.0,0.0,7445.7,0.0,1481.39,577.9,2059.29,9504.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19848,5781.7,0.0,24.34,5806.04,0.0,1929.39,450.48,2379.87,8185.91 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,375C,Court Training Specialist,19202,99476.0,0.0,5057.0,104533.0,20541.6,12424.5,8638.94,41605.04,146138.04 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,14814,1995.19,0.0,0.0,1995.19,0.0,0.0,157.8,157.8,2152.99 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,18042,53762.5,23301.7,3379.21,80443.41,11064.73,10585.31,6574.54,28224.58,108667.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23975,101892.0,26905.2,9768.41,138565.61,22353.76,15052.77,2215.91,39622.44,178188.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23898,68517.68,19584.82,5214.42,93316.92,20193.55,13501.2,7146.09,40840.84,134157.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,1593,105612.8,941.01,0.0,106553.81,21734.49,12424.5,8571.21,42730.2,149284.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6335,Disability Access Coordinator,16841,154521.1,0.0,0.0,154521.1,31125.61,12424.39,10339.75,53889.75,208410.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25089,116570.54,22.37,24191.03,140783.94,27516.27,11087.26,10079.77,48683.3,189467.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,39031,24778.5,0.0,0.0,24778.5,6392.83,5734.39,2021.52,14148.74,38927.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,45510,81942.0,0.0,3482.0,85424.0,17609.21,12424.52,6997.39,37031.12,122455.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,20115,57812.3,523.72,1310.0,59646.02,13148.63,12265.44,4775.88,30189.95,89835.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,25787,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15993,11576.6,0.0,0.0,11576.6,0.0,4957.85,943.84,5901.69,17478.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,4366,5225.77,0.0,238.22,5463.99,0.0,0.0,431.66,431.66,5895.65 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,47303,64511.05,9091.88,7618.96,81221.89,14298.13,12424.5,6672.31,33394.94,114616.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,35609,67261.0,0.0,434.25,67695.25,13951.85,12424.5,5320.11,31696.46,99391.71 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,25366,77071.05,0.0,1666.1,78737.15,16013.39,12424.5,6463.16,34901.05,113638.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,25777,61887.29,13081.54,7684.53,82653.36,13928.4,10941.62,6659.63,31529.65,114183.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,17044,2164.39,0.0,7.62,2172.01,0.0,0.0,171.58,171.58,2343.59 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",12235,17489.71,363.98,848.03,18701.72,0.0,3793.06,1449.43,5242.49,23944.21 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35770,44652.0,7934.8,3252.0,55838.8,11267.0,5734.39,934.95,17936.34,73775.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,28792,52482.99,0.0,0.0,52482.99,11842.61,11634.83,4282.82,27760.26,80243.25 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,28121,7408.1,0.0,0.0,7408.1,1625.34,477.86,585.24,2688.44,10096.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22610,61731.96,11686.51,1413.87,74832.34,17199.56,12159.82,5801.45,35160.83,109993.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,45500,111794.67,12805.88,9600.0,134200.55,22530.62,12424.5,9967.36,44922.48,179123.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,10347,15404.0,1732.95,140.0,17276.95,3486.52,1911.46,1399.32,6797.3,24074.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22488,97324.81,0.0,3918.72,101243.53,0.0,8242.04,7830.49,16072.53,117316.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,12811,3114.0,0.0,0.0,3114.0,579.52,477.86,157.28,1214.66,4328.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,408,20583.41,0.0,0.0,20583.41,3830.55,3816.95,1657.7,9305.2,29888.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,40007,65520.0,0.0,16202.66,81722.66,14251.47,8362.64,6229.91,28844.02,110566.68 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,23931,46180.0,66.19,0.0,46246.19,11076.25,12424.51,3508.95,27009.71,73255.9 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,38714,58592.21,1777.18,606.56,60975.95,12062.19,12424.5,4848.05,29334.74,90310.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,33969,117135.31,36648.78,21498.58,175282.67,23184.69,12424.5,2978.99,38588.18,213870.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31268,51599.55,0.0,6053.34,57652.89,9744.58,4819.69,4585.95,19150.22,76803.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,31329,59556.6,0.0,3392.41,62949.01,12600.94,12424.5,4835.78,29861.22,92810.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,2811,53060.1,678.99,15476.44,69215.53,13181.53,6546.76,5517.68,25245.97,94461.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,18654,17404.1,10840.24,1693.61,29937.95,3510.11,5352.09,2364.52,11226.72,41164.67 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,41946,69247.1,1455.85,0.0,70702.95,14272.17,12424.5,5798.29,32494.96,103197.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,44915,97741.65,0.0,1580.0,99321.65,20474.06,12399.95,8000.74,40874.75,140196.4 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,39677,0.0,0.0,8778.12,8778.12,0.0,68.5,671.52,740.02,9518.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19349,68319.76,13645.34,4222.53,86187.63,19878.24,13462.13,6682.85,40023.22,126210.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,38425,56276.02,0.0,624.0,56900.02,12731.53,12424.5,4716.09,29872.12,86772.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44517,41645.14,8744.14,1509.08,51898.36,11199.48,12801.6,4450.99,28452.07,80350.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,510,64892.76,9708.86,2224.46,76826.08,18322.55,12784.51,5789.46,36896.52,113722.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5364,35085.45,881.21,1173.98,37140.64,0.0,2962.17,2879.25,5841.42,42982.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,36948,86723.26,0.0,492.9,87216.16,18020.2,10030.4,7200.36,35250.96,122467.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),15,20575.35,0.0,0.0,20575.35,0.0,5901.64,1596.98,7498.62,28073.97 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,5754,118104.02,0.0,0.0,118104.02,23768.42,12424.5,9711.58,45904.5,164008.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,43851,158364.67,9948.95,5541.45,173855.07,31268.07,12424.5,2908.68,46601.25,220456.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",2757,8874.71,0.0,0.0,8874.71,0.0,2113.05,680.44,2793.49,11668.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41009,119463.8,0.0,6433.28,125897.08,24181.53,12424.5,8.13,36614.16,162511.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38874,50695.49,0.0,0.0,50695.49,0.0,4450.12,3926.78,8376.9,59072.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,30038,97934.02,4256.02,1037.96,103228.0,20179.57,12424.5,8293.46,40897.53,144125.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16945,60119.01,2175.0,0.0,62294.01,13421.46,12424.5,4923.62,30769.58,93063.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23896,56531.0,0.0,7644.83,64175.83,12776.86,12424.5,5292.73,30494.09,94669.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,12416,22321.51,0.0,0.0,22321.51,1480.15,5495.46,1767.96,8743.57,31065.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50129,117152.11,4570.93,6048.76,127771.8,23073.06,12185.57,2176.41,37435.04,165206.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,42267,106446.55,11199.4,9903.19,127549.14,22339.87,11683.81,2083.81,36107.49,163656.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14738,75614.87,11236.28,5234.07,92085.22,16143.59,15196.12,1535.04,32874.75,124959.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36770,112159.74,66063.39,23517.54,201740.67,24944.98,15052.75,3388.05,43385.78,245126.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,9883,6979.0,448.66,160.0,7587.66,0.0,1672.52,588.38,2260.9,9848.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,51297,29038.52,0.0,10995.64,40034.16,7575.53,6451.18,3223.27,17249.98,57284.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,185,4303.0,0.0,0.0,4303.0,0.0,0.0,340.25,340.25,4643.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,18146,127234.95,20280.0,14337.77,161852.72,25216.03,12364.77,2749.24,40330.04,202182.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,48455,127129.0,0.0,0.0,127129.0,25584.69,12424.5,18192.66,56201.85,183330.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,41069,60814.5,317.01,838.08,61969.59,12608.23,11468.77,5036.35,29113.35,91082.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14274,119525.1,3881.69,11949.35,135356.14,23705.35,12388.66,1472.44,37566.45,172922.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,12610,199043.0,21337.04,392.65,220772.69,40057.7,12424.5,11482.27,63964.47,284737.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,23143,62686.21,0.0,0.0,62686.21,0.0,6854.38,4860.54,11714.92,74401.13 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,4873,187766.2,0.0,0.0,187766.2,37850.94,12195.66,10909.53,60956.13,248722.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17601,23328.45,0.0,3888.15,27216.6,486.24,0.0,4149.59,4635.83,31852.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,651,5917.19,0.0,250.0,6167.19,1751.81,1176.74,324.16,3252.71,9419.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,32299,5038.13,0.0,0.0,5038.13,0.0,1635.68,391.04,2026.72,7064.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47820,110317.75,2172.25,18714.07,131204.07,0.0,8511.68,2196.37,10708.05,141912.12 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,13980,106605.04,0.0,0.0,106605.04,21971.81,12424.5,8702.35,43098.66,149703.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,48013,59904.0,0.0,40.0,59944.0,13112.93,7645.85,4889.25,25648.03,85592.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,34840,54124.0,0.0,624.0,54748.0,12250.24,12424.5,4537.52,29212.26,83960.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,33127,76338.0,0.0,916.71,77254.71,15922.06,12424.5,5718.8,34065.36,111320.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25926,8078.4,0.0,0.0,8078.4,0.0,3440.63,649.9,4090.53,12168.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,21395,173912.89,0.0,0.0,173912.89,34928.37,12424.5,28156.78,75509.65,249422.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",43622,67686.86,4367.31,5498.21,77552.38,14234.52,10667.75,6352.47,31254.74,108807.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37355,66356.67,14505.43,8735.2,89597.3,20577.58,13079.0,6787.39,40443.97,130041.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8561,69484.68,0.0,14518.81,84003.49,15692.55,7349.57,6744.2,29786.32,113789.81 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,34058,34907.24,0.0,361.5,35268.74,7287.42,7197.86,2562.61,17047.89,52316.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,13126,18791.64,0.0,0.0,18791.64,4132.27,5661.99,1523.66,11317.92,30109.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15229,113233.6,57411.27,18827.85,189472.72,25036.03,15196.12,3177.73,43409.88,232882.6 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14288,160361.7,0.0,1500.0,161861.7,32549.77,12424.5,10562.0,55536.27,217397.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,8790,34740.27,0.0,727.3,35467.57,6600.51,5583.55,2823.32,15007.38,50474.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,22729,119066.05,11846.73,11762.3,142675.08,31791.54,12424.5,2387.68,46603.72,189278.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,36563,84968.17,5366.64,5488.64,95823.45,17690.74,12411.36,1574.54,31676.64,127500.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,37328,113233.6,8049.76,18748.83,140032.19,25036.03,15196.12,2339.1,42571.25,182603.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41456,30732.16,3929.59,1054.81,35716.56,8084.86,9579.34,2580.46,20244.66,55961.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,12962,61954.8,3769.49,503.72,66228.01,12932.64,11659.93,5479.28,30071.85,96299.86 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,7391,79384.84,0.0,841.76,80226.6,16524.98,12424.5,6400.98,35350.46,115577.06 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,43270,179504.9,0.0,31179.33,210684.23,39346.0,11989.52,9962.37,61297.89,271982.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47600,119461.66,3096.15,8272.66,130830.47,23641.9,12424.5,2181.77,38248.17,169078.64 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,34586,74165.02,1282.96,1664.0,77111.98,15627.9,12424.5,6132.88,34185.28,111297.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37628,1225.97,0.0,38.63,1264.6,0.0,531.62,98.16,629.78,1894.38 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,375C,Court Training Specialist,25952,0.0,0.0,8844.76,8844.76,0.0,0.0,676.63,676.63,9521.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,45777,68775.16,0.0,7552.22,76327.38,15322.8,11301.51,6294.31,32918.62,109246.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,25134,81942.02,1115.78,600.0,83657.8,17000.25,12424.5,6681.21,36105.96,119763.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27230,43233.24,5250.5,942.12,49425.86,11468.35,13152.71,4008.07,28629.13,78054.99 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0891,Mayoral Staff XI,37360,32559.16,0.0,0.0,32559.16,7303.01,4581.54,5461.72,17346.27,49905.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29599,69355.3,14477.03,2225.93,86058.26,19620.06,13668.09,6673.02,39961.17,126019.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30275,76849.35,30527.67,7578.17,114955.19,16901.24,15196.13,1917.1,34014.47,148969.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50298,56531.01,0.0,7715.06,64246.07,12716.77,12424.5,5046.44,30187.71,94433.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20122,42016.15,0.0,0.0,42016.15,10019.41,11298.53,3407.83,24725.77,66741.92 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,14851,51265.71,0.0,1878.48,53144.19,12327.58,12424.5,4315.08,29067.16,82211.35 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8169,Legislative Asst City Atty Ofc,18510,2627.0,0.0,0.0,2627.0,589.24,477.86,197.07,1264.17,3891.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,42120,102019.02,0.0,0.0,102019.02,21026.27,12424.5,8131.21,41581.98,143601.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,24985,7185.88,0.0,542.99,7728.87,0.0,1917.43,599.89,2517.32,10246.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,8616,65859.8,0.0,0.0,65859.8,13558.29,12424.52,5296.5,31279.31,97139.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,27583,18018.0,0.0,201.15,18219.15,4086.56,2717.86,1458.48,8262.9,26482.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48021,33995.28,3360.53,1300.39,38656.2,9069.73,10607.77,2696.63,22374.13,61030.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23053,56531.0,0.0,5912.77,62443.77,12295.49,12424.5,5106.22,29826.21,92269.98 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38243,2635.5,0.0,0.0,2635.5,0.0,1124.48,204.04,1328.52,3964.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,19307,28648.0,0.0,0.0,28648.0,6425.76,3822.92,2287.0,12535.68,41183.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,41981,67574.31,0.0,0.0,67574.31,13904.38,12424.5,5219.52,31548.4,99122.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,28452,78204.0,0.0,0.0,78204.0,16117.97,12424.5,6299.66,34842.13,113046.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,31419,74165.05,0.0,0.0,74165.05,15285.76,12424.5,6135.87,33846.13,108011.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,46760,756.94,0.0,0.0,756.94,0.0,197.12,58.75,255.87,1012.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7216,Electrical Trnst Shop Sprv 1,18928,122367.6,20920.25,6031.36,149319.21,25020.2,12376.71,10274.26,47671.17,196990.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35743,87542.87,3081.96,12325.13,102949.96,24238.74,11127.81,1750.14,37116.69,140066.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,24702,62674.26,721.76,935.0,64331.02,13116.09,12424.5,5277.33,30817.92,95148.94 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,22087,87375.61,0.0,0.0,87375.61,17978.46,12424.5,6919.67,37322.63,124698.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,2839,129895.08,0.0,0.0,129895.08,26155.72,12424.5,10016.52,48596.74,178491.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20253,12242.53,0.0,0.0,12242.53,72.7,5308.78,985.41,6366.89,18609.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,28871,87047.01,0.0,0.0,87047.01,17940.62,12424.5,14896.31,45261.43,132308.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5330,Graphics Supervisor,43277,87307.0,0.0,0.0,87307.0,17994.25,12424.5,7029.04,37447.79,124754.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,29433,50051.99,615.31,200.0,50867.3,9478.43,12087.01,4128.34,25693.78,76561.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,7604,56531.0,972.28,1501.36,59004.64,11764.4,12424.5,4874.63,29063.53,88068.17 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,11762,79125.97,1380.47,9048.31,89554.75,17786.74,10528.33,7433.13,35748.2,125302.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,9320,84644.0,21256.22,15239.08,121139.3,19511.23,12424.51,9681.18,41616.92,162756.22 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,13231,56120.0,6193.7,3676.25,65989.95,12785.55,12424.5,5182.51,30392.56,96382.51 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26557,97527.49,19594.96,10031.74,127154.19,26164.28,12394.03,2110.29,40668.6,167822.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",44758,178670.7,80633.37,32977.6,292281.67,41464.13,15004.98,4752.75,61221.86,353503.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1931,Senior Parts Storekeeper,3304,8292.0,0.0,0.0,8292.0,1859.91,1433.6,688.74,3982.25,12274.25 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,265C,"Assistant Director, Probate",22146,110469.81,0.0,5239.5,115709.31,22152.09,11865.52,32031.37,66048.98,181758.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13191,28765.67,0.0,334.52,29100.19,5275.86,3104.94,2328.75,10709.55,39809.74 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),40418,106199.4,0.0,1500.0,107699.4,22175.88,12424.5,8689.09,43289.47,150988.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4379,146909.89,1184.62,26795.88,174890.39,27154.28,12241.72,7953.62,47349.62,222240.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41652,10709.4,0.0,0.0,10709.4,1482.71,4643.95,859.0,6985.66,17695.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18017,129524.5,0.0,8314.92,137839.42,23061.34,12424.5,10010.37,45496.21,183335.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22810,14365.48,0.0,250.0,14615.48,4027.6,2828.67,1056.56,7912.83,22528.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46840,2011.15,0.0,463.67,2474.82,0.0,872.1,191.18,1063.28,3538.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11446,1381.25,0.0,31.83,1413.08,0.0,746.66,109.4,856.06,2269.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22489,12943.38,0.0,288.4,13231.78,0.0,4950.39,1025.83,5976.22,19208.0 +Calendar,2015,6,General Administration & Finance,REG,Elections,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,43026,82859.89,0.0,0.0,82859.89,17062.55,12299.89,6282.39,35644.83,118504.72 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,22188,90977.92,18350.23,14762.6,124090.75,21163.78,11538.71,9831.22,42533.71,166624.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38088,125002.8,536.4,10188.7,135727.9,26172.83,11067.36,10006.57,47246.76,182974.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,50281,13718.89,0.0,0.0,13718.89,3010.45,2684.58,1323.51,7018.54,20737.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20045,56531.0,0.0,5214.79,61745.79,12305.72,12424.5,4953.34,29683.56,91429.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,50840,35001.63,0.0,148.09,35149.72,7181.59,7093.31,2840.21,17115.11,52264.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31833,56531.0,0.0,2289.75,58820.75,11667.81,12424.5,4859.98,28952.29,87773.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,14209,1386.86,0.0,77.19,1464.05,0.0,303.14,113.63,416.77,1880.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,1540,52682.53,0.0,4606.61,57289.14,11542.71,11573.48,4695.53,27811.72,85100.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,26818,3653.0,0.0,0.0,3653.0,679.82,477.86,274.14,1431.82,5084.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,25865,91215.42,0.0,0.0,91215.42,18779.12,12424.5,7278.07,38481.69,129697.11 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8452,Criminal Justice Specialist 2,52048,93990.5,0.0,0.0,93990.5,19335.68,12424.5,7620.64,39380.82,133371.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,4434,64781.7,0.0,0.0,64781.7,0.0,5591.02,5028.1,10619.12,75400.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,47019,45292.48,0.0,0.0,45292.48,10853.13,12424.5,3677.08,26954.71,72247.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",20310,54839.4,1182.12,18571.78,74593.3,12031.74,5734.39,5910.47,23676.6,98269.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,15171,33485.51,0.0,1711.58,35197.09,7307.51,6745.01,2899.95,16952.47,52149.56 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,20190,258419.87,0.0,0.0,258419.87,51752.74,0.0,19472.48,71225.22,329645.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6281,Fire Safety Inspector 2,27774,133869.66,62207.27,8032.19,204109.12,28680.46,12309.87,11307.29,52297.62,256406.74 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,9980,106605.0,0.0,0.0,106605.0,21971.81,12424.5,8598.86,42995.17,149600.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,47295,135259.26,0.0,4240.22,139499.48,28091.14,12409.57,10144.6,50645.31,190144.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10783,119465.58,1165.14,9938.77,130569.49,23627.22,12424.5,2213.02,38264.74,168834.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,13855,4221.91,0.0,84.86,4306.77,0.0,1400.74,334.15,1734.89,6041.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,50475,72699.03,0.0,624.0,73323.03,15112.31,12424.5,6031.44,33568.25,106891.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42829,0.0,0.0,1098.42,1098.42,0.0,0.0,84.02,84.02,1182.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,9200,Airport Operation,9251,Public Relations Mgr,15404,127717.02,0.0,0.0,127717.02,25703.36,12424.5,17219.42,55347.28,183064.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50243,66102.01,1231.92,130.0,67463.93,13653.21,12424.5,5577.49,31655.2,99119.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,18712,4356.0,0.0,0.0,4356.0,0.0,955.74,355.69,1311.43,5667.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24018,104165.1,59801.96,17203.86,181170.92,24190.86,15339.48,3028.46,42558.8,223729.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,34557,133087.0,0.0,37643.55,170730.55,26783.95,12424.5,10669.83,49878.28,220608.83 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,48874,84993.4,1515.11,8161.28,94669.79,18468.47,12424.5,7740.66,38633.63,133303.42 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,21665,100554.03,0.0,2200.0,102754.03,21157.17,12424.5,8184.31,41765.98,144520.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,17133,66102.0,473.81,690.0,67265.81,13771.95,12424.5,5479.94,31676.39,98942.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,8657,32340.0,0.0,4901.53,37241.53,7808.75,4778.65,2993.49,15580.89,52822.42 +Calendar,2015,1,Public Protection,PDR,Public Defender,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,6028,53558.26,0.0,60.0,53618.26,11297.86,10088.87,4291.45,25678.18,79296.44 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,17116,74412.01,0.0,4635.0,79047.01,15383.85,12424.5,6558.82,34367.17,113414.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33104,69308.94,26530.08,5248.14,101087.16,20498.05,13661.87,7696.71,41856.63,142943.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,51764,72512.64,0.0,0.0,72512.64,15507.31,8498.54,5328.94,29334.79,101847.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,21004,97769.28,13387.43,17865.63,129022.34,28135.42,12424.51,2198.27,42758.2,171780.54 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,24888,42209.6,0.0,0.0,42209.6,8466.03,9509.52,3219.95,21195.5,63405.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,9189,59003.0,2785.37,4297.54,66085.91,14004.93,11468.77,5267.67,30741.37,96827.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24738,13580.27,0.0,459.57,14039.84,3811.6,0.0,3169.58,6981.18,21021.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5216,Chief Surveyor,3964,105189.87,0.0,0.0,105189.87,7094.58,10325.57,8267.69,25687.84,130877.71 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,17458,161693.43,0.0,0.0,161693.43,32465.92,12367.75,27935.33,72769.0,234462.43 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",18101,96792.01,0.0,0.0,96792.01,20115.18,11468.77,7118.39,38702.34,135494.35 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,27895,29355.61,0.0,1129.11,30484.72,6440.61,2518.95,2447.65,11407.21,41891.93 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,20183,1960.58,37.13,0.0,1997.71,0.0,483.83,154.95,638.78,2636.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,30464,14153.9,0.0,0.0,14153.9,0.0,4205.21,1098.57,5303.78,19457.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6115,Wastewater Control Inspector,12792,96254.0,10316.84,0.0,106570.84,19838.21,12424.5,8672.05,40934.76,147505.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,2999,21175.91,0.0,307.35,21483.26,395.48,7026.1,1665.49,9087.07,30570.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,40146,58938.01,10249.71,6381.73,75569.45,13650.06,9079.45,6183.32,28912.83,104482.28 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,25724,158555.42,0.0,0.0,158555.42,31869.07,12424.5,17746.98,62040.55,220595.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,19263,2928.08,0.0,0.0,2928.08,755.45,968.99,248.71,1973.15,4901.23 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2820,Senior Health Program Planner,4513,16236.0,0.0,0.0,16236.0,3021.52,2150.39,1282.81,6454.72,22690.72 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36749,44415.0,35.74,1926.22,46376.96,11008.16,11946.63,3499.73,26454.52,72831.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,52902,696.5,0.0,23.08,719.58,0.0,209.07,55.85,264.92,984.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,9362,5888.83,27.08,0.0,5915.91,0.0,1948.8,458.01,2406.81,8322.72 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,46753,48144.15,0.0,0.0,48144.15,9135.78,6409.38,4023.27,19568.43,67712.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,51299,26432.0,1505.7,3594.6,31532.3,5030.66,3822.91,2531.5,11385.07,42917.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,43566,64942.22,4303.57,1160.0,70405.79,13819.27,10705.08,5658.3,30182.65,100588.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",7392,182293.01,0.0,0.0,182293.01,36686.83,12424.5,28374.1,77485.43,259778.44 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,35323,10625.01,0.0,0.0,10625.01,0.0,1421.65,824.56,2246.21,12871.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36757,86210.44,4760.5,3846.4,94817.34,0.0,7532.25,7353.91,14886.16,109703.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15594,107317.35,979.0,23246.41,131542.76,19355.74,10412.57,8426.19,38194.5,169737.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,7381,84320.6,61285.95,10417.13,156023.68,18973.81,12376.71,10327.72,41678.24,197701.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,25267,129895.16,0.0,0.0,129895.16,26141.54,12424.5,9965.16,48531.2,178426.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20942,34712.73,8166.58,8539.44,51418.75,9202.18,4587.51,856.23,14645.92,66064.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,11050,116976.01,0.0,0.0,116976.01,23541.49,12424.48,9537.25,45503.22,162479.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",21638,74625.04,0.0,499.2,75124.24,15483.96,9939.6,5900.77,31324.33,106448.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,50982,18070.49,0.0,1127.75,19198.24,0.0,1361.92,1490.09,2852.01,22050.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,44393,16757.02,0.0,63.83,16820.85,3963.96,5017.58,1361.29,10342.83,27163.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,7740,120111.01,0.0,0.0,120111.01,24172.55,12424.5,9666.88,46263.93,166374.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,44338,18617.06,291.67,869.67,19778.4,0.0,0.0,1564.11,1564.11,21342.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,11039,65262.96,8185.64,4844.0,78292.6,13731.02,12361.78,6028.09,32120.89,110413.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39441,132016.03,1066.55,638.39,133720.97,26640.81,12424.5,9995.01,49060.32,182781.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,29912,172881.0,0.0,250.0,173131.0,34755.47,12424.5,10637.45,57817.42,230948.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27283,36622.6,4567.78,944.84,42135.22,9728.97,11438.72,2985.77,24153.46,66288.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36727,98206.89,2007.06,23625.8,123839.75,22761.88,9820.14,8789.67,41371.69,165211.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,17086,69969.23,0.0,1875.25,71844.48,15411.27,8599.9,5767.13,29778.3,101622.78 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,50294,8604.0,0.0,0.0,8604.0,2219.85,2855.25,617.79,5692.89,14296.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,29066,63887.0,18105.99,2098.8,84091.79,13295.97,12424.5,6896.89,32617.36,116709.15 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,13420,38518.95,0.0,0.0,38518.95,8639.83,6248.09,2996.72,17884.64,56403.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24295,105480.39,824.09,9515.18,115819.66,20119.04,10981.35,9433.33,40533.72,156353.38 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,18495,67890.05,0.0,0.0,67890.05,14670.88,7167.99,5415.91,27254.78,95144.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,47837,49079.03,0.0,565.73,49644.76,11029.24,11264.24,4134.04,26427.52,76072.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,31086,112776.0,16339.63,2255.52,131371.15,23150.48,12424.5,9883.14,45458.12,176829.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,21633,54124.02,0.0,0.0,54124.02,12110.45,12424.5,4109.71,28644.66,82768.68 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,12244,102871.65,0.0,0.0,102871.65,21217.62,12400.6,8303.33,41921.55,144793.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,602,66378.59,17468.22,687.07,84533.88,15709.15,13082.69,6253.15,35044.99,119578.87 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,29707,84973.01,0.0,624.0,85597.01,17641.99,12424.5,6492.8,36559.29,122156.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,1212,42900.05,80.44,0.0,42980.49,9106.22,9557.32,3226.61,21890.15,64870.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13473,131151.9,498.66,33915.91,165566.47,27322.04,10929.98,6671.71,44923.73,210490.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,5695,66102.01,1939.2,300.0,68341.21,14862.41,12424.5,5506.32,32793.23,101134.44 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,26112,88296.01,0.0,4698.0,92994.01,18209.17,12424.5,7719.02,38352.69,131346.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,34819,107978.0,8165.7,2010.0,118153.7,22672.66,12424.5,9344.39,44441.55,162595.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,22865,66580.0,4045.3,3103.2,73728.5,13722.35,12424.5,5666.17,31813.02,105541.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,34789,75152.16,3572.32,0.0,78724.48,15489.91,12382.69,6392.78,34265.38,112989.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,4285,39359.42,0.0,0.0,39359.42,9316.56,10577.85,3228.67,23123.08,62482.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,8704,126662.28,0.0,90.0,126752.28,25248.76,10990.91,24592.05,60831.72,187584.0 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,52528,10449.11,0.0,130.4,10579.51,2565.71,2596.61,870.68,6033.0,16612.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19632,41001.2,0.0,0.0,41001.2,9321.34,10943.12,3269.86,23534.32,64535.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,40487,4476.8,0.0,0.0,4476.8,0.0,1481.38,347.02,1828.4,6305.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43452,837.39,216.32,99.73,1153.44,0.0,13.7,19.78,33.48,1186.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,25246,54811.49,12958.17,2326.98,70096.64,10413.77,6212.25,1177.03,17803.05,87899.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",3439,1196.0,0.0,0.0,1196.0,0.0,71.44,92.72,164.16,1360.16 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,32579,10814.12,0.0,0.0,10814.12,0.0,2699.94,838.99,3538.93,14353.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50985,27410.78,2601.11,791.92,30803.81,7069.2,8530.98,2354.11,17954.29,48758.1 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,12732,58658.89,0.0,0.0,58658.89,0.0,0.0,4639.82,4639.82,63298.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,41572,16304.0,0.0,0.0,16304.0,3034.16,1911.46,1291.02,6236.64,22540.64 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,95,75605.01,0.0,0.0,75605.01,15582.61,12424.5,6147.78,34154.89,109759.9 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1281,Senior Emp Relations Repres,33080,3657.5,0.0,0.0,3657.5,802.46,334.51,283.16,1420.13,5077.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,832,63887.0,0.0,1194.88,65081.88,13413.66,12424.52,5154.94,30993.12,96075.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,10600,90917.4,0.0,0.0,90917.4,18740.48,12108.99,7282.55,38132.02,129049.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46922,11268.77,0.0,597.38,11866.15,1621.73,4886.53,926.41,7434.67,19300.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,12625,41651.0,0.0,0.0,41651.0,6245.52,12520.0,3359.08,22124.6,63775.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11868,130976.5,0.0,7858.59,138835.09,27288.6,12424.5,2354.32,42067.42,180902.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,7849,84644.01,29011.49,3854.98,117510.48,17705.92,12424.51,9142.03,39272.46,156782.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,24350,2207.4,0.0,0.0,2207.4,0.0,310.61,170.9,481.51,2688.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,52503,66778.59,0.0,3346.41,70125.0,14198.37,12335.32,5805.27,32338.96,102463.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,21857,3035.0,0.0,4001.65,7036.65,680.75,477.86,535.96,1694.57,8731.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,26589,62811.05,362.56,2054.0,65227.61,13316.16,12424.5,5097.89,30838.55,96066.16 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,47896,54718.02,0.0,0.0,54718.02,10182.99,5734.39,4355.64,20273.02,74991.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,18457,158753.26,0.0,0.0,158753.26,31949.23,12424.5,17738.24,62111.97,220865.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43126,41523.78,3837.39,1229.28,46590.45,12460.44,8257.76,3494.39,24212.59,70803.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,42605,7129.75,0.0,0.0,7129.75,0.0,2359.46,553.1,2912.56,10042.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48394,39308.81,0.0,3059.83,42368.64,4296.07,10501.1,3339.56,18136.73,60505.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,35165,20789.95,0.0,0.0,20789.95,4571.71,4750.82,1684.48,11007.01,31796.96 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,524,58101.02,0.0,624.0,58725.02,12103.58,12424.5,4377.09,28905.17,87630.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,38965,49276.02,4200.58,1594.35,55070.95,11519.75,10693.62,4474.9,26688.27,81759.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,40591,80018.55,145.63,0.0,80164.18,15458.92,7550.27,6428.19,29437.38,109601.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,17551,97774.56,20152.35,12902.88,130829.79,26944.48,12424.5,2183.23,41552.21,172382.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40228,18625.04,4908.69,2539.66,26073.39,4212.97,2389.33,425.56,7027.86,33101.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,8947,95884.44,0.0,0.0,95884.44,19755.3,12424.53,7804.79,39984.62,135869.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,25655,63748.0,0.0,0.0,63748.0,12530.35,8123.71,4970.68,25624.74,89372.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20556,83571.07,0.0,11973.23,95544.3,19288.57,11230.86,691.04,31210.47,126754.77 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,51875,90680.65,13363.0,9925.45,113969.1,20810.68,11502.04,9098.82,41411.54,155380.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,10921,77785.54,0.0,0.0,77785.54,15980.11,11012.95,6415.75,33408.81,111194.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5339,0.0,0.0,464.24,464.24,0.0,0.0,6.73,6.73,470.97 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,30138,78610.04,0.0,316.64,78926.68,16269.96,12424.5,6504.34,35198.8,114125.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27170,60275.7,0.0,108.68,60384.38,12402.61,11332.16,5011.61,28746.38,89130.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,3740,82638.03,1721.63,4467.62,88827.28,17378.7,8601.58,7278.78,33259.06,122086.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36914,113264.6,30983.51,16869.97,161118.08,25335.42,15148.33,2745.58,43229.33,204347.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,2066,45651.0,0.0,201.93,45852.93,10996.75,12424.5,3481.32,26902.57,72755.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24661,65507.83,504.6,0.0,66012.43,12275.53,6134.6,4998.31,23408.44,89420.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,5755,5011.95,0.0,135.38,5147.33,0.0,812.37,398.91,1211.28,6358.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14438,113233.61,50492.34,18429.06,182155.01,25036.04,15196.12,3052.04,43284.2,225439.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,33371,148132.68,0.0,0.0,148132.68,30195.92,10043.06,17478.21,57717.19,205849.87 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,30562,17161.15,0.0,0.0,17161.15,4427.6,3822.92,1400.02,9650.54,26811.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,13974,66682.79,0.0,0.0,66682.79,13724.55,12171.18,5536.09,31431.82,98114.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,7407,59229.0,1824.48,1303.44,62356.92,12208.28,12424.5,5114.41,29747.19,92104.11 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,37068,97771.03,21123.25,16565.87,135460.15,27122.65,12424.51,2262.2,41809.36,177269.51 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,20449,257589.03,0.0,0.0,257589.03,51829.64,12424.5,29597.26,93851.4,351440.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2773,106049.94,21439.75,9847.9,137337.59,22052.64,12424.5,2246.31,36723.45,174061.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18635,114983.47,1088.68,10000.67,126072.82,24393.95,10763.92,9863.98,45021.85,171094.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,9204,52367.12,582.97,2484.47,55434.56,11285.44,9919.3,4513.23,25717.97,81152.53 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,2762,93499.0,0.0,0.0,93499.0,19270.58,12424.5,7704.8,39399.88,132898.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,20384,68370.0,0.0,0.0,68370.0,14118.82,12185.57,5624.17,31928.56,100298.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,21941,97758.74,12072.67,12218.69,122050.1,26736.71,12424.5,2032.18,41193.39,163243.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48730,55462.68,0.0,6116.64,61579.32,12077.71,12188.25,5042.56,29308.52,90887.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33837,80953.75,889.47,4257.16,86100.38,16570.71,12424.5,3303.41,32298.62,118399.0 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,38339,87713.0,0.0,0.0,87713.0,18078.17,12424.5,7191.57,37694.24,125407.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,21207,63887.01,583.83,1846.01,66316.85,13548.53,12424.49,5449.25,31422.27,97739.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,43680,20307.15,0.0,0.0,20307.15,4419.93,688.66,1629.13,6737.72,27044.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,25957,76327.0,0.0,241.26,76568.26,15771.34,12424.5,6168.48,34364.32,110932.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,10299,200099.41,732.49,9609.53,210441.43,40293.23,12424.5,3533.79,56251.52,266692.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,25193,61453.7,6592.61,7212.43,75258.74,14198.1,12185.57,5828.18,32211.85,107470.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34555,145669.86,142.33,35646.65,181458.84,35365.13,12418.53,7264.47,55048.13,236506.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32727,55967.04,0.0,0.0,55967.04,12517.32,12424.5,4260.33,29202.15,85169.19 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,21913,74335.41,0.0,0.0,74335.41,15297.77,12424.5,5924.03,33646.3,107981.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,10186,72730.5,0.0,5.0,72735.5,14972.68,12412.56,5917.52,33302.76,106038.26 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,47174,100538.93,11789.75,0.0,112328.68,22943.72,12424.5,1901.56,37269.78,149598.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,5432,95713.0,6177.24,2487.44,104377.68,20153.2,12424.51,8418.97,40996.68,145374.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,2161,5298.96,0.0,12.93,5311.89,0.0,1762.13,411.89,2174.02,7485.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,10418,49679.01,1873.92,595.2,52148.13,12057.92,12424.5,4100.9,28583.32,80731.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28918,75614.87,38348.19,7425.3,121388.36,16576.64,15196.13,2016.35,33789.12,155177.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2812,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3372.94,18198.79,61966.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,22130,84888.58,2601.27,7519.84,95009.69,18061.66,12398.58,1584.91,32045.15,127054.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,46563,93681.03,0.0,624.0,94305.03,19436.77,12424.5,7743.2,39604.47,133909.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,13663,77422.26,0.0,0.0,77422.26,15956.05,12113.89,6307.27,34377.21,111799.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38055,86815.3,8136.26,9519.43,104470.99,23428.77,11077.34,1487.11,35993.22,140464.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12455,101003.98,0.0,9948.29,110952.27,20660.2,8994.03,8255.76,37909.99,148862.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18739,9663.6,0.0,1003.71,10667.31,179.36,0.0,2949.75,3129.11,13796.42 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1752,Sr Microphoto/Imaging Tech,33014,63102.01,0.0,624.0,63726.01,13134.24,12424.5,4989.85,30548.59,94274.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,36969,53960.15,10.44,3759.18,57729.77,13395.17,12421.52,4721.02,30537.71,88267.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,22795,90443.66,0.0,0.0,90443.66,18475.47,10298.0,7290.73,36064.2,126507.86 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,48213,130629.08,0.0,0.0,130629.08,26219.29,12424.5,17253.47,55897.26,186526.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2618,Food Service Supervisor,5971,33693.6,0.0,7861.48,41555.08,7989.5,6642.33,3770.16,18401.99,59957.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,50905,94335.03,0.0,0.0,94335.03,19694.5,9079.44,7766.19,36540.13,130875.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,29202,32854.54,0.0,778.15,33632.69,7642.44,7467.42,2679.59,17789.45,51422.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29093,7329.52,0.0,342.08,7671.6,0.0,2428.16,594.84,3023.0,10694.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,7405,61735.0,91.91,612.0,62438.91,12849.93,12424.5,4937.44,30211.87,92650.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,24363,12306.98,0.0,71.39,12378.37,0.0,2982.18,959.83,3942.01,16320.38 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,28970,21023.6,0.0,2102.36,23125.96,4909.7,0.0,9124.89,14034.59,37160.55 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23146,11684.04,1265.36,623.4,13572.8,0.0,3245.0,1053.46,4298.46,17871.26 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),37312,108762.89,0.0,1500.0,110262.89,22123.11,11834.34,8700.23,42657.68,152920.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,15633,118104.04,0.0,0.0,118104.04,23768.42,12424.5,9614.62,45807.54,163911.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,31480,4644.92,0.0,0.0,4644.92,0.0,1370.88,1061.83,2432.71,7077.63 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32993,4870.0,0.0,0.0,4870.0,906.3,955.74,380.54,2242.58,7112.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34052,3564.06,0.0,233.57,3797.63,0.0,887.03,294.36,1181.39,4979.02 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,43926,72824.81,71.7,0.0,72896.51,14982.5,12424.5,5772.04,33179.04,106075.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46471,33224.61,0.0,6536.46,39761.07,0.0,2910.92,3081.79,5992.71,45753.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,22206,64944.0,10061.71,2776.24,77781.95,13520.39,12424.5,6213.62,32158.51,109940.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,41877,77359.71,0.0,0.0,77359.71,15909.42,12424.49,6264.46,34598.37,111958.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,4370,156746.04,0.0,0.0,156746.04,31545.23,12424.51,10438.35,54408.09,211154.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7523,7918.41,0.0,0.0,7918.41,0.0,3371.94,637.48,4009.42,11927.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,46096,100761.01,6322.75,3670.0,110753.76,21549.82,12424.5,8803.18,42777.5,153531.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24801,4058.37,0.0,1168.39,5226.76,0.0,310.91,87.17,398.08,5624.84 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",4100,Property Administration,4119,Events & Facilities Specialist,21474,60357.19,0.0,0.0,60357.19,12133.06,8973.9,5096.98,26203.94,86561.13 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,17934,96995.53,0.0,0.0,96995.53,19951.38,12185.57,7821.41,39958.36,136953.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18079,5886.8,113.42,10.74,6010.96,2681.47,1487.36,380.24,4549.07,10560.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15822,96063.8,0.0,1216.79,97280.59,19139.44,10178.53,7687.08,37005.05,134285.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21162,10862.86,0.0,361.73,11224.59,0.0,4653.34,909.05,5562.39,16786.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",10828,275.0,0.0,0.0,275.0,0.0,65.71,21.32,87.03,362.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7365,Senior Power House Operator,28208,87378.21,32650.37,12677.69,132706.27,19813.44,12397.68,9906.64,42117.76,174824.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8576,0.0,0.0,250.0,250.0,0.0,68.5,0.0,68.5,318.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,26668,66762.7,0.0,0.0,66762.7,13683.39,12033.61,5473.08,31190.08,97952.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,12914,93281.08,0.0,1380.0,94661.08,19507.88,12424.5,7482.95,39415.33,134076.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,26354,101092.21,0.0,0.0,101092.21,20839.67,12424.49,8310.24,41574.4,142666.61 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3310,Stable Attendant,12788,12553.87,0.0,1025.44,13579.31,2760.6,3321.17,1083.75,7165.52,20744.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,362,96254.08,0.0,2790.27,99044.35,20400.78,12424.51,8091.98,40917.27,139961.62 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,2.0,Management Unrepresented Employees,1200,Personnel,1283,Dir Emp Relations Div,42005,215826.96,0.0,0.0,215826.96,43395.46,12424.5,19740.69,75560.65,291387.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,8856,60075.7,16854.32,5246.7,82176.72,12860.89,9899.69,6695.61,29456.19,111632.91 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,40492,1082.41,0.0,0.0,1082.41,0.0,283.73,84.01,367.74,1450.15 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,31214,49396.67,64.85,6753.35,56214.87,11064.42,10978.97,4518.53,26561.92,82776.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24503,0.0,0.0,846.47,846.47,0.0,68.5,64.75,133.25,979.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2129,104655.54,106.3,23171.34,127933.18,24446.03,10961.04,9695.48,45102.55,173035.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,15323,60358.22,13441.2,1625.52,75424.94,13374.25,8601.58,5907.58,27883.41,103308.35 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,38235,108896.87,0.0,0.0,108896.87,21981.81,12067.06,8873.21,42922.08,151818.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,19005,45215.74,0.0,0.0,45215.74,10817.41,12113.89,3681.85,26613.15,71828.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,6348,93281.01,0.0,624.0,93905.01,19354.57,12424.5,7541.71,39320.78,133225.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,24959,76263.03,0.0,1480.0,77743.03,16086.13,11946.64,6449.58,34482.35,112225.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5879,20616.89,3598.63,434.04,24649.56,5097.75,6390.44,1780.85,13269.04,37918.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,30377,25942.7,0.0,0.0,25942.7,0.0,5692.57,2013.16,7705.73,33648.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40155,118111.09,520.1,12640.8,131271.99,23880.02,10622.17,6855.08,41357.27,172629.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,15573,54725.5,2070.54,3061.83,59857.87,12704.47,12173.61,4868.93,29747.01,89604.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6333,Senior Building Inspector,19809,124338.07,4774.56,6216.91,135329.54,26274.57,12424.5,9963.0,48662.07,183991.61 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,17529,100414.0,0.0,0.0,100414.0,19542.93,9079.44,12785.76,41408.13,141822.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,52755,80357.01,460.8,0.0,80817.81,16562.14,12424.5,6491.27,35477.91,116295.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,42977,101531.02,43125.55,6506.93,151163.5,22115.96,12424.5,10218.06,44758.52,195922.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,52912,74437.25,0.0,1560.0,75997.25,15624.64,12424.51,6176.77,34225.92,110223.17 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,15095,100554.08,0.0,2200.0,102754.08,21168.18,12424.5,8225.33,41818.01,144572.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,43499,106063.65,0.0,3902.95,109966.6,22674.11,12418.28,8983.01,44075.4,154042.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,224,135421.0,0.0,0.0,135421.0,27253.5,12424.5,10098.02,49776.02,185197.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,25620,41184.89,0.0,2659.87,43844.76,10635.53,9628.46,3561.17,23825.16,67669.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,28739,142640.75,0.0,0.0,142640.75,28696.69,12376.71,10219.62,51293.02,193933.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21594,66440.59,23434.45,1545.34,91420.38,18615.7,13092.5,7097.1,38805.3,130225.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,20172,10419.23,0.0,0.0,10419.23,1889.0,955.73,1397.59,4242.32,14661.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1001,67786.39,4172.89,3055.96,75015.24,19389.23,13353.29,5850.52,38593.04,113608.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,11815,80417.85,0.0,8205.83,88623.68,17676.71,7377.04,7235.37,32289.12,120912.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,27444,49751.89,0.0,0.0,49751.89,10089.84,10504.08,3977.77,24571.69,74323.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,36127,818.66,0.0,0.0,818.66,0.0,0.0,64.84,64.84,883.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,15907,14800.0,405.59,463.62,15669.21,2840.57,2389.33,1234.35,6464.25,22133.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,24367,59198.73,0.0,580.68,59779.41,12320.74,12418.11,4703.61,29442.46,89221.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,25482,12801.37,0.0,0.0,12801.37,2382.33,2776.87,932.34,6091.54,18892.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",37987,14500.61,0.0,0.0,14500.61,1527.52,3452.58,1122.64,6102.74,20603.35 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,19711,1540.0,0.0,0.0,1540.0,0.0,91.99,119.36,211.35,1751.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,22616,7667.8,0.0,0.0,7667.8,0.0,1678.51,595.15,2273.66,9941.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,42214,15047.0,742.77,2109.5,17899.27,3192.81,2867.19,1360.54,7420.54,25319.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,11144,5372.85,0.0,0.0,5372.85,0.0,1756.16,427.68,2183.84,7556.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51973,28068.85,0.0,3110.87,31179.72,6422.71,6205.38,2625.57,15253.66,46433.38 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,3048,1663.01,0.0,166.3,1829.31,331.65,97.06,30.72,459.43,2288.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,26966,61512.8,420.9,815.0,62748.7,13089.1,10417.48,5133.66,28640.24,91388.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,8533,64333.14,0.0,30.0,64363.14,13252.22,12090.0,4950.3,30292.52,94655.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,8038,14800.0,318.64,491.18,15609.82,2845.69,2389.34,1245.75,6480.78,22090.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,18478,6687.53,54.16,348.73,7090.42,0.0,2213.11,548.93,2762.04,9852.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47325,58379.14,4651.33,670.52,63700.99,15328.59,13173.92,4854.79,33357.3,97058.29 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,30599,15675.2,0.0,0.0,15675.2,0.0,2102.61,1080.65,3183.26,18858.46 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1218,Payroll Supervisor,36282,94928.3,0.0,0.0,94928.3,19522.44,12424.5,7829.71,39776.65,134704.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35824,14385.19,0.0,0.0,14385.19,3466.75,6379.5,1169.27,11015.52,25400.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11086,17681.74,3345.74,258.1,21285.58,4298.78,5459.79,1542.11,11300.68,32586.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7725,6643.19,0.0,510.95,7154.14,0.0,585.38,523.07,1108.45,8262.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,9044,2142.05,0.0,26.23,2168.28,0.0,712.31,28.02,740.33,2908.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,34608,19647.81,0.0,160.88,19808.69,4724.49,5889.69,2084.98,12699.16,32507.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,46640,146310.84,0.0,4643.01,150953.85,24784.22,9929.15,9974.98,44688.35,195642.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,28182,105893.06,5013.2,1502.66,112408.92,21807.84,12316.92,9237.24,43362.0,155770.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,48729,75041.81,248.48,4943.46,80233.75,15701.01,10799.73,6574.39,33075.13,113308.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,52404,79395.04,59.03,1369.58,80823.65,16644.26,12424.51,6657.67,35726.44,116550.09 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,48688,58652.0,306.17,4692.78,63650.95,12798.18,12424.5,2068.61,27291.29,90942.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2475,28012.72,1577.06,12779.85,42369.63,8507.33,5570.84,3274.53,17352.7,59722.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,7440,97764.89,35796.58,11702.45,145263.92,25911.57,12424.51,2463.57,40799.65,186063.57 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,3104,21615.1,0.0,5.23,21620.33,5167.19,0.0,1797.33,6964.52,28584.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44433,110772.66,584.71,9566.75,120924.12,23587.11,10853.52,9621.78,44062.41,164986.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,3298,63887.0,1996.74,2631.1,68514.84,13709.33,12424.5,5304.52,31438.35,99953.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,33246,56882.0,0.0,0.0,56882.0,12685.85,12424.5,4622.04,29732.39,86614.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,24577,106733.7,0.0,250.0,106983.7,21493.15,7301.79,8152.7,36947.64,143931.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12434,9512.42,0.0,156.57,9668.99,0.0,3162.88,749.16,3912.04,13581.03 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38892,97761.35,7177.03,15377.3,120315.68,27521.55,12424.5,1993.43,41939.48,162255.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,20540,7148.0,1507.78,0.0,8655.78,1844.2,1911.46,699.87,4455.53,13111.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31726,82033.26,4739.17,7527.14,94299.57,17063.28,12424.5,1526.2,31013.98,125313.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,37262,150710.0,288.0,2519.86,153517.86,30822.93,12424.5,10239.71,53487.14,207005.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27194,66444.34,2031.94,8355.6,76831.88,14969.15,11766.13,6075.55,32810.83,109642.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,36612,75316.01,0.0,871.6,76187.61,15657.02,12376.71,6252.56,34286.29,110473.9 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,38789,90035.56,0.0,0.0,90035.56,18255.56,10481.44,7174.58,35911.58,125947.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50645,13706.25,0.0,0.0,13706.25,0.0,3274.87,1128.9,4403.77,18110.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,35600,2797.74,0.0,0.0,2797.74,0.0,1308.15,216.92,1525.07,4322.81 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,36098,32804.03,0.0,358.44,33162.47,6171.55,4300.79,2748.12,13220.46,46382.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49887,112696.23,43241.09,11515.46,167452.78,22291.44,12424.5,2844.04,37559.98,205012.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28754,49.23,0.0,0.0,49.23,0.0,16.42,3.81,20.23,69.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,3831,26777.2,266.7,684.35,27728.25,6217.9,7120.19,2212.51,15550.6,43278.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,25097,61949.3,0.0,7948.08,69897.38,13842.59,12376.71,5722.38,31941.68,101839.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",12893,19120.48,0.0,0.0,19120.48,0.0,4018.55,1482.32,5500.87,24621.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,29477,11344.0,403.8,136.78,11884.58,2962.04,3966.29,973.03,7901.36,19785.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,1806,86728.44,0.0,0.0,86728.44,17969.56,11716.0,7137.79,36823.35,123551.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,29611,64902.66,0.0,8864.72,73767.38,14419.43,12293.87,6070.92,32784.22,106551.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",49872,11502.61,0.0,0.0,11502.61,2122.42,2738.77,959.52,5820.71,17323.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26997,6914.0,0.0,1382.8,8296.8,666.28,0.0,3917.45,4583.73,12880.53 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,29995,15247.6,0.0,0.0,15247.6,0.0,4205.21,1224.71,5429.92,20677.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,17501,41495.63,0.0,347.36,41842.99,9870.26,8305.3,2453.32,20628.88,62471.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7213,Plumber Supervisor 1,6299,114363.14,6274.72,23230.82,143868.68,24835.95,12386.69,10134.34,47356.98,191225.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27997,63334.82,13381.88,4677.22,81393.92,18754.96,12498.99,6357.02,37610.97,119004.89 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,43254,101531.0,0.0,0.0,101531.0,20926.02,12424.5,8374.58,41725.1,143256.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,726,3470.9,0.0,0.0,3470.9,0.0,1457.49,277.28,1734.77,5205.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,29787,81588.4,11427.68,82.0,93098.08,16825.04,12424.53,7592.23,36841.8,129939.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",47087,2392.0,0.0,0.0,2392.0,0.0,142.88,185.42,328.3,2720.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,31566,46907.0,1801.46,524.0,49232.46,9031.86,6690.09,4324.87,20046.82,69279.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",43022,29465.01,0.0,0.0,29465.01,6464.61,2389.33,3634.84,12488.78,41953.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,14527,14590.0,601.84,0.0,15191.84,2715.2,2389.33,1227.66,6332.19,21524.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,25591,43547.0,0.0,0.0,43547.0,8104.07,5017.58,3527.65,16649.3,60196.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,8631,62046.04,0.0,0.0,62046.04,13789.55,12424.51,4931.83,31145.89,93191.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,28466,16233.15,5755.75,3900.48,25889.38,3358.07,2813.43,2064.62,8236.12,34125.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,45269,39427.79,18777.01,3017.84,61222.64,9903.96,11971.96,4649.45,26525.37,87748.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,25639,59199.69,0.0,250.0,59449.69,12154.58,11797.3,4612.01,28563.89,88013.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,8760,20403.6,0.0,4230.74,24634.34,3019.72,2341.54,1940.69,7301.95,31936.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27514,54697.6,0.0,6995.77,61693.37,14288.38,12424.5,4946.88,31659.76,93353.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51216,23684.94,0.0,4166.53,27851.47,5342.49,5175.88,2306.31,12824.68,40676.15 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,27533,96930.04,0.0,0.0,96930.04,19977.61,12424.5,7680.88,40082.99,137013.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,51531,18128.0,0.0,0.0,18128.0,3373.64,3822.92,1458.95,8655.51,26783.51 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,14410,18144.0,0.0,0.0,18144.0,3289.5,955.73,311.38,4556.61,22700.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,35838,7798.0,0.0,6599.06,14397.06,1749.1,955.73,1135.47,3840.3,18237.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,11112,8887.39,27.21,0.0,8914.6,0.0,1463.46,690.23,2153.69,11068.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,32699,0.0,0.0,250.0,250.0,0.0,68.5,172.54,241.04,491.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,14266,59095.16,894.59,5597.92,65587.67,13318.5,12271.59,5417.26,31007.35,96595.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,52559,3040.39,0.0,0.0,3040.39,0.0,1091.62,246.59,1338.21,4378.6 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4331,Security Analyst,18466,110858.0,0.0,0.0,110858.0,22310.68,12424.5,8907.81,43642.99,154500.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12118,17606.57,0.0,2830.2,20436.77,158.48,0.0,722.74,881.22,21317.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",38299,130329.29,55085.75,22879.69,208294.73,28910.32,15052.76,3497.95,47461.03,255755.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,13924,9768.0,0.0,399.6,10167.6,2280.6,1911.45,842.56,5034.61,15202.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2416,Laboratory Technician II,21962,66102.0,371.79,624.0,67097.79,13752.75,12424.5,5484.61,31661.86,98759.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,32449,38073.01,0.0,0.0,38073.01,9196.96,11468.76,3119.26,23784.98,61857.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49824,16053.78,0.0,3274.82,19328.6,202.72,0.0,3404.78,3607.5,22936.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,52952,126994.11,0.0,440.0,127434.11,25649.6,12424.47,9909.61,47983.68,175417.79 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,25572,87713.01,0.0,653.9,88366.91,18213.43,12424.5,7252.41,37890.34,126257.25 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,29422,30840.61,0.0,0.0,30840.61,0.0,4497.91,2383.49,6881.4,37722.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,22933,105363.06,0.0,0.0,105363.06,21727.62,12424.5,8448.49,42600.61,147963.67 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,9596,56726.13,162.26,7909.34,64797.73,13811.51,12412.55,5241.54,31465.6,96263.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,24732,61449.09,0.0,500.0,61949.09,12011.67,4168.9,4724.96,20905.53,82854.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,30719,182657.75,0.0,0.0,182657.75,36528.86,11538.85,10877.73,58945.44,241603.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",11596,179494.71,413.8,10769.68,190678.19,37383.28,12424.5,3240.9,53048.68,243726.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,8183,95600.03,0.0,0.0,95600.03,20451.12,7645.86,7402.68,35499.66,131099.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23242,11831.12,0.0,1405.21,13236.33,3126.86,0.0,2943.25,6070.11,19306.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,28549,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5117.47,30394.59,92753.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,5331,78176.0,27264.53,12839.22,118279.75,17672.84,11468.76,9213.28,38354.88,156634.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,18673,76424.97,0.0,0.0,76424.97,15757.57,12376.66,6340.44,34474.67,110899.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43369,699.88,0.0,118.98,818.86,0.0,59.73,62.15,121.88,940.74 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,24168,184319.55,0.0,0.0,184319.55,36961.52,11946.64,17745.24,66653.4,250972.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8225,4620.14,0.0,0.0,4620.14,0.0,2003.45,388.47,2391.92,7012.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25163,9428.35,0.0,514.2,9942.55,0.0,2344.52,770.7,3115.22,13057.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48109,351.26,0.0,9.36,360.62,0.0,152.32,27.91,180.23,540.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43410,71422.72,0.0,15339.31,86762.03,16037.03,5988.85,6897.54,28923.42,115685.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15968,1601.87,0.0,174.39,1776.26,236.49,0.0,73.41,309.9,2086.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,30483,75371.93,0.0,940.0,76311.93,9771.33,12107.91,6162.5,28041.74,104353.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,40243,28876.0,0.0,0.0,28876.0,5373.82,3822.92,2232.06,11428.8,40304.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,46613,87713.02,0.0,315.71,88028.73,18073.38,12424.5,7044.66,37542.54,125571.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46140,113233.62,34289.27,18562.64,166085.53,24937.49,15196.12,2776.2,42909.81,208995.34 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,41827,24350.0,0.0,0.0,24350.0,5461.7,4778.65,2006.55,12246.9,36596.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,36460,157602.21,0.0,0.0,157602.21,31692.64,12424.5,10489.53,54606.67,212208.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,14604,97934.03,0.0,561.6,98495.63,20305.54,12424.5,8168.8,40898.84,139394.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,28947,63404.62,1198.58,7997.31,72600.51,14640.82,11680.64,5857.39,32178.85,104779.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,19788,113544.05,0.0,0.0,113544.05,23093.92,12424.5,9123.62,44642.04,158186.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,22771,52089.06,676.33,469.26,53234.65,10635.09,5726.56,839.22,17200.87,70435.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,895,9702.0,424.47,1697.85,11824.32,1850.68,1433.6,914.56,4198.84,16023.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19587,42556.12,653.1,2796.22,46005.44,8854.78,9337.26,3850.98,22043.02,68048.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,18289,31455.84,820.15,22004.38,54280.37,5690.82,2389.33,875.73,8955.88,63236.25 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,3030,56042.9,249.86,988.95,57281.71,12531.64,12372.72,4746.44,29650.8,86932.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2656,Chef,6367,49030.04,452.38,2503.48,51985.9,9873.11,8601.58,1067.04,19541.73,71527.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19835,97114.43,39697.21,14176.63,150988.27,27041.45,12344.04,2572.42,41957.91,192946.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,32471,92001.3,27741.69,7496.7,127239.69,19595.14,12424.5,9816.79,41836.43,169076.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",47032,7575.5,0.0,0.0,7575.5,0.0,1762.15,20.04,1782.19,9357.69 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),47135,184289.03,0.0,5185.78,189474.81,38400.94,12424.5,9084.86,59910.3,249385.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,489,97424.0,0.0,0.0,97424.0,20079.52,12424.5,7995.22,40499.24,137923.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,15486,98522.86,0.0,0.0,98522.86,20282.25,12424.5,8020.7,40727.45,139250.31 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,20409,136466.0,11253.36,15813.17,163532.53,37039.81,12424.5,2778.56,52242.87,215775.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,17294,29600.0,212.26,1213.91,31026.17,5734.47,4778.65,2464.97,12978.09,44004.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,42261,67911.0,2409.32,11809.27,82129.59,15540.93,12424.5,6712.39,34677.82,116807.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,16115,96588.01,0.0,0.0,96588.01,19986.76,11946.62,7871.78,39805.16,136393.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42779,2588.95,0.0,0.0,2588.95,0.0,1087.14,200.94,1288.08,3877.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",5169,94388.01,12213.58,2123.73,108725.32,19891.53,12424.5,8671.2,40987.23,149712.55 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,29155,112296.99,1375.44,0.0,113672.43,22853.89,12424.51,9166.69,44445.09,158117.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,44917,18688.0,0.0,0.0,18688.0,3388.12,1911.46,2877.64,8177.22,26865.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,45413,10909.69,0.0,0.0,10909.69,0.0,2419.19,846.43,3265.62,14175.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,49260,52087.2,0.0,1360.0,53447.2,12801.27,12376.71,4342.72,29520.7,82967.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,36338,85760.54,2931.57,2514.45,91206.56,17672.69,12424.5,7388.79,37485.98,128692.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,272,119467.39,2087.81,10901.62,132456.82,23620.98,12424.5,2209.66,38255.14,170711.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7200,Supervisory-Labor & Trade,7208,Heavy Equipment Ops Sprv,39675,92811.0,0.0,0.0,92811.0,18573.44,10513.05,7597.72,36684.21,129495.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,24576,6416.78,0.0,107.04,6523.82,0.0,2123.52,504.97,2628.49,9152.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,23372,43685.97,1414.95,3205.58,48306.5,8677.27,8610.54,3951.09,21238.9,69545.4 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,36764,78925.37,0.0,0.0,78925.37,16252.22,12424.5,6546.29,35223.01,114148.38 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,9280,21269.81,0.0,0.0,21269.81,594.61,5304.3,1648.52,7547.43,28817.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,25523,78202.91,0.0,1040.0,79242.91,16331.2,12424.32,6524.15,35279.67,114522.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,39097,54124.03,13202.61,0.0,67326.64,12110.45,12424.5,5191.14,29726.09,97052.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,5654,69744.18,9293.89,8996.36,88034.43,15492.52,11595.35,7027.69,34115.56,122149.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1430,Transcriber Typist,44151,37194.04,0.0,0.0,37194.04,8674.48,9079.44,3378.5,21132.42,58326.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,31806,62330.8,31658.26,9506.08,103495.14,14449.98,12328.94,8382.21,35161.13,138656.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,50799,50940.4,0.0,0.0,50940.4,10937.17,9652.87,4084.51,24674.55,75614.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17475,55970.41,0.0,280.0,56250.41,12551.56,12424.5,4509.14,29485.2,85735.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,45886,97934.04,0.0,3072.35,101006.39,20812.68,12424.5,8315.7,41552.88,142559.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33452,56531.0,0.0,6450.14,62981.14,12684.46,12424.5,5193.44,30302.4,93283.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,13241,6682.05,53.89,40.95,6776.89,0.0,2222.08,525.99,2748.07,9524.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,33580,97424.01,2862.83,1704.0,101990.84,20431.26,12424.51,8401.96,41257.73,143248.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,18275,33847.28,6000.47,3602.22,43449.97,6176.59,3345.06,716.79,10238.44,53688.41 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,44812,58647.41,0.0,10333.21,68980.62,9724.67,3446.61,8327.08,21498.36,90478.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41602,56531.02,8590.64,5157.27,70278.93,12616.5,12424.5,5775.02,30816.02,101094.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,44256,69830.37,469.63,2168.1,72468.1,14819.61,12254.85,5976.66,33051.12,105519.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5274,Landscape Architect,50826,156320.01,0.0,0.0,156320.01,31459.67,12424.52,10388.32,54272.51,210592.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6472,48868.9,11659.9,1239.9,61768.7,14298.79,9718.47,4650.96,28668.22,90436.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5216,Chief Surveyor,3301,126490.06,0.0,0.0,126490.06,25456.42,12424.78,9866.13,47747.33,174237.39 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,20538,87979.0,7766.79,0.0,95745.79,19967.17,10990.9,1547.87,32505.94,128251.73 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,42532,2151.29,0.0,0.0,2151.29,0.0,679.47,166.55,846.02,2997.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,26071,85327.46,3256.99,7231.22,95815.67,18615.84,11302.78,8240.22,38158.84,133974.51 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,2440,59371.14,0.0,855.82,60226.96,13111.66,7215.76,4774.45,25101.87,85328.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24751,104547.56,3493.0,13655.2,121695.76,22807.27,14036.52,2062.38,38906.17,160601.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,1032,84971.9,13676.79,1409.61,100058.3,17246.0,10465.22,7801.81,35513.03,135571.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,29702,61735.05,398.26,570.0,62703.31,12832.37,12424.5,5196.47,30453.34,93156.65 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),41148,166792.51,0.0,1500.0,168292.51,33860.69,12424.5,10590.52,56875.71,225168.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24450,119181.6,100.03,3407.63,122689.26,23559.25,12394.64,1632.71,37586.6,160275.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,9376,118450.04,0.0,0.0,118450.04,23809.59,12424.5,9402.51,45636.6,164086.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15153,56531.0,1488.16,3109.56,61128.72,12255.56,12424.5,5006.6,29686.66,90815.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,7843,11256.0,0.0,0.0,11256.0,2524.71,1433.6,925.63,4883.94,16139.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,30371,61735.05,0.0,624.0,62359.05,12845.79,12424.5,5133.41,30403.7,92762.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1965,564.69,0.0,6668.22,7232.91,169.01,112.3,535.6,816.91,8049.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31411,65456.64,1609.61,770.7,67836.95,18121.05,12897.41,5123.42,36141.88,103978.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,36782,33578.7,1363.4,762.68,35704.78,5279.66,7920.62,2821.81,16022.09,51726.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,12488,37255.01,0.0,531.63,37786.64,8130.73,6642.34,3064.92,17837.99,55624.63 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",40188,69002.59,21644.31,11691.0,102337.9,15837.45,12349.54,8361.75,36548.74,138886.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,12213,58782.04,0.0,624.0,59406.04,12243.99,12424.5,5223.74,29892.23,89298.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",50398,131953.06,0.0,0.0,131953.06,26536.13,12424.5,17186.52,56147.15,188100.21 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),39470,67001.5,0.0,750.0,67751.5,13253.72,7884.78,5416.67,26555.17,94306.67 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,26218,2151.01,0.0,15329.79,17480.8,561.15,477.86,1342.72,2381.73,19862.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,38835,85047.31,6521.01,0.0,91568.32,17529.31,12424.5,7196.25,37150.06,128718.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,32060,56531.0,898.01,3920.55,61349.56,11788.47,12424.5,4999.27,29212.24,90561.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52068,112690.8,27576.45,2022.29,142289.54,22311.18,12424.5,2413.63,37149.31,179438.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,1199,13775.64,0.0,0.0,13775.64,104.23,4166.38,1066.71,5337.32,19112.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,15933,82883.0,724.01,9558.35,93165.36,19042.99,12424.5,7437.0,38904.49,132069.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,35070,116976.06,0.0,0.0,116976.06,23541.49,12424.49,9686.14,45652.12,162628.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,5419,80402.0,12126.38,357.53,92885.91,16570.54,12424.51,7582.15,36577.2,129463.11 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,30665,11938.2,2561.0,3547.0,18046.2,2917.42,2365.2,1475.75,6758.37,24804.57 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,33467,115541.02,0.0,360.0,115901.02,23328.14,12424.5,9467.06,45219.7,161120.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,27712,64463.7,14752.6,10934.4,90150.7,15133.69,12424.5,7138.91,34697.1,124847.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33149,2299.94,0.0,0.0,2299.94,0.0,1121.5,178.4,1299.9,3599.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,3121,11102.96,0.0,0.0,11102.96,0.0,3006.07,859.59,3865.66,14968.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,51323,93677.84,0.0,0.0,93677.84,19234.76,10802.93,7744.1,37781.79,131459.63 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,11755,18128.0,0.0,0.0,18128.0,3373.64,3822.92,1421.6,8618.16,26746.16 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,29678,64700.93,4841.46,0.0,69542.39,12607.1,7639.88,5436.63,25683.61,95226.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,647,40964.47,3928.81,933.95,45827.23,10927.96,12292.07,3475.77,26695.8,72523.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",5026,250.0,0.0,0.0,250.0,0.0,0.0,19.79,19.79,269.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,9360,64242.0,9989.08,1044.9,75275.98,13026.9,9079.47,5983.32,28089.69,103365.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",14874,134656.45,10207.07,8079.39,152942.91,28046.72,12382.69,2595.99,43025.4,195968.31 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,40520,141315.02,0.0,0.0,141315.02,28369.37,12089.99,10140.25,50599.61,191914.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",43704,37155.0,8345.02,0.0,45500.02,6914.56,4300.79,3641.51,14856.86,60356.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,1552,62811.0,38888.97,13372.46,115072.43,14791.81,12424.5,9298.42,36514.73,151587.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,2359,25177.0,0.0,2463.6,27640.6,5965.48,6690.11,2078.07,14733.66,42374.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11983,97776.12,54463.82,19245.03,171484.97,27748.8,12424.51,2876.02,43049.33,214534.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,27066,84644.0,39366.33,15330.71,139341.04,19258.45,12424.5,9996.44,41679.39,181020.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10634,22199.79,0.0,1749.21,23949.0,5638.75,5638.81,2061.53,13339.09,37288.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50440,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3378.43,18204.28,61971.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39173,101891.96,49709.29,7729.43,159330.68,21577.09,15052.77,2607.9,39237.76,198568.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,16689,91747.57,10853.33,1330.81,103931.71,18716.98,9557.31,1766.82,30041.11,133972.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17346,26863.82,6386.55,14360.88,47611.25,8629.77,5342.36,3681.28,17653.41,65264.66 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,26867,7788.0,0.0,611.35,8399.35,1794.59,1433.6,706.43,3934.62,12333.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,12769,6569.82,0.0,0.0,6569.82,0.0,1947.3,490.92,2438.22,9008.04 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,16939,11668.18,10.56,124.42,11803.16,0.0,2475.94,913.8,3389.74,15192.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",29507,144776.14,25541.93,21992.1,192310.17,32797.51,14645.02,3198.12,50640.65,242950.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13226,80946.04,6164.78,2799.3,89910.12,16744.9,12424.5,1498.31,30667.71,120577.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47000,97377.88,2648.08,6925.89,106951.85,25366.67,12376.72,1820.68,39564.07,146515.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12539,8256.52,0.0,446.33,8702.85,0.0,3138.49,675.16,3813.65,12516.5 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,41944,73914.86,0.0,1200.0,75114.86,15331.32,10766.32,5983.96,32081.6,107196.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,38768,92282.05,12023.66,12057.93,116363.64,19041.42,12424.5,9530.23,40996.15,157359.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,46636,93281.07,0.0,0.0,93281.07,19225.79,12424.5,7686.7,39336.99,132618.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10702,67792.28,30145.63,4485.84,102423.75,19767.26,13358.78,7642.69,40768.73,143192.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),251,75224.9,9638.67,1900.25,86763.82,15557.76,11465.78,1445.43,28468.97,115232.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3633,591.45,0.0,0.0,591.45,152.6,145.99,60.55,359.14,950.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,7429,8083.89,0.0,61.31,8145.2,0.0,0.0,668.7,668.7,8813.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,41489,42249.5,1017.97,6875.52,50142.99,9120.88,3822.92,834.54,13778.34,63921.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24709,112696.24,2684.24,11192.77,126573.25,22291.45,12424.5,2147.14,36863.09,163436.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14869,117135.31,56594.85,6126.82,179856.98,23184.68,12424.5,3006.65,38615.83,218472.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30064,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",35001,150233.98,56429.91,25112.1,231775.99,34403.07,15196.12,3892.48,53491.67,285267.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,19937,45376.01,0.0,0.0,45376.01,8642.77,6690.1,3415.07,18747.94,64123.95 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,12811,49356.3,0.0,0.0,49356.3,9886.82,8637.24,3758.37,22282.43,71638.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,26618,62811.07,0.0,2924.25,65735.32,13312.26,12424.5,5395.59,31132.35,96867.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,13003,116976.01,18690.03,4047.68,139713.72,23541.49,12424.5,10063.5,46029.49,185743.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,3470,2058.75,0.0,10.99,2069.74,0.0,358.4,160.65,519.05,2588.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,30691,21116.99,0.0,0.0,21116.99,4736.53,4543.48,1715.57,10995.58,32112.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,33861,69854.21,2473.32,3650.85,75978.38,14410.68,12361.78,6013.1,32785.56,108763.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,42138,75146.01,3673.26,5083.47,83902.74,15678.47,12348.64,6659.89,34687.0,118589.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,30232,56531.0,326.55,3920.55,60778.1,11788.47,12424.5,4972.11,29185.08,89963.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49089,63879.99,7673.45,2851.96,74405.4,15264.95,12595.4,5467.76,33328.11,107733.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42009,28063.51,0.0,0.0,28063.51,776.24,7598.06,2229.13,10603.43,38666.94 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,19630,15868.09,373.81,338.19,16580.09,0.0,3755.72,1284.45,5040.17,21620.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44078,92997.22,3657.86,18533.21,115188.29,19847.94,7987.22,8616.42,36451.58,151639.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6135,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2380.04,12833.39,44133.39 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8240,Pub Safety Communication Coord,1430,17123.8,2603.75,3531.65,23259.2,3365.36,1875.63,1870.42,7111.41,30370.61 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,15671,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8732.46,43128.77,149733.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,45897,9504.0,0.0,14.4,9518.4,2134.97,1433.6,788.69,4357.26,13875.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",52776,19626.66,0.0,1005.08,20631.74,0.0,3177.8,1599.53,4777.33,25409.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,380,63653.65,9398.47,4264.7,77316.82,18738.31,12554.66,5991.79,37284.76,114601.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,22585,83699.02,379.89,0.0,84078.91,17250.56,12424.5,7406.41,37081.47,121160.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2484,Biologist III,26839,114071.06,0.0,0.0,114071.06,23234.87,12424.5,8980.35,44639.72,158710.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29119,142047.73,1468.18,17197.81,160713.72,28107.84,12424.5,2739.35,43271.69,203985.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,23519,10488.9,0.0,73.58,10562.48,0.0,0.0,835.41,835.41,11397.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32352,39858.6,4556.13,1493.58,45908.31,10708.66,12456.98,3272.8,26438.44,72346.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48290,67371.81,5967.09,2953.28,76292.18,19238.81,13274.26,5734.6,38247.67,114539.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,12871,37760.0,0.0,10620.0,48380.0,8262.25,7645.85,3914.15,19822.25,68202.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,20595,45536.8,5353.63,4209.97,55100.4,11395.44,12400.61,4173.26,27969.31,83069.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,4658,84644.01,4234.87,6561.72,95440.6,18039.25,12424.5,7582.76,38046.51,133487.11 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,20008,224482.0,0.0,0.0,224482.0,45178.15,12424.5,19916.33,77518.98,302000.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28750,22099.0,1511.96,853.2,24464.16,0.0,5256.52,1897.21,7153.73,31617.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,14179,81561.72,0.0,0.0,81561.72,16759.54,12228.33,6641.24,35629.11,117190.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5123,52077.1,473.05,10400.79,62950.94,10933.15,5323.42,5048.9,21305.47,84256.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26106,5510.25,0.0,0.0,5510.25,0.0,2123.52,426.6,2550.12,8060.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,164.0,Physicians and Dentists - Miscellaneous,2500,Med Therapy & Auxiliary,2598,Asst Med Examiner,1016,279311.1,3829.36,114433.58,397574.04,56211.64,12424.5,14299.1,82935.24,480509.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,17451,190168.26,0.0,0.0,190168.26,38231.39,9999.34,10925.94,59156.67,249324.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,38820,71330.02,0.0,0.0,71330.02,14649.86,11946.64,5675.93,32272.43,103602.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45321,66260.92,15994.61,4549.02,86804.55,19419.46,13059.17,6566.84,39045.47,125850.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26388,113841.65,159.6,24708.17,138709.42,25522.37,11044.66,9751.93,46318.96,185028.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",13990,180297.37,59421.75,31697.9,271417.02,39986.61,15196.12,4588.39,59771.12,331188.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,16766,56531.11,132.67,4386.67,61050.45,12214.79,12424.5,4996.02,29635.31,90685.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,7779,81533.99,66489.0,4702.08,152725.07,17417.01,11883.39,10235.13,39535.53,192260.6 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,12057,112209.03,0.0,0.0,112209.03,22582.31,12424.5,8973.05,43979.86,156188.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,23981,63102.0,0.0,364.84,63466.84,13080.2,12424.5,5266.74,30771.44,94238.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",16332,93268.97,11253.6,270.4,104792.97,19272.89,12277.55,8446.14,39996.58,144789.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,44283,81942.0,20607.29,16028.62,118577.91,19068.98,12424.5,9255.51,40748.99,159326.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0951,Dep Dir I,28635,132704.12,0.0,0.0,132704.12,26666.95,12424.5,17273.24,56364.69,189068.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,11615,99986.71,0.0,0.0,99986.71,20597.57,12424.51,7699.94,40722.02,140708.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,8534,16711.0,0.0,0.0,16711.0,3109.92,2867.19,1369.85,7346.96,24057.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,21251,29256.7,0.0,180.0,29436.7,6602.64,4766.71,2376.56,13745.91,43182.61 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,42225,119066.0,4938.82,20981.39,144986.21,34060.02,12424.5,2470.54,48955.06,193941.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46063,140334.03,0.0,250.0,140584.03,28242.37,12424.5,10101.67,50768.54,191352.57 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39881,4209.52,0.0,147.0,4356.52,0.0,1796.06,337.28,2133.34,6489.86 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,42859,45079.0,394.05,0.0,45473.05,8860.86,8123.71,3643.25,20627.82,66100.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45580,56531.01,2961.96,3395.21,62888.18,11870.73,12424.5,5190.99,29486.22,92374.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7488,Power Generation Supervisor,6373,72023.89,11574.83,4000.01,87598.73,14139.44,7442.77,5680.36,27262.57,114861.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,338,17648.27,0.0,0.0,17648.27,0.0,0.0,1394.21,1394.21,19042.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,12506,47430.0,4335.9,0.0,51765.9,10481.57,7167.99,4239.81,21889.37,73655.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,48431,54110.44,0.0,1914.88,56025.32,12511.58,12242.8,4348.81,29103.19,85128.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,13197,110420.7,10473.76,21888.61,142783.07,24116.34,12257.25,10124.55,46498.14,189281.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39004,3200.65,0.0,0.0,3200.65,0.0,1343.99,256.24,1600.23,4800.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,22719,79722.0,1713.94,4969.0,86404.94,17488.12,12424.5,6901.74,36814.36,123219.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13577,66133.93,23560.38,5539.01,95233.32,19603.63,13032.53,7444.04,40080.2,135313.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,17905,54769.85,0.0,384.0,55153.85,11870.51,8589.63,4274.67,24734.81,79888.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,31195,139556.25,30233.0,41208.97,210998.22,27586.81,12424.5,3493.86,43505.17,254503.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,10929,113369.01,26502.56,9802.27,149673.84,24444.39,12424.4,10283.67,47152.46,196826.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28118,112159.75,26630.13,18636.83,157426.71,24840.73,15052.76,2690.63,42584.12,200010.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4267,2278.5,0.0,0.0,2278.5,0.0,1111.03,176.64,1287.67,3566.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9569,97582.71,3406.34,8280.58,109269.63,25761.27,12400.61,1804.44,39966.32,149235.95 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,1590,80972.35,0.0,0.0,80972.35,16489.89,10990.9,6477.53,33958.32,114930.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,43240,84599.04,0.0,1376.63,85975.67,17721.0,12424.5,7064.99,37210.49,123186.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21376,16103.32,0.0,564.51,16667.83,0.0,1358.81,1291.86,2650.67,19318.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3522,Senior Museum Preparator,41155,17007.0,273.53,0.0,17280.53,3739.81,3822.92,1380.22,8942.95,26223.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2416,Laboratory Technician II,40783,66102.01,80.27,624.0,66806.28,13752.75,12424.5,5363.11,31540.36,98346.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",24149,93738.0,5995.55,3561.27,103294.82,19809.92,12424.48,8293.67,40528.07,143822.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,34528,123912.17,0.0,19769.91,143682.08,24878.39,12424.5,10013.18,47316.07,190998.15 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,33638,14434.69,418.71,0.0,14853.4,0.0,3474.97,1150.83,4625.8,19479.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,27557,4094.5,0.0,0.0,4094.5,0.0,907.95,316.99,1224.94,5319.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",16529,54244.0,0.0,0.0,54244.0,9834.44,5256.52,7144.25,22235.21,76479.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,48914,137101.0,0.0,0.0,137101.0,27592.09,12424.51,27586.76,67603.36,204704.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,27521,117624.97,26024.8,14812.17,158461.94,23290.06,12424.5,2638.83,38353.39,196815.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23506,0.0,0.0,250.0,250.0,0.0,68.5,0.0,68.5,318.5 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0902,Mayoral Staff XIV,40766,119757.2,0.0,0.0,119757.2,24077.12,12287.12,27039.37,63403.61,183160.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43495,45283.75,2223.4,1557.61,49064.76,11907.26,10588.01,3527.85,26023.12,75087.88 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,375C,Court Training Specialist,17976,19015.22,0.0,3090.4,22105.62,4292.05,2375.0,1836.03,8503.08,30608.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,37823,24488.55,0.0,0.0,24488.55,2079.38,8004.25,1965.18,12048.81,36537.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21387,119547.81,3657.06,12270.04,135474.91,0.0,8959.56,9617.13,18576.69,154051.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7245,"Chf Statnry Eng,Wtrtreat Plnt",4871,118858.03,10729.88,12625.82,142213.73,24364.84,12424.51,10124.08,46913.43,189127.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,47207,87531.02,0.0,0.0,87531.02,18040.63,12424.5,7009.38,37474.51,125005.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,11831,94794.0,0.0,0.0,94794.0,19542.32,10035.18,7724.57,37302.07,132096.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,24744,7346.33,0.0,530.61,7876.94,0.0,2271.36,610.4,2881.76,10758.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21880,31728.75,0.0,4626.76,36355.51,0.0,2601.62,2820.26,5421.88,41777.39 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,48860,1665.4,0.0,0.0,1665.4,323.68,191.14,127.95,642.77,2308.17 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,32257,93499.02,0.0,1624.0,95123.02,19603.65,12424.5,7592.2,39620.35,134743.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,26991,71311.07,0.0,624.0,71935.07,14826.41,12424.5,5391.15,32642.06,104577.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,2313,78963.05,0.0,774.43,79737.48,16434.26,12424.5,6566.29,35425.05,115162.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,45336,3910.0,152.03,140.4,4202.43,1045.0,955.73,340.39,2341.12,6543.55 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,10429,77145.86,0.0,689.49,77835.35,16045.42,12141.36,6253.65,34440.43,112275.78 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,14548,0.0,0.0,46.96,46.96,0.0,0.0,3.59,3.59,50.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31636,139248.18,1310.35,11795.41,152353.94,25308.38,12328.92,8867.22,46504.52,198858.46 +Calendar,2015,6,General Administration & Finance,REG,Elections,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,20795,72153.02,0.0,0.0,72153.02,14871.05,12424.5,5921.1,33216.65,105369.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,14736,74073.2,0.0,0.0,74073.2,15238.95,12424.5,6025.95,33689.4,107762.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,34782,2886.86,0.0,0.0,2886.86,0.0,400.21,224.07,624.28,3511.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,28917,28405.93,0.0,43.08,28449.01,7134.31,7321.73,2236.21,16692.25,45141.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,39127,122851.36,917.81,1076.03,124845.2,24827.97,11930.76,9807.34,46566.07,171411.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36791,53527.33,23784.48,3965.61,81277.42,16303.43,10644.87,6352.05,33300.35,114577.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11148,119455.91,11933.86,26728.11,158117.88,23662.83,12424.5,2611.47,38698.8,196816.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,37126,138637.93,18389.4,2570.13,159597.46,27385.65,12424.5,2719.29,42529.44,202126.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,28800,12535.0,0.0,9876.86,22411.86,2884.07,2389.33,1806.33,7079.73,29491.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,20854,13235.0,0.0,0.0,13235.0,2463.05,2389.33,1092.14,5944.52,19179.52 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,10857,18741.84,0.0,546.15,19287.99,0.0,1786.02,1497.06,3283.08,22571.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18360,4146.28,0.0,0.0,4146.28,0.0,1797.97,328.48,2126.45,6272.73 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,6791,64511.0,0.0,0.0,64511.0,13295.97,12424.5,5350.31,31070.78,95581.78 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,50942,28268.0,0.0,0.0,28268.0,5260.69,5256.52,2279.41,12796.62,41064.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",10611,425.0,0.0,0.0,425.0,0.0,0.0,33.57,33.57,458.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,2255,58722.19,9746.87,1935.77,70404.83,12190.37,11686.86,5779.85,29657.08,100061.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",22758,126752.68,0.0,0.0,126752.68,25516.49,12388.67,24615.41,62520.57,189273.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52801,12641.82,0.0,0.0,12641.82,2779.94,3345.06,1025.77,7150.77,19792.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,21385,67034.9,0.0,0.0,67034.9,13491.02,7442.15,5153.15,26086.32,93121.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,17207,80747.68,13899.31,7922.68,102569.67,17336.54,10909.91,8394.22,36640.67,139210.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32208,55641.41,7312.4,5809.77,68763.58,16765.2,10967.49,5359.01,33091.7,101855.28 +Calendar,2015,1,Public Protection,PDR,Public Defender,1.0,Miscellaneous Unrepresented Employees,8400,Probation & Parole,8446,Court Alternative Specialist 1,2759,52390.9,0.0,0.0,52390.9,4061.42,11229.85,4371.03,19662.3,72053.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,31634,75658.09,0.0,594.9,76252.99,15791.52,11845.09,5982.36,33618.97,109871.96 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,40087,12320.0,0.0,0.0,12320.0,2292.76,1911.46,1001.83,5206.05,17526.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,27784,152890.35,0.0,775.41,153665.76,31150.96,11457.07,10194.09,52802.12,206467.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,33680,57554.69,0.0,0.0,57554.69,2484.08,8428.36,4654.53,15566.97,73121.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,33378,7026.0,0.0,0.0,7026.0,1307.54,955.73,542.14,2805.41,9831.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,49288,43905.01,0.0,0.0,43905.01,8811.44,9557.3,3505.11,21873.85,65778.86 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,10826,4932.02,0.0,0.0,4932.02,1106.26,955.73,404.84,2466.83,7398.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31168,97208.27,25222.29,8725.15,131155.71,25770.19,12352.59,2234.03,40356.81,171512.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24783,4724.83,0.0,0.0,4724.83,0.0,2048.85,365.8,2414.65,7139.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,25880,116976.04,0.0,0.0,116976.04,23541.49,12424.49,9344.66,45310.64,162286.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11235,25913.9,2040.72,870.2,28824.82,7070.85,8171.02,2163.29,17405.16,46229.98 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,5173,19394.9,0.0,0.0,19394.9,0.0,2580.48,1503.66,4084.14,23479.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,43793,116976.04,0.0,0.0,116976.04,23537.22,12424.5,9624.34,45586.06,162562.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7261,98877.87,9989.39,8373.82,117241.08,20526.87,12424.5,1954.91,34906.28,152147.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,26929,9904.6,0.0,477.1,10381.7,0.0,1481.86,803.75,2285.61,12667.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,53191,34736.0,1369.4,0.0,36105.4,7791.29,6212.25,2928.94,16932.48,53037.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,2072,77048.16,745.43,1580.0,79373.59,15120.03,11080.27,3914.48,30114.78,109488.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,10942,119066.01,12621.32,13591.49,145278.82,32250.46,12424.5,2467.27,47142.23,192421.05 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3554,Associate Museum Registrar,49404,3741.46,0.0,0.0,3741.46,0.0,960.21,289.67,1249.88,4991.34 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8228,Museum Sec Supv,37316,69827.32,4216.32,969.73,75013.37,14599.59,12350.79,5951.86,32902.24,107915.61 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1492,"Asst Clk, Board Of Supervisors",41281,101531.02,2121.93,0.0,103652.95,20939.92,12424.5,8517.06,41881.48,145534.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39373,313.0,0.0,0.0,313.0,56.75,47.79,24.3,128.84,441.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,8937,28697.28,0.0,0.0,28697.28,6478.58,6427.29,2348.06,15253.93,43951.21 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,38526,106508.03,0.0,0.0,106508.03,21950.06,12424.5,8359.95,42734.51,149242.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,7545,89210.08,0.0,0.0,89210.08,18396.36,12424.5,7334.1,38154.96,127365.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,25330,56531.0,285.73,3920.55,60737.28,11788.47,12424.5,4934.37,29147.34,89884.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,14029,79478.41,8841.99,6762.8,95083.2,17487.02,12424.51,7752.46,37663.99,132747.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32968,3499.38,0.0,405.93,3905.31,0.0,298.66,303.11,601.77,4507.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",41865,131564.8,39524.75,25026.61,196116.16,30833.78,15196.11,3246.6,49276.49,245392.65 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",6100,Health & Sanitation Inspection,6139,Senior Industrial Hygienist,1680,130910.04,0.0,0.0,130910.04,26341.75,12424.5,9913.12,48679.37,179589.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44287,98056.27,0.0,24603.15,122659.42,23289.55,8408.88,9819.9,41518.33,164177.75 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42627,184289.01,0.0,5248.28,189537.29,38144.36,12424.5,10924.72,61493.58,251030.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2550,53794.3,0.0,985.9,54780.2,925.27,0.0,4846.14,5771.41,60551.61 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,26815,94439.71,0.0,0.0,94439.71,19435.27,12424.5,7557.83,39417.6,133857.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,8376,63102.0,0.0,144.26,63246.26,13035.52,12424.5,4992.93,30452.95,93699.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20180,127922.82,569.9,14751.42,143244.14,26653.14,10660.35,7948.16,45261.65,188505.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2605,32307.72,9300.44,350.41,41958.57,7809.63,11881.05,3327.44,23018.12,64976.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,45407,28475.65,0.0,1140.97,29616.62,4808.37,5229.64,2376.68,12414.69,42031.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36365,8736.2,0.0,20.04,8756.24,0.0,2676.03,679.16,3355.19,12111.43 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0903,Mayoral Staff XV,16245,133480.07,0.0,0.0,133480.07,26863.05,12424.5,17252.83,56540.38,190020.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17989,29111.5,0.0,4535.61,33647.11,0.0,2532.69,2611.35,5144.04,38791.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,20268,55206.46,0.0,1262.46,56468.92,11487.86,12132.76,4431.25,28051.87,84520.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,16757,16294.6,380.56,3099.88,19775.04,1467.26,3201.71,1581.4,6250.37,26025.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36503,11221.87,0.0,0.0,11221.87,400.4,4804.21,916.3,6120.91,17342.78 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,51969,81995.84,2869.85,20.2,84885.89,16848.99,11982.06,6803.47,35634.52,120520.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51862,63027.61,488.05,688.38,64204.04,17482.46,12418.89,4871.23,34772.58,98976.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34248,11604.81,0.0,0.0,11604.81,1194.87,4969.79,938.55,7103.21,18708.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,45468,117140.92,49964.48,10999.57,178104.97,23164.17,12424.51,2839.62,38428.3,216533.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1664,Patient Accounts Manager,29875,84599.02,0.0,48.0,84647.02,17247.76,10990.9,6923.13,35161.79,119808.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13363,80459.47,0.0,13754.09,94213.56,15902.26,7023.43,3736.43,26662.12,120875.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12499,1473.88,0.0,22.99,1496.87,0.0,800.43,115.89,916.32,2413.19 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,30552,14038.14,0.0,0.0,14038.14,0.0,4418.76,1087.98,5506.74,19544.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,28726,90779.81,6079.77,2351.47,99211.05,18492.32,9455.76,1680.54,29628.62,128839.67 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2825,Senior Health Educator,49620,107631.74,0.0,0.0,107631.74,22049.58,12424.63,8748.08,43222.29,150854.03 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,32709,55734.65,0.0,0.0,55734.65,11096.43,7182.91,4111.5,22390.84,78125.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10059,124956.59,59071.83,9582.57,193610.99,24721.83,12424.5,3301.68,40448.01,234059.0 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,25417,244957.0,0.0,0.0,244957.0,49281.26,12424.46,11917.04,73622.76,318579.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,27399,199095.07,0.0,250.0,199345.07,40068.07,12424.5,11074.35,63566.92,262911.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,21056,42278.6,16571.89,2492.7,61343.19,7954.54,6164.48,4882.64,19001.66,80344.85 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8600,Emergency Services Assistant,50294,24293.24,300.83,1272.6,25866.67,5342.08,5150.5,1961.56,12454.14,38320.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46915,16813.69,0.0,791.5,17605.19,3191.83,1845.75,1419.72,6457.3,24062.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,6745,213831.76,0.0,0.0,213831.76,42934.06,12424.51,28925.05,84283.62,298115.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,2763,74182.42,0.0,0.0,74182.42,15038.66,10339.82,5987.11,31365.59,105548.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19962,109739.94,3399.9,12713.86,125853.7,19764.16,11052.73,9795.14,40612.03,166465.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,20674,25146.15,3384.89,2044.52,30575.56,5640.27,3345.06,2449.03,11434.36,42009.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,11862,16247.0,1602.16,696.0,18545.16,0.0,4300.79,1481.05,5781.84,24327.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2191,119000.17,914.8,13121.55,133036.52,26277.84,0.0,10007.14,36284.98,169321.5 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,28449,67911.04,5296.98,4406.4,77614.42,14392.24,12424.5,6355.01,33171.75,110786.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,24002,176526.52,0.0,0.0,176526.52,35531.06,12424.5,10786.68,58742.24,235268.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31676,108608.03,46805.78,12603.93,168017.74,22452.35,12370.45,2865.19,37687.99,205705.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,48972,68902.52,67.96,2864.79,71835.27,14735.01,12185.57,5951.94,32872.52,104707.79 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",6688,66183.25,15580.82,9196.38,90960.45,15117.77,11844.55,7218.73,34181.05,125141.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12746,7763.07,0.0,76.94,7840.01,0.0,662.98,606.98,1269.96,9109.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,5607,75403.67,1321.11,0.0,76724.78,15540.85,12423.96,6359.14,34323.95,111048.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,2049,70245.0,3073.34,9864.42,83182.76,15597.05,12424.5,6750.98,34772.53,117955.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,16424,65211.85,0.0,7584.89,72796.74,14396.32,12352.82,5994.16,32743.3,105540.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37222,67782.88,5472.94,2289.06,75544.88,19189.32,13355.74,5733.09,38278.15,113823.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3977,119455.85,23609.54,15211.72,158277.11,23662.8,12424.5,2675.08,38762.38,197039.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,24708,17523.0,0.0,467.28,17990.28,4641.5,3942.39,1392.87,9976.76,27967.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2392,Sr Cent Proc & Dist Tech,52930,90151.0,1094.32,4509.05,95754.37,18709.2,12424.5,7906.16,39039.86,134794.23 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),7953,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10982.49,60795.82,246584.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,14500,30970.0,0.0,0.0,30970.0,5763.55,4778.65,2506.87,13049.07,44019.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,50377,125534.12,0.0,250.0,125784.12,25235.4,12420.02,9830.88,47486.3,173270.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,11374,83342.18,0.0,0.0,83342.18,17183.19,12424.5,6707.04,36314.73,119656.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,9482,86663.04,5714.96,2336.35,94714.35,18292.86,12424.5,7496.8,38214.16,132928.51 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,3838,10035.85,0.0,0.0,10035.85,0.0,1696.41,798.14,2494.55,12530.4 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,8146,186119.0,0.0,55471.76,241590.76,50413.04,12424.5,2956.26,65793.8,307384.56 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8300,Correction & Detention,8552,Sr Da Investigator(SFERS),7010,41679.02,12136.08,2500.74,56315.84,8009.8,4300.79,899.43,13210.02,69525.86 +Calendar,2015,6,General Administration & Finance,REG,Elections,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,50347,140189.01,0.0,0.0,140189.01,28152.49,12430.47,17434.32,58017.28,198206.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",4055,177780.71,0.0,11196.84,188977.55,38163.65,9557.31,3177.14,50898.1,239875.65 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,0590,"Court Asst-Sr, Superior Court",29105,22572.3,0.0,8399.7,30972.0,5062.99,3201.7,8225.54,16490.23,47462.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3215,Aquatics Facility Supervisor,32205,75199.09,0.0,904.85,76103.94,15684.92,12424.5,6057.29,34166.71,110270.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,38396,9540.4,256.66,269.62,10066.68,795.1,2198.18,781.34,3774.62,13841.3 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,15854,19891.46,0.0,0.0,19891.46,5132.02,5202.76,1557.86,11892.64,31784.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,49049,24469.27,739.55,2333.66,27542.48,4877.61,4987.72,2098.72,11964.05,39506.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46322,12021.92,0.0,0.0,12021.92,2163.37,3118.07,1011.4,6292.84,18314.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32607,4219.28,0.0,15.28,4234.56,1360.44,0.0,482.92,1843.36,6077.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,38529,16317.79,0.0,0.0,16317.79,3588.29,2759.67,1313.57,7661.53,23979.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40996,7424.73,0.0,1131.41,8556.14,1975.08,3219.62,698.94,5893.64,14449.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,30855,92130.81,3591.26,1488.48,97210.55,19128.75,11683.81,8049.7,38862.26,136072.81 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,14629,51975.54,2761.56,563.08,55300.18,11391.15,10234.45,4512.63,26138.23,81438.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3546,Curator 4,50817,62883.05,0.0,0.0,62883.05,12542.5,9079.44,5195.7,26817.64,89700.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47245,11598.55,0.0,884.49,12483.04,2096.8,5029.53,1004.85,8131.18,20614.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,13924,85357.0,3792.87,577.65,89727.52,17311.91,10513.04,7390.83,35215.78,124943.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,15746,41996.23,237.92,5029.72,47263.87,10894.47,11069.57,3805.2,25769.24,73033.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,36580,84644.01,36113.07,8477.83,129234.91,18092.95,12424.5,9823.63,40341.08,169575.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,4027,30656.63,0.0,0.0,30656.63,5705.18,3906.55,2490.85,12102.58,42759.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,696,63102.01,23522.57,6255.5,92880.08,13893.1,12424.5,7337.93,33655.53,126535.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,31732,60.49,0.0,0.0,60.49,0.0,17.92,0.0,17.92,78.41 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,7591,57453.44,0.0,2666.94,60120.38,14453.41,4078.28,2044.64,20576.33,80696.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,51503,79722.02,5487.49,1653.0,86862.51,16770.2,12424.5,7100.54,36295.24,123157.75 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",7300,Journeyman Trade,7303,Barber,14618,3654.51,0.0,170.49,3825.0,0.0,832.98,296.53,1129.51,4954.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3757,136071.0,0.0,22321.83,158392.83,29450.63,12424.5,10167.17,52042.3,210435.13 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,19227,66744.7,0.0,3559.72,70304.42,13905.7,11144.3,6360.33,31410.33,101714.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,434,3429.98,0.0,0.0,3429.98,0.0,1487.36,273.02,1760.38,5190.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17570,5600.0,0.0,0.0,5600.0,0.0,1672.53,448.36,2120.89,7720.89 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,5405,8312.24,32.0,22.91,8367.15,0.0,2502.81,661.18,3163.99,11531.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25510,65022.43,18413.46,649.93,84085.82,17945.92,12809.3,6351.29,37106.51,121192.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,4916,26418.1,1383.64,4259.22,32060.96,6658.65,6881.25,2596.54,16136.44,48197.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,5197,65679.92,1916.12,8478.59,76074.63,12478.03,7167.98,5822.33,25468.34,101542.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45009,10408.2,0.0,410.02,10818.22,0.0,788.48,837.54,1626.02,12444.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2882,62440.83,8302.41,748.89,71492.13,14291.5,12295.24,5457.67,32044.41,103536.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52800,17440.69,2805.06,552.21,20797.96,4315.0,5387.82,1589.46,11292.28,32090.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3260,Crafts Instructor,48850,32788.01,0.0,10751.84,43539.85,7385.28,6690.11,3550.39,17625.78,61165.63 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,36689,90416.97,0.0,100.0,90516.97,18642.56,12376.71,7431.26,38450.53,128967.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,15469,119321.02,0.0,0.0,119321.02,24013.56,12424.5,9567.18,46005.24,165326.26 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,39024,106605.04,0.0,0.0,106605.04,21971.81,12424.5,8551.11,42947.42,149552.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36712,67916.94,21380.84,686.45,89984.23,18785.33,13382.67,7369.02,39537.02,129521.25 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,9646,133097.2,0.0,3612.0,136709.2,33320.95,11790.19,2319.07,47430.21,184139.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,38538,22134.03,0.0,9065.85,31199.88,4964.68,3345.06,2527.6,10837.34,42037.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13324,0.0,0.0,764.85,764.85,0.0,0.0,58.51,58.51,823.36 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,22278,32065.02,370.13,0.0,32435.15,6377.89,7167.99,2549.1,16094.98,48530.13 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8445,101752.5,47757.29,16824.07,166333.86,23581.96,15052.76,2780.43,41415.15,207749.01 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,37690,396.0,18.56,0.0,414.56,0.0,95.58,32.18,127.76,542.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19067,39915.14,4507.51,493.8,44916.45,9635.28,10569.31,3610.18,23814.77,68731.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48937,11199.08,0.0,57.37,11256.45,0.0,4856.3,901.35,5757.65,17014.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,16414,0.0,0.0,29.68,29.68,0.0,0.0,0.0,0.0,29.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28250,20922.38,2921.42,624.95,24468.75,5215.74,6481.88,1870.82,13568.44,38037.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,25939,14175.3,0.0,3707.32,17882.62,2638.05,1959.25,1212.55,5809.85,23692.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,9671,58581.51,1980.97,3225.41,63787.89,13725.78,12424.51,5113.22,31263.51,95051.4 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,30835,33637.97,0.0,240.0,33877.97,6746.08,5871.77,2283.65,14901.5,48779.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,15069,36456.96,0.0,616.78,37073.74,8908.71,9003.29,2960.63,20872.63,57946.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,25376,99827.08,962.13,624.0,101413.21,20755.3,12424.5,8402.84,41582.64,142995.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,40610,51015.01,9141.22,3401.41,63557.64,11039.66,9079.44,5188.81,25307.91,88865.55 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,41871,51732.0,17136.24,0.0,68868.24,11349.96,5734.39,5523.42,22607.77,91476.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32229,116430.24,1356.25,7892.94,125679.43,21158.21,11048.61,9462.5,41669.32,167348.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,33341,8271.79,0.0,0.0,8271.79,0.0,3000.1,641.07,3641.17,11912.96 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",38356,69022.62,14790.28,2660.3,86473.2,16355.61,12353.66,1746.91,30456.18,116929.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,36923,4036.92,0.0,8.16,4045.08,0.0,1887.55,313.71,2201.26,6246.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,26926,66869.44,855.3,855.0,68579.74,13836.07,10814.09,5632.34,30282.5,98862.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,48863,5044.98,0.0,335.73,5380.71,0.0,1669.54,416.57,2086.11,7466.82 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,26904,44160.0,0.0,5576.04,49736.04,9698.57,4778.65,3971.3,18448.52,68184.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,36355,137809.5,26219.39,21434.19,185463.08,27243.14,12424.51,3108.73,42776.38,228239.46 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,27826,59395.05,0.0,2023.55,61418.6,12208.72,9557.31,4929.31,26695.34,88113.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44803,56314.91,0.0,993.15,57308.06,11611.09,12376.71,4749.49,28737.29,86045.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,9962,19449.0,0.0,10304.15,29753.15,4410.9,4300.79,2401.01,11112.7,40865.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,6969,39199.0,526.97,222.91,39948.88,9355.97,11803.27,3185.26,24344.5,64293.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,2385,73957.01,5021.06,624.0,79602.07,15371.59,12424.5,6329.0,34125.09,113727.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27716,60347.67,16721.76,6455.07,83524.5,11885.96,6212.26,1395.06,19493.28,103017.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,24536,112233.19,0.0,0.0,112233.19,22552.72,12424.5,16751.88,51729.1,163962.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",5009,158707.02,0.0,0.0,158707.02,31940.4,12424.5,27916.91,72281.81,230988.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,49567,68200.88,0.0,0.0,68200.88,14056.52,12407.72,5548.79,32013.03,100213.91 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4334,"Investigator, Tax Collector",9615,89197.82,0.0,0.0,89197.82,18403.18,12293.09,7349.16,38045.43,127243.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38815,72354.12,13450.62,5558.83,91363.57,15545.8,9073.47,1513.95,26133.22,117496.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5367,19288.55,0.0,0.0,19288.55,982.22,8302.91,1563.28,10848.41,30136.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,40785,100761.02,902.71,5634.95,107298.68,21805.34,12424.5,8786.56,43016.4,150315.08 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,39180,51070.27,2827.06,499.7,54397.03,11611.24,10428.58,4797.24,26837.06,81234.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35938,113233.59,71026.45,18729.23,202989.27,24917.38,15196.12,3408.67,43522.17,246511.44 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,23763,80550.75,0.0,1180.0,81730.75,16843.4,12421.52,6645.83,35910.75,117641.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,42394,53271.82,40.52,658.65,53970.99,11053.04,11705.32,4354.85,27113.21,81084.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,40118,3442.99,579.96,18.9,4041.85,0.0,1140.91,313.55,1454.46,5496.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,30304,17193.0,56.43,931.52,18180.95,3373.14,2867.19,1441.03,7681.36,25862.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,17874,6888.08,0.0,49.05,6937.13,0.0,2496.84,537.67,3034.51,9971.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,40012,3670.0,0.0,461.97,4131.97,844.76,955.73,318.73,2119.22,6251.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38942,56024.98,5167.21,880.49,62072.68,13707.02,12487.7,4524.25,30718.97,92791.65 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8217,Comm Pol Svcs Aide Supervisor,37890,78610.14,0.0,8347.0,86957.14,17441.18,12424.5,6929.11,36794.79,123751.93 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,4265,92282.0,0.0,0.0,92282.0,19019.5,12424.5,7541.58,38985.58,131267.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1024,IS Administrator-Supervisor,10638,104601.04,0.0,7911.82,112512.86,21548.2,12424.5,8710.48,42683.18,155196.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14770,41923.54,6004.85,2275.12,50203.51,11466.02,13047.94,3584.33,28098.29,78301.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,48627,8191.79,0.0,0.0,8191.79,0.0,2967.25,634.96,3602.21,11794.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29086,62240.47,133.58,3517.36,65891.41,0.0,0.0,5212.07,5212.07,71103.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15119,97763.56,1908.05,18614.48,118286.09,27587.9,12424.5,1948.76,41961.16,160247.25 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,2659,150144.87,0.0,0.0,150144.87,30156.68,12424.5,18646.06,61227.24,211372.11 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",20372,36708.2,7273.1,2369.95,46351.25,8674.56,6144.15,934.36,15753.07,62104.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7054,91358.07,6773.48,8820.13,106951.68,18594.72,10990.9,2455.53,32041.15,138992.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,28887,14328.0,59.56,0.0,14387.56,3213.78,2867.19,1138.16,7219.13,21606.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29891,4877.96,0.0,184.33,5062.29,0.0,1215.57,392.29,1607.86,6670.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,13199,103549.11,0.0,155.91,103705.02,21400.85,12273.97,8429.9,42104.72,145809.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,11944,74165.08,0.0,624.0,74789.08,15414.46,12424.5,5718.32,33557.28,108346.36 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2533,Emergency Med Svcs Agency Spec,27433,11504.99,0.0,14910.67,26415.66,2524.19,1275.3,2103.61,5903.1,32318.76 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,41086,10204.01,0.0,0.0,10204.01,2288.76,1911.45,803.55,5003.76,15207.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,31353,49679.02,0.0,5796.9,55475.92,13086.1,12424.5,4532.8,30043.4,85519.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43910,59336.41,18342.09,1520.0,79198.5,13560.84,12424.5,6311.35,32296.69,111495.19 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,30893,54124.02,457.89,1679.0,56260.91,12484.65,12424.5,4547.9,29457.05,85717.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29988,5348.25,0.0,0.0,5348.25,0.0,2257.91,430.53,2688.44,8036.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39766,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17,28483.0,0.0,0.0,28483.0,5163.98,4348.58,2194.73,11707.29,40190.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,23240,5953.51,0.0,80.0,6033.51,1353.32,955.73,527.7,2836.75,8870.26 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),17767,183561.73,0.0,5233.73,188795.46,38009.87,12376.71,11034.66,61421.24,250216.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7225,Transit Paint Shop Sprv1,14706,0.0,0.0,961.18,961.18,0.0,0.0,73.53,73.53,1034.71 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,656,67003.93,0.0,0.0,67003.93,13814.97,12376.71,5452.22,31643.9,98647.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27575,109871.21,2040.98,11615.74,123527.93,23032.03,10656.76,9884.0,43572.79,167100.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",9060,82482.94,31315.46,12495.86,126294.26,18615.78,12416.62,9819.21,40851.61,167145.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38932,53315.57,559.25,1636.79,55511.61,0.0,4656.5,4304.03,8960.53,64472.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,25296,97934.02,0.0,424.61,98358.63,20270.1,12424.5,7865.16,40559.76,138918.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,9647,70069.0,0.0,6110.2,76179.2,14211.51,10513.03,6108.97,30833.51,107012.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4913,112159.74,60872.87,16510.88,189543.49,24465.41,15052.76,3138.19,42656.36,232199.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23110,26178.36,4136.86,1136.67,31451.89,7868.19,5206.04,2436.29,15510.52,46962.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17471,67188.92,7721.7,2742.9,77653.52,19165.6,13242.19,5801.33,38209.12,115862.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15267,67000.54,10609.28,2011.68,79621.5,18874.4,13199.96,6209.11,38283.47,117904.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,23546,101733.0,1318.1,8138.64,111189.74,22644.57,12424.51,8888.88,43957.96,155147.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5388,1784.25,0.0,297.38,2081.63,0.0,143.35,160.45,303.8,2385.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,274,97424.0,4014.95,1092.0,102530.95,20299.55,12424.54,8410.92,41135.01,143665.96 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,40435,93048.67,1581.45,7731.29,102361.41,19790.52,12340.88,8458.41,40589.81,142951.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,281,9388.0,0.0,0.0,9388.0,2064.42,2628.26,757.05,5449.73,14837.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22653,56531.01,0.0,4114.9,60645.91,12297.07,12424.5,4761.66,29483.23,90129.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,953,23703.95,0.0,0.0,23703.95,4297.52,4011.09,1827.0,10135.61,33839.56 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,3832,5126.0,0.0,0.0,5126.0,929.34,477.86,85.71,1492.91,6618.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,4612,65774.0,5448.95,6307.15,77530.1,14856.03,12424.5,6260.89,33541.42,111071.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,47583,112776.0,13612.69,0.0,126388.69,22696.41,12424.5,9880.25,45001.16,171389.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50408,5702.86,0.0,97.76,5800.62,433.41,2472.95,472.39,3378.75,9179.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,52649,72123.9,19462.39,4312.27,95898.56,15180.76,10951.86,7790.93,33923.55,129822.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9255,66345.47,13221.2,1849.25,81415.92,18682.11,13073.98,6327.5,38083.59,119499.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32164,126300.6,14559.48,8061.78,148921.86,26531.3,11182.06,8275.39,45988.75,194910.61 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,45011,108371.46,4728.23,10608.44,123708.13,28936.22,12424.5,2079.3,43440.02,167148.15 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,12888,197054.0,0.0,0.0,197054.0,39578.17,12288.31,18309.77,70176.25,267230.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,759,56314.04,107.47,8998.55,65420.06,13227.15,11134.56,5399.1,29760.81,95180.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,45812,45450.49,6572.49,2468.38,54491.36,11445.71,11990.16,4406.88,27842.75,82334.11 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,8242,3289.16,0.0,0.0,3289.16,0.0,988.58,255.29,1243.87,4533.03 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,44545,72699.05,0.0,657.45,73356.5,15119.23,12424.5,6030.23,33573.96,106930.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,3465,113007.24,28756.79,12391.81,154155.84,22868.32,12424.5,2528.07,37820.89,191976.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,15458,95053.01,0.0,9477.78,104530.79,21544.96,12424.5,8599.86,42569.32,147100.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,486,118708.5,3339.45,19949.33,141997.28,24505.15,11029.14,5583.7,41117.99,183115.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12080,67369.37,12759.61,3520.36,83649.34,19401.89,13275.88,6187.86,38865.63,122514.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,16867,67261.01,3561.86,0.0,70822.87,13862.82,12424.5,5748.28,32035.6,102858.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,36693,49083.1,527.99,740.0,50351.09,10147.26,10990.9,3753.12,24891.28,75242.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,11119,67261.01,195.58,672.21,68128.8,13991.51,12424.5,5602.14,32018.15,100146.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,26727,144706.06,0.0,4878.0,149584.06,28801.6,12424.5,9277.94,50504.04,200088.1 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0655,"Counselor, Family Court Svc",15674,96362.92,0.0,7262.73,103625.65,20579.82,11517.87,8300.24,40397.93,144023.58 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,24566,15655.84,0.0,0.0,15655.84,0.0,3739.3,1213.81,4953.11,20608.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,5589,54899.0,0.0,0.0,54899.0,9953.18,4300.79,4060.1,18314.07,73213.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19719,26146.95,89.24,4515.95,30752.14,864.37,0.0,4910.21,5774.58,36526.72 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43848,95376.78,53835.05,15565.05,164776.88,26971.36,12120.04,2763.25,41854.65,206631.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,38573,70791.0,1160.36,1220.4,73171.76,14843.53,12424.51,5692.41,32960.45,106132.21 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,30567,106103.34,0.0,0.0,106103.34,21868.01,12423.01,9213.2,43504.22,149607.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,24722,102512.02,0.0,0.0,102512.02,21123.9,12418.53,8406.53,41948.96,144460.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,51031,23931.3,20089.41,3121.07,47141.78,6095.8,6331.72,3741.41,16168.93,63310.71 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,50526,5780.0,0.0,0.0,5780.0,1075.66,955.73,406.79,2438.18,8218.18 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,1235,57633.21,357.45,1000.0,58990.66,12032.53,11851.07,4678.62,28562.22,87552.88 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,47175,60271.5,0.0,25190.87,85462.37,13223.62,5495.46,10537.56,29256.64,114719.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,28133,93322.91,0.0,1105.56,94428.47,19456.09,12376.71,7830.84,39663.64,134092.11 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1936,Senior Storekeeper,43729,63102.01,0.0,0.0,63102.01,13005.54,12424.5,5224.2,30654.24,93756.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,15956,11447.49,0.0,0.0,11447.49,2953.51,3788.34,957.46,7699.31,19146.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22709,112685.43,912.5,1645.8,115243.73,22330.93,12424.5,1668.94,36424.37,151668.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,26373,854.05,0.0,0.0,854.05,213.0,370.34,73.76,657.1,1511.15 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,35190,68067.12,0.0,624.0,68691.12,14153.9,12424.5,5497.11,32075.51,100766.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,31045,12246.0,0.0,0.0,12246.0,2278.98,1433.59,960.54,4673.11,16919.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,5052,24649.35,4.04,2656.46,27309.85,6331.59,6236.14,2163.13,14730.86,42040.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",40347,106090.03,11646.2,174.0,117910.23,21865.57,12424.5,9593.64,43883.71,161793.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29855,5405.15,0.0,0.0,5405.15,0.0,2281.81,426.94,2708.75,8113.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29344,75550.32,10899.31,1480.0,87929.63,15848.85,12424.5,7188.94,35462.29,123391.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,7409,34263.0,318.18,839.82,35421.0,7189.75,7435.05,2935.96,17560.76,52981.76 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,3200,96857.31,0.0,0.0,96857.31,19927.06,12376.71,7469.75,39773.52,136630.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38385,97778.84,69099.04,20452.21,187330.09,28762.07,12424.5,3185.86,44372.43,231702.52 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,27754,48318.25,0.0,10254.29,58572.54,11131.05,2747.73,4636.51,18515.29,77087.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,17282,64463.78,40195.75,16040.4,120699.93,15964.71,12424.5,9555.92,37945.13,158645.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40271,65880.81,21988.26,3743.78,91612.85,19072.17,12982.41,7124.49,39179.07,130791.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,45098,198901.81,0.0,0.0,198901.81,39982.99,12424.51,11159.47,63566.97,262468.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43453,119288.38,7352.87,14660.9,141302.15,23611.07,12406.59,2408.17,38425.83,179727.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20266,65975.89,9518.48,1942.68,77437.05,18544.46,12998.91,5904.82,37448.19,114885.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,33476,26876.48,0.0,69.23,26945.71,0.0,5959.88,2088.72,8048.6,34994.31 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,9828,34703.0,0.0,0.0,34703.0,625.11,5017.59,2736.66,8379.36,43082.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52106,68651.63,17699.29,6953.55,93304.47,20718.61,13527.35,7297.9,41543.86,134848.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51338,66879.53,4630.42,938.92,72448.87,15449.36,13180.3,5471.61,34101.27,106550.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43823,2172.62,0.0,0.0,2172.62,0.0,543.58,168.2,711.78,2884.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,14120,3596.25,0.0,113.66,3709.91,0.0,1172.26,287.95,1460.21,5170.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24837,98741.44,12692.29,10906.74,122340.47,20483.52,12424.5,2040.58,34948.6,157289.07 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,41730,74271.39,0.0,0.0,74271.39,15309.6,12418.53,5374.61,33102.74,107374.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2696,69212.41,22642.82,5111.12,96966.35,20408.48,13642.1,7573.75,41624.33,138590.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21769,126493.15,2871.54,15887.08,145251.77,17164.91,10862.18,4315.62,32342.71,177594.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,2587,67897.5,17759.84,3044.34,88701.68,14614.43,12373.73,6844.87,33833.03,122534.71 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,51379,6626.0,0.0,0.0,6626.0,1233.1,955.73,473.08,2661.91,9287.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30119,37452.5,0.0,2326.61,39779.11,0.0,3136.0,3087.5,6223.5,46002.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5306,Traffic Sign Manager,26900,76431.01,0.0,0.0,76431.01,15244.7,9079.4,6252.01,30576.11,107007.12 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,14960,138107.27,0.0,0.0,138107.27,27827.15,12281.15,10223.9,50332.2,188439.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,2487,4128.0,0.0,9743.37,13871.37,999.69,477.86,1072.29,2549.84,16421.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2577,Med Examiner's Investigator I,2970,68082.0,13766.29,1962.25,83810.54,14106.64,11946.64,6769.68,32822.96,116633.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5299,43600.75,6866.1,882.61,51349.46,11524.95,12982.18,3937.27,28444.4,79793.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,51442,18204.7,0.0,1423.21,19627.91,0.0,5935.44,1555.01,7490.45,27118.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,48949,112685.48,21432.63,5510.3,139628.41,22330.93,12424.5,2332.25,37087.68,176716.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,46564,72522.0,0.0,0.0,72522.0,14944.42,12424.5,5880.0,33248.92,105770.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,42191,48010.01,0.0,0.0,48010.01,11515.23,12424.5,3980.66,27920.39,75930.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,12575,63887.0,5807.52,820.0,70514.52,13340.62,12424.51,5730.55,31495.68,102010.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,34583,57191.57,258.84,1728.05,59178.46,11875.2,11309.99,4902.18,28087.37,87265.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11994,27654.41,2437.37,1067.26,31159.04,7195.68,8605.29,2240.13,18041.1,49200.14 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,26011,31303.86,0.0,257.4,31561.26,0.0,5125.11,2447.11,7572.22,39133.48 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",14774,198139.01,0.0,5525.28,203664.29,40987.79,12424.5,11314.04,64726.33,268390.62 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,40715,129617.24,68313.59,16202.11,214132.94,28633.41,15052.76,549.95,44236.12,258369.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,37300,56031.4,0.0,0.0,56031.4,11506.1,11928.71,4463.14,27897.95,83929.35 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,33963,208032.0,0.0,1500.0,209532.0,42167.46,12424.5,11342.7,65934.66,275466.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,50293,51405.0,19.16,2499.18,53923.34,12494.13,12424.5,4168.91,29087.54,83010.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12333,66608.49,13869.72,1239.6,81717.81,18573.95,13127.26,6177.58,37878.79,119596.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27096,87109.6,0.0,19235.81,106345.41,1226.23,5840.89,6580.66,13647.78,119993.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3260,Crafts Instructor,23612,13173.78,0.0,1296.87,14470.65,3000.66,2688.0,1197.96,6886.62,21357.27 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,53111,12468.0,0.0,0.0,12468.0,2320.28,0.0,1013.86,3334.14,15802.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32857,63544.16,6753.64,638.33,70936.13,14575.91,12519.24,5203.12,32298.27,103234.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,48292,0.0,0.0,7828.88,7828.88,0.0,0.0,598.91,598.91,8427.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,18115,9593.0,3208.98,0.0,12801.98,2109.5,2867.19,867.51,5844.2,18646.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,17931,31305.03,2501.82,612.61,34419.46,5553.18,2389.33,577.91,8520.42,42939.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51189,33317.17,4048.59,10131.28,47497.04,10187.36,6625.72,3660.76,20473.84,67970.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,40797,89028.08,6708.57,0.0,95736.65,18349.07,12424.5,7629.07,38402.64,134139.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,35122,63881.2,565.33,2423.62,66870.15,14746.77,12423.41,5282.93,32453.11,99323.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,52759,6678.56,0.0,0.0,6678.56,0.0,925.86,518.36,1444.22,8122.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,43888,17619.53,1752.11,2561.4,21933.04,4210.65,3534.71,1777.98,9523.34,31456.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,48395,5723.2,269.05,179.86,6172.11,0.0,2676.05,478.69,3154.74,9326.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,47440,54996.3,0.0,0.0,54996.3,13167.84,12424.5,4430.88,30023.22,85019.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,40513,31305.05,4496.74,2814.02,38615.81,5553.18,2389.33,650.08,8592.59,47208.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,2583,31305.03,2518.62,3148.03,36971.68,5553.18,2389.33,620.72,8563.23,45534.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,44749,68150.0,646.88,0.0,68796.88,12762.25,11504.61,5548.14,29815.0,98611.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51833,64140.39,1920.5,1526.46,67587.35,14938.8,12637.15,4939.3,32515.25,100102.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40428,46241.9,0.0,1920.0,48161.9,569.15,0.0,5175.91,5745.06,53906.96 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,5601,85004.07,2186.08,9459.64,96649.79,19088.48,12424.5,7778.29,39291.27,135941.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39960,51256.25,12119.14,741.13,64116.52,12822.17,11532.87,4853.35,29208.39,93324.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,2933,55591.62,0.0,183.71,55775.33,11490.84,12424.5,4536.19,28451.53,84226.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,45329,77810.78,25992.42,5521.19,109324.39,16056.3,11415.01,9062.15,36533.46,145857.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,47379,62468.81,18002.7,3830.29,84301.8,13157.99,12424.51,6885.15,32467.65,116769.45 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,40389,198134.55,536.78,2885.75,201557.08,38312.51,12376.71,11056.13,61745.35,263302.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,39913,31465.71,0.0,0.0,31465.71,0.0,3028.46,2437.12,5465.58,36931.29 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,8757,34093.09,0.0,0.0,34093.09,8467.68,8129.68,2784.85,19382.21,53475.3 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,6448,31551.17,0.0,0.0,31551.17,888.82,6439.23,2507.77,9835.82,41386.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,48562,55516.06,0.0,6752.64,62268.7,13308.09,12348.64,5089.71,30746.44,93015.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1299,70513.5,5710.9,8583.38,84807.78,15796.83,12472.29,6706.35,34975.47,119783.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43503,2058.0,0.0,46.06,2104.06,0.0,1003.51,163.27,1166.78,3270.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16146,65196.12,1536.8,2497.89,69230.81,18533.47,12847.23,5226.89,36607.59,105838.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,1410,55020.82,0.0,3179.85,58200.67,13178.87,12411.06,4687.76,30277.69,88478.36 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,21121,122217.01,0.0,0.0,122217.01,24596.62,12424.5,9804.25,46825.37,169042.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,34114,71644.95,15984.85,7072.83,94702.63,16677.57,9724.56,7729.3,34131.43,128834.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",22650,93738.0,3896.68,3443.76,101078.44,19788.96,12424.51,8281.82,40495.29,141573.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3708,112159.75,27603.94,20242.75,160006.44,25456.24,15052.76,2030.5,42539.5,202545.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2264,6222.75,0.0,0.0,6222.75,0.0,2637.22,498.41,3135.63,9358.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",52110,72642.51,5995.8,1317.57,79955.88,15685.02,9641.95,6299.94,31626.91,111582.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14421,112690.79,4479.15,4652.49,121822.43,22311.19,12424.5,1503.4,36239.09,158061.52 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,44694,118895.51,0.0,0.0,118895.51,24066.4,11748.02,9666.75,45481.17,164376.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,30172,64814.7,20757.27,32407.35,117979.32,14283.55,6546.76,9465.58,30295.89,148275.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,29626,32949.0,0.0,0.0,32949.0,6649.23,4300.8,2618.93,13568.96,46517.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,35528,107842.12,2667.98,0.0,110510.1,22226.62,12424.5,8835.06,43486.18,153996.28 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,42848,13455.41,0.0,3000.0,16455.41,2504.06,2389.33,1301.14,6194.53,22649.94 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,51412,50040.43,0.0,0.0,50040.43,11992.99,12424.5,3974.34,28391.83,78432.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,52657,7543.47,0.0,0.0,7543.47,0.0,2729.8,584.68,3314.48,10857.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,45871,137995.78,52574.47,5120.07,195690.32,27293.27,12367.75,3315.52,42976.54,238666.86 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,25294,234745.19,0.0,13579.85,248325.04,49970.03,12421.52,12084.99,74476.54,322801.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38264,7510.71,572.57,27.42,8110.7,1781.38,2263.83,622.25,4667.46,12778.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37977,13069.41,0.0,219.36,13288.77,0.0,3264.42,1030.35,4294.77,17583.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,25149,8740.38,0.0,61.31,8801.69,0.0,3168.84,682.17,3851.01,12652.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",5731,125.0,0.0,0.0,125.0,0.0,29.87,9.69,39.56,164.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,40940,9245.7,0.0,0.0,9245.7,0.0,2723.83,717.61,3441.44,12687.14 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,23846,61712.34,0.0,0.0,61712.34,13781.83,12424.5,4905.22,31111.55,92823.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7319,Electric Motor Repairer,18595,84530.81,15412.42,2671.33,102614.56,17419.39,12407.79,8199.38,38026.56,140641.12 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50844,3217.92,0.0,0.0,3217.92,0.0,803.41,249.76,1053.17,4271.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17269,140511.36,0.0,2046.48,142557.84,0.0,12257.24,2915.92,15173.16,157731.0 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,36930,53592.03,0.0,0.0,53592.03,10919.34,10990.91,4264.52,26174.77,79766.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34732,67490.44,7421.71,3602.16,78514.31,19464.53,13297.2,6075.07,38836.8,117351.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,31037,70973.06,0.0,0.0,70973.06,14621.78,12424.5,5623.24,32669.52,103642.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,47538,39612.0,1056.0,1320.97,41988.97,7608.35,5256.52,3348.41,16213.28,58202.25 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,30022,39158.12,0.0,0.0,39158.12,7381.92,4761.87,3058.45,15202.24,54360.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,44853,357.85,0.0,35.79,393.64,1688.19,0.0,603.16,2291.35,2684.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35377,4891.55,0.0,0.0,4891.55,1071.1,1618.77,422.74,3112.61,8004.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,50252,61189.4,0.0,0.0,61189.4,12616.19,12376.71,5010.24,30003.14,91192.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,17805,117124.05,32894.44,10901.96,160920.45,23225.7,12424.5,2704.99,38355.19,199275.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35818,77061.87,0.0,1120.0,78181.87,16112.45,12423.0,6050.34,34585.79,112767.66 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,372C,Administrative Analyst II,3894,10381.6,0.0,0.0,10381.6,1932.04,1815.89,843.06,4590.99,14972.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,33726,84644.0,41269.93,6679.5,132593.43,17910.59,12424.51,9949.39,40284.49,172877.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11513,97192.46,4854.9,10377.51,112424.87,20190.9,12424.5,1875.85,34491.25,146916.12 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,34270,105840.11,0.0,5821.19,111661.3,22651.72,11568.46,9054.16,43274.34,154935.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",13280,83020.22,8752.2,10650.73,102423.15,19657.52,9318.38,8346.11,37322.01,139745.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,6558,4898.01,0.0,0.0,4898.01,1098.62,955.73,400.95,2455.3,7353.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,11927,3912.15,0.0,0.0,3912.15,0.0,1403.73,314.26,1717.99,5630.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,44373,21910.01,0.0,0.0,21910.01,5632.66,6690.11,1787.03,14109.8,36019.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,47962,63102.0,0.0,1821.88,64923.88,13380.61,12424.5,5377.44,31182.55,96106.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,14180,20078.5,0.0,0.0,20078.5,3736.6,2628.26,1530.8,7895.66,27974.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,17160,73772.5,5545.26,3961.42,83279.18,15790.09,11946.63,6235.78,33972.5,117251.68 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9157,Claims Adjuster,17415,26207.0,0.0,0.0,26207.0,4877.12,3345.06,2087.05,10309.23,36516.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50717,119860.04,0.0,23080.69,142940.73,27259.54,10915.34,9872.52,48047.4,190988.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24939,133585.9,569.9,13421.65,147577.45,27477.55,11134.27,4396.96,43008.78,190586.23 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1814,Benefits Supervisor,8347,48182.08,0.0,0.0,48182.08,0.0,5465.59,3735.13,9200.72,57382.8 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,29816,108415.39,0.0,0.0,108415.39,22096.65,12424.51,8899.47,43420.63,151836.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2536,Respiratory Care Practitioner,40944,12793.28,0.0,0.0,12793.28,0.0,2508.8,991.54,3500.34,16293.62 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),25612,124575.5,0.0,1500.0,126075.5,25312.13,12424.5,9892.17,47628.8,173704.3 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,11319,92792.0,12854.7,1843.25,107489.95,19170.35,12424.5,8139.58,39734.43,147224.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33046,20424.65,1486.63,2448.54,24359.82,2791.67,0.0,604.66,3396.33,27756.15 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,36066,67948.03,0.0,0.0,67948.03,14186.91,10990.9,5473.82,30651.63,98599.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39595,66718.62,8468.27,4203.78,79390.67,19361.92,13143.7,5815.84,38321.46,117712.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,13915,64469.2,104.16,200.0,64773.36,13267.32,12210.48,5307.8,30785.6,95558.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,29383,3027.0,0.0,0.0,3027.0,563.32,477.86,234.94,1276.12,4303.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29913,117129.7,23580.12,6705.17,147414.99,23771.41,12424.5,2406.3,38602.21,186017.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47294,3465.3,0.0,577.55,4042.85,0.0,286.72,250.46,537.18,4580.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33690,2551.15,0.0,473.46,3024.61,0.0,167.25,50.82,218.07,3242.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,28358,130919.05,0.0,0.0,130919.05,26271.85,12424.5,17290.25,55986.6,186905.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3606,17775.65,2930.21,734.17,21440.03,4433.47,5486.79,1638.38,11558.64,32998.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,26908,54071.7,3443.96,341.86,57857.52,11571.98,9079.44,4589.9,25241.32,83098.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,19944,56120.0,0.0,1460.0,57580.0,12880.31,12424.5,4669.05,29973.86,87553.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,20376,47825.01,0.0,0.0,47825.01,9597.95,9557.31,3763.3,22918.56,70743.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48674,41499.13,1508.33,2859.56,45867.02,12916.22,8252.85,3543.01,24712.08,70579.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,13077,73975.0,0.0,0.0,73975.0,16524.81,12424.47,5907.5,34856.78,108831.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,38270,140574.04,0.0,0.0,140574.04,28221.75,12424.5,25107.01,65753.26,206327.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,9245,69902.02,594.43,0.0,70496.45,14407.14,12424.5,5593.07,32424.71,102921.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",42084,15354.43,0.0,0.0,15354.43,0.0,3249.49,1191.31,4440.8,19795.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,14188,77810.96,0.0,31.08,77842.04,16029.18,12387.16,6254.82,34671.16,112513.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39491,68771.27,0.0,5361.4,74132.67,14570.95,12162.21,6111.46,32844.62,106977.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,37404,52955.17,2247.95,1548.57,56751.69,11204.69,9778.14,4695.29,25678.12,82429.81 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,1858,62798.54,12939.57,5926.3,81664.41,13533.2,12364.47,6990.16,32887.83,114552.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35719,97356.62,21394.19,15349.84,134100.65,27406.94,12370.74,2219.62,41997.3,176097.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27397,3413.64,0.0,10981.48,14395.12,1021.76,678.87,999.82,2700.45,17095.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27511,23616.43,2012.85,2576.45,28205.73,1743.19,6352.62,2202.54,10298.35,38504.08 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",23795,68516.01,14858.28,4871.13,88245.42,16749.58,12424.5,1687.95,30862.03,119107.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,9735,55709.68,4226.16,856.6,60792.44,12174.74,8585.41,4720.22,25480.37,86272.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41285,5262.05,0.0,156.91,5418.96,0.0,2281.81,425.59,2707.4,8126.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49568,0.0,0.0,589.48,589.48,0.0,0.0,45.1,45.1,634.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,11008,73825.68,18468.89,3743.69,96038.26,15521.22,12130.32,7590.27,35241.81,131280.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34141,4750.83,0.0,0.0,4750.83,0.0,2036.9,383.92,2420.82,7171.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51314,64948.12,12860.52,4696.32,82504.96,18967.88,12788.34,6403.57,38159.79,120664.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40308,97935.49,0.0,4600.8,102536.29,14405.2,8937.4,5668.15,29010.75,131547.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,9247,Airport Emerg Planning Coord,22553,100329.01,0.0,0.0,100329.01,20620.14,12424.5,16548.42,49593.06,149922.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,3023,81942.0,2677.2,6933.8,91553.0,18212.8,12424.5,7160.67,37797.97,129350.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10628,5271.55,0.0,0.0,5271.55,0.0,1759.14,408.88,2168.02,7439.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4432,143418.11,0.0,17048.73,160466.84,26429.14,12376.71,4987.84,43793.69,204260.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,24508,62811.0,5655.76,15612.46,84079.22,15182.82,12424.5,6847.11,34454.43,118533.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,48598,70245.0,4839.38,3344.05,78428.43,14606.45,12424.5,6201.99,33232.94,111661.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1770,Photographer,41934,126.05,0.0,0.0,126.05,28.27,23.89,9.7,61.86,187.91 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,829,403.76,317.95,0.0,721.71,0.0,119.47,56.02,175.49,897.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,23157,49218.46,5012.6,0.0,54231.06,11790.32,12424.5,4476.81,28691.63,82922.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29475,69791.78,8649.92,2578.56,81020.26,19809.09,13745.63,6157.1,39711.82,120732.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5729,118691.13,45809.67,7714.92,172215.72,24843.18,15196.11,2888.55,42927.84,215143.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,1104,93281.03,0.0,2084.0,95365.03,19654.55,12424.51,7899.71,39978.77,135343.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,9208,101493.97,6188.74,2036.0,109718.71,21338.37,12424.49,8978.09,42740.95,152459.66 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,12706,81116.02,0.0,0.0,81116.02,16718.54,12424.5,6609.9,35752.94,116868.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33103,22676.65,0.0,103.14,22779.79,0.0,5886.7,1766.92,7653.62,30433.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,50668,6525.1,29.25,306.85,6861.2,0.0,2159.36,531.2,2690.56,9551.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,30007,56531.0,0.0,2614.35,59145.35,11780.12,12424.5,4890.24,29094.86,88240.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,20316,56634.05,3773.4,0.0,60407.45,11503.73,10229.25,4799.83,26532.81,86940.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11888,71524.49,30191.61,5716.2,107432.3,21189.3,14099.6,8362.72,43651.62,151083.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,18641,8006.43,0.0,73.58,8080.01,0.0,2901.53,626.02,3527.55,11607.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,50630,107145.11,0.0,0.0,107145.11,21750.74,11946.65,8725.72,42423.11,149568.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41221,4133.91,0.0,687.55,4821.46,1571.76,0.0,2434.91,4006.67,8828.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,38251,27424.5,0.0,414.94,27839.44,6771.81,6803.61,2042.75,15618.17,43457.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23286,94744.73,6505.13,10642.23,111892.09,0.0,7151.32,1874.31,9025.63,120917.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,53211,140216.88,9452.93,18968.93,168638.74,27735.81,12424.5,2875.33,43035.64,211674.38 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,18391,8937.6,0.0,0.0,8937.6,1663.3,1529.17,707.86,3900.33,12837.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,38159,51115.01,0.0,0.0,51115.01,10341.92,10274.11,4140.76,24756.79,75871.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35935,107.4,0.0,0.0,107.4,0.0,59.73,8.32,68.05,175.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19981,97225.21,0.0,250.0,97475.21,19594.4,7764.11,7943.03,35301.54,132776.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17721,6979.09,0.0,1503.65,8482.74,1016.63,588.37,445.16,2050.16,10532.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,16232,93281.03,0.0,2024.0,95305.03,19641.11,12424.5,7605.73,39671.34,134976.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,27153,108370.02,22211.73,19628.66,150210.41,31088.93,12424.5,2559.17,46072.6,196283.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,51950,143799.21,0.0,0.0,143799.21,29006.4,12139.87,25573.38,66719.65,210518.86 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46473,125431.5,0.0,1500.0,126931.5,25499.73,12424.5,9908.15,47832.38,174763.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18672,60185.21,0.0,8587.14,68772.35,0.0,0.0,1175.8,1175.8,69948.15 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,21692,1899.0,0.0,0.0,1899.0,0.0,477.86,162.88,640.74,2539.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,40074,134256.4,0.0,0.0,134256.4,27037.44,12316.98,10066.92,49421.34,183677.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,25463,81157.07,7042.53,22913.22,111112.82,20418.02,12424.48,9027.91,41870.41,152983.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5352,6069.87,0.0,250.0,6319.87,1669.56,1194.67,400.34,3264.57,9584.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",6682,325.0,0.0,0.0,325.0,0.0,77.65,25.18,102.83,427.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,51421,22108.47,0.0,865.4,22973.87,0.0,3307.73,1778.64,5086.37,28060.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16191,1360.4,0.0,0.0,1360.4,0.0,453.97,105.37,559.34,1919.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,1728,91756.96,6765.65,6485.55,105008.16,19454.49,12496.18,1711.27,33661.94,138670.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,28573,74598.03,0.0,1030.0,75628.03,15454.04,11468.77,5764.53,32687.34,108315.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,14549,29728.36,0.0,0.0,29728.36,7569.7,6988.79,2344.67,16903.16,46631.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,19080,93281.12,0.0,624.0,93905.12,19357.13,12424.5,7742.88,39524.51,133429.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,3210,71330.0,0.0,0.0,71330.0,14649.86,11946.64,5927.74,32524.24,103854.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7618,96156.56,0.0,3093.88,99250.44,0.0,7786.16,7693.59,15479.75,114730.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,23651,33725.92,3745.57,67675.23,105146.72,7432.23,3524.25,1625.26,12581.74,117728.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,12251,137170.25,17195.82,27777.66,182143.73,27077.2,12424.51,3055.52,42557.23,224700.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,29932,7939.27,0.0,273.91,8213.18,1797.41,1475.65,734.37,4007.43,12220.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,22506,67064.04,0.0,3272.67,70336.71,13954.52,12388.66,5529.14,31872.32,102209.03 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,28953,93588.64,12896.0,7824.51,114309.15,20319.55,12412.56,9170.85,41902.96,156212.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,26492,67261.0,0.0,624.0,67885.0,13991.51,12424.5,5627.94,32043.95,99928.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20798,8915.61,0.0,30.6,8946.21,0.0,691.41,693.76,1385.17,10331.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30813,56531.0,0.0,7154.6,63685.6,13762.36,12424.5,5108.26,31295.12,94980.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,29889,3527.0,0.0,0.0,3527.0,791.11,477.86,278.63,1547.6,5074.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,17136,56463.5,9826.83,3026.18,69316.51,12597.63,12424.5,5289.29,30311.42,99627.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4135,11433.25,0.0,0.0,11433.25,0.0,4957.85,907.98,5865.83,17299.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,16645,119455.86,10657.55,9657.07,139770.48,24240.15,12424.5,2285.45,38950.1,178720.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,99,15224.25,0.0,2.48,15226.73,0.0,5835.94,1180.33,7016.27,22243.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7228,Automotive Trnst Shop Sprv 1,45509,118936.06,23133.83,4065.02,146134.91,24044.71,12424.5,10172.69,46641.9,192776.81 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,28105,157231.6,0.0,175.0,157406.6,31599.2,12424.5,10447.4,54471.1,211877.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",13264,1199.9,0.0,0.0,1199.9,0.0,155.31,93.02,248.33,1448.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,27018,63887.0,0.0,1609.59,65496.59,13506.63,12424.51,5174.03,31105.17,96601.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,42155,60261.03,0.0,0.0,60261.03,8315.28,12424.5,4798.09,25537.87,85798.9 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,20777,45485.44,0.0,0.0,45485.44,10802.37,10984.93,3694.12,25481.42,70966.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32976,392.0,0.0,13.72,405.72,0.0,191.14,31.49,222.63,628.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,1841,84103.24,0.0,960.0,85063.24,17557.76,12239.27,6805.52,36602.55,121665.79 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,46812,166234.93,0.0,13763.32,179998.25,33469.31,12274.1,10802.98,56546.39,236544.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",305,149529.43,55163.29,8971.76,213664.48,31125.14,12424.5,3634.15,47183.79,260848.27 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,46296,20984.74,0.0,364.92,21349.66,3973.17,3327.14,1707.5,9007.81,30357.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9623,113165.02,0.0,250.0,113415.02,22997.19,10995.69,9085.97,43078.85,156493.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,2067,95209.63,0.0,0.0,95209.63,19587.19,12376.72,7596.71,39560.62,134770.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46726,56531.03,0.0,842.79,57373.82,11833.23,12424.5,4754.62,29012.35,86386.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,18200,117949.34,26536.73,16146.53,160632.6,23349.87,12424.5,2722.88,38497.25,199129.85 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,50787,44685.0,0.0,0.0,44685.0,9803.88,4300.79,3612.06,17716.73,62401.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,53137,65994.0,102.28,7428.0,73524.28,16900.95,12424.5,5732.73,35058.18,108582.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,43727,8287.24,0.0,46.16,8333.4,1858.84,1670.26,684.25,4213.35,12546.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,19114,110525.6,2318.63,638.4,113482.63,22775.05,12424.5,9322.81,44522.36,158004.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,50345,58329.82,0.0,0.0,58329.82,12136.82,11086.47,5278.96,28502.25,86832.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1385,68968.63,55360.73,6352.63,130681.99,20635.34,13587.75,9560.68,43783.77,174465.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48507,128065.03,0.0,2098.73,130163.76,26142.47,12424.5,9877.47,48444.44,178608.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,827,3819.73,0.0,20.44,3840.17,0.0,1786.02,297.8,2083.82,5923.99 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,28262,403.76,333.09,0.0,736.85,0.0,119.47,57.19,176.66,913.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,16952,330.6,0.0,0.0,330.6,61.52,71.68,25.66,158.86,489.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,43352,138629.96,6257.5,17141.37,162028.83,27585.04,0.0,2770.45,30355.49,192384.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7377,18789.96,515.54,392.61,19698.11,4740.83,3647.31,1493.16,9881.3,29579.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11272,3915.0,2087.5,82.01,6084.51,734.45,477.86,102.16,1314.47,7398.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36162,66716.18,11540.88,7766.4,86023.46,20458.66,13145.3,6720.78,40324.74,126348.2 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",2800,Public Health,2806,Disease Control Investigator,17183,72227.03,0.0,0.0,72227.03,14884.56,12224.33,5954.07,33062.96,105289.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,40515,60059.82,48.85,336.23,60444.9,12510.83,11838.1,5022.8,29371.73,89816.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,501,40459.78,0.0,0.0,40459.78,7529.59,5716.46,3247.85,16493.9,56953.68 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,6599,94654.78,0.0,9465.47,104120.25,20763.03,6903.19,8551.27,36217.49,140337.74 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",2335,65965.25,35455.02,5220.92,106641.19,16308.21,10965.28,546.0,27819.49,134460.68 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40942,26567.96,0.0,0.0,26567.96,6761.23,6742.38,2166.72,15670.33,42238.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22425,113632.47,1436.26,30731.13,145799.86,19766.78,10695.82,9020.44,39483.04,185282.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,334,65381.66,0.0,2002.05,67383.71,13890.69,12385.67,5532.26,31808.62,99192.33 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,353C,Ct Comp App Analyst,13858,92632.06,0.0,3624.0,96256.06,18922.03,10494.46,8024.58,37441.07,133697.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3515,61119.26,207.9,4830.94,66158.1,12928.46,10809.26,5203.85,28941.57,95099.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,34051,4529.01,0.0,66.54,4595.55,804.94,477.86,78.31,1361.11,5956.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25835,151.38,0.0,0.0,151.38,42.84,0.0,12.0,54.84,206.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23542,6806.6,0.0,526.16,7332.76,0.0,2891.08,584.56,3475.64,10808.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,39623,6305.35,0.0,0.0,6305.35,1414.29,1424.64,482.67,3321.6,9626.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",47844,179468.73,2447.14,14357.49,196273.36,38083.14,12376.71,507.54,50967.39,247240.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9508,Prpl Permit And Citation Clerk,48460,82083.4,1783.23,1260.0,85126.63,17180.35,12421.52,6669.96,36271.83,121398.46 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,18458,9463.59,0.0,2340.11,11803.7,0.0,12424.5,171.15,12595.65,24399.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27050,69037.62,67.04,248.9,69353.56,0.0,0.0,5485.84,5485.84,74839.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2879,97763.87,11618.14,11108.47,120490.48,26487.26,12424.5,1646.93,40558.69,161049.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18904,66143.17,3217.19,1193.89,70554.25,18461.62,13036.7,5488.13,36986.45,107540.7 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,42035,403.76,355.8,0.0,759.56,0.0,119.47,58.95,178.42,937.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46867,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1850.29,10264.07,34268.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",4975,7212.0,0.0,1008.51,8220.51,1621.87,1433.6,652.8,3708.27,11928.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,19983,102019.04,0.0,0.0,102019.04,21026.27,12424.62,8382.67,41833.56,143852.6 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,22720,158707.01,0.0,0.0,158707.01,31940.4,12424.5,17764.08,62128.98,220835.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,9412,28268.0,0.0,0.0,28268.0,6216.16,5256.52,2290.03,13762.71,42030.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,22365,97793.03,358.18,10364.08,108515.29,22279.42,12424.5,8925.62,43629.54,152144.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18740,24101.25,2121.31,512.41,26734.97,6072.76,7486.18,2041.06,15600.0,42334.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,2234,101531.0,11162.88,0.0,112693.88,20926.02,12424.48,8973.51,42324.01,155017.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,28659,15162.0,568.58,12635.0,28365.58,3400.86,2867.19,2266.7,8534.75,36900.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,18618,71136.0,0.0,456.0,71592.0,15291.56,9079.44,5761.27,30132.27,101724.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,35714,134070.47,0.0,0.0,134070.47,26944.93,12424.5,17301.65,56671.08,190741.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11462,121586.32,0.0,18021.82,139608.14,15440.85,10952.68,5508.09,31901.62,171509.76 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,6825,20994.25,0.0,0.0,20994.25,1508.27,6349.63,1681.61,9539.51,30533.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,40753,83148.04,0.0,0.0,83148.04,17137.11,12424.5,6535.73,36097.34,119245.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,8464,97698.77,42231.64,16259.69,156190.1,27717.62,12415.36,2653.93,42786.91,198977.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42804,6963.1,0.0,65.87,7028.97,0.0,2323.62,545.28,2868.9,9897.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,51299,54595.2,6019.82,0.0,60615.02,11736.17,8410.42,4933.86,25080.45,85695.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,41522,56531.0,1708.75,3277.8,61517.55,11780.12,12424.5,4830.5,29035.12,90552.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,4454,7967.24,0.0,267.95,8235.19,0.0,0.0,650.58,650.58,8885.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,41536,75188.02,0.0,0.0,75188.02,15468.58,12424.5,6116.69,34009.77,109197.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",40427,225.0,0.0,0.0,225.0,0.0,0.0,17.79,17.79,242.79 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,34609,0.0,0.0,4063.31,4063.31,0.0,0.0,310.85,310.85,4374.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27035,3416.22,0.0,0.0,3416.22,0.0,1481.39,271.95,1753.34,5169.56 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,23511,396.0,18.56,0.0,414.56,0.0,95.58,32.18,127.76,542.32 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,6849,111986.0,0.0,1134.6,113120.6,23379.49,9079.44,9089.78,41548.71,154669.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,35788,118104.14,0.0,0.0,118104.14,23768.42,12424.5,9025.11,45218.03,163322.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,739,49083.1,347.28,60.0,49490.38,10009.97,10990.9,4013.23,25014.1,74504.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,18019,54616.09,0.0,0.0,54616.09,9922.45,5794.12,4292.33,20008.9,74624.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41179,80946.02,2820.71,2999.12,86765.85,16782.54,12424.5,1625.32,30832.36,117598.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,8147,76987.37,0.0,0.0,76987.37,15904.26,9381.09,6321.62,31606.97,108594.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,40364,66102.0,7330.12,1329.17,74761.29,13806.82,12424.49,5916.3,32147.61,106908.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,28259,47097.81,225.27,910.21,48233.29,11378.43,11319.44,3834.41,26532.28,74765.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,37405,25951.95,0.0,0.0,25951.95,5486.64,4250.01,2157.41,11894.06,37846.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,32248,116976.0,0.0,0.0,116976.0,23541.49,12424.51,9618.36,45584.36,162560.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,42902,32760.0,46.29,5083.02,37889.31,6964.41,7167.99,3150.24,17282.64,55171.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,5720,95869.96,0.0,0.0,95869.96,19757.29,12424.51,7880.23,40062.03,135931.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29024,138635.94,12639.11,20774.03,172049.08,27392.94,12424.5,2932.11,42749.55,214798.63 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,29722,54426.01,0.0,0.0,54426.01,10495.64,7167.99,4246.3,21909.93,76335.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,28350,1311.26,0.0,33.77,1345.03,0.0,436.06,0.0,436.06,1781.09 +Calendar,2015,1,Public Protection,ADP,Adult Probation,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",26505,1804.0,0.0,0.0,1804.0,335.73,238.93,138.41,713.07,2517.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24332,77071.02,28225.79,1320.0,106616.81,16156.37,12424.5,8532.22,37113.09,143729.9 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,9752,106116.0,0.0,0.0,106116.0,21882.46,12424.5,8559.17,42866.13,148982.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,37128,48622.11,0.0,0.0,48622.11,11653.96,12424.5,3704.55,27783.01,76405.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11387,2727.45,0.0,66.74,2794.19,0.0,1182.72,216.33,1399.05,4193.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,26554,63887.0,5514.09,364.0,69765.09,13242.97,12424.5,5511.51,31178.98,100944.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,45615,9702.0,0.0,146.52,9848.52,2165.69,2341.54,781.18,5288.41,15136.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25246,48657.55,9598.72,3590.21,61846.48,11005.82,6212.25,1026.24,18244.31,80090.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,18220,24331.5,0.0,0.0,24331.5,0.0,4253.0,1911.31,6164.31,30495.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14785,9878.05,0.0,874.71,10752.76,2093.61,4283.47,861.55,7238.63,17991.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8815,65297.36,19110.43,737.36,85145.15,18051.68,12862.3,6643.5,37557.48,122702.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3558,Senior Museum Registrar,16549,82914.03,0.0,624.0,83538.03,17217.46,12424.5,6927.3,36569.26,120107.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3436,Arborist Technician Supervisor,26459,0.0,0.0,9541.3,9541.3,0.0,0.0,759.59,759.59,10300.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,4790,94474.78,0.0,130.0,94604.78,19408.42,12030.26,8117.39,39556.07,134160.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,9095,81506.02,27809.05,3004.63,112319.7,16463.83,10035.17,8270.01,34769.01,147088.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,35104,10307.1,0.0,0.0,10307.1,0.0,3368.96,782.17,4151.13,14458.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,13719,25347.2,0.0,0.0,25347.2,4717.13,3536.21,2017.91,10271.25,35618.45 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,32706,72135.09,4883.8,2108.55,79127.44,14867.02,12421.39,6256.47,33544.88,112672.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49870,137701.0,0.0,18703.33,156404.33,30077.83,11468.77,7585.9,49132.5,205536.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",30516,9445.45,0.0,0.0,9445.45,0.0,2248.96,732.99,2981.95,12427.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,25232,124796.32,0.0,0.0,124796.32,25034.45,12041.19,18227.0,55302.64,180098.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,36576,100554.01,0.0,0.0,100554.01,20724.83,12424.46,8272.18,41421.47,141975.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,20332,47664.22,674.22,1700.45,50038.89,11838.03,11262.57,3814.6,26915.2,76954.09 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,3872,25508.94,0.0,0.0,25508.94,1299.15,8261.1,2046.15,11606.4,37115.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,961,84599.05,0.0,1737.29,86336.34,17794.01,12424.5,7047.64,37266.15,123602.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",11650,143903.78,21555.52,22073.54,187532.84,32626.46,15052.76,3152.65,50831.87,238364.71 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,26119,78963.04,0.0,0.0,78963.04,16274.48,12424.5,6505.34,35204.32,114167.36 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),25334,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10991.35,60804.68,246593.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23561,80953.8,5363.6,4978.21,91295.61,16848.26,12424.5,1296.63,30569.39,121865.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,18323,33385.22,0.0,86.4,33471.62,7410.93,6881.27,2338.23,16630.43,50102.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48351,112159.74,33516.71,22595.27,168271.72,25606.81,15052.76,2822.53,43482.1,211753.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,42969,78579.38,1428.28,250.0,80257.66,16263.41,12245.32,6288.58,34797.31,115054.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),18886,6526.24,46.32,0.0,6572.56,0.0,1893.54,509.97,2403.51,8976.07 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10652,97609.13,20212.76,10035.5,127857.39,26181.56,12403.72,2176.61,40761.89,168619.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16502,56531.0,10860.66,4449.69,71841.35,11898.7,12424.5,5850.01,30173.21,102014.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18671,18070.9,0.0,928.56,18999.46,0.0,0.0,913.55,913.55,19913.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,13301,6541.89,0.0,38.16,6580.05,0.0,2174.29,510.48,2684.77,9264.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,38007,103345.68,6085.72,996.01,110427.41,20137.19,11740.68,1873.28,33751.15,144178.56 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,36061,5084.48,0.0,0.0,5084.48,979.81,0.0,205.49,1185.3,6269.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30860,4788.9,0.0,798.16,5587.06,0.0,0.0,1095.59,1095.59,6682.65 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),36183,184289.06,0.0,1562.5,185851.56,37402.57,12424.5,10920.71,60747.78,246599.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,29501,116976.05,0.0,1260.29,118236.34,23803.92,12424.49,9324.82,45553.23,163789.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,835,81157.0,1395.9,3773.25,86326.15,17009.63,12424.5,7104.02,36538.15,122864.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,6667,7542.01,0.0,284.62,7826.63,1880.22,1433.6,783.28,4097.1,11923.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,27626,104811.0,6063.07,330.0,111204.07,21663.3,12424.5,8755.48,42843.28,154047.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,45709,56531.0,0.0,2930.55,59461.55,11796.81,12424.5,4667.98,28889.29,88350.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35511,6422.5,0.0,0.0,6422.5,0.0,1672.53,498.48,2171.01,8593.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7137,43498.94,2735.18,2601.22,48835.34,11927.24,13079.96,3650.69,28657.89,77493.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,4553,43922.83,0.0,0.0,43922.83,10515.76,12424.5,4078.1,27018.36,70941.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,14811,39370.0,0.0,0.0,39370.0,7508.59,6642.33,3139.96,17290.88,56660.88 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",3235,198139.04,0.0,5525.28,203664.32,40987.79,12424.5,11244.53,64656.82,268321.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52159,105735.76,70698.27,14142.66,190576.69,22573.92,14189.14,3395.75,40158.81,230735.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,32047,33233.54,183.77,0.0,33417.31,0.0,7245.63,2590.79,9836.42,43253.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,50928,118724.09,0.0,0.0,118724.09,23893.95,12424.5,9419.46,45737.91,164462.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,33983,97424.08,1117.2,1814.0,100355.28,20454.95,12424.5,8021.29,40900.74,141256.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,974,76728.0,113.51,746.0,77587.51,15964.14,12424.5,6357.23,34745.87,112333.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,3957,66977.43,37.76,3943.03,70958.22,11383.72,12224.4,5694.52,29302.64,100260.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",15142,300.0,0.0,0.0,300.0,0.0,17.92,23.23,41.15,341.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,33603,90646.02,0.0,0.0,90646.02,18668.76,12424.5,7431.19,38524.45,129170.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",37228,93738.03,1477.99,0.0,95216.02,19319.83,12424.49,7806.25,39550.57,134766.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,52103,96018.23,0.0,0.0,96018.23,19689.85,11994.43,7747.6,39431.88,135450.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45046,11417.78,721.92,76.06,12215.76,2757.8,3526.95,862.15,7146.9,19362.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18095,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49037,12520.0,0.0,813.49,13333.49,2269.88,1911.46,1029.18,5210.52,18544.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,28503,58782.05,0.0,624.0,59406.05,12243.99,12424.5,4928.76,29597.25,89003.3 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,29558,88296.0,0.0,3624.0,91920.0,18337.86,12424.5,7576.75,38339.11,130259.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,14302,3035.04,0.0,0.0,3035.04,0.0,0.0,247.53,247.53,3282.57 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8135,Asst Chf Victim/Wit Invstgtor,36369,0.0,0.0,59.14,59.14,0.0,34.25,4.53,38.78,97.92 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),8375,158226.24,0.0,4639.49,162865.73,32541.83,10656.4,10591.57,53789.8,216655.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,5786,20282.0,2178.58,0.0,22460.58,4841.6,5734.39,1695.38,12271.37,34731.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15680,131090.48,3022.15,28800.79,162913.42,31033.65,10925.8,7086.77,49046.22,211959.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,13779,2149.35,0.0,0.0,2149.35,458.24,7.6,166.4,632.24,2781.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,1251,138635.94,16669.55,944.8,156250.29,27392.94,12424.51,2663.04,42480.49,198730.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,9226,101733.0,0.0,0.0,101733.0,20967.28,12424.5,8140.72,41532.5,143265.5 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,994,35018.83,0.0,0.0,35018.83,6708.12,0.0,4820.39,11528.51,46547.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,49872,13370.35,0.0,0.0,13370.35,2940.13,2929.91,1050.91,6920.95,20291.3 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9155,Claims Investigator,23320,105576.0,21583.2,8596.16,135755.36,22057.99,12424.5,10059.63,44542.12,180297.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8956,119465.05,259.82,6269.21,125994.08,23629.34,12424.5,2144.87,38198.71,164192.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41670,7355.85,0.0,0.0,7355.85,0.0,3189.75,577.66,3767.41,11123.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,9878,135421.0,0.0,5259.04,140680.04,28320.44,12424.5,10218.03,50962.97,191643.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,5202,49083.1,2897.64,40.0,52020.74,10007.78,10990.9,4034.66,25033.34,77054.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",31690,106090.08,76.03,0.0,106166.11,21865.57,12424.5,8742.83,43032.9,149199.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,42718,12454.2,0.0,0.0,12454.2,766.7,884.05,3694.3,5345.05,17799.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9122,Transit Information Clerk,11168,56727.9,0.0,0.0,56727.9,11685.37,12424.5,4609.63,28719.5,85447.4 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,13375,80455.4,832.36,503.25,81791.01,12418.35,11755.49,6531.31,30705.15,112496.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,5600,74592.8,490.57,375.97,75459.34,15443.75,12424.5,6115.2,33983.45,109442.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,23261,6980.53,0.0,210.27,7190.8,0.0,1024.43,558.12,1582.55,8773.35 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4334,"Investigator, Tax Collector",5397,90151.05,86.15,0.0,90237.2,18580.57,12424.5,7353.18,38358.25,128595.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",27654,12769.54,0.0,0.0,12769.54,0.0,3040.42,990.93,4031.35,16800.89 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,32503,66528.0,3407.85,1221.91,71157.76,14286.04,10035.18,5839.34,30160.56,101318.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,31430,70791.06,3500.52,95.85,74387.43,14611.17,12424.5,6143.74,33179.41,107566.84 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,20834,98363.82,0.0,6440.79,104804.61,21614.15,12424.5,8363.78,42402.43,147207.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,8132,83247.09,0.0,480.0,83727.09,17215.29,12113.88,6952.01,36281.18,120008.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50273,49216.9,805.75,1260.19,51282.84,13927.1,9681.86,3863.01,27471.97,78754.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11661,113233.59,33039.86,20833.33,167106.78,25426.36,15196.12,2791.53,43414.01,210520.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,263,43311.01,595.11,3151.15,47057.27,11033.45,11008.82,3870.13,25912.4,72969.67 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,15368,12105.15,0.0,0.0,12105.15,0.0,2764.15,938.01,3702.16,15807.31 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,21500,64953.45,0.0,3500.0,68453.45,13707.9,4904.09,5626.3,24238.29,92691.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,5937,70245.0,4018.54,3648.27,77911.81,14606.45,12424.5,6413.13,33444.08,111355.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,25662,10823.06,0.0,0.0,10823.06,0.0,3273.37,838.1,4111.47,14934.53 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,42573,62344.09,2599.72,3664.58,68608.39,12955.18,12276.67,5376.0,30607.85,99216.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35723,67545.37,14223.03,733.79,82502.19,15549.12,13312.44,6271.92,35133.48,117635.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23437,42043.83,4961.82,1035.61,48041.26,11191.5,12939.17,3588.86,27719.53,75760.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,36831,71311.01,0.0,0.0,71311.01,14697.59,12424.5,5662.93,32785.02,104096.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,3764,91752.96,0.0,2050.0,93802.96,19327.02,12352.82,7700.64,39380.48,133183.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,7247,2370.0,0.0,345.03,2715.03,611.46,716.81,223.09,1551.36,4266.39 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,29633,65905.6,0.0,0.0,65905.6,13564.56,12424.5,5179.95,31169.01,97074.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,18270,13745.0,194.31,0.0,13939.31,3022.53,2867.19,1120.93,7010.65,20949.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,49228,81942.02,12327.8,16407.85,110677.67,19699.97,12424.5,8818.29,40942.76,151620.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13599,62109.04,6231.66,4573.72,72914.42,18509.17,12279.37,5690.34,36478.88,109393.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,39192,79322.52,0.0,0.0,79322.52,16347.48,12424.5,6358.08,35130.06,114452.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26028,100169.18,87141.49,13302.77,200613.44,20769.61,12424.49,3353.61,36547.71,237161.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,52711,63851.0,0.0,0.0,63851.0,13167.91,12424.5,4234.46,29826.87,93677.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33135,11219.74,0.0,0.0,11219.74,227.45,4865.27,898.51,5991.23,17210.97 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,37604,29651.83,314.87,1897.7,31864.4,4391.94,6032.7,2512.95,12937.59,44801.99 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,11522,93224.85,284.83,6617.34,100127.02,19853.37,12364.77,8281.66,40499.8,140626.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38210,113233.59,75593.66,19015.25,207842.5,25036.02,15196.12,3491.69,43723.83,251566.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,35700,74100.76,15602.81,9642.69,99346.26,16666.32,12125.84,7898.25,36690.41,136036.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26143,43140.02,1570.58,3347.01,48057.61,9325.52,4778.65,800.64,14904.81,62962.42 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,28233,64001.51,0.0,0.0,64001.51,13179.23,12424.5,5146.39,30750.12,94751.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",27687,5080.5,0.0,0.0,5080.5,0.0,1075.2,393.33,1468.53,6549.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",28664,10712.37,0.0,0.0,10712.37,0.0,2550.61,829.35,3379.96,14092.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,29474,87713.01,0.0,697.94,88410.95,18222.0,12424.5,7164.75,37811.25,126222.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,25091,61610.5,3853.06,5733.9,71197.46,13768.7,12185.57,5621.21,31575.48,102772.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,25655,30034.52,0.0,0.0,30034.52,6736.76,4300.79,2388.2,13425.75,43460.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8799,11818.97,587.73,809.62,13216.32,395.2,0.0,1569.46,1964.66,15180.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,38397,102512.02,0.0,0.0,102512.02,21127.65,12418.53,8227.48,41773.66,144285.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22258,112988.4,44214.37,14041.35,171244.12,24386.49,14144.82,2471.38,41002.69,212246.81 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,13217,55190.75,9652.41,3104.25,67947.41,12376.31,11562.38,5034.36,28973.05,96920.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,40398,64821.85,303.96,624.0,65749.81,13488.87,12424.5,5330.82,31244.19,96994.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,33496,2933.0,0.0,0.0,2933.0,545.83,477.86,219.61,1243.3,4176.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,28847,62860.8,0.0,591.7,63452.5,13074.51,12376.71,5009.25,30460.47,93912.97 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,19806,115318.4,0.0,0.0,115318.4,23220.64,12400.61,9499.03,45120.28,160438.68 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3525,Chief Preparator,25078,76257.6,0.0,0.0,76257.6,15692.41,12424.5,5950.79,34067.7,110325.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,16301,42170.0,0.0,0.0,42170.0,8125.94,7120.21,3379.1,18625.25,60795.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,40640,43838.98,0.0,802.32,44641.3,8830.39,8501.53,3667.65,20999.57,65640.87 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,28397,0.0,0.0,1117.94,1117.94,0.0,0.0,16.21,16.21,1134.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,17530,48726.05,6953.75,2430.25,58110.05,12122.74,12121.36,4442.96,28687.06,86797.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47907,66676.63,0.0,3717.31,70393.94,13913.52,11789.42,5773.16,31476.1,101870.04 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),43245,106199.4,0.0,1500.0,107699.4,22175.88,12424.5,8693.66,43294.04,150993.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1710,Chief Telephone Operator,1805,26777.51,310.77,414.56,27502.84,4981.72,5973.32,2201.6,13156.64,40659.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7484,Sr Power Generation Tech,6373,42331.31,10361.87,3346.93,56040.11,9572.33,4611.39,4409.35,18593.07,74633.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45494,40598.69,175.6,4956.68,45730.97,10537.1,10736.09,3685.76,24958.95,70689.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,689,66025.41,15345.12,552.11,81922.64,18265.09,13014.54,6397.71,37677.34,119599.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",20403,178604.31,79061.53,30135.66,287801.5,39172.75,15052.76,4914.55,59140.06,346941.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,26527,111156.8,0.0,0.0,111156.8,22424.38,12137.78,9173.84,43736.0,154892.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,560,83148.1,0.0,0.0,83148.1,17137.11,12424.49,6789.73,36351.33,119499.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",41899,103962.27,0.0,1115.32,105077.59,21636.32,12171.24,8452.86,42260.42,147338.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,30770,120111.02,0.0,0.0,120111.02,24172.55,12424.51,9799.93,46396.99,166508.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,28867,2016.0,0.0,0.0,2016.0,0.0,669.02,156.47,825.49,2841.49 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0904,Mayoral Staff XVI,24440,151244.24,0.0,0.0,151244.24,30443.65,12424.5,17635.45,60503.6,211747.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,4147,149372.99,0.0,0.0,149372.99,30061.47,12424.51,17464.65,59950.63,209323.62 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,31641,119066.03,8553.51,19677.92,147297.46,32747.02,12424.5,2455.07,47626.59,194924.05 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,51090,98224.2,0.0,0.0,98224.2,22411.7,12368.53,104.66,34884.89,133109.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,49293,100834.87,16086.48,20285.59,137206.94,21843.08,11058.1,2339.75,35240.93,172447.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16684,80816.47,4671.59,7963.13,93451.19,16734.44,12403.53,1699.11,30837.08,124288.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7756,67154.18,9846.4,3099.02,80099.6,19246.67,13230.72,5910.27,38387.66,118487.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24137,119625.6,12136.16,11565.55,143327.31,23675.19,12424.5,2386.5,38486.19,181813.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,46982,11964.2,771.29,1725.62,14461.11,3010.39,2771.61,1153.43,6935.43,21396.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,17593,538.75,0.0,0.0,538.75,0.0,119.47,41.71,161.18,699.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,10021,96254.1,1356.64,896.18,98506.92,20018.91,12424.49,8084.49,40527.89,139034.81 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,15442,184453.34,0.0,43148.01,227601.35,42583.21,9951.55,11482.41,64017.17,291618.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,35280,66102.06,884.45,189.53,67176.04,13624.07,12424.51,5525.92,31574.5,98750.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,9664,79722.07,4463.23,1021.5,85206.8,16654.59,12424.5,6578.42,35657.51,120864.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,11648,63678.5,0.0,200.0,63878.5,13144.08,11340.65,5019.56,29504.29,93382.79 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,48644,12645.0,0.0,0.0,12645.0,2780.64,3345.06,948.96,7074.66,19719.66 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,1044,15041.07,703.33,0.0,15744.4,3282.36,0.0,1245.65,4528.01,20272.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3656,1944.69,0.0,0.0,1944.69,0.0,948.26,150.88,1099.14,3043.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,22290,78107.1,0.0,3061.77,81168.87,17109.34,10035.19,6541.69,33686.22,114855.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6824,24279.9,2606.47,853.77,27740.14,6196.41,7539.82,2119.08,15855.31,43595.45 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,12542,120927.0,0.0,0.0,120927.0,24286.99,12424.5,17075.93,53787.42,174714.42 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,26511,42360.0,0.0,0.0,42360.0,7758.64,5973.32,3245.9,16977.86,59337.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4461,35420.0,0.0,2480.14,37900.14,0.0,3058.34,3039.39,6097.73,43997.87 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,21133,102228.44,0.0,4922.0,107150.44,21048.9,12376.71,8327.24,41752.85,148903.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22975,73887.81,694.9,1380.0,75962.71,15501.9,12152.06,6046.85,33700.81,109663.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32469,10641.0,0.0,104.87,10745.87,0.0,3517.31,833.84,4351.15,15097.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42200,14829.78,0.0,193.08,15022.86,0.0,4927.99,1164.64,6092.63,21115.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,47510,73749.01,1763.27,8103.09,83615.37,15983.52,12424.5,6835.67,35243.69,118859.06 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,9176,67582.37,0.0,10095.91,77678.28,15479.46,12364.77,6032.38,33876.61,111554.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34887,65111.53,20488.17,3657.41,89257.11,18839.79,12828.78,6936.76,38605.33,127862.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23938,36457.72,0.0,6059.72,42517.44,138.37,0.0,4007.72,4146.09,46663.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,9386,"Senior Property Manager, Port",26912,122217.01,0.0,0.0,122217.01,24596.62,12424.5,9856.9,46878.02,169095.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,44286,116976.04,0.0,0.0,116976.04,23541.49,12424.51,9374.83,45340.83,162316.87 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,41088,48885.93,0.0,211.42,49097.35,11777.11,12401.62,3785.85,27964.58,77061.93 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,32197,67638.17,920.9,6434.34,74993.41,14735.59,12375.47,6022.45,33133.51,108126.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,12843,23109.0,754.58,4390.14,28253.72,4648.37,2867.19,1203.75,8719.31,36973.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,27583,10953.94,0.0,1095.4,12049.34,2702.68,1687.46,874.14,5264.28,17313.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5400,4727.6,0.0,25.28,4752.88,0.0,1775.1,368.9,2144.0,6896.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3373,Animal Control Supervisor,39432,64539.35,0.0,23444.95,87984.3,13492.34,11723.0,7801.19,33016.53,121000.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,45366,52494.69,0.0,515.36,53010.05,10983.5,10563.84,4257.19,25804.53,78814.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11746,117135.34,27665.84,13894.24,158695.42,23184.68,12424.5,2657.7,38266.88,196962.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,6331,80063.79,0.0,1230.32,81294.11,16975.8,9937.92,6717.5,33631.22,114925.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9203,Sr Airport Communications Disp,19163,92251.56,3089.64,8984.49,104325.69,20110.29,12352.82,8610.27,41073.38,145399.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,34758,100554.06,0.0,0.0,100554.06,20724.83,12424.52,8267.63,41416.98,141971.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,51237,117140.97,6522.11,12816.01,136479.09,23164.17,12424.51,2323.97,37912.65,174391.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,44331,51897.0,0.0,14348.87,66245.87,11320.05,10274.11,5216.64,26810.8,93056.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,23820,30355.24,0.0,0.0,30355.24,6808.7,4587.51,2515.38,13911.59,44266.83 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1430,Transcriber Typist,40546,59300.0,0.0,600.0,59900.0,12395.0,11946.64,4974.66,29316.3,89216.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,24123,68768.34,4303.11,601.61,73673.06,14251.05,11978.78,5863.59,32093.42,105766.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,43800,143600.69,21529.59,22578.98,187709.26,28355.39,12336.51,3146.42,43838.32,231547.58 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,43588,5469.15,13.54,0.0,5482.69,0.0,1809.91,442.96,2252.87,7735.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,6234,76338.0,0.0,649.2,76987.2,15866.59,12424.5,6090.59,34381.68,111368.88 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,20727,84973.02,0.0,624.0,85597.02,17641.99,12424.5,6846.42,36912.91,122509.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",43379,11106.54,0.0,0.0,11106.54,0.0,2350.5,861.6,3212.1,14318.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,4656,51208.5,18785.26,4442.83,74436.59,12589.76,12376.71,6050.64,31017.11,105453.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20349,130843.49,1028.99,11798.84,143671.32,27473.3,10935.83,6209.03,44618.16,188289.48 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1280,Employee Relations Representat,38696,52975.0,0.0,0.0,52975.0,11882.26,6212.25,4306.21,22400.72,75375.72 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,49559,78309.95,0.0,0.0,78309.95,15969.03,11084.39,6457.5,33510.92,111820.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,26996,16736.22,0.0,5365.28,22101.5,3753.92,1959.25,1823.0,7536.17,29637.67 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),35945,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11001.88,61557.02,251031.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40295,60153.78,21710.34,7401.94,89266.06,18280.7,11838.46,6765.45,36884.61,126150.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52055,29647.14,0.0,3182.49,32829.63,3016.46,0.0,5466.14,8482.6,41312.23 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),13609,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11042.02,61597.16,251071.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,16927,20418.0,0.0,0.0,20418.0,4579.74,2867.2,1649.44,9096.38,29514.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,23501,112776.0,5430.0,266.94,118472.94,22744.83,12424.5,9535.4,44704.73,163177.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,23328,2115.0,0.0,0.0,2115.0,393.6,477.86,164.16,1035.62,3150.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,51772,84542.5,0.0,0.0,84542.5,17399.39,12417.45,6636.33,36453.17,120995.67 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",29916,5525.27,107.44,11.46,5644.17,0.0,0.0,446.65,446.65,6090.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11786,65874.65,18511.51,7112.31,91498.47,19954.05,12978.46,7148.35,40080.86,131579.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35908,121911.44,39245.11,11495.92,172652.47,0.0,8928.97,3721.24,12650.21,185302.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25654,3387.13,0.0,0.0,3387.13,0.0,1651.63,262.8,1914.43,5301.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,1068,79177.21,451.8,3642.97,83271.98,16962.61,12376.72,6858.06,36197.39,119469.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48409,60070.09,1672.81,1949.71,63692.61,14279.62,11880.33,5348.76,31508.71,95201.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,3760,22461.0,0.0,0.0,22461.0,4180.0,3822.92,1793.92,9796.84,32257.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,9140,13329.7,563.38,7148.01,21041.09,3141.28,2532.69,1603.04,7277.01,28318.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,37963,75927.04,9278.65,2795.45,88001.14,15862.19,12424.5,7252.87,35539.56,123540.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15358,70679.29,9719.84,2195.67,82594.8,13082.03,7717.53,6433.08,27232.64,109827.44 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,25580,52097.32,0.0,619.79,52717.11,10857.29,10489.16,4286.03,25632.48,78349.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,16798,99983.4,0.0,0.0,99983.4,20574.84,12209.47,8208.17,40992.48,140975.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,49969,89964.39,0.0,580.22,90544.61,18884.22,11123.21,7258.93,37266.36,127810.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,22899,129895.04,0.0,3203.36,133098.4,26141.5,12424.5,9986.43,48552.43,181650.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,46730,47830.26,9562.53,3540.12,60932.91,9940.76,8840.51,1432.05,20213.32,81146.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,8353,52338.6,0.0,6328.38,58666.98,13282.36,12424.5,4702.84,30409.7,89076.68 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,18118,4851.77,0.0,0.0,4851.77,0.0,567.47,375.91,943.38,5795.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45408,2765.6,0.0,276.57,3042.17,0.0,0.0,912.61,912.61,3954.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,30521,97424.0,1575.56,2401.0,101400.56,20547.99,12424.5,8135.24,41107.73,142508.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14663,19087.4,0.0,0.0,19087.4,280.68,1290.23,4015.97,5586.88,24674.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28856,70715.34,14594.42,8497.36,93807.12,21773.99,13937.6,7079.15,42790.74,136597.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,42409,158286.54,26438.57,7230.43,191955.54,31259.99,12418.54,3261.39,46939.92,238895.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,5126,107611.0,10661.39,6604.28,124876.67,22633.66,12376.71,9809.73,44820.1,169696.77 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8603,Emergency Services Coord III,36014,106065.3,0.0,1919.59,107984.89,21855.61,12418.53,8722.93,42997.07,150981.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43718,144288.51,0.0,8046.83,152335.34,30614.87,12424.5,10285.17,53324.54,205659.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",30902,13011.73,0.0,0.0,13011.73,0.0,2753.71,1009.08,3762.79,16774.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,3146,8229.71,0.0,0.0,8229.71,0.0,1140.91,638.76,1779.67,10009.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,17684,77675.01,0.0,327.67,78002.68,16013.86,11946.63,6245.56,34206.05,112208.73 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,49921,77071.01,336.78,1305.0,78712.79,16127.23,12424.5,6465.97,35017.7,113730.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,21311,58101.09,0.0,2184.0,60285.09,12423.71,12424.5,4934.76,29782.97,90068.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42448,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,47028,193028.0,0.0,250.0,193278.0,38847.0,12424.5,11013.35,62284.85,255562.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26751,97074.39,47671.98,18328.14,163074.51,28080.06,12334.3,2733.1,43147.46,206221.97 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,21407,63705.0,0.0,0.0,63705.0,13129.83,12424.5,5182.66,30736.99,94441.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,36853,60404.0,176.28,5851.07,66431.35,13660.36,12424.5,5481.59,31566.45,97997.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,30837,92282.06,0.0,0.0,92282.06,19019.52,12424.5,7428.57,38872.59,131154.65 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,43932,129121.53,0.0,0.0,129121.53,25971.78,12416.43,9947.81,48336.02,177457.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,1490,58782.06,0.0,624.0,59406.06,12240.74,12424.5,4631.37,29296.61,88702.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,42795,84644.0,44541.28,16837.1,146022.38,19676.55,12424.51,10118.15,42219.21,188241.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,8440,104915.52,0.0,0.0,104915.52,21583.2,12424.5,8313.8,42321.5,147237.02 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,20202,93499.09,0.0,1040.0,94539.09,19484.04,12424.5,7587.02,39495.56,134034.65 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,20669,127790.37,0.0,0.0,127790.37,25991.26,10867.26,17138.61,53997.13,181787.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,31871,108038.01,6188.49,3599.39,117825.89,22274.1,12424.5,9268.28,43966.88,161792.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,18289,101113.92,7774.67,8188.42,117077.01,21151.3,9079.45,1983.31,32214.06,149291.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,41888,26867.0,0.0,420.0,27287.0,0.0,4300.79,2175.99,6476.78,33763.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47793,112685.41,8004.06,6823.85,127513.32,22330.91,12424.5,2163.23,36918.64,164431.96 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,46920,1045.9,0.0,0.0,1045.9,188.01,0.0,591.74,779.75,1825.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48337,44004.5,3681.93,719.77,48406.2,11582.26,13240.68,3669.01,28491.95,76898.15 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,44892,67408.5,10106.45,2219.9,79734.85,14426.27,10964.79,6110.49,31501.55,111236.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43368,1096.38,0.0,21.56,1117.94,0.0,534.61,86.78,621.39,1739.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34056,11.94,0.0,0.0,11.94,3.08,0.0,0.87,3.95,15.89 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,35129,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8510.09,42906.4,149511.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,23100,61528.52,0.0,621.91,62150.43,12808.99,12382.69,5074.8,30266.48,92416.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,33280,96911.02,0.0,0.0,96911.02,19951.14,12424.5,7704.32,40079.96,136990.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,4142,Senior Real Property Officer,19865,121952.02,0.0,0.0,121952.02,24543.27,12424.5,9851.48,46819.25,168771.27 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,15941,113249.9,0.0,0.0,113249.9,22757.04,12424.5,16972.22,52153.76,165403.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15200,11336.83,0.0,0.0,11336.83,1364.7,4916.05,907.59,7188.34,18525.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,23317,4739.09,0.0,407.54,5146.63,1293.91,1091.91,414.16,2799.98,7946.61 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52734,2721.34,0.0,559.17,3280.51,702.1,1254.4,259.07,2215.57,5496.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,25277,81942.03,12873.66,3569.0,98384.69,17625.63,12424.5,8023.29,38073.42,136458.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,32593,114720.06,0.0,0.0,114720.06,23087.61,12424.5,9398.09,44910.2,159630.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,20233,48545.4,12411.78,3401.86,64359.04,12166.53,11468.78,5150.9,28786.21,93145.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,26834,88144.09,0.0,0.0,88144.09,18163.54,12424.5,6995.55,37583.59,125727.68 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,38063,61233.43,0.0,0.0,61233.43,8973.34,12424.51,4883.01,26280.86,87514.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17377,6226.71,0.0,0.0,6226.71,0.0,2646.78,506.19,3152.97,9379.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,9357,46985.61,493.88,2414.8,49894.29,11262.14,12424.5,3774.92,27461.56,77355.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7549,119455.88,395.14,4565.66,124416.68,23662.82,12424.5,2107.59,38194.91,162611.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49115,3442.45,0.0,0.0,3442.45,0.0,1445.54,274.9,1720.44,5162.89 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,20740,61581.67,0.0,0.0,61581.67,13870.08,9371.47,149.95,23391.5,84973.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2935,"Sr Marriage, Fam & Cld Cnslr",52156,97424.16,0.0,1148.36,98572.52,20323.89,12424.5,8168.47,40916.86,139489.38 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9770,Community Development Asst,21028,62116.56,0.0,1500.0,63616.56,13086.49,11702.03,4986.98,29775.5,93392.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,21041,93047.1,16652.98,10367.77,120067.85,20449.43,12567.89,9748.75,42766.07,162833.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",4628,74180.37,2386.93,2782.57,79349.87,15652.26,10535.14,6429.36,32616.76,111966.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21682,112170.34,16330.77,19155.86,147656.97,24819.25,15052.74,2504.67,42376.66,190033.63 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),24017,142370.12,0.0,4409.89,146780.01,29948.64,9608.2,10246.04,49802.88,196582.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,9483,113233.6,37736.61,13501.68,164471.89,24030.57,15196.12,2747.47,41974.16,206446.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8627,75550.31,110.48,1400.0,77060.79,15827.84,12424.5,6237.9,34490.24,111551.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8481,61197.28,219.36,1539.2,62955.84,7333.75,5307.72,5082.03,17723.5,80679.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9275,97715.81,2991.35,17025.06,117732.22,27894.63,12418.53,1957.92,42271.08,160003.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14844,115841.16,1974.69,19633.84,137449.69,26943.24,15196.12,2286.07,44425.43,181875.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,19817,15520.88,0.0,1496.65,17017.53,3052.69,2532.69,1354.1,6939.48,23957.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49305,63154.73,3111.01,2562.93,68828.67,15968.58,13354.84,5212.71,34536.13,103364.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29894,72671.43,32268.09,5728.3,110667.82,15944.21,15052.77,1844.26,32841.24,143509.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,3577,28087.3,0.0,1040.0,29127.3,6964.69,9120.9,2377.6,18463.19,47590.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,20918,3674.7,0.0,0.0,3674.7,0.0,1342.5,284.49,1626.99,5301.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,6119,101437.62,181.92,565.45,102184.99,20908.66,12210.18,8287.86,41406.7,143591.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,15845,63887.0,1729.17,1159.65,66775.82,13406.64,12424.5,5505.37,31336.51,98112.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22158,66130.77,11526.57,901.77,78559.11,18375.24,13034.15,6091.58,37500.97,116060.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,13713,47399.2,10202.87,3744.26,61346.33,11381.14,12424.5,4866.68,28672.32,90018.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,38247,112776.05,1675.87,6175.96,120627.88,23928.78,12424.5,9781.92,46135.2,166763.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,46912,44029.58,0.0,475.0,44504.58,5046.19,3219.62,3608.45,11874.26,56378.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47060,55855.0,14305.19,8239.88,78400.07,13490.91,12424.5,6226.95,32142.36,110542.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,37268,77388.45,0.0,0.0,77388.45,16013.87,11946.1,6309.09,34269.06,111657.51 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,16536,63705.0,0.0,0.0,63705.0,13129.83,12424.5,5101.76,30656.09,94361.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,22406,5780.0,0.0,0.0,5780.0,1075.66,955.74,447.02,2478.42,8258.42 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,4226,7118.92,0.0,0.0,7118.92,0.0,2355.88,551.69,2907.57,10026.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,29540,16357.39,0.0,0.0,16357.39,2086.65,2520.69,1319.05,5926.39,22283.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",10105,12225.13,0.0,0.0,12225.13,0.0,2897.06,948.87,3845.93,16071.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1706,Telephone Operator,18610,53401.78,0.0,5869.94,59271.72,13621.56,12352.82,4893.68,30868.06,90139.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14612,2944.77,0.0,344.2,3288.97,2147.81,0.0,167.91,2315.72,5604.69 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),27266,50123.54,17298.12,5794.82,73216.48,10477.46,7645.85,1226.0,19349.31,92565.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,51275,59937.09,0.0,0.0,59937.09,12250.25,11416.92,4644.65,28311.82,88248.91 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),10129,182880.2,0.0,1500.0,184380.2,37079.74,12328.92,10916.62,60325.28,244705.48 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,42565,403.76,355.8,0.0,759.56,0.0,119.47,58.95,178.42,937.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,40112,97064.24,645.38,4675.93,102385.55,24764.98,12335.2,1666.72,38766.9,141152.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,27703,55970.43,5171.95,1500.0,62642.38,12839.0,12424.51,5024.54,30288.05,92930.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,44703,10315.0,455.66,278.51,11049.17,0.0,2389.33,857.18,3246.51,14295.68 +Calendar,2015,1,Public Protection,POL,Police,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",37215,1104.0,0.0,0.0,1104.0,0.0,0.0,87.33,87.33,1191.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26621,9945.55,0.0,0.0,9945.55,1137.28,4312.74,798.19,6248.21,16193.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,33677,101584.3,0.0,770.05,102354.35,21078.38,12424.5,8083.99,41586.87,143941.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",24998,82535.0,31667.6,4981.99,119184.59,17163.15,12424.5,9685.26,39272.91,158457.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37396,70030.13,916.63,16669.94,87616.7,0.0,5351.79,6789.0,12140.79,99757.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,49235,76187.22,220.96,1390.0,77798.18,15970.02,12281.15,6031.87,34283.04,112081.22 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,35927,9501.4,880.75,263.4,10645.55,0.0,2628.26,826.26,3454.52,14100.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7808,72045.54,0.0,1120.0,73165.54,15047.86,12376.73,5656.18,33080.77,106246.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,32541,107416.02,2964.01,2135.0,112515.03,22586.24,12424.5,9210.93,44221.67,156736.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,6040,129895.0,0.0,0.0,129895.0,26141.48,12424.5,9996.24,48562.22,178457.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,22039,153766.05,0.0,0.0,153766.05,30916.65,12412.56,17579.52,60908.73,214674.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50134,5702.65,0.0,511.03,6213.68,0.0,0.0,689.38,689.38,6903.06 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",11985,135115.5,19407.85,8106.93,162630.28,28124.78,12424.5,2716.55,43265.83,205896.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30180,1865.38,0.0,0.0,1865.38,0.0,794.45,152.5,946.95,2812.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33187,3879.86,0.0,250.0,4129.86,953.46,771.58,263.89,1988.93,6118.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52519,3949.99,0.0,648.38,4598.37,-0.02,0.0,43.38,43.36,4641.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,14079,11818.0,0.0,280.0,12098.0,2660.37,2867.19,972.55,6500.11,18598.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12983,117135.35,47098.79,3448.83,167682.97,23184.68,12424.5,2858.94,38468.12,206151.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,10238,5808.06,0.0,0.0,5808.06,0.0,916.9,450.8,1367.7,7175.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",24046,130341.59,12400.04,17353.2,160094.83,28873.31,15052.76,2719.2,46645.27,206740.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5120,Architectural Administrator,38975,119321.09,0.0,0.0,119321.09,24022.31,12424.5,9766.37,46213.18,165534.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41111,67435.69,7200.4,3071.94,77708.03,19306.04,13286.46,5847.6,38440.1,116148.13 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,16181,68584.26,0.0,100.0,68684.26,15775.15,0.0,1175.91,16951.06,85635.32 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,39726,8423.55,0.0,0.0,8423.55,0.0,477.86,947.58,1425.44,9848.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,52356,135421.02,0.0,0.0,135421.02,27246.1,12424.54,10034.75,49705.39,185126.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21271,13524.99,0.0,0.0,13524.99,366.52,5864.9,1094.56,7325.98,20850.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33230,138633.91,14673.74,11741.87,165049.52,27400.21,12424.5,2259.38,42084.09,207133.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,14332,60509.42,16067.41,13056.31,89633.14,14210.29,11661.29,7333.54,33205.12,122838.26 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),23067,184289.01,0.0,5248.28,189537.29,38144.38,12424.5,10883.57,61452.45,250989.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48362,33460.41,4718.35,867.1,39045.86,8819.28,10441.25,2784.24,22044.77,61090.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,25123,934.05,0.0,16.16,950.21,0.0,310.61,0.01,310.62,1260.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,42429,764.37,0.0,0.0,764.37,0.0,279.25,62.78,342.03,1106.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5788,75614.84,14602.49,5825.06,96042.39,16505.92,15196.11,1554.62,33256.65,129299.04 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,7852,49824.21,5108.72,9618.37,64551.3,13694.92,11922.74,5052.61,30670.27,95221.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44079,0.0,0.0,318.34,318.34,0.0,0.0,24.36,24.36,342.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15293,917.85,0.0,30.6,948.45,867.55,0.0,0.0,867.55,1816.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,17903,81157.04,0.0,4026.35,85183.39,17008.11,12424.5,7009.22,36441.83,121625.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",35112,14295.97,0.0,0.0,14295.97,0.0,3025.49,1109.6,4135.09,18431.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,33366,8233.1,43.48,0.0,8276.58,1547.22,1863.67,655.33,4066.22,12342.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37990,29735.11,4283.56,560.52,34579.19,7693.9,9266.83,2637.31,19598.04,54177.23 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,6828,78963.02,0.0,624.0,79587.02,16403.15,12424.5,6471.18,35298.83,114885.85 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),52938,182657.33,0.0,1500.0,184157.33,37030.87,12424.5,10920.56,60375.93,244533.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,48955,81542.02,0.0,0.0,81542.02,16806.15,12424.5,6686.28,35916.93,117458.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,40134,66580.0,1692.97,624.0,68896.97,13851.16,12424.5,5320.14,31595.8,100492.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,11467,56120.03,0.0,0.0,56120.03,12556.8,12424.47,4653.78,29635.05,85755.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,19422,84275.65,0.0,1180.21,85455.86,17607.06,12376.71,6792.79,36776.56,122232.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51789,49071.16,1601.86,5662.65,56335.67,11788.11,10913.25,4287.52,26988.88,83324.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16344,67907.69,29333.2,6231.92,103472.81,20289.67,13377.07,8061.86,41728.6,145201.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,44010,213721.68,0.0,0.0,213721.68,42999.39,12424.5,19736.83,75160.72,288882.4 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,9737,4540.0,0.0,0.0,4540.0,0.0,0.0,359.06,359.06,4899.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5606,67518.18,13289.36,4121.42,84928.96,19640.88,13306.22,6297.82,39244.92,124173.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,3171,82835.0,0.0,503.55,83338.55,17085.76,9527.44,6686.23,33299.43,116637.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,42980,61735.02,0.0,624.0,62359.02,12852.62,12424.5,4917.42,30194.54,92553.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,38879,109878.28,0.0,1254.0,111132.28,22374.18,12406.58,9176.94,43957.7,155089.98 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,40142,40597.33,0.0,0.0,40597.33,9656.18,8643.75,3269.93,21569.86,62167.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,40728,5019.19,0.0,26.27,5045.46,0.0,0.0,469.7,469.7,5515.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50217,97950.82,1442.72,5571.3,104964.84,0.0,7159.5,4340.09,11499.59,116464.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,21158,213721.67,0.0,0.0,213721.67,42992.27,12424.5,19756.82,75173.59,288895.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,10717,73674.31,893.64,0.0,74567.95,15176.78,12376.71,6112.65,33666.14,108234.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,4578,51405.0,2229.54,3777.01,57411.55,12588.56,12424.5,4672.82,29685.88,87097.43 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,35445,32107.76,0.0,0.0,32107.76,6491.93,0.0,2539.77,9031.7,41139.46 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25250,5586.0,47.25,304.5,5937.75,0.0,2383.35,459.71,2843.06,8780.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30278,43429.78,0.0,0.0,43429.78,10416.66,12424.5,3143.81,25984.97,69414.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,26402,18651.53,0.0,360.0,19011.53,0.0,4536.73,1445.46,5982.19,24993.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,712,1300.2,0.0,0.0,1300.2,0.0,0.0,0.0,0.0,1300.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,1199,12899.0,0.0,0.0,12899.0,2836.47,2867.19,1036.69,6740.35,19639.35 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,5370,35163.43,666.31,1124.45,36954.19,8763.62,7565.68,2803.22,19132.52,56086.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35464,24045.38,1768.94,614.35,26428.67,6084.7,7469.59,2017.29,15571.58,42000.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52651,67567.88,13271.84,3724.24,84563.96,19622.57,13321.87,6598.73,39543.17,124107.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,13408,81116.03,0.0,0.0,81116.03,16718.54,12424.5,6381.96,35525.0,116641.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28327,4267.5,0.0,0.0,4267.5,0.0,1791.99,338.93,2130.92,6398.42 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,15533,30859.0,0.0,0.0,30859.0,5742.88,5256.52,2400.85,13400.25,44259.25 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,28644,38988.0,2601.23,0.0,41589.23,8745.0,5734.39,3406.12,17885.51,59474.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,41738,74437.23,0.0,0.0,74437.23,15304.46,12424.51,6173.61,33902.58,108339.81 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,24930,2292.72,35.96,0.0,2328.68,0.0,568.96,180.5,749.46,3078.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,12986,102561.03,0.0,0.0,102561.03,21138.64,12424.5,8216.94,41780.08,144341.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,48348,57079.93,12474.13,0.0,69554.06,11914.08,10923.53,5581.65,28419.26,97973.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,42210,62191.41,1090.11,3633.42,66914.94,13143.83,10999.86,5263.78,29407.47,96322.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,52680,4175.31,0.0,0.0,4175.31,0.0,925.86,323.25,1249.11,5424.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,32251,188467.87,0.0,0.0,188467.87,37907.43,12424.5,25968.54,76300.47,264768.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,31662,4139.11,0.0,0.0,4139.11,0.0,1935.34,321.11,2256.45,6395.56 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,7042,39259.14,0.0,0.0,39259.14,7306.14,5435.72,3028.25,15770.11,55029.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51030,2176.46,0.0,0.0,2176.46,0.0,943.78,168.5,1112.28,3288.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19209,143217.08,0.0,28842.67,172059.75,21289.03,11942.93,5281.74,38513.7,210573.45 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,10821,102019.04,0.0,0.0,102019.04,21026.29,12424.5,7725.36,41176.15,143195.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,1458,164232.26,0.0,0.0,164232.26,33051.92,12424.5,18506.79,63983.21,228215.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31462,27511.19,3182.0,618.83,31312.02,7048.02,8558.74,2365.09,17971.85,49283.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,23510,50216.41,0.0,3285.37,53501.78,12163.02,11296.26,4335.16,27794.44,81296.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,29980,8860.0,1048.95,1305.18,11214.13,2028.77,2867.19,894.62,5790.58,17004.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43038,112170.36,30995.25,10998.87,154164.48,23457.76,15052.76,2628.38,41138.9,195303.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,23943,68261.21,60.51,1215.15,69536.87,14069.18,10437.89,5763.79,30270.86,99807.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,36974,27398.13,0.0,0.0,27398.13,4967.27,1911.47,3484.76,10363.5,37761.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",34218,9432.93,0.0,0.0,9432.93,0.0,2245.97,730.29,2976.26,12409.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31391,81328.34,0.0,17549.9,98878.24,12782.06,0.0,7181.14,19963.2,118841.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,49146,62811.04,0.0,250.0,63061.04,12945.67,12424.5,5209.2,30579.37,93640.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,10275,103440.32,0.0,2003.69,105444.01,21711.42,12424.5,8406.05,42541.97,147985.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,39158,24996.0,0.0,0.0,24996.0,4651.77,2867.18,1974.18,9493.13,34489.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,1274,90673.64,8291.08,904.62,99869.34,18648.33,12424.5,8027.3,39100.13,138969.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,15380,91797.97,54618.97,9969.66,156386.6,24901.17,10503.13,402.46,35806.76,192193.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,33343,31305.01,2738.81,28864.51,62908.33,5663.67,2389.33,1006.19,9059.19,71967.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10081,91885.79,0.0,8661.05,100546.84,0.0,7108.19,1685.85,8794.04,109340.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,5069,42945.89,1024.14,1907.76,45877.79,10653.61,11465.78,3462.13,25581.52,71459.31 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,32867,120111.0,0.0,15897.23,136008.23,24172.55,12424.5,9961.83,46558.88,182567.11 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),47267,38050.3,0.0,375.0,38425.3,7150.96,4444.15,3093.08,14688.19,53113.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,40280,118104.01,0.0,0.0,118104.01,23768.42,12424.5,9530.71,45723.63,163827.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,48032,108716.5,4665.47,16651.13,130033.1,23215.65,7215.17,9932.12,40362.94,170396.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,31532,105125.44,0.0,0.0,105125.44,21630.07,12424.5,8507.41,42561.98,147687.42 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,4382,98157.03,0.0,0.0,98157.03,20230.6,12424.5,7975.64,40630.74,138787.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,35525,63411.58,14065.32,6915.4,84392.3,14019.83,11214.6,6926.06,32160.49,116552.79 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),41460,102299.91,0.0,13020.02,115319.93,21161.39,10704.19,8956.92,40822.5,156142.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,19320,12032.1,0.0,341.73,12373.83,0.0,2437.11,960.4,3397.51,15771.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,6263,102424.1,63877.52,10603.77,176905.39,22735.88,12639.54,10705.77,46081.19,222986.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8518,45371.29,3027.48,1288.93,49687.7,11210.16,9945.04,3686.9,24842.1,74529.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",20590,86751.66,0.0,581.14,87332.8,18089.58,11571.09,7730.18,37390.85,124723.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,46263,85174.33,0.0,920.0,86094.33,17711.19,11858.95,6808.03,36378.17,122472.5 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,4822,4186.8,0.0,0.0,4186.8,0.0,860.16,324.97,1185.13,5371.93 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,40264,49919.15,17963.14,2316.77,70199.06,11221.77,10796.78,5744.17,27762.72,97961.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46797,17581.42,2985.08,591.28,21157.78,4351.85,5425.73,1618.86,11396.44,32554.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,30812,37967.97,0.0,2865.33,40833.3,8308.37,7057.0,3344.0,18709.37,59542.67 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,16756,66949.62,0.0,1529.99,68479.61,14071.49,12366.62,5403.33,31841.44,100321.05 +Calendar,2015,4,Community Health,DPH,Public Health,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,36767,100761.03,1956.72,8443.39,111161.14,22517.09,12424.5,8927.3,43868.89,155030.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,38906,88326.01,1457.08,0.0,89783.09,18204.27,12424.5,7766.52,38395.29,128178.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",7400,Skilled Labor,7412,Auto Svc Wrk Asst Sprv,50918,41162.15,3501.38,6771.42,51434.95,9019.91,7136.44,4189.03,20345.38,71780.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4200,4442.0,0.0,79.22,4521.22,0.0,1675.52,350.93,2026.45,6547.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1663,Patient Accounts Supervisor,10220,30114.0,1380.23,0.0,31494.23,6754.59,4300.79,2564.21,13619.59,45113.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,49042,49398.51,0.0,0.0,49398.51,0.0,3595.94,3828.66,7424.6,56823.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,9365,81157.01,1411.05,7426.26,89994.32,17370.94,12424.48,7343.97,37139.39,127133.71 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0884,Mayoral Staff IV,44585,0.0,0.0,1402.22,1402.22,0.0,0.0,107.27,107.27,1509.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29899,35922.28,4496.28,354.44,40773.0,9388.74,11219.51,3102.39,23710.64,64483.64 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8234,Fire Alarm Dispatcher,29826,15034.34,1495.69,797.9,17327.93,0.0,2873.17,1343.56,4216.73,21544.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33939,49837.9,37.72,5655.63,55531.25,11266.53,8837.53,4568.69,24672.75,80204.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,33387,56986.22,0.0,746.65,57732.87,10820.69,6642.33,4503.11,21966.13,79699.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39624,80949.89,5856.69,3344.18,90150.76,16578.92,12424.5,3374.34,32377.76,122528.52 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,19449,133087.02,0.0,9738.63,142825.65,26783.95,12424.5,10246.69,49455.14,192280.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,38954,97424.0,1117.2,2753.96,101295.16,20574.56,12424.5,7853.16,40852.22,142147.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38220,64897.29,1011.04,2171.75,68080.08,18344.05,12787.68,4977.55,36109.28,104189.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,21002,74453.01,0.0,0.0,74453.01,15100.34,10513.04,5951.45,31564.83,106017.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,6513,31874.08,76.52,600.0,32550.6,6043.45,5620.88,2324.53,13988.86,46539.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47477,7626.09,0.0,0.0,7626.09,0.0,671.93,622.99,1294.92,8921.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,17071,80230.62,3289.59,9815.43,93335.64,18374.27,11794.2,7456.55,37625.02,130960.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,11677,116723.47,0.0,0.0,116723.47,24097.54,10035.17,15468.39,49601.1,166324.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5627,63371.64,16637.64,3965.62,83974.9,18363.54,12478.68,6342.93,37185.15,121160.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27365,56531.0,1031.33,5076.6,62638.93,12615.82,12424.5,4919.38,29959.7,92598.63 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,31668,100554.03,0.0,1480.0,102034.03,21009.41,12424.5,8333.03,41766.94,143800.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,27377,158366.98,2968.2,15396.46,176731.64,31881.67,12424.5,3001.99,47308.16,224039.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41241,119373.52,29949.78,3587.59,152910.89,23599.45,12376.71,2551.56,38527.72,191438.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,4331,73957.07,715.85,0.0,74672.92,15238.86,12424.48,6075.03,33738.37,108411.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,261,97608.33,4599.7,6359.19,108567.22,25289.37,12405.45,1800.98,39495.8,148063.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10595,113233.58,102648.52,19814.26,235696.36,25036.03,15196.12,3980.57,44212.72,279909.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7333,Apprentice Stationary Engineer,45852,61681.59,0.0,0.0,61681.59,12927.17,10626.71,5031.3,28585.18,90266.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6453,1358.52,0.0,41.84,1400.36,0.0,334.51,108.7,443.21,1843.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4427,100192.49,12381.2,10040.94,122614.63,20774.85,12424.5,2045.03,35244.38,157859.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11399,2684.75,0.0,82.85,2767.6,0.0,1134.93,222.52,1357.45,4125.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46538,440.8,0.0,14.05,454.85,117.35,191.14,35.21,343.7,798.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,31967,61907.5,1789.65,0.0,63697.15,12732.05,12424.5,5138.8,30295.35,93992.5 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3376,Animal Care Asst Supv,44438,62665.53,0.0,835.0,63500.53,13089.95,12424.5,5217.47,30731.92,94232.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,39433,75535.65,12146.86,11191.17,98873.68,16929.33,12413.03,8040.08,37382.44,136256.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37488,33191.46,0.0,5591.13,38782.59,113.34,0.0,4410.68,4524.02,43306.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,19361,21229.09,0.0,587.63,21816.72,5163.11,6355.61,1738.55,13257.27,35073.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,27752,72699.01,0.0,883.81,73582.82,15164.68,12424.5,6099.88,33689.06,107271.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,48787,63887.0,228.94,4779.19,68895.13,14164.16,12424.5,5653.15,32241.81,101136.94 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,48856,56276.0,0.0,624.0,56900.0,12731.53,12424.5,4716.09,29872.12,86772.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,11784,46734.4,0.0,0.0,46734.4,11134.65,11588.36,3561.74,26284.75,73019.15 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,23077,83149.02,0.0,0.0,83149.02,16864.31,10513.04,6100.63,33477.98,116627.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,5612,63887.04,2680.1,2377.69,68944.83,13574.68,12424.5,5668.76,31667.94,100612.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14240,29770.16,4709.6,434.3,34914.06,7678.59,9279.85,2615.03,19573.47,54487.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20240,13626.58,0.0,0.0,13626.58,0.0,3524.25,1118.49,4642.74,18269.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,38957,107978.0,0.0,0.0,107978.0,22255.03,12424.5,8678.68,43358.21,151336.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34600,47775.5,0.0,6247.25,54022.75,10528.13,10489.14,4422.46,25439.73,79462.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13695,67426.06,6960.53,989.83,75376.42,15587.89,13284.96,5543.2,34416.05,109792.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,18002,16632.02,0.0,0.0,16632.02,0.0,4444.15,1351.69,5795.84,22427.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,19125,82578.71,10438.43,11263.59,104280.73,16769.43,10513.04,8461.89,35744.36,140025.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,32262,77856.3,3938.12,3313.42,85107.84,15750.04,11946.64,4244.92,31941.6,117049.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18222,119461.69,18933.33,12418.73,150813.75,23641.93,12424.51,2569.03,38635.47,189449.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,32634,62811.0,16954.04,10905.85,90670.89,14226.69,12424.5,7177.65,33828.84,124499.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,24551,45250.0,2188.79,0.0,47438.79,8816.78,7645.84,3801.67,20264.29,67703.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,38918,23369.0,0.0,0.0,23369.0,5138.82,5256.52,1852.17,12247.51,35616.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22241,82197.2,8107.97,6198.74,96503.91,16869.4,9079.44,1640.91,27589.75,124093.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21132,19060.0,0.0,29.78,19089.78,3460.96,1911.46,1494.2,6866.62,25956.4 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),10370,147722.9,0.0,1125.0,148847.9,29871.67,12089.99,10318.47,52280.13,201128.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18474,56531.0,865.49,4343.05,61739.54,12325.25,12424.5,4957.26,29707.01,91446.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10971,92761.01,0.0,2175.44,94936.45,19556.87,8263.84,7588.89,35409.6,130346.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30118,55855.01,14390.97,1871.95,72117.93,12497.61,12424.5,5784.12,30706.23,102824.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,50442,56747.1,0.0,5633.26,62380.36,12629.08,12472.29,5150.68,30252.05,92632.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,29706,62748.01,0.0,0.0,62748.01,13501.75,8601.58,5010.02,27113.35,89861.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,23484,60582.87,0.0,0.0,60582.87,4714.73,11301.52,4773.02,20789.27,81372.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",7127,100.0,0.0,0.0,100.0,0.0,23.89,7.76,31.65,131.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,1920,146319.62,312.49,200.0,146832.11,29391.83,12424.5,10181.33,51997.66,198829.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,30688,98834.05,0.0,0.0,98834.05,20344.72,12211.23,8643.28,41199.23,140033.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,38044,176127.09,0.0,250.0,176377.09,35445.72,12424.56,10585.52,58455.8,234832.89 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,8811,74412.14,0.0,5055.0,79467.14,15474.57,12424.5,6592.18,34491.25,113958.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9235,37194.93,7515.94,2644.6,47355.47,10349.27,7280.58,3638.97,21268.82,68624.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,7749,75927.01,2009.46,0.0,77936.47,15648.74,12424.5,6392.35,34465.59,112402.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15012,11494.39,30.04,1295.95,12820.38,2909.39,2285.87,852.79,6048.05,18868.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,40965,62144.04,3851.03,582.63,66577.7,11967.55,12083.42,5206.61,29257.58,95835.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,26317,80599.02,2137.39,10.0,82746.41,15826.64,9079.44,6582.91,31488.99,114235.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8387,26685.77,0.0,0.0,26685.77,413.23,6929.04,2146.25,9488.52,36174.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23525,4463.11,0.0,0.0,4463.11,0.0,1935.35,368.82,2304.17,6767.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,37089,143188.02,0.0,16785.66,159973.68,28816.76,12424.5,10493.57,51734.83,211708.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,49964,158351.71,2005.44,13878.68,174235.83,31315.07,12424.51,2914.82,46654.4,220890.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45241,56120.03,0.0,0.0,56120.03,12556.8,12424.5,4109.32,29090.62,85210.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,18774,44241.0,0.0,0.0,44241.0,8824.21,9079.44,3621.21,21524.86,65765.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,31079,4737.88,0.0,0.0,4737.88,0.0,0.0,374.29,374.29,5112.17 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,42328,48166.22,0.0,0.0,48166.22,11546.83,12424.5,3759.61,27730.94,75897.16 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,17981,102171.0,0.0,100.0,102271.0,21045.12,12424.5,7798.85,41268.47,143539.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,21674,9960.0,0.0,0.0,9960.0,0.0,0.0,787.73,787.73,10747.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,5151,139204.22,31040.21,13414.34,183658.77,27492.77,12424.51,3076.13,42993.41,226652.18 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,46269,81873.2,3570.76,842.18,86286.14,17035.25,12272.18,6932.67,36240.1,122526.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,38655,170335.04,0.0,0.0,170335.04,34279.71,12424.5,25658.35,72362.56,242697.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16874,17458.86,0.0,1372.13,18830.99,2663.77,0.0,4384.86,7048.63,25879.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,39032,85368.01,0.0,360.0,85728.01,17664.1,12424.5,7053.78,37142.38,122870.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,17804,550.53,0.0,0.0,550.53,0.0,182.18,42.62,224.8,775.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,19376,62452.27,2282.3,1137.15,65871.72,12954.52,11755.49,5446.33,30156.34,96028.06 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,11560,143.28,0.0,0.0,143.28,0.0,32.86,11.1,43.96,187.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29631,47355.2,1765.65,6293.04,55413.89,12307.72,12424.5,4515.75,29247.97,84661.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48088,16769.88,0.0,250.0,17019.88,4628.14,3306.47,1258.72,9193.33,26213.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,10998,33695.0,0.0,0.0,33695.0,6270.65,4061.86,2678.69,13011.2,46706.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,37933,63887.02,4049.56,79.83,68016.41,13183.3,12424.5,5583.96,31191.76,99208.17 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,49349,2014.0,0.0,0.0,2014.0,519.61,477.86,143.02,1140.49,3154.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,36771,101323.0,890.18,1520.0,103733.18,21202.04,12424.5,8386.27,42012.81,145745.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,12994,16601.5,0.0,100.0,16701.5,0.0,2628.26,1300.44,3928.7,20630.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,3626,3504.0,16.43,597.43,4117.86,786.32,955.73,319.61,2061.66,6179.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47981,119450.14,5450.16,14770.03,139670.33,23683.74,12424.5,2332.6,38440.84,178111.17 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,26286,216631.32,0.0,8040.0,224671.32,43331.1,11665.59,11448.21,66444.9,291116.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",23388,149741.77,26960.38,20652.85,197355.0,33124.45,14407.64,3353.78,50885.87,248240.87 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1041,IS Engineer-Assistant,20686,41025.6,0.0,3146.67,44172.27,9203.17,4730.87,3613.49,17547.53,61719.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29355,35669.47,893.17,25337.6,61900.24,7706.87,3727.35,979.72,12413.94,74314.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,21309,77071.02,0.0,0.0,77071.02,15884.7,12424.5,6310.68,34619.88,111690.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26101,41318.34,6591.69,5220.85,53130.88,13565.25,0.0,4165.02,17730.27,70861.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,39862,41251.75,3015.08,7008.27,51275.1,9772.33,7090.33,841.84,17704.5,68979.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,30971,82914.01,0.0,0.0,82914.01,17088.82,12424.51,6703.13,36216.46,119130.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2732,71951.48,2020.59,2011.22,75983.29,15493.57,9079.44,1263.43,25836.44,101819.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,17319,66045.97,1516.2,100.0,67662.17,13631.03,12414.05,5593.27,31638.35,99300.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19997,57814.55,333.15,1440.0,59587.7,13222.82,12109.17,4846.44,30178.43,89766.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,39982,3881.0,0.0,1552.4,5433.4,931.44,477.86,420.65,1829.95,7263.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,38037,5417.95,0.0,0.0,5417.95,0.0,1600.85,420.52,2021.37,7439.32 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",5680,198139.02,0.0,5462.78,203601.8,40974.08,12424.5,11246.81,64645.39,268247.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5404,8725.83,0.0,0.0,8725.83,0.0,3721.38,700.15,4421.53,13147.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,2572,139839.35,14142.35,16041.02,170022.72,27656.23,12424.5,2843.2,42923.93,212946.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,21377,4230.0,82.01,108.0,4420.01,807.3,955.73,342.57,2105.6,6525.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34168,3157.95,0.0,94.31,3252.26,0.0,1326.08,260.14,1586.22,4838.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,718.0,"Glaziers, Metal, and Glass Workers, Local 718",7300,Journeyman Trade,7326,Glazier,50653,87526.7,62.74,4029.23,91618.67,18869.72,12423.91,7291.7,38585.33,130204.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,27404,2511.01,0.0,0.0,2511.01,0.0,907.95,201.93,1109.88,3620.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,20312,93939.32,1250.1,18.52,95207.94,19424.71,12052.96,7616.49,39094.16,134302.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,18268,67814.58,24.51,0.0,67839.09,13935.89,12173.76,5385.47,31495.12,99334.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,39930,11854.92,0.0,0.0,11854.92,0.0,2628.8,920.13,3548.93,15403.85 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,28315,12111.87,0.0,0.0,12111.87,2442.45,0.0,957.97,3400.42,15512.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",50343,147776.23,28819.71,20346.02,196941.96,31951.01,13737.07,3358.61,49046.69,245988.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,18410,47524.24,0.0,1180.0,48704.24,11679.72,12424.5,3663.38,27767.6,76471.84 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,14546,17794.85,0.0,0.0,17794.85,3311.64,3751.24,1421.87,8484.75,26279.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,22189,23240.0,0.0,882.09,24122.09,4863.76,5686.6,1878.58,12428.94,36551.03 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0116,"Brd Comm Mbr, M=$200/Mtg",25346,9800.0,0.0,0.0,9800.0,0.0,0.0,775.44,775.44,10575.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",37166,12983.5,0.0,0.0,12983.5,0.0,2747.72,1007.18,3754.9,16738.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",46060,93738.02,18777.4,5821.49,118336.91,19809.59,12424.51,9429.7,41663.8,160000.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7099,66575.51,21474.83,1073.85,89124.19,18520.52,13118.36,6914.7,38553.58,127677.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23760,10753.14,0.0,0.0,10753.14,1776.96,4611.4,879.92,7268.28,18021.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36783,113233.58,9187.21,19126.01,141546.8,25159.32,15196.12,2228.22,42583.66,184130.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3743,200.0,0.0,0.0,200.0,0.0,74.66,15.52,90.18,290.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23712,35318.49,4496.27,646.8,40461.56,9086.46,6902.4,3147.65,19136.51,59598.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,16411,83699.02,7241.51,1494.92,92435.45,17480.92,12424.48,7561.41,37466.81,129902.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33506,12214.95,766.73,171.17,13152.85,2968.52,3768.03,1016.76,7753.31,20906.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",8637,106090.0,2724.26,0.0,108814.26,21865.57,12424.49,8700.69,42990.75,151805.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,27584,57804.89,431.25,5628.74,63864.88,15848.58,6568.5,1092.72,23509.8,87374.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43864,113233.6,63845.7,26898.54,203977.84,25362.48,15196.12,3423.64,43982.24,247960.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19452,2176.45,0.0,0.0,2176.45,0.0,943.78,168.5,1112.28,3288.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,10102,139139.26,0.0,9257.07,148396.33,27707.95,11020.11,10283.1,49011.16,197407.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1215,41892.68,1140.52,8365.0,51398.2,0.0,3690.97,3797.51,7488.48,58886.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,51164,5219.14,0.0,0.0,5219.14,0.0,1157.34,384.32,1541.66,6760.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46835,47272.27,0.0,5811.5,53083.77,1839.91,0.0,5599.98,7439.89,60523.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,7913,69389.0,0.0,0.0,69389.0,14277.63,12424.5,5393.67,32095.8,101484.8 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,43674,11312.08,0.0,1672.39,12984.47,2793.26,2082.29,1090.77,5966.32,18950.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,12679,65994.03,471.38,550.04,67015.45,18546.73,12424.5,5475.29,36446.52,103461.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36236,33327.68,1572.84,1397.93,36298.45,9123.43,6532.71,2614.31,18270.45,54568.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,20361,112776.02,0.0,3947.29,116723.31,23490.94,12424.5,8805.83,44721.27,161444.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,22.0,"Prof & Tech Engineers - Personnel, Local 21",1500,Administrative Secretarial,1555,"Sctry, Bldg Inspection Comm",30094,89700.81,0.0,0.0,89700.81,18368.32,11573.3,7064.31,37005.93,126706.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,15655,27019.83,0.0,2755.74,29775.57,6432.69,4808.88,2447.66,13689.23,43464.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,49106,8200.41,0.0,288.5,8488.91,1675.5,1624.74,836.57,4136.81,12625.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,7546,56531.0,0.0,2958.75,59489.75,11651.3,12424.5,4877.06,28952.86,88442.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,10760,27617.1,0.0,0.0,27617.1,6194.52,5715.57,2230.73,14140.82,41757.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15834,70807.04,51817.47,8297.99,130922.5,21665.86,13949.07,9522.32,45137.25,176059.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,20519,158362.31,10686.81,9606.87,178655.99,31924.62,12424.5,2999.85,47348.97,226004.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13382,11197.75,0.0,0.0,11197.75,2030.15,1122.99,1263.6,4416.74,15614.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",11013,16225.52,0.0,0.0,16225.52,0.0,3840.85,1258.68,5099.53,21325.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,49907,72699.06,0.0,894.14,73593.2,15168.55,12424.5,6100.69,33693.74,107286.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36335,67693.98,20271.22,592.09,88557.29,18687.51,13338.42,6583.35,38609.28,127166.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4998,56531.0,0.0,4001.63,60532.63,12476.63,12424.5,4959.53,29860.66,90393.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,50189,90201.9,11849.65,4638.84,106690.39,19488.64,12424.5,8617.12,40530.26,147220.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,8995,0.0,0.0,3237.82,3237.82,0.0,68.5,247.69,316.19,3554.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,46086,77071.02,4.5,1222.0,78297.52,16140.81,12424.5,6454.17,35019.48,113317.0 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,42754,25541.08,0.0,250.01,25791.09,6182.08,7123.18,2081.81,15387.07,41178.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,5795,55819.03,358.3,1106.39,57283.72,12644.01,12332.63,4573.64,29550.28,86834.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,25469,98157.01,0.0,7947.73,106104.74,20230.59,12424.5,8481.74,41136.83,147241.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32656,9969.76,0.0,0.0,9969.76,1088.31,0.0,1761.58,2849.89,12819.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,21195,116976.03,0.0,283.96,117259.99,23593.0,12424.49,9236.25,45253.74,162513.73 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,2480,2891.59,0.0,0.0,2891.59,0.0,663.04,223.86,886.9,3778.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,41793,42211.6,455.62,1914.76,44581.98,8969.46,7678.53,3695.17,20343.16,64925.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,25818,25990.0,2364.11,4155.49,32509.6,6182.75,6212.25,2580.93,14975.93,47485.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29874,97134.43,860.93,10237.29,108232.65,26095.09,12343.69,642.52,39081.3,147313.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2577,Med Examiner's Investigator I,51477,43740.25,99.98,0.0,43840.23,9145.11,7806.77,3642.86,20594.74,64434.97 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,24485,106274.44,38345.57,16137.38,160757.39,28973.66,12182.59,2683.75,43840.0,204597.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9924,13487.5,0.0,744.96,14232.46,0.0,5166.92,1103.27,6270.19,20502.65 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",32636,89891.0,6390.34,6141.95,102423.29,21883.24,12424.5,615.43,34923.17,137346.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,292,123645.92,27858.48,5635.15,157139.55,24429.95,12328.93,2625.55,39384.43,196523.98 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,14608,77036.6,0.0,0.0,77036.6,15875.06,12424.5,6202.31,34501.87,111538.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,40600,65596.62,0.0,1328.06,66924.68,14907.56,12328.92,5174.09,32410.57,99335.25 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,19556,88544.26,4136.07,10020.45,102700.78,19236.85,11740.32,8233.06,39210.23,141911.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,39029,78176.0,30549.69,4290.25,113015.94,16132.24,11468.76,9065.41,36666.41,149682.35 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,46638,9243.28,0.0,0.0,9243.28,2073.26,1622.47,750.42,4446.15,13689.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,13607,33968.5,0.0,0.0,33968.5,812.52,7598.06,2706.4,11116.98,45085.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,16759,99369.82,0.0,1987.4,101357.22,20850.48,12424.5,8167.12,41442.1,142799.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,29462,72285.8,0.0,50.09,72335.89,14844.53,11851.06,5649.22,32344.81,104680.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,40817,114707.25,0.0,0.0,114707.25,23076.61,12424.5,9319.52,44820.63,159527.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27110,6446.25,0.0,214.88,6661.13,1210.23,0.0,1854.13,3064.36,9725.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49108,11604.85,0.0,40.0,11644.85,0.0,4969.8,926.19,5895.99,17540.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,37131,82764.2,387.83,1311.23,84463.26,17313.89,12406.58,6791.61,36512.08,120975.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5675,813.45,0.0,0.0,813.45,0.0,71.68,63.14,134.82,948.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,32921,125994.5,0.0,0.0,125994.5,25616.25,12424.5,9861.67,47902.42,173896.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,14995,70245.0,10224.9,4154.35,84624.25,14616.8,12424.5,6692.23,33733.53,118357.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16298,141103.96,6269.03,18573.12,165946.11,27880.11,12424.5,2784.43,43089.04,209035.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,38430,80846.82,0.0,7530.18,88377.0,18168.05,12376.71,7193.68,37738.44,126115.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49958,10524.1,41.33,325.51,10890.94,0.0,4563.61,881.31,5444.92,16335.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,17646,57995.0,0.0,0.0,57995.0,12973.02,12424.5,4502.74,29900.26,87895.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,7461,101770.03,0.0,0.0,101770.03,20975.25,12424.5,8316.31,41716.06,143486.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,4482,30647.5,0.0,0.0,30647.5,1543.38,8237.2,2274.27,12054.85,42702.35 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,23723,127129.03,0.0,0.0,127129.03,25584.72,12424.5,20829.71,58838.93,185967.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42798,5365.37,0.0,0.0,5365.37,0.0,2326.6,446.32,2772.92,8138.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,14739,65696.79,7935.66,3587.57,77220.02,13838.51,12347.86,6068.89,32255.26,109475.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,33459,77071.0,18719.55,2064.0,97854.55,16310.37,12424.5,7743.57,36478.44,134332.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9140,Transit Manager 1,10212,53717.7,0.0,19950.57,73668.27,12048.88,6546.76,5950.35,24545.99,98214.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,18560,67261.01,0.0,1924.0,69185.01,14216.05,12424.5,5517.22,32157.77,101342.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,27593,69902.0,2905.8,1060.0,73867.8,14624.99,12424.5,6111.29,33160.78,107028.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",26474,106090.0,5815.37,6616.78,118522.15,22427.25,12424.5,9726.54,44578.29,163100.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,25118,6405.0,0.0,576.45,6981.45,1801.21,1433.6,570.7,3805.51,10786.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,19540,29567.48,0.0,1560.36,31127.84,6074.25,6198.81,2857.88,15130.94,46258.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,19517,8632.11,0.0,217.23,8849.34,0.0,2858.24,686.21,3544.45,12393.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,8538,111937.52,0.0,0.0,111937.52,22533.08,12394.64,9141.59,44069.31,156006.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,15205,28268.0,0.0,0.0,28268.0,5260.69,5256.52,2242.98,12760.19,41028.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,48280,126994.01,0.0,4537.81,131531.82,26502.48,12424.5,9977.96,48904.94,180436.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51549,11743.22,0.0,119.82,11863.04,0.0,0.0,938.44,938.44,12801.48 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,36974,119193.72,0.0,0.0,119193.72,24406.37,10513.04,24280.35,59199.76,178393.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,32043,82914.02,0.0,0.0,82914.02,17088.82,12424.51,6877.95,36391.28,119305.3 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),41682,30123.16,0.0,5832.72,35955.88,6691.29,2144.96,2901.4,11737.65,47693.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34764,94626.85,34122.05,8264.31,137013.21,19183.39,12687.33,2338.2,34208.92,171222.13 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,46512,70348.0,0.0,0.0,70348.0,14762.81,10513.04,5406.81,30682.66,101030.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7767,121082.37,527.84,16482.86,138093.07,23537.61,12408.08,5552.76,41498.45,179591.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46888,55911.09,0.0,0.0,55911.09,0.0,4630.82,4123.85,8754.67,64665.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,49174,71584.8,4316.4,0.0,75901.2,14736.83,12424.5,6054.85,33216.18,109117.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43124,10846.0,0.0,813.45,11659.45,0.0,954.89,903.1,1857.99,13517.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,25318,87522.55,0.0,0.0,87522.55,18073.59,12168.01,6845.1,37086.7,124609.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,11754,33100.28,0.0,4738.15,37838.43,8703.09,8050.54,2894.11,19647.74,57486.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,42139,9702.0,0.0,0.0,9702.0,2133.46,2341.54,750.66,5225.66,14927.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,5414,93281.01,0.0,500.0,93781.01,19225.75,12424.5,7495.18,39145.43,132926.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7267,93430.46,15820.84,7974.82,117226.12,19484.92,11946.64,1954.43,33385.99,150612.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,34642,32060.05,0.0,0.0,32060.05,409.23,7161.71,2440.62,10011.56,42071.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,29015,99386.76,5792.94,11780.47,116960.17,20422.93,9079.44,1988.07,31490.44,148450.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",34283,7767.0,421.36,465.37,8653.73,1459.77,1433.6,676.51,3569.88,12223.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,48204,27652.0,0.0,3317.0,30969.0,3114.58,9102.44,2414.1,14631.12,45600.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,16541,135357.45,8793.31,10709.75,154860.51,26788.87,12352.82,2637.48,41779.17,196639.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,49783,56553.6,4767.84,21066.41,82387.85,13937.17,6546.76,6683.49,27167.42,109555.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,50453,27963.03,0.0,0.0,27963.03,6704.1,6212.25,2464.93,15381.28,43344.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1510,107434.2,10471.72,11471.68,129377.6,22800.87,14418.69,2269.51,39489.07,168866.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,49682,58305.75,0.0,879.54,59185.29,12214.24,11623.3,4898.01,28735.55,87920.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42236,11460.83,0.0,0.0,11460.83,227.46,4969.8,899.62,6096.88,17557.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,2218,2291.59,0.0,0.0,2291.59,0.0,0.0,188.66,188.66,2480.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,18681,79395.07,0.0,0.0,79395.07,16359.4,12424.51,6585.79,35369.7,114764.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,17112,16807.67,0.0,368.81,17176.48,4233.36,4747.3,1331.01,10311.67,27488.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3797,135409.86,0.0,801.07,136210.93,26827.81,12137.06,82.7,39047.57,175258.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3946,112807.04,0.0,5092.4,117899.44,23170.39,12376.9,1772.77,37320.06,155219.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,41532,171335.0,0.0,0.0,171335.0,34460.98,12424.5,28105.56,74991.04,246326.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,6253,79395.03,0.0,2104.0,81499.03,16807.96,12424.51,6700.45,35932.92,117431.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,38212,66102.0,0.0,380.0,66482.0,13699.38,12424.5,5377.74,31501.62,97983.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29175,138624.69,3410.9,3894.69,145930.28,27434.17,12424.5,2430.92,42289.59,188219.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,48727,88725.52,0.0,0.0,88725.52,18253.66,12374.21,7156.44,37784.31,126509.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,42476,48754.2,0.0,2059.13,50813.33,10527.06,8314.86,4144.77,22986.69,73800.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,39066,64902.96,0.0,0.0,64902.96,13134.58,10298.0,4970.86,28403.44,93306.4 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,39774,40012.0,0.0,0.0,40012.0,7254.16,1911.46,3128.56,12294.18,52306.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,16252,141676.38,0.0,11048.14,152724.52,30660.04,12162.75,10331.32,53154.11,205878.63 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",44576,59185.49,1253.76,9519.12,69958.37,15744.17,10584.9,1445.14,27774.21,97732.58 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,39464,18754.96,1715.14,340.0,20810.1,0.0,3866.23,1615.19,5481.42,26291.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4356,0.0,0.0,250.0,250.0,0.0,34.25,0.0,34.25,284.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,48014,85232.3,0.0,0.0,85232.3,17516.02,12328.92,6868.79,36713.73,121946.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,465,57135.01,0.0,0.0,57135.01,11802.81,10556.28,4728.07,27087.16,84222.17 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,24077,73566.21,4393.79,0.0,77960.0,15148.71,11998.55,6309.99,33457.25,111417.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,20821,21152.4,5740.85,0.0,26893.25,5457.3,5734.42,2163.4,13355.12,40248.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,6206,141922.22,38439.75,9968.44,190330.41,28616.78,12424.5,3198.19,44239.47,234569.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",34544,147269.88,0.0,0.0,147269.88,29640.19,12424.5,17503.74,59568.43,206838.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,15846,64364.79,0.0,0.0,64364.79,0.0,5835.94,4989.73,10825.67,75190.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,13142,116717.6,0.0,2847.34,119564.94,24535.22,12424.49,9602.76,46562.47,166127.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,28279,62545.01,5674.37,3521.37,71740.75,12687.62,9557.31,5549.35,27794.28,99535.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6534,64738.14,24017.09,4894.31,93649.54,19149.36,12751.18,7080.63,38981.17,132630.71 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,1585,3093.45,0.0,0.0,3093.45,784.52,709.33,239.58,1733.43,4826.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2272,39899.65,5712.58,7386.89,52999.12,9011.28,6152.52,1055.78,16219.58,69218.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,230,104811.0,25074.91,28746.27,158632.18,21601.91,12424.5,10438.98,44465.39,203097.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16463,910.4,0.0,0.0,910.4,0.0,382.3,70.67,452.97,1363.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43384,100445.74,1745.17,2956.7,105147.61,19862.53,10042.64,8521.06,38426.23,143573.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,35573,102019.04,0.0,0.0,102019.04,21026.26,12424.5,8207.97,41658.73,143677.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41948,33570.98,5727.22,4938.27,44236.47,5964.24,3345.06,758.44,10067.74,54304.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,46897,42423.0,15125.69,17047.55,74596.24,9849.62,7550.27,6016.63,23416.52,98012.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24119,113233.63,27583.52,11809.29,152626.44,23611.11,15196.12,2553.76,41360.99,193987.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7154,56163.3,794.73,1484.31,58442.34,10885.46,8601.58,3989.5,23476.54,81918.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,23272,68722.07,0.0,0.0,68722.07,14164.03,12424.5,5586.0,32174.53,100896.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",38191,5060.0,861.79,31.54,5953.33,898.66,477.86,100.16,1476.68,7430.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,3361,21416.0,0.0,0.0,21416.0,4803.61,3345.06,1726.1,9874.77,31290.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4765,7379.97,0.0,0.0,7379.97,621.94,3200.21,593.77,4415.92,11795.89 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,18622,60263.4,0.0,3158.88,63422.28,12464.78,10062.11,5323.2,27850.09,91272.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,43853,45953.4,13523.77,3803.99,63281.16,10479.5,6690.11,5050.61,22220.22,85501.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8134,45252.0,0.0,21885.41,67137.41,10571.97,3822.92,5372.68,19767.57,86904.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31341,644.67,0.0,20.84,665.51,0.0,279.55,51.53,331.08,996.59 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,40240,78121.4,0.0,1338.14,79459.54,16277.13,11468.77,5929.27,33675.17,113134.71 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,22201,4137.0,2934.92,256.85,7328.77,817.7,477.86,186.13,1481.69,8810.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,16153,71192.3,0.0,0.0,71192.3,14498.84,10943.13,5719.83,31161.8,102354.1 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",44260,89891.06,39593.57,5029.06,134513.69,21651.63,12424.5,701.47,34777.6,169291.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,38999,210287.04,0.0,0.0,210287.04,42320.52,12424.5,28863.94,83608.96,293896.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,36048,24110.2,48.85,2393.24,26552.29,5924.99,6403.39,2087.41,14415.79,40968.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,7181,2571.8,0.0,0.0,2571.8,0.0,459.95,199.11,659.06,3230.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,39547,80353.61,15100.5,11774.28,107228.39,18559.65,12300.72,8721.32,39581.69,146810.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,47206,55122.4,18000.17,4726.31,77848.88,13086.88,12424.52,6227.2,31738.6,109587.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1904,68868.33,0.0,4637.69,73506.02,14714.64,12182.58,6019.48,32916.7,106422.72 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,17238,72682.45,0.0,2392.99,75075.44,15419.38,12373.72,6030.69,33823.79,108899.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,17705,37588.93,0.0,284.79,37873.72,7339.82,5670.47,3182.41,16192.7,54066.42 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,51375,42613.91,470.01,9621.69,52705.61,9864.12,5686.6,4299.35,19850.07,72555.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37205,3186.4,0.0,0.0,3186.4,0.0,1338.02,249.4,1587.42,4773.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,26050,61735.02,862.88,0.0,62597.9,12724.0,12424.5,5188.21,30336.71,92934.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,21738,0.0,0.0,190.37,190.37,0.0,68.5,14.56,83.06,273.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15004,107748.37,44990.9,17024.44,169763.71,24106.3,14462.42,2895.18,41463.9,211227.61 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,31361,23014.56,0.0,1150.75,24165.31,4864.18,1218.56,1911.79,7994.53,32159.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,8056,23214.0,990.09,337.05,24541.14,0.0,5017.58,1977.93,6995.51,31536.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,17659,52618.6,7122.0,12623.39,72363.99,12328.86,8028.16,5799.13,26156.15,98520.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",52961,131577.07,41535.13,16447.22,189559.42,29091.88,15196.12,3343.52,47631.52,237190.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,14217,62830.21,1402.92,6277.79,70510.92,14117.32,11113.36,5552.25,30782.93,101293.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,4744,68697.0,12267.37,379.05,81343.42,10743.49,12424.51,6239.2,29407.2,110750.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41163,68233.03,21858.53,1778.14,91869.7,19175.86,13450.06,6926.15,39552.07,131421.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,48877,63368.08,4923.61,6.1,68297.79,13052.37,12322.96,5635.12,31010.45,99308.24 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,16863,977.63,0.0,0.0,977.63,219.28,179.2,75.69,474.17,1451.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,31410,98921.91,0.0,800.0,99721.91,20150.03,10975.49,7775.26,38900.78,138622.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,8629,58791.62,777.58,250.0,59819.2,12196.42,11636.97,4700.61,28534.0,88353.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42202,37432.87,2903.92,469.14,40805.93,10788.55,7408.29,3155.34,21352.18,62158.11 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,52157,17775.88,1218.23,0.0,18994.11,0.0,4960.84,1473.98,6434.82,25428.93 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,12971,67911.04,5946.86,4900.42,78758.32,14387.58,12424.5,6490.47,33302.55,112060.87 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",3216,900.0,0.0,0.0,900.0,0.0,0.0,71.2,71.2,971.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,5904,92282.03,0.0,0.0,92282.03,19019.5,12424.5,7509.53,38953.53,131235.56 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,39070,212530.48,0.0,0.0,212530.48,42732.1,12424.5,19727.07,74883.67,287414.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,27585,92478.65,0.0,0.0,92478.65,19045.79,12316.98,7675.07,39037.84,131516.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46605,0.0,0.0,162.96,162.96,0.0,0.0,12.46,12.46,175.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38099,66826.52,20317.7,626.72,87770.94,18450.17,13165.91,6644.18,38260.26,126031.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,6931,104598.03,0.0,0.0,104598.03,21558.0,12424.51,8595.69,42578.2,147176.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,48182,97174.0,0.0,0.0,97174.0,15862.55,12424.5,7833.02,36120.07,133294.07 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,37729,64272.85,0.0,0.0,64272.85,12778.96,8816.61,5141.13,26736.7,91009.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,52696,32058.75,0.0,231.9,32290.65,6009.3,4617.37,2651.94,13278.61,45569.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,36350,81931.02,0.0,0.0,81931.02,16693.09,10990.91,6613.99,34297.99,116229.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,52863,87868.73,0.0,0.0,87868.73,18107.17,12424.5,6916.76,37448.43,125317.16 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,11308,2779.35,0.0,1.74,2781.09,623.41,477.86,219.7,1320.97,4102.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,46609,0.0,0.0,2401.9,2401.9,0.0,68.5,164.62,233.12,2635.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5523,4518.21,0.0,884.91,5403.12,1165.69,1959.25,423.97,3548.91,8952.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,10765,39368.0,1909.08,6390.78,47667.86,8006.27,5734.39,3698.35,17439.01,65106.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,2522,93738.09,735.15,6387.95,100861.19,20304.8,12424.51,8149.54,40878.85,141740.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,44122,25922.37,0.0,1409.98,27332.35,0.0,2072.74,2121.07,4193.81,31526.16 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1771,Media Production Specialist,9030,73063.0,833.24,882.27,74778.51,15240.49,12424.5,6144.19,33809.18,108587.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46516,57437.02,4802.53,2366.05,64605.6,15520.16,13144.29,4951.31,33615.76,98221.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4256,123025.24,69.23,28695.31,151789.78,28283.19,10893.24,8650.71,47827.14,199616.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14809,65778.29,21728.46,7907.17,95413.92,20112.27,12957.92,7412.82,40483.01,135896.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,34236,96254.04,0.0,0.0,96254.04,19848.76,12424.52,7695.92,39969.2,136223.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14691,47320.63,0.0,1523.62,48844.25,0.0,0.0,3863.23,3863.23,52707.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",38842,10687.28,0.0,0.0,10687.28,2757.33,2544.63,877.65,6179.61,16866.89 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,38352,163707.0,0.0,0.0,163707.0,32846.9,12424.5,25464.88,70736.28,234443.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18757,54419.5,0.0,7149.42,61568.92,14187.0,12424.5,4728.54,31340.04,92908.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17390,66601.09,12022.83,2183.92,80807.84,18852.13,13123.99,6268.48,38244.6,119052.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,50319,130076.01,0.0,0.0,130076.01,26284.45,11946.66,10028.29,48259.4,178335.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,36053,646.8,0.0,59.83,706.63,0.0,95.58,54.7,150.28,856.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16924,117691.23,0.0,12497.02,130188.25,24973.73,10736.14,9744.97,45454.84,175643.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,20886,42917.22,0.0,586.82,43504.04,8299.71,6507.21,3489.17,18296.09,61800.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39797,52549.64,0.0,0.0,52549.64,11878.85,11630.05,4287.91,27796.81,80346.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,43494,112776.0,12073.72,2255.52,127105.24,23150.48,12424.5,9859.64,45434.62,172539.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,8726,9997.5,0.0,345.8,10343.3,2274.49,2628.26,817.33,5720.08,16063.38 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,27633,22190.79,1062.0,13670.57,36923.36,5065.61,4493.31,2982.97,12541.89,49465.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,9095,19255.0,0.0,1106.1,20361.1,4567.0,2389.32,1626.58,8582.9,28944.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,25035,26800.0,276.38,3611.29,30687.67,4758.05,2389.33,522.53,7669.91,38357.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,14849,78478.6,0.0,5363.93,83842.53,17238.58,12424.44,6801.03,36464.05,120306.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50142,122649.11,0.0,18111.15,140760.26,25790.19,10858.29,9077.09,45725.57,186485.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35860,30533.36,9750.4,9814.68,50098.44,9609.07,6072.12,3890.83,19572.02,69670.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,36229,65592.01,0.0,824.0,66416.01,13647.34,12424.5,5310.99,31382.83,97798.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,26989,35590.0,0.0,680.0,36270.0,8499.64,9557.3,2895.62,20952.56,57222.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,44282,53804.15,0.0,2948.4,56752.55,11101.96,11828.72,4453.63,27384.31,84136.86 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),52724,137358.0,0.0,17942.44,155300.44,29451.86,9318.38,10293.64,49063.88,204364.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4617,1292.35,0.0,39.43,1331.78,1162.49,95.76,435.48,1693.73,3025.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,40912,75209.4,0.0,0.0,75209.4,15487.8,12424.5,6118.73,34031.03,109240.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50807,11409.25,0.0,197.71,11606.96,0.0,4886.17,946.19,5832.36,17439.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",19302,135111.6,0.0,11497.92,146609.52,28670.54,12424.5,470.12,41565.16,188174.68 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,13807,80325.75,0.0,0.0,80325.75,16589.2,10551.87,6512.78,33653.85,113979.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7472,Wire Rope Cable Maint Mechanic,15562,87106.1,49618.45,9321.24,146045.79,19513.23,12299.89,10179.43,41992.55,188038.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,44289,65589.6,1574.97,0.0,67164.57,13487.86,12424.5,5563.79,31476.15,98640.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,42917,73300.79,665.02,2562.65,76528.46,15358.88,12406.58,6067.75,33833.21,110361.67 +Calendar,2015,4,Community Health,DPH,Public Health,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,28232,76161.0,4135.39,3487.98,83784.37,16418.01,12424.5,6879.11,35721.62,119505.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33089,126678.57,605.54,28216.5,155500.61,30004.01,11066.17,7246.49,48316.67,203817.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,20182,101384.75,0.0,0.0,101384.75,20919.73,12281.15,8123.77,41324.65,142709.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,33105,64329.37,7252.62,3303.25,74885.24,13258.0,12192.31,6108.99,31559.3,106444.54 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,53035,88944.5,0.0,960.0,89904.5,18617.39,11861.22,7470.94,37949.55,127854.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5707,8760.9,0.0,867.0,9627.9,2032.84,3799.03,767.0,6598.87,16226.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45798,67958.78,9659.01,3292.46,80910.25,19517.79,13391.23,6264.87,39173.89,120084.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46617,45989.18,54.23,1318.98,47362.39,6488.6,5027.51,4268.72,15784.83,63147.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,26542,36926.56,0.0,0.0,36926.56,5461.3,8586.63,2999.95,17047.88,53974.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",8097,133944.1,0.0,0.0,133944.1,27449.07,10990.9,25380.58,63820.55,197764.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6631,67717.96,3074.29,2626.95,73419.2,15997.33,13343.8,5391.49,34732.62,108151.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,28332,117798.27,3898.21,8004.26,129700.74,23324.37,12251.81,2197.66,37773.84,167474.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43342,1377.51,0.0,0.0,1377.51,115.11,597.33,114.39,826.83,2204.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",49899,132114.54,68426.77,21687.17,222228.48,30062.11,15196.12,3717.79,48976.02,271204.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",45612,130341.64,69040.25,23073.93,222455.82,29998.21,15052.76,3740.38,48791.35,271247.17 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,9674,7717.99,0.0,154.44,7872.43,2007.13,1660.58,660.43,4328.14,12200.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,23076,119450.18,67541.55,3394.15,190385.88,23683.75,12424.5,3236.6,39344.85,229730.73 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,28906,171192.37,0.0,0.0,171192.37,34603.5,12424.5,17930.56,64958.56,236150.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,36982,7196.2,0.0,48.43,7244.63,1624.98,964.34,1045.64,3634.96,10879.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,1059,29530.01,0.0,0.0,29530.01,6623.6,4778.66,2382.3,13784.56,43314.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,31211,91095.67,0.0,0.0,91095.67,18780.95,12383.83,7411.8,38576.58,129672.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,19562,135421.01,0.0,0.0,135421.01,27246.11,12424.51,10112.5,49783.12,185204.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,5980,31853.5,0.0,0.0,31853.5,6138.01,7120.2,2450.96,15709.17,47562.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14981,66089.51,25890.0,3492.46,95471.97,19054.04,13025.24,7259.32,39338.6,134810.57 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47976,27115.2,0.0,0.0,27115.2,6902.41,6881.27,2211.65,15995.33,43110.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7360,Pipe Welder,38823,100761.0,23169.79,3216.56,127147.35,21173.36,12424.51,9892.9,43490.77,170638.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7711,119455.89,21686.09,12179.91,153321.89,23662.82,12424.5,2382.32,38469.64,191791.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29674,32472.83,976.14,6548.81,39997.78,0.0,2854.54,3097.66,5952.2,45949.98 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,27641,112209.0,0.0,5463.13,117672.13,22582.31,12424.5,9163.46,44170.27,161842.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30356,119467.44,56031.98,9892.26,185391.68,23621.02,12424.5,3115.11,39160.63,224552.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,51652,0.0,0.0,114.64,114.64,0.0,68.5,8.77,77.27,191.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44355,3939.65,0.0,1002.96,4942.61,1047.24,1708.37,404.25,3159.86,8102.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2047,4819.21,0.0,481.93,5301.14,6020.47,0.0,2770.13,8790.6,14091.74 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),20219,12456.0,0.0,0.0,12456.0,2258.28,1433.6,963.66,4655.54,17111.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,6708,16170.0,0.0,1974.45,18144.45,4006.65,2389.32,1506.85,7902.82,26047.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,13550,61433.0,0.0,620.93,62053.93,12784.81,12363.33,5100.1,30248.24,92302.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9122,Transit Information Clerk,39207,65911.02,0.0,0.0,65911.02,13536.13,11939.53,5477.14,30952.8,96863.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,37487,97934.03,3252.48,1618.61,102805.12,20308.13,12424.5,8509.68,41242.31,144047.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44345,47035.3,0.0,5482.67,52517.97,12314.66,12424.5,3998.04,28737.2,81255.17 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,48838,90876.63,11908.64,7501.57,110286.84,19697.06,12424.5,8847.97,40969.53,151256.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,4207,3149.48,0.0,0.0,3149.48,0.0,1130.45,255.06,1385.51,4534.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,26640,67261.01,174.17,2547.5,69982.68,14071.86,12424.5,5573.33,32069.69,102052.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,28942,93738.02,25689.03,10170.18,129597.23,19657.3,12424.5,9909.62,41991.42,171588.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45093,67620.29,8570.87,1931.12,78122.28,19051.95,13322.67,5814.69,38189.31,116311.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,2312,98157.03,0.0,0.0,98157.03,20230.58,12424.5,7482.96,40138.04,138295.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51165,8880.69,0.0,434.05,9314.74,0.0,3796.04,753.33,4549.37,13864.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18420,13806.1,0.0,601.77,14407.87,0.0,5925.53,1163.12,7088.65,21496.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,4185,85368.01,0.0,624.0,85992.01,17723.28,12424.5,6965.27,37113.05,123105.06 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,2724,36018.74,9960.2,4671.16,50650.1,7540.96,4587.51,848.89,12977.36,63627.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator, Taxi And Accessible Servic",6064,4527.0,0.0,4670.95,9197.95,995.49,716.79,707.0,2419.28,11617.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,18827,106605.0,0.0,0.0,106605.0,21971.81,12424.5,8767.51,43163.82,149768.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,16462,107328.0,0.0,11971.2,119299.2,24042.62,12424.5,9804.27,46271.39,165570.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1833,73360.11,9374.85,6631.11,89366.07,16108.72,15196.11,1488.98,32793.81,122159.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43715,62421.0,5450.3,0.0,67871.3,12837.0,12416.92,5320.8,30574.72,98446.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,30526,84320.64,44713.9,2808.15,131842.69,17496.26,12376.71,9912.36,39785.33,171628.02 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,51381,12900.0,0.0,0.0,12900.0,0.0,0.0,1022.18,1022.18,13922.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,30960,11277.7,0.0,73.58,11351.28,0.0,0.0,897.76,897.76,12249.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,16896,7737.36,0.0,159.89,7897.25,0.0,2573.01,611.41,3184.42,11081.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,35655,168461.61,571.5,7347.64,176380.75,33901.35,10840.14,10705.04,55446.53,231827.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,41380,79395.03,58.73,1237.99,80691.75,16626.52,12424.51,6688.37,35739.4,116431.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,48208,135421.02,0.0,0.0,135421.02,27246.1,12424.51,10082.75,49753.36,185174.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46596,131192.33,4387.95,28006.62,163586.9,26649.72,10933.56,8539.65,46122.93,209709.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",34302,13747.95,56.45,0.0,13804.4,0.0,3273.39,1070.58,4343.97,18148.37 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,37008,91853.35,5779.3,4994.65,102627.3,19245.7,12283.29,8266.03,39795.02,142422.32 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,35993,8650.0,0.0,0.0,8650.0,1609.77,1194.67,668.18,3472.62,12122.62 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,7375,88592.03,0.0,0.0,88592.03,18259.51,12424.5,6909.44,37593.45,126185.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,34115,58782.02,0.0,2184.0,60966.02,12243.99,12424.5,4798.88,29467.37,90433.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3292,80953.75,2925.56,3440.54,87319.85,16570.71,12424.51,3307.28,32302.5,119622.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,15187,88296.01,0.0,3624.0,91920.01,18337.87,12424.5,7638.64,38401.01,130321.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,37402,113036.07,0.0,16115.78,129151.85,25300.42,14431.54,1012.87,40744.83,169896.68 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,34295,107562.01,0.0,3000.0,110562.01,21660.43,12424.5,31337.2,65422.13,175984.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,1377,47428.2,137.42,1587.49,49153.11,11330.03,10045.38,3995.13,25370.54,74523.65 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,40361,72350.34,0.0,5471.0,77821.34,15112.36,12080.26,6328.9,33521.52,111342.86 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,49169,11214.88,0.0,336.93,11551.81,2980.39,2926.93,938.89,6846.21,18398.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,12734,6066.0,0.0,192.09,6258.09,1614.58,1433.59,505.88,3554.05,9812.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",37424,150464.07,91904.58,23467.53,265836.18,33272.48,14407.65,4528.38,52208.51,318044.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,26894,34277.01,0.0,0.0,34277.01,6378.95,5256.52,2729.84,14365.31,48642.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,12448,29750.28,0.0,1960.12,31710.4,3552.49,6006.83,2630.55,12189.87,43900.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22060,9309.02,231.53,0.0,9540.55,0.0,2341.54,755.86,3097.4,12637.95 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,4056,85004.0,7081.49,12210.79,104296.28,17681.41,12424.5,8536.06,38641.97,142938.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,2358,64514.74,975.09,8023.99,73513.82,14855.31,12303.55,5813.08,32971.94,106485.76 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,25884,81879.03,0.0,6841.28,88720.31,17278.23,10035.18,7190.15,34503.56,123223.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,51462,73749.01,109.24,4459.89,78318.14,15781.48,12424.5,6525.15,34731.13,113049.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24745,97767.99,49885.71,15359.94,163013.64,27525.93,12424.5,2722.58,42673.01,205686.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,8954,118427.0,0.0,0.0,118427.0,23833.74,12424.5,16988.51,53246.75,171673.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,28019,217287.04,0.0,0.0,217287.04,43589.62,12424.5,18681.45,74695.57,291982.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,9705,107978.0,1763.57,16114.97,125856.54,24483.04,12424.5,9872.86,46780.4,172636.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",8091,118880.51,50014.08,13987.83,182882.42,26146.52,13730.75,3119.31,42996.58,225879.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,16094,5513.3,0.0,0.0,5513.3,0.0,1099.09,427.5,1526.59,7039.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,9532,162192.57,727.9,10601.89,173522.36,34007.17,11437.71,10685.7,56130.58,229652.94 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,12658,78963.08,0.0,624.0,79587.08,16403.15,12424.5,6599.35,35427.0,115014.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51341,70245.0,14423.1,8989.76,93657.86,15641.73,12424.5,7658.4,35724.63,129382.49 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,14633,150291.0,0.0,12097.84,162388.84,30206.2,12424.5,10496.83,53127.53,215516.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15185,671.3,0.0,20.98,692.28,0.0,0.0,43.05,43.05,735.33 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,38910,64934.15,120.74,3000.0,68054.89,13247.73,10841.99,5506.63,29596.35,97651.24 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,23478,68952.03,0.0,0.0,68952.03,14954.62,8123.71,5424.91,28503.24,97455.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49314,62372.73,3881.34,759.78,67013.85,14456.78,12312.86,5113.62,31883.26,98897.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,30102,83905.76,32686.88,9712.88,126305.52,18591.02,12387.16,9835.0,40813.18,167118.7 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,7928,74165.02,0.0,0.0,74165.02,15285.76,12424.5,6106.76,33817.02,107982.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51873,20307.44,0.0,15.3,20322.74,0.0,1573.79,1575.46,3149.25,23471.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,39133,10780.54,0.0,0.0,10780.54,0.0,3535.21,836.75,4371.96,15152.5 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),3501,106098.88,0.0,1500.0,107598.88,22153.33,12412.56,8423.88,42989.77,150588.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,31483,28593.95,0.0,0.0,28593.95,0.0,5011.62,2250.58,7262.2,35856.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33524,45645.0,3360.06,5986.58,54991.64,10906.9,8123.71,4464.52,23495.13,78486.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,50908,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5169.23,30446.35,92805.35 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,6465,118104.0,0.0,0.0,118104.0,23768.42,12424.5,9479.98,45672.9,163776.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",2111,118427.01,0.0,0.0,118427.01,23833.76,12424.5,17076.26,53334.52,171761.53 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,28741,30009.0,0.0,2741.92,32750.92,6590.76,6421.02,2760.78,15772.56,48523.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,44715,9627.25,0.0,83.38,9710.63,0.0,2317.64,753.11,3070.75,12781.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27092,10696.3,0.0,0.0,10696.3,0.0,4638.28,857.99,5496.27,16192.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,12484,10456.0,0.0,40.0,10496.0,1953.32,1911.46,795.73,4660.51,15156.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,24880,43278.64,1601.5,5731.15,50611.29,8608.15,5304.3,863.33,14775.78,65387.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15282,119460.41,23938.26,17920.19,161318.86,23646.05,12424.51,2694.21,38764.77,200083.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,7.0,"Bricklayers, Local 3",7300,Journeyman Trade,7307,Bricklayer,46222,95053.0,3459.49,2948.0,101460.49,20199.2,12424.51,8018.06,40641.77,142102.26 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,34924,18584.76,0.0,0.0,18584.76,3047.12,5620.89,1494.33,10162.34,28747.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38326,3939.65,0.0,991.46,4931.11,1046.34,1708.37,403.38,3158.09,8089.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,29018,26927.02,0.0,0.0,26927.02,6039.76,5734.39,2173.58,13947.73,40874.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,1744,84644.01,53275.82,6290.1,144209.93,17615.43,12424.5,10124.1,40164.03,184373.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,36962,33642.01,7090.75,2102.64,42835.4,7545.88,4300.79,3530.48,15377.15,58212.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52818,2633.37,0.0,829.81,3463.18,679.41,1141.92,282.29,2103.62,5566.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,32203,93281.03,0.0,1624.0,94905.03,19560.47,12424.5,7801.26,39786.23,134691.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,45425,1318.1,0.0,0.0,1318.1,295.65,238.93,111.57,646.15,1964.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,36609,69902.02,0.0,0.0,69902.02,14407.14,12424.5,5731.71,32563.35,102465.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33947,103673.0,0.0,3856.46,107529.46,19204.29,10990.9,8364.34,38559.53,146088.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,14128,142192.03,0.0,0.0,142192.03,28616.29,12424.5,10243.84,51284.63,193476.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,48496,39018.55,0.0,0.0,39018.55,4037.38,11725.63,3159.36,18922.37,57940.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22917,6592.48,0.0,206.9,6799.38,6478.5,0.0,3447.6,9926.1,16725.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,22204,129604.93,54907.01,16200.59,200712.53,28683.65,15052.76,3373.51,47109.92,247822.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,31476,102019.01,0.0,0.0,102019.01,21026.26,12424.5,8172.23,41622.99,143642.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50889,94091.01,5038.21,16531.55,115660.77,26894.19,11957.04,1879.93,40731.16,156391.93 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,41891,103727.8,0.0,7300.31,111028.11,21355.77,12424.5,8847.17,42627.44,153655.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7272,Carpenter Supervisor 2,25858,70875.03,11074.23,0.0,81949.26,15402.24,7167.99,6328.47,28898.7,110847.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5926,3641.6,0.0,0.0,3641.6,0.0,1529.17,290.36,1819.53,5461.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,50599,34841.18,0.0,436.75,35277.93,8585.78,8619.5,2831.89,20037.17,55315.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6675,113223.0,32601.89,20276.98,166101.87,25426.83,15196.12,2776.81,43399.76,209501.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16934,184289.01,0.0,1500.0,185789.01,37388.83,12424.5,10942.2,60755.53,246544.54 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,30540,69746.0,0.0,0.0,69746.0,14374.9,12424.5,5784.9,32584.3,102330.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29482,86445.35,0.0,2879.06,89324.41,0.0,7102.39,6927.74,14030.13,103354.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,6833,22649.71,0.0,2549.26,25198.97,1262.81,4925.0,1999.43,8187.24,33386.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,20961,5919.75,0.0,442.51,6362.26,0.0,1815.89,493.51,2309.4,8671.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,38893,61735.01,0.0,3031.68,64766.69,13346.86,12424.5,5359.68,31131.04,95897.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,36750,62187.0,0.0,4315.64,66502.64,13630.31,12424.5,5494.26,31549.07,98051.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,42672,61735.02,0.0,221.0,61956.02,12765.31,12424.5,5137.36,30327.17,92283.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,963,59725.87,7241.64,1910.65,68878.16,13114.38,9369.32,5718.16,28201.86,97080.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,44539,19896.3,0.0,1020.8,20917.1,4544.69,4515.83,1666.13,10726.65,31643.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,18775,8690.0,0.0,0.0,8690.0,764.33,2102.61,672.77,3539.71,12229.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35631,124205.95,51350.94,7149.47,182706.36,24551.46,12424.5,3069.53,40045.49,222751.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39389,13727.49,0.0,0.0,13727.49,0.0,5952.71,1083.75,7036.46,20763.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20697,42150.26,2333.17,624.63,45108.06,11115.56,12963.05,3420.06,27498.67,72606.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,15287,3785.79,0.0,75.52,3861.31,0.0,1257.38,299.55,1556.93,5418.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,42512,176257.03,0.0,0.0,176257.03,35471.94,12424.5,10815.78,58712.22,234969.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",32581,148809.25,80309.76,10575.07,239694.08,31137.84,15052.76,4044.03,50234.63,289928.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,17195,1275.75,0.0,0.0,1275.75,237.43,215.04,98.8,551.27,1827.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,39159,70245.0,19990.61,9219.77,99455.38,15614.77,12424.5,7865.96,35905.23,135360.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,544,91753.36,7819.39,8165.88,107738.63,18696.08,9557.3,1824.14,30077.52,137816.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,49926,56044.16,0.0,1167.43,57211.59,11530.76,10545.65,4751.25,26827.66,84039.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,51034,0.0,0.0,0.0,0.0,0.0,0.0,585.88,585.88,585.88 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,22741,92500.0,20672.32,8691.06,121863.38,19751.22,12269.19,9795.47,41815.88,163679.26 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,48731,154724.1,0.0,0.0,154724.1,31096.74,12424.51,17517.57,61038.82,215762.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,6851,107787.7,0.0,0.0,107787.7,21927.61,12424.5,23627.26,57979.37,165767.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,28178,100761.02,17356.55,1136.0,119253.57,21003.86,12424.5,9526.21,42954.57,162208.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,39321,23529.39,0.0,1080.16,24609.55,5337.23,2139.88,2007.85,9484.96,34094.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11954,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,7587,46050.0,0.0,5637.3,51687.3,9808.6,10178.53,4277.32,24264.45,75951.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,14644,106605.02,0.0,29519.19,136124.21,22152.78,12424.5,10025.63,44602.91,180727.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",13716,29413.83,0.0,0.0,29413.83,1108.6,6958.88,2295.02,10362.5,39776.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14071,119455.91,6991.6,9917.4,136364.91,23662.84,12424.5,2250.02,38337.36,174702.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,4016,16549.15,835.64,1883.1,19267.89,2104.59,4427.3,1506.89,8038.78,27306.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,47928,43843.46,0.0,1192.04,45035.5,9281.55,6439.24,3448.3,19169.09,64204.59 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,30707,36212.12,0.0,0.0,36212.12,8695.62,10112.82,2812.87,21621.31,57833.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44409,62445.32,0.0,5470.92,67916.24,13178.65,11044.66,5549.93,29773.24,97689.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,34800,65772.01,3315.41,2805.5,71892.92,14469.76,10035.17,5769.45,30274.38,102167.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4839,67707.62,15795.71,5826.4,89329.73,20137.32,13343.2,6726.16,40206.68,129536.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",12366,97989.0,31589.25,9026.68,138604.93,20306.85,12424.5,9958.14,42689.49,181294.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,38256,73380.5,0.0,0.0,73380.5,15121.47,12424.52,5905.65,33451.64,106832.14 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,43008,74156.53,0.0,0.0,74156.53,16792.78,9275.85,1248.54,27317.17,101473.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,17331,113369.04,7593.47,6483.07,127445.58,24016.4,12424.44,9909.95,46350.79,173796.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9520,78474.22,486.12,2982.29,81942.63,16439.64,6960.05,6414.25,29813.94,111756.57 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,49889,34550.18,0.0,551.81,35101.99,8129.3,7641.6,2934.5,18705.4,53807.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11569,67792.72,13077.43,811.75,81681.9,18791.15,13358.6,6239.3,38389.05,120070.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,33166,56588.75,5217.76,7305.04,69111.55,13820.4,12296.67,5510.74,31627.81,100739.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,6881,91978.82,12992.92,5143.68,110115.42,19807.4,12421.52,8978.28,41207.2,151322.62 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,34320,67651.4,1944.63,10558.22,80154.25,15569.44,12376.71,6605.81,34551.96,114706.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,32314,35725.25,0.0,0.0,35725.25,3446.23,11749.53,2609.76,17805.52,53530.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8723,121763.2,0.0,8817.31,130580.51,24068.55,12424.5,9044.54,45537.59,176118.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,5989,64904.34,9282.9,1678.16,75865.4,4500.8,9794.75,5904.9,20200.45,96065.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27695,28731.63,0.0,2240.68,30972.31,6345.34,6313.8,2534.23,15193.37,46165.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,7746,2156.01,0.0,0.0,2156.01,0.0,1051.3,167.33,1218.63,3374.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,16295,112776.05,163.81,2255.52,115195.38,23150.48,12424.5,9317.49,44892.47,160087.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,24139,156746.05,0.0,7932.84,164678.89,31562.35,12424.5,10448.09,54434.94,219113.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,5674,118104.06,0.0,0.0,118104.06,23768.42,12424.5,9661.26,45854.18,163958.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52789,110.2,0.0,744.54,854.74,28.43,47.79,65.49,141.71,996.45 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,17924,61647.79,0.0,0.0,61647.79,14006.6,8645.42,1002.47,23654.49,85302.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4373,9551.8,0.0,0.0,9551.8,0.0,4081.15,771.73,4852.88,14404.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15133,61223.96,6030.99,848.49,68103.44,16913.5,12057.74,4983.65,33954.89,102058.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27699,56531.0,0.0,624.0,57155.0,11780.12,12424.5,4692.36,28896.98,86051.98 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,52640,69183.99,0.0,100.0,69283.99,13895.94,7313.61,5640.87,26850.42,96134.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,6601,13317.83,0.0,0.0,13317.83,2928.59,3968.37,1033.67,7930.63,21248.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9463,56531.0,0.0,2930.55,59461.55,11796.81,12424.5,4910.67,29131.98,88593.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,17092,81157.01,17569.03,15115.74,113841.78,19269.81,12424.49,9224.25,40918.55,154760.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,19915,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48532,118436.25,0.0,7911.63,126347.88,521.26,0.0,8304.35,8825.61,135173.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,7602,138633.93,5359.51,5659.77,149653.21,27400.21,12424.5,2059.48,41884.19,191537.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),49624,85034.6,16508.45,15275.93,116818.98,19534.4,12424.5,1941.44,33900.34,150719.32 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,43199,101047.01,0.0,0.0,101047.01,20826.03,12424.5,8104.46,41354.99,142402.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42989,0.0,0.0,55436.2,55436.2,0.0,0.0,815.87,815.87,56252.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,12153,81872.14,0.0,0.0,81872.14,16795.34,11595.17,6721.22,35111.73,116983.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,51114,32105.5,0.0,2240.96,34346.46,2103.14,8553.79,2669.78,13326.71,47673.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,49369,2868.0,0.0,0.0,2868.0,0.0,955.73,221.22,1176.95,4044.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,52251,33839.0,0.0,0.0,33839.0,6854.47,7645.85,2750.54,17250.86,51089.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,4948,74685.04,0.0,0.0,74685.04,15370.19,12424.5,6193.97,33988.66,108673.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,37608,113540.16,0.0,10776.12,124316.28,22981.25,11740.56,9856.14,44577.95,168894.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21085,9340.1,0.0,11.58,9351.68,2275.97,2323.62,915.23,5514.82,14866.5 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,48481,36600.37,106.25,0.0,36706.62,7278.56,7090.32,2971.14,17340.02,54046.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3228,138635.93,23729.94,9389.74,171755.61,27392.94,12424.5,2925.67,42743.11,214498.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,7941,6069.25,58.2,280.73,6408.18,0.0,2002.56,301.13,2303.69,8711.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,8295,76168.03,0.0,920.33,77088.36,15877.4,12424.5,6345.68,34647.58,111735.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30612,47870.17,0.0,15473.88,63344.05,4517.68,0.0,6891.49,11409.17,74753.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,8384,38835.02,0.0,0.0,38835.02,8582.08,7167.98,3155.93,18905.99,57741.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,15461,31584.0,2909.6,1081.65,35575.25,5607.96,2867.19,598.51,9073.66,44648.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3424,Integrated Pest Mgmt Specialst,23745,80357.0,5934.02,1023.65,87314.67,16772.56,12424.5,7197.52,36394.58,123709.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,49708,53664.0,0.0,9689.96,63353.96,12036.83,6212.25,5035.21,23284.29,86638.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27496,66102.01,118.45,1060.0,67280.46,13838.92,12424.5,5323.86,31587.28,98867.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40548,56531.0,1403.72,3261.29,61196.01,12183.62,12424.49,4805.22,29413.33,90609.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,40128,54799.37,3686.8,6644.63,65130.8,10372.37,6212.25,1088.83,17673.45,82804.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22552,9533.26,507.67,81.83,10122.76,2297.96,2916.6,763.0,5977.56,16100.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,27988,62468.82,19610.46,2144.45,84223.73,13172.29,12424.5,6877.97,32474.76,116698.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",50648,131564.78,7368.05,18258.52,157191.35,29462.35,15196.12,2671.09,47329.56,204520.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3305,8614.49,0.0,637.95,9252.44,2119.44,707.84,511.4,3338.68,12591.12 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,14323,91393.01,0.0,120.0,91513.01,18863.2,12424.5,7417.11,38704.81,130217.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,5204,82923.1,1381.01,8440.22,92744.33,17905.69,12567.87,7347.44,37821.0,130565.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36470,16202.48,0.0,121.21,16323.69,3871.64,4015.6,1265.53,9152.77,25476.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,7067,60303.04,0.0,622.95,60925.99,12555.32,12403.6,4998.95,29957.87,90883.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,20683,170335.02,0.0,0.0,170335.02,34359.35,12424.5,25664.05,72447.9,242782.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9203,Sr Airport Communications Disp,24340,85303.99,0.0,6426.7,91730.69,18787.18,11416.44,7569.77,37773.39,129504.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,34601,70245.0,4279.48,9471.47,83995.95,15658.69,12424.5,6894.01,34977.2,118973.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8200,119450.12,10648.78,4306.51,134405.41,23683.71,12424.5,2290.61,38398.82,172804.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17294,40966.0,1773.9,1665.46,44405.36,12397.14,8146.82,3378.71,23922.67,68328.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7100,Administrative-Labor & Trades,7108,Heavy Equip Ops Asst Sprv,1732,97733.02,0.0,43.23,97776.25,20283.73,11468.83,7850.9,39603.46,137379.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,46582,85162.06,0.0,990.0,86152.06,17759.19,12424.5,7106.73,37290.42,123442.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,46623,60094.08,4260.81,945.0,65299.89,12532.7,11946.62,5127.03,29606.35,94906.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",8065,147149.0,0.0,0.0,147149.0,29613.71,12424.5,18566.06,60604.27,207753.27 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,27958,40200.27,0.0,1092.75,41293.02,9902.95,9936.61,3360.07,23199.63,64492.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39242,47531.2,452.95,5434.59,53418.74,12211.1,12424.5,4009.23,28644.83,82063.57 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0887,Mayoral Staff VII,27347,65793.47,0.0,0.0,65793.47,13557.48,12394.64,13161.22,39113.34,104906.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24962,128222.66,610.14,12251.63,141084.43,26967.54,11010.02,10245.79,48223.35,189307.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48282,64481.17,9696.79,583.2,74761.16,17778.04,12703.04,5707.6,36188.68,110949.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,3101,93281.0,0.0,1664.0,94945.0,19567.9,12424.5,7482.34,39474.74,134419.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7360,Pipe Welder,3911,100761.03,15470.83,2228.0,118459.86,21225.19,12424.5,9720.88,43370.57,161830.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",49552,150.0,0.0,0.0,150.0,0.0,0.0,11.88,11.88,161.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14579,22408.44,0.0,296.16,22704.6,5773.82,4352.81,1763.75,11890.38,34594.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9519,0.0,0.0,27206.99,27206.99,0.0,68.5,2081.33,2149.83,29356.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7227,Cement Finisher Supervisor 1,42563,96719.69,2001.06,0.0,98720.75,19830.55,0.0,8198.77,28029.32,126750.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,17886,76207.69,1209.86,1834.0,79251.55,16081.91,12340.86,6271.22,34693.99,113945.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19805,132878.37,1336.41,6132.21,140346.99,27105.55,11072.14,8028.41,46206.1,186553.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20009,8063.03,0.0,175.42,8238.45,280.2,0.0,466.61,746.81,8985.26 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,8680,21916.16,0.0,6615.0,28531.16,4224.7,0.0,3068.26,7292.96,35824.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5819,3790.2,0.0,631.71,4421.91,0.0,286.72,183.72,470.44,4892.35 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,33305,64238.02,0.0,3500.0,67738.02,13596.19,4850.34,5535.8,23982.33,91720.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,15074,73328.5,7051.82,40.0,80420.32,15515.5,8571.71,6461.47,30548.68,110969.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42994,77071.02,773.33,1380.0,79224.35,16169.07,12424.5,6493.54,35087.11,114311.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,13343,143689.83,16381.61,23172.2,183243.64,29159.06,12424.5,3026.34,44609.9,227853.54 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,8348,27195.67,0.0,191.43,27387.1,6577.75,6714.03,2260.03,15551.81,42938.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44138,119351.74,0.0,19021.76,138373.5,19639.63,11598.39,9713.18,40951.2,179324.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",53045,131577.12,3968.0,7894.64,143439.76,27410.99,15196.12,2444.64,45051.75,188491.51 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38712,10054.38,0.0,720.31,10774.69,2369.35,2658.12,857.71,5885.18,16659.87 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,29704,44121.39,0.0,320.0,44441.39,1049.24,7641.37,3494.68,12185.29,56626.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,14690,65860.75,592.88,0.0,66453.63,13521.93,9903.76,5291.42,28717.11,95170.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11434,67085.53,10586.74,1776.75,79449.02,15705.52,13218.37,6075.2,34999.09,114448.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,10320,91148.55,0.0,0.0,91148.55,18828.91,12138.75,7142.2,38109.86,129258.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,11505,6725.0,0.0,619.24,7344.24,0.0,1817.03,569.32,2386.35,9730.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36295,43071.68,3563.52,1790.96,48426.16,11648.72,13248.23,3413.08,28310.03,76736.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33035,8130.69,0.0,1147.96,9278.65,2121.95,627.31,446.03,3195.29,12473.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8593,112159.77,29239.85,18632.39,160032.01,24822.82,15052.76,2544.88,42420.46,202452.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,49768,62547.82,0.0,1339.6,63887.42,13153.19,10688.12,5288.09,29129.4,93016.82 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,34299,84599.09,0.0,1595.29,86194.38,17766.22,12424.5,7058.56,37249.28,123443.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5059,87859.01,1254.64,14146.86,103260.51,20169.54,12486.03,1675.12,34330.69,137591.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,151,112776.0,0.0,2255.52,115031.52,23150.48,12424.5,9454.63,45029.61,160061.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45376,24737.9,2120.05,4212.06,31070.01,0.0,2150.39,2411.52,4561.91,35631.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,5581,61101.01,0.0,1310.0,62411.01,12785.71,12424.5,5052.38,30262.59,92673.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39783,62491.78,760.83,3625.61,66878.22,13196.28,0.0,5517.32,18713.6,85591.82 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,17937,18122.57,160.39,0.0,18282.96,0.0,4121.59,1417.45,5539.04,23822.0 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,48481,11455.5,0.0,0.0,11455.5,2955.52,2867.19,934.13,6756.84,18212.34 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,42354,101310.74,0.0,0.0,101310.74,20871.42,12424.5,8060.77,41356.69,142667.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,47642,88253.3,0.0,508.05,88761.35,18196.46,12376.71,7035.28,37608.45,126369.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",26152,93281.03,5171.73,8170.71,106623.47,19228.17,12424.5,8373.48,40026.15,146649.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",50781,97989.0,22320.8,6302.76,126612.56,20313.99,12424.5,9787.54,42526.03,169138.59 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,33501,11673.18,468.9,2053.69,14195.77,2265.17,1409.71,1121.16,4796.04,18991.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49956,5137.38,0.0,30.84,5168.22,0.0,2589.43,400.71,2990.14,8158.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",36240,13215.98,0.0,0.0,13215.98,0.0,3138.95,1025.57,4164.52,17380.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30662,60096.3,292.55,6071.52,66460.37,0.0,4390.03,3444.68,7834.71,74295.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",50927,150.0,0.0,0.0,150.0,0.0,17.92,11.61,29.53,179.53 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,31185,52351.12,0.0,0.0,52351.12,11635.0,11898.85,4236.53,27770.38,80121.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27355,50846.67,0.0,5891.28,56737.95,12381.25,11304.57,4701.55,28387.37,85125.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,4400,125476.0,0.0,0.0,125476.0,25252.11,12424.5,9852.09,47528.7,173004.7 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,30060,103075.02,0.0,0.0,103075.02,21214.07,12424.49,8390.15,42028.71,145103.73 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,14478,32757.7,0.0,1857.82,34615.52,7347.57,5313.57,2771.56,15432.7,50048.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,4050,79722.04,0.0,513.5,80235.54,16543.84,12424.56,6653.49,35621.89,115857.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,23865,83699.07,7077.79,1552.92,92329.78,17487.47,12424.51,7516.36,37428.34,129758.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,52425,78044.38,0.0,0.0,78044.38,16336.57,8808.86,6147.92,31293.35,109337.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,52099,1025.48,0.0,0.0,1025.48,0.0,140.37,79.39,219.76,1245.24 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,1184,84922.51,0.0,1670.85,86593.36,17853.53,12472.29,6923.72,37249.54,123842.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19734,3008.59,0.0,0.0,3008.59,0.0,1263.36,234.86,1498.22,4506.81 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,23234,99654.02,321.38,0.0,99975.4,22731.77,12424.5,1691.87,36848.14,136823.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,14568,138363.77,0.0,5314.03,143677.8,27888.7,12400.25,372.21,40661.16,184338.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,16308,88144.05,0.0,0.0,88144.05,18163.54,12424.5,7190.49,37778.53,125922.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,37696,81542.02,0.0,0.0,81542.02,16806.15,12424.5,6481.59,35712.24,117254.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,36071,79048.0,15805.66,3038.9,97892.56,16829.3,12083.41,7736.92,36649.63,134542.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46307,106826.84,182.09,19559.58,126568.51,20400.84,10986.42,7715.04,39102.3,165670.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,27311,51349.33,8704.74,2752.72,62806.79,11721.38,11783.68,5171.19,28676.25,91483.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51353,67780.83,23158.52,5075.4,96014.75,20005.66,13361.24,7254.64,40621.54,136636.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11984,119450.14,1689.29,7176.03,128315.46,24261.04,12424.51,2133.27,38818.82,167134.28 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2802,Epidemiologist 1,211,65972.65,0.0,0.0,65972.65,13586.92,12305.03,5267.95,31159.9,97132.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34048,56123.16,13255.52,2078.96,71457.64,15964.54,11066.77,5537.01,32568.32,104025.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,48226,92001.3,48004.82,10140.52,150146.64,20149.63,12424.5,10208.79,42782.92,192929.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",6771,147149.0,0.0,0.0,147149.0,29613.71,12424.5,18642.94,60681.15,207830.15 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,49643,10842.76,0.0,1688.63,12531.39,2797.43,3279.35,993.09,7069.87,19601.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,52049,45295.14,2295.6,3601.06,51191.8,10143.63,11837.21,4133.59,26114.43,77306.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,52446,100761.03,4184.36,4942.51,109887.9,21774.99,12424.5,8826.99,43026.48,152914.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38834,8241.98,0.0,929.35,9171.33,7137.7,0.0,139.34,7277.04,16448.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,48197,28314.34,2172.36,129.1,30615.8,7265.68,6734.92,2423.74,16424.34,47040.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,8628,72699.02,0.0,629.56,73328.58,15113.33,12424.5,5843.64,33381.47,106710.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,4141,106842.81,3028.35,6422.41,116293.57,22022.1,12293.08,9149.41,43464.59,159758.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15505,76314.22,900.49,14137.54,91352.25,13134.9,6756.72,4819.46,24711.08,116063.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10737,77547.78,881.21,6440.69,84869.68,0.0,6567.96,6577.15,13145.11,98014.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,19485,26147.01,0.0,3165.59,29312.6,6398.87,5256.52,2436.77,14092.16,43404.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3197,130845.85,52481.61,23441.3,206768.76,30009.65,15196.12,3471.17,48676.94,255445.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17957,75016.7,2590.08,2247.23,79854.01,0.0,6546.76,6147.77,12694.53,92548.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18656,55855.0,9374.56,7768.63,72998.19,13416.15,12424.5,5601.02,31441.67,104439.86 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,44238,70220.46,0.0,0.0,70220.46,3037.14,8195.4,5369.02,16601.56,86822.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,37868,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5124.28,30401.4,92760.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,48239,60245.65,0.0,0.0,60245.65,12447.23,8494.06,4771.57,25712.86,85958.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",22794,118858.05,0.0,0.0,118858.05,23907.3,12424.51,9680.75,46012.56,164870.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1813,67540.64,25713.37,548.47,93802.48,18683.89,13311.67,7120.97,39116.53,132919.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,37623,59494.34,387.62,1802.87,61684.83,12122.84,10464.24,5038.49,27625.57,89310.4 +Calendar,2015,1,Public Protection,POL,Police,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14648,184289.03,0.0,4340.5,188629.53,37945.19,12424.5,11040.77,61410.46,250039.99 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,6807,25604.41,538.34,1030.92,27173.67,0.0,5326.71,2055.41,7382.12,34555.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0490,Commander 3,48588,219355.22,0.0,6068.17,225423.39,43260.3,12424.5,3747.27,59432.07,284855.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,1633,117826.0,0.0,0.0,117826.0,23435.68,10990.91,8766.32,43192.91,161018.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39674,107565.83,0.0,3478.26,111044.09,0.0,8671.64,2660.12,11331.76,122375.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21811,16722.86,0.0,0.0,16722.86,1862.55,7251.61,1348.0,10462.16,27185.02 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,47855,72806.21,512.93,0.0,73319.14,14992.57,12424.5,5865.91,33282.98,106602.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,23018,93681.04,0.0,1285.39,94966.43,19573.5,12424.5,7507.65,39505.65,134472.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13814,57346.85,1797.99,1420.0,60564.84,12163.94,10891.88,4789.65,27845.47,88410.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,31025,117137.54,12815.11,3622.54,133575.19,23176.49,12424.5,2219.85,37820.84,171396.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,14117,93345.7,11066.24,10423.2,114835.14,19412.97,11516.57,9750.18,40679.72,155514.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,15540,61428.02,0.0,200.0,61628.02,12660.6,12424.5,5098.98,30184.08,91812.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,36956,118724.03,0.0,0.0,118724.03,23893.94,12424.5,9511.35,45829.79,164553.82 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,33562,82883.0,10535.57,1353.3,94771.87,17365.72,12424.5,7444.71,37234.93,132006.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,19093,72153.0,4056.12,5493.93,81703.05,15573.73,12424.5,6676.51,34674.74,116377.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,42550,64103.2,0.0,0.0,64103.2,13199.03,12424.5,5048.12,30671.65,94774.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,30968,76728.02,8137.84,444.0,85309.86,15900.07,12424.51,6967.64,35292.22,120602.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,11672,83699.03,663.88,2299.41,86662.32,17387.31,12424.5,7086.13,36897.94,123560.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,1786,59116.01,0.0,0.0,59116.01,13210.0,12424.5,4808.16,30442.66,89558.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,41085,66580.0,5194.15,1157.55,72931.7,13722.34,12424.5,5837.77,31984.61,104916.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,13750,84644.0,55757.24,13584.63,153985.87,19313.48,12424.5,10256.66,41994.64,195980.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,4503,9697.5,0.0,0.0,9697.5,0.0,2150.41,752.25,2902.66,12600.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42204,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,20252,73194.11,0.0,0.0,73194.11,13751.44,7120.2,9604.39,30476.03,103670.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,8482,438.6,0.0,11.7,450.3,0.0,143.35,34.86,178.21,628.51 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17459,3262.42,0.0,210.0,3472.42,0.0,0.0,274.32,274.32,3746.74 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,10220,63724.17,250.95,0.0,63975.12,12520.47,8123.71,10700.71,31344.89,95320.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,571,47085.32,134.06,10.0,47229.38,10304.8,10748.39,3783.71,24836.9,72066.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,14581,53973.0,221.31,624.0,54818.31,13095.25,12424.5,4542.49,30062.24,84880.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10239,105910.67,19232.31,18261.01,143403.99,24574.0,15052.76,2394.57,42021.33,185425.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52140,45664.89,2732.94,2029.97,50427.8,9091.55,5009.65,4075.01,18176.21,68604.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19641,25176.45,0.0,4196.1,29372.55,702.2,0.0,5337.2,6039.4,35411.95 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,12980,6811.71,0.0,34.75,6846.46,1535.66,1433.6,521.34,3490.6,10337.06 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,9526,167329.03,0.0,29446.41,196775.44,39174.58,10860.99,11072.37,61107.94,257883.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,22784,71943.39,0.0,0.0,71943.39,14843.08,11452.1,5486.31,31781.49,103724.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,30843,7371.67,0.0,0.0,7371.67,0.0,2671.56,592.5,3264.06,10635.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,39503,58782.0,765.11,624.0,60171.11,12243.99,12424.5,4984.78,29653.27,89824.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,37292,22907.2,0.0,0.0,22907.2,4584.18,2773.59,2064.97,9422.74,32329.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,25948,107723.61,12861.95,8260.03,128845.59,21778.76,12161.2,9941.06,43881.02,172726.61 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,24398,48983.24,0.0,1640.47,50623.71,8517.04,0.0,8853.81,17370.85,67994.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,15426,101531.04,0.0,0.0,101531.04,20926.02,12424.51,8348.3,41698.83,143229.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",36666,131577.13,17602.77,19078.75,168258.65,29609.07,15196.12,2861.05,47666.24,215924.89 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,8784,11004.03,0.0,140.0,11144.03,2073.9,2283.3,876.53,5233.73,16377.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29229,52411.7,0.0,3659.95,56071.65,11506.99,11539.56,4651.21,27697.76,83769.41 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),23241,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10954.92,60768.25,246557.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35036,126724.59,0.0,2017.91,128742.5,24778.06,11219.09,9821.58,45818.73,174561.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9242,Head Airport Electrician,4596,5176.0,727.88,420.0,6323.88,968.84,477.86,108.82,1555.52,7879.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10426,64573.83,2103.4,2182.07,68859.3,18220.0,12721.78,5364.63,36306.41,105165.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19660,11549.27,0.0,0.0,11549.27,599.03,4945.9,941.71,6486.64,18035.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,50355,86044.2,0.0,2160.85,88205.05,18121.71,12424.51,7047.96,37594.18,125799.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,10708,100761.0,27139.31,7522.19,135422.5,21001.01,12424.43,10034.0,43459.44,178881.94 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,633,97770.22,31235.47,11604.04,140609.73,26607.76,12424.5,2346.36,41378.62,181988.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15884,118895.78,4555.15,7229.36,130680.29,23497.47,12364.77,2161.57,38023.81,168704.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,26079,33458.79,1054.41,1532.78,36045.98,5944.43,3345.06,605.21,9894.7,45940.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15616,56531.0,0.0,5876.52,62407.52,12419.14,12424.5,5103.36,29947.0,92354.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,15517,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5164.66,30441.78,92800.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",21291,114958.46,27119.28,12946.94,155024.68,25516.41,13141.3,2590.11,41247.82,196272.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9183,"Deputy Dir I, MTA",14762,38235.0,0.0,0.0,38235.0,6932.0,2389.33,4191.26,13512.59,51747.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,47426,514.53,0.0,0.0,514.53,0.0,110.51,39.93,150.44,664.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45292,20659.6,1316.29,2749.78,24725.67,2556.74,5543.53,1947.3,10047.57,34773.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6388,7917.33,201.54,651.89,8770.76,379.57,594.34,2050.24,3024.15,11794.91 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,44695,182014.02,0.0,9100.72,191114.74,38424.15,10554.86,10986.89,59965.9,251080.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,53110,79478.41,16656.09,6565.2,102699.7,17531.03,12424.51,8017.02,37972.56,140672.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51257,44825.76,193.6,2213.82,47233.18,11014.93,11104.4,3768.22,25887.55,73120.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,39465,62468.82,42600.4,2243.6,107312.82,12888.88,12424.5,8705.37,34018.75,141331.57 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,50506,29143.52,0.0,361.5,29505.02,7075.09,7197.85,2375.88,16648.82,46153.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,52003,8085.82,0.0,156.82,8242.64,1848.83,1774.08,675.04,4297.95,12540.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,26133,79551.0,0.0,10837.6,90388.6,17620.78,12424.5,7174.69,37219.97,127608.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32941,1981.57,0.0,0.98,1982.55,0.0,966.24,153.76,1120.0,3102.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,47514,67500.01,0.0,0.0,67500.01,12237.79,5734.38,4949.64,22921.81,90421.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,30496,22440.6,6636.48,4258.11,33335.19,4537.01,2795.52,2053.75,9386.28,42721.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,18682,126994.01,0.0,1160.0,128154.01,25812.17,12424.48,9964.63,48201.28,176355.29 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,4588,106605.06,0.0,0.0,106605.06,21971.81,12424.5,8672.18,43068.49,149673.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,36215,79395.09,0.0,624.0,80019.09,16489.51,12424.51,6635.15,35549.17,115568.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,5094,69902.01,202.7,0.0,70104.71,14407.13,12424.5,5546.71,32378.34,102483.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21531,12520.0,0.0,0.0,12520.0,2269.88,1911.46,881.53,5062.87,17582.87 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,5021,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5164.66,30441.78,92800.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42588,21930.16,0.0,273.08,22203.24,5466.12,4267.88,1708.1,11442.1,33645.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,40417,61044.94,3890.18,5263.67,70198.79,13004.98,11160.61,5693.98,29859.57,100058.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,41512,22160.0,0.0,0.0,22160.0,355.14,6690.11,1764.62,8809.87,30969.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11646,66065.66,3864.06,5444.45,75374.17,19607.29,13021.3,5840.81,38469.4,113843.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13792,49083.1,4094.92,0.0,53178.02,9998.81,10990.9,4303.65,25293.36,78471.38 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,17154,9463.59,0.0,6381.6,15845.19,0.0,12424.5,229.76,12654.26,28499.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,44920,93281.03,0.0,2088.81,95369.84,19656.18,12424.51,7851.93,39932.62,135302.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,33129,3915.01,593.37,230.35,4738.73,734.45,477.86,79.48,1291.79,6030.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",589,8861.0,0.0,531.66,9392.66,2015.66,477.86,7.6,2501.12,11893.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10730,96193.02,28458.54,7824.78,132476.34,25297.22,12223.8,2252.97,39773.99,172250.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5812,105423.91,1512.2,14176.33,121112.44,23130.27,9730.95,9646.11,42507.33,163619.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15603,66692.96,7804.01,2185.69,76682.66,18884.27,13140.28,5809.05,37833.6,114516.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,42743,116976.05,0.0,0.0,116976.05,23541.49,12424.48,9208.49,45174.46,162150.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5177,Safety Officer,2617,130910.01,0.0,0.0,130910.01,26339.36,12424.5,9996.59,48760.45,179670.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24945,25230.19,0.0,250.0,25480.19,6386.03,4905.53,1865.62,13157.18,38637.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1057,68033.3,21477.38,601.97,90112.65,18753.41,13403.22,6787.17,38943.8,129056.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35353,4332.0,0.0,0.0,4332.0,1117.65,1433.6,360.07,2911.32,7243.32 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,26020,9440.0,0.0,0.0,9440.0,0.0,2819.4,761.35,3580.75,13020.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,6255,17619.9,0.0,3.67,17623.57,0.0,4724.89,1366.45,6091.34,23714.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,39589,112209.02,0.0,0.0,112209.02,22582.31,12424.5,8872.14,43878.95,156087.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,25042,62468.8,21978.37,1418.29,85865.46,13007.67,12424.5,6655.2,32087.37,117952.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7235,Transit Power Line Sprv1,49161,44709.0,14769.33,5494.43,64972.76,10642.91,5017.58,5289.19,20949.68,85922.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13892,2226.21,0.0,67.11,2293.32,0.0,934.82,178.0,1112.82,3406.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,5643,84644.0,22991.04,6452.13,114087.17,17755.62,12424.5,9083.16,39263.28,153350.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,31836,68067.09,262.6,3005.1,71334.79,14157.67,12424.5,5908.5,32490.67,103825.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,16213,84599.06,0.0,1433.8,86032.86,17732.16,12424.5,6889.54,37046.2,123079.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,48821,16143.0,0.0,0.0,16143.0,2926.74,1433.59,311.74,4672.07,20815.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,34164,79849.13,16404.57,15963.52,112217.22,19040.74,12223.02,9154.47,40418.23,152635.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40171,125228.29,12740.88,8217.95,146187.12,24812.21,12409.57,2480.51,39702.29,185889.41 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,1034,67716.33,9303.45,5151.04,82170.82,14523.77,12388.66,6631.16,33543.59,115714.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,10061,145659.06,0.0,688.26,146347.32,29439.64,12424.5,10269.46,52133.6,198480.92 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),30398,162460.66,0.0,1500.0,163960.66,32983.83,12424.5,10616.7,56025.03,219985.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,52240,62399.21,0.0,0.0,62399.21,13949.04,12424.5,4995.76,31369.3,93768.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,38556,8860.0,467.18,453.36,9780.54,1950.11,2867.19,722.66,5539.96,15320.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8324,119463.83,10687.84,3678.17,133829.84,23633.48,12424.5,2267.78,38325.76,172155.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,11943,137262.86,0.0,0.0,137262.86,27551.4,12424.5,17212.5,57188.4,194451.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,40214,158359.3,1046.64,898.23,160304.17,31287.42,12424.5,2677.07,46388.99,206693.16 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,14658,31679.08,0.0,410.99,32090.07,6633.16,6403.39,2536.71,15573.26,47663.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,47098,54095.64,294.1,5774.86,60164.6,16418.24,10214.56,4593.63,31226.43,91391.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,37597,6435.01,0.0,0.0,6435.01,1660.23,1433.6,536.57,3630.4,10065.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16206,103366.76,5790.05,14238.73,123395.54,23866.32,14335.96,2059.4,40261.68,163657.22 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,4281,98268.7,0.0,0.0,98268.7,20232.02,12424.5,7927.51,40584.03,138852.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,49158,58531.45,0.0,0.0,58531.45,12163.52,11149.38,4746.78,28059.68,86591.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,18041,87713.02,0.0,739.14,88452.16,18231.99,12424.5,6925.32,37581.81,126033.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,33996,80405.67,7191.24,3248.85,90845.76,17176.68,12298.82,6763.48,36238.98,127084.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32392,74579.0,0.0,1492.3,76071.3,14733.09,7884.78,6008.84,28626.71,104698.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40993,50968.26,477.53,0.0,51445.79,8059.28,11683.8,4162.77,23905.85,75351.64 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,4919,90712.37,4903.89,4552.5,100168.76,19109.56,12030.26,7991.95,39131.77,139300.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",6035,38784.0,0.0,1235.78,40019.78,7448.25,3822.92,5654.47,16925.64,56945.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,50424,56530.94,0.0,368.9,56899.84,12310.45,5565.34,4373.58,22249.37,79149.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,11688,27028.98,0.0,401.13,27430.11,6595.11,6678.17,2213.93,15487.21,42917.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,46029,68664.67,0.0,0.0,68664.67,13846.91,9757.42,5463.07,29067.4,97732.07 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,46226,58101.02,0.0,0.0,58101.02,11974.94,12424.5,4614.85,29014.29,87115.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48549,33333.43,0.0,6861.61,40195.04,1125.94,2837.32,1044.03,5007.29,45202.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,754,80470.71,0.0,623.25,81093.96,16716.03,12409.57,6609.73,35735.33,116829.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,34206,4322.0,0.0,130.0,4452.0,950.4,955.72,328.75,2234.87,6686.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,35557,108038.0,29944.84,7658.8,145641.64,22811.11,12424.5,10219.93,45455.54,191097.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21117,1568.97,0.0,0.0,1568.97,423.47,472.91,121.77,1018.15,2587.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,22162,130845.83,0.0,11803.02,142648.85,27956.1,15196.12,2384.32,45536.54,188185.39 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,45314,7842.0,0.0,0.0,7842.0,1459.41,1433.59,608.3,3501.3,11343.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14287,111838.08,0.0,6584.38,118422.46,23308.73,9901.37,9300.5,42510.6,160933.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39746,316.27,0.0,14.8,331.07,0.0,76.64,25.7,102.34,433.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46519,68059.01,6224.59,4117.27,78400.87,19741.83,13408.31,6079.56,39229.7,117630.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37505,116395.87,730.24,25163.95,142290.06,26265.0,10301.52,5312.62,41879.14,184169.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,20644,151649.04,0.0,0.0,151649.04,30429.56,12424.5,17600.22,60454.28,212103.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,6304,82816.0,0.0,0.0,82816.0,17716.2,7645.86,6576.91,31938.97,114754.97 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,26368,52107.17,57.02,1412.76,53576.95,10592.19,8375.37,4474.97,23442.53,77019.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16748,112685.46,23665.15,6925.04,143275.65,22330.94,12424.5,2394.04,37149.48,180425.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),2963,21101.18,0.0,0.0,21101.18,4060.69,6056.94,1693.88,11811.51,32912.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7705,100169.2,28290.12,12105.33,140564.65,20769.63,12424.5,2347.61,35541.74,176106.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,14761,58214.85,0.0,0.0,58214.85,12200.58,10038.17,4650.15,26888.9,85103.75 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,49149,5382.18,0.0,0.0,5382.18,0.0,1983.14,417.74,2400.88,7783.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40314,119459.23,9441.09,5405.08,134305.4,23650.21,12424.51,2231.76,38306.48,172611.88 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,15863,19642.4,946.31,620.0,21208.71,0.0,4953.68,1722.09,6675.77,27884.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21228,56531.02,508.46,3779.22,60818.7,11898.56,12424.5,4977.73,29300.79,90119.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,27024,62461.14,761.77,0.0,63222.91,12844.46,12424.5,5118.05,30387.01,93609.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31454,25417.2,0.0,4236.24,29653.44,438.51,0.0,857.01,1295.52,30948.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,41160,28134.03,117.23,0.0,28251.26,6310.44,4300.79,2348.43,12959.66,41210.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35080,112190.78,54268.9,18127.68,184587.36,24830.32,15004.97,3101.63,42936.92,227524.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,53037,7945.76,0.0,1327.03,9272.79,471.44,0.0,2931.73,3403.17,12675.96 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19625,96002.88,7124.96,9031.28,112159.12,25555.49,12424.5,1868.54,39848.53,152007.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,14339,74164.66,0.0,0.0,74164.66,15285.67,12424.44,5995.42,33705.53,107870.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6980,67931.72,5102.14,4204.19,77238.05,19762.88,13387.47,5646.63,38796.98,116035.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,14091,139757.24,13545.07,20416.51,173718.82,27652.01,12424.5,2950.71,43027.22,216746.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,25734,33397.01,0.0,0.0,33397.01,7692.52,8123.71,2683.6,18499.83,51896.84 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,48154,231480.99,0.0,0.0,231480.99,46585.78,12424.49,29226.36,88236.63,319717.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,45988,154294.59,0.0,0.0,154294.59,31059.05,11289.57,10315.0,52663.62,206958.21 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,2.0,Management Unrepresented Employees,8100,Legal & Court,AB44,"Cfdntal Chf Atty 2,(Cvl&Crmnl)",36705,193578.51,0.0,0.0,193578.51,38305.6,10513.04,15170.77,63989.41,257567.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9104,Transit Car Cleaner Asst Sprv,37022,68867.0,41445.15,16662.48,126974.63,16250.01,12424.5,9787.16,38461.67,165436.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34232,12365.38,0.0,310.33,12675.71,0.0,4730.68,982.92,5713.6,18389.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24116,70181.72,31551.27,6185.58,107918.57,20896.75,13830.33,8236.61,42963.69,150882.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,262,74280.22,0.0,0.0,74280.22,15285.39,12424.5,5868.0,33577.89,107858.11 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,11301,191926.02,0.0,19192.6,211118.62,46734.53,12424.5,4077.18,63236.21,274354.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25673,40665.76,144.53,1561.11,42371.4,10014.88,10686.27,3434.56,24135.71,66507.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,44279,9970.0,149.55,0.0,10119.55,0.0,2389.33,769.72,3159.05,13278.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7563,121335.52,14152.15,24136.11,159623.78,24021.88,12424.5,2665.87,39112.25,198736.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,26466,3592.0,0.0,0.0,3592.0,0.0,764.58,279.02,1043.6,4635.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34015,21078.9,2449.61,562.94,24091.45,5237.5,6529.38,1841.54,13608.42,37699.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,37492,57456.4,1079.54,997.95,59533.89,12987.43,12391.17,4522.61,29901.21,89435.1 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,32094,234796.02,0.0,6000.0,240796.02,47736.82,12424.5,11826.3,71987.62,312783.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,23603,9184.35,0.0,153.48,9337.83,2001.94,1783.33,794.7,4579.97,13917.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51987,113233.6,32392.72,18959.9,164586.22,25036.03,15196.12,2903.1,43135.25,207721.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,17669,53710.23,0.0,619.2,54329.43,12142.26,12328.92,4135.69,28606.87,82936.3 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,2316,42171.56,0.0,920.0,43091.56,0.0,4462.07,3340.45,7802.52,50894.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,38750,133087.03,0.0,21096.55,154183.58,26783.95,12424.5,10395.32,49603.77,203787.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,13585,14042.25,155.53,0.0,14197.78,3622.9,4247.03,1165.13,9035.06,23232.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,8485,12195.96,0.0,0.0,12195.96,0.0,2704.41,946.18,3650.59,15846.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,6540,0.0,0.0,600.0,600.0,111.66,0.0,74.92,186.58,786.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,46562,84559.3,56891.57,11372.44,152823.31,18615.07,12615.64,10277.19,41507.9,194331.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,40114,6132.8,0.0,0.0,6132.8,0.0,1576.95,476.01,2052.96,8185.76 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,30346,104899.2,0.0,0.0,104899.2,21341.78,12281.15,8458.35,42081.28,146980.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22118,54267.86,302.48,4260.12,58830.46,12482.09,12078.89,4867.13,29428.11,88258.57 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,49197,113672.0,0.0,11367.2,125039.2,25179.91,12424.5,9881.37,47485.78,172524.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14328,117135.33,25637.67,7693.27,150466.27,23184.68,12424.5,2508.66,38117.84,188584.11 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,18078,70138.11,0.0,0.0,70138.11,14456.46,8541.85,4793.03,27791.34,97929.45 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,8430,10149.6,0.0,0.0,10149.6,1840.13,1146.88,784.46,3771.47,13921.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,38189,9768.0,6606.1,1835.44,18209.54,2320.57,1911.43,1474.41,5706.41,23915.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,50905,38947.0,0.0,0.0,38947.0,7061.1,3345.06,2310.05,12716.21,51663.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30295,56531.0,0.0,6568.84,63099.84,12350.13,12424.5,5207.53,29982.16,93082.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,49328,177239.66,0.0,0.0,177239.66,35650.11,12424.51,10788.9,58863.52,236103.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),37030,50135.59,39311.07,5555.56,95002.22,10543.71,7645.85,1591.97,19781.53,114783.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,13570,93281.07,0.0,1663.98,94945.05,19567.91,12424.5,7577.25,39569.66,134514.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,3109,45501.0,212.55,5010.17,50723.72,11457.05,12424.5,4085.86,27967.41,78691.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,4558,49706.48,4724.66,4812.57,59243.71,11875.73,11056.61,4688.95,27621.29,86865.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,20453,71330.09,770.76,920.0,73020.85,14836.35,11946.64,5768.62,32551.61,105572.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5874,3328.66,0.0,0.0,3328.66,0.0,1397.75,266.18,1663.93,4992.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28721,49481.98,717.48,6762.16,56961.62,11951.49,11032.72,4335.79,27320.0,84281.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,28414,100554.01,0.0,0.0,100554.01,20724.83,12424.48,8153.71,41303.02,141857.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,7684,64149.46,0.0,0.0,64149.46,13010.54,7801.16,4957.5,25769.2,89918.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4610,138104.55,31169.68,21266.16,190540.39,27280.8,12376.73,3166.12,42823.65,233364.04 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,38248,58993.31,2904.7,2468.63,64366.64,13434.32,12412.56,4954.22,30801.1,95167.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24153,2345.42,0.0,13.07,2358.49,0.0,0.0,186.33,186.33,2544.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,40610,19230.0,0.0,1454.4,20684.4,3647.18,3345.06,1672.32,8664.56,29348.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13410,51100.8,571.19,746.08,52418.07,11531.16,10049.99,3775.9,25357.05,77775.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,36742,74165.0,0.0,624.0,74789.0,15414.44,12424.5,6010.83,33849.77,108638.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22221,56531.0,5597.91,5726.82,67855.73,12345.89,12424.5,5497.24,30267.63,98123.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17951,67445.04,5906.53,3520.08,76871.65,19432.63,13290.63,5739.62,38462.88,115334.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,53223,112696.23,20897.83,9453.48,143047.54,22291.45,12424.51,2393.54,37109.5,180157.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34661,97766.77,20932.82,10822.8,129522.39,26287.08,12424.51,2204.71,40916.3,170438.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,27285,62811.02,0.0,1884.0,64695.02,13293.82,12424.5,5144.66,30862.98,95558.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,46242,131129.01,0.0,0.0,131129.01,26309.9,12424.5,17434.34,56168.74,187297.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,7359,61735.0,0.0,1584.0,63319.0,13048.08,12424.5,5105.3,30577.88,93896.88 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2551,Mental Hlth Treatment Spec,40717,93887.61,0.0,4149.0,98036.61,19416.55,12161.68,8047.79,39626.02,137662.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20438,18672.55,573.04,859.44,20105.03,5274.19,5894.23,1504.52,12672.94,32777.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,52234,142681.71,0.0,2036.09,144717.8,29059.97,9760.46,10203.36,49023.79,193741.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,40132,47770.0,0.0,0.0,47770.0,9382.02,8075.9,3830.81,21288.73,69058.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11714,66339.12,19908.08,3463.93,89711.13,19173.39,13075.89,6755.2,39004.48,128715.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0964,Dept Head IV,47400,235457.9,0.0,0.0,235457.9,47366.26,12424.5,20121.17,79911.93,315369.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,12465,604.88,0.0,0.0,604.88,0.0,179.2,147.82,327.02,931.9 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,48529,106605.04,0.0,0.0,106605.04,21971.81,12424.5,8560.66,42956.97,149562.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43305,117887.53,0.0,5010.79,122898.32,23976.62,12420.02,9802.62,46199.26,169097.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,19675,58567.03,0.0,0.0,58567.03,12216.86,10990.9,4772.5,27980.26,86547.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52286,105709.2,8946.95,5910.54,120566.69,0.0,8018.47,7059.79,15078.26,135644.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,37087,47620.06,3651.09,2976.84,54247.99,9522.94,8825.58,1297.73,19646.25,73894.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),10492,11199.6,46.32,0.0,11245.92,0.0,3249.49,872.52,4122.01,15367.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,42526,149010.34,0.0,5376.39,154386.73,31001.91,9926.46,10252.3,51180.67,205567.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36700,97767.26,44621.01,18168.24,160556.51,28140.54,12424.5,2725.14,43290.18,203846.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,13064,9349.99,0.0,0.0,9349.99,0.0,1296.21,725.71,2021.92,11371.91 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,6838,137101.03,0.0,0.0,137101.03,27592.12,12424.5,17379.89,57396.51,194497.54 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8316,Assistant Counselor,37824,60708.08,7352.61,9618.96,77679.65,16045.35,12363.4,440.01,28848.76,106528.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,27010,68571.02,49.14,1598.1,70218.26,14132.76,12424.5,5817.66,32374.92,102593.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49799,41283.75,4256.01,1530.87,47070.63,12452.02,8210.03,3507.68,24169.73,71240.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37111,70719.03,71.24,8997.01,79787.28,15732.63,5888.73,6412.16,28033.52,107820.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,43244,98795.8,0.0,0.0,98795.8,20343.43,12424.5,7942.27,40710.2,139506.0 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,52774,27173.5,0.0,0.0,27173.5,6130.74,6929.05,2003.39,15063.18,42236.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46932,65559.79,17741.46,1942.04,85243.29,18479.56,12920.95,6654.54,38055.05,123298.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35906,119455.21,45192.29,10690.13,175337.63,23664.84,12424.5,2979.02,39068.36,214405.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,32052,50234.4,0.0,0.0,50234.4,9578.98,6690.12,8559.57,24828.67,75063.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,34031,33118.6,5630.48,0.0,38749.08,7736.7,9222.79,3118.12,20077.61,58826.69 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,37319,105688.18,0.0,0.0,105688.18,21497.16,12316.98,8323.85,42137.99,147826.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16250,1764.0,0.0,0.0,1764.0,0.0,860.16,136.86,997.02,2761.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,30213,77071.03,55.24,1480.0,78606.27,16186.93,12424.5,6462.6,35074.03,113680.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,44919,84644.01,14518.29,19484.54,118646.84,17751.19,12424.5,9459.73,39635.42,158282.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,6493,14800.0,74.0,280.83,15154.83,2806.56,2389.31,1168.03,6363.9,21518.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,39989,10996.25,417.0,128.1,11541.35,2837.04,3715.4,947.22,7499.66,19041.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,27072,32080.73,3806.44,4790.02,40677.19,5695.5,2853.4,679.87,9228.77,49905.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,52954,97230.11,20891.02,6871.51,124992.64,21390.97,11986.36,9809.76,43187.09,168179.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,45094,142992.4,4154.53,14062.98,161209.91,30839.77,12376.71,10412.91,53629.39,214839.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",7499,8885.23,0.0,0.0,8885.23,0.0,2115.58,689.28,2804.86,11690.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38114,130394.16,10281.5,8276.2,148951.86,26292.15,12370.74,377.99,39040.88,187992.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,9244,211.5,0.0,0.0,211.5,0.0,47.79,16.18,63.97,275.47 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,34679,27359.01,0.0,0.0,27359.01,5091.52,3822.92,2162.76,11077.2,38436.21 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,34961,84973.02,0.0,624.0,85597.02,17641.99,12424.5,7098.22,37164.71,122761.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,24631,45463.52,0.0,0.0,45463.52,10885.88,12424.5,3641.09,26951.47,72414.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,639,56531.01,326.55,3930.9,60788.46,11780.12,12424.5,4979.74,29184.36,89972.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,19557,87713.0,0.0,0.0,87713.0,18078.17,12424.5,6897.64,37400.31,125113.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,42092,79722.01,7944.03,828.0,88494.04,16600.87,12424.52,6949.12,35974.51,124468.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,30389,3007.37,0.0,33.81,3041.18,0.0,994.54,235.9,1230.44,4271.62 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,22256,67774.61,0.0,0.0,67774.61,13966.22,12424.5,5393.71,31784.43,99559.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16364,975.15,0.0,162.53,1137.68,371.16,0.0,586.37,957.53,2095.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31060,1293.74,0.0,34.88,1328.62,0.0,701.86,102.87,804.73,2133.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,21249,67261.05,0.0,1020.0,68281.05,14079.12,12424.5,4952.16,31455.78,99736.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7270,Watershed Keeper Supervisor,16709,18510.01,635.69,258.49,19404.19,3471.06,2867.19,1588.25,7926.5,27330.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8544,53491.8,0.0,7396.49,60888.29,12103.41,11755.49,5032.63,28891.53,89779.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",51360,26205.0,0.0,0.0,26205.0,5749.4,2389.33,3365.69,11504.42,37709.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,40278,61936.17,1069.19,6986.9,69992.26,13871.83,12394.16,5578.99,31844.98,101837.24 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,23021,143188.04,0.0,0.0,143188.04,28816.77,12424.5,10163.76,51405.03,194593.07 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,3512,53976.04,274.27,598.34,54848.65,12131.52,11913.55,4554.1,28599.17,83447.82 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,22590,47115.83,0.0,0.0,47115.83,0.0,4100.68,3652.33,7753.01,54868.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,29795,97113.1,23447.15,32874.98,153435.23,20465.17,12424.5,10240.08,43129.75,196564.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52652,77856.3,2590.13,2309.6,82756.03,15750.04,11946.64,4354.38,32051.06,114807.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,32199,44852.09,1099.21,2040.67,47991.97,10719.22,11235.81,3641.35,25596.38,73588.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,1323,106.95,0.0,0.0,106.95,19.39,11.94,8.95,40.28,147.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,35886,158511.48,2959.97,3385.25,164856.7,31343.29,12424.5,418.39,44186.18,209042.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26730,68525.45,15836.57,6029.55,90391.57,20387.63,13501.55,6881.31,40770.49,131162.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,3756,101531.02,7446.81,951.57,109929.4,21109.23,12424.52,8809.14,42342.89,152272.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,19465,19060.0,0.0,0.0,19060.0,4191.3,4778.65,1572.3,10542.25,29602.25 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2551,Mental Hlth Treatment Spec,1318,95497.55,0.0,197.07,95694.62,19693.51,12364.77,7856.44,39914.72,135609.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,14363,56531.0,0.0,669.0,57200.0,11651.3,12424.5,4740.93,28816.73,86016.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,10489,60925.87,0.0,0.0,60925.87,12401.97,11173.51,4907.06,28482.54,89408.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21575,67026.61,37906.86,5978.42,110911.89,20034.6,13210.41,8476.79,41721.8,152633.69 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,24152,22987.54,0.0,0.0,22987.54,0.0,0.0,1817.67,1817.67,24805.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13841,118383.93,4632.32,26952.79,149969.04,28490.91,15291.69,2457.04,46239.64,196208.68 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,23496,84629.0,0.0,760.0,85389.0,16760.53,9079.44,6780.52,32620.49,118009.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36452,25576.63,1655.29,777.57,28009.49,6891.82,8006.88,2106.58,17005.28,45014.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7203,Bldg & Grounds Maint Sprv,53097,105773.0,0.0,0.0,105773.0,21800.13,12424.5,8427.67,42652.3,148425.3 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1750,Microphoto/Imaging Technician,17741,48951.02,0.0,0.0,48951.02,11740.96,12424.5,3729.48,27894.94,76845.96 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",8699,63626.33,29194.83,6164.34,98985.5,15926.91,12367.75,1853.92,30148.58,129134.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9309,37274.91,17990.89,7471.07,62736.87,9636.26,5109.7,5020.74,19766.7,82503.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,9130,59695.55,292.38,8694.8,68682.73,13509.61,10601.14,5634.54,29745.29,98428.02 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,33133,2210.29,0.0,0.0,2210.29,0.0,483.83,171.56,655.39,2865.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,25879,92571.3,63940.88,8836.39,165348.57,19874.69,11826.04,10537.74,42238.47,207587.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38645,4084.08,0.0,250.0,4334.08,1018.16,812.19,271.82,2102.17,6436.25 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,38276,60428.02,0.0,0.0,60428.02,11093.78,6212.25,4914.88,22220.91,82648.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,48073,85004.03,27755.2,3459.15,116218.38,17519.6,12424.5,9441.07,39385.17,155603.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35778,15842.5,154.83,906.08,16903.41,2369.48,4181.32,1341.52,7892.32,24795.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,35407,36018.73,14111.69,2566.32,52696.74,7138.8,4587.51,885.05,12611.36,65308.1 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,36081,81914.83,1611.71,2540.88,86067.42,16832.52,11946.64,6946.44,35725.6,121793.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,2844,156746.04,0.0,6420.46,163166.5,32838.75,12424.51,10498.57,55761.83,218928.33 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,8738,30565.6,0.0,0.0,30565.6,7078.02,8506.01,2406.78,17990.81,48556.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,2829,40737.0,5671.13,20013.43,66421.56,8261.8,4799.8,5350.03,18411.63,84833.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,25233,84644.04,37007.71,15194.02,136845.77,19495.3,12424.51,9953.16,41872.97,178718.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48611,65300.85,2034.46,836.46,68171.77,16164.32,13064.24,5195.37,34423.93,102595.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26223,3489.9,0.0,192.07,3681.97,0.0,0.0,54.97,54.97,3736.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,16685,102716.27,11337.55,13556.1,127609.92,21320.52,12424.5,2129.5,35874.52,163484.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",43095,148584.77,60447.46,19597.03,228629.26,32944.04,14957.19,3845.93,51747.16,280376.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,39512,117140.97,21624.05,11400.96,150165.98,23164.17,12424.5,2282.4,37871.07,188037.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,19893,23165.86,0.0,207.67,23373.53,5574.88,6797.62,1811.17,14183.67,37557.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,38015,70077.2,29215.0,10979.12,110271.32,15735.55,12394.64,9268.92,37399.11,147670.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,6097,18971.61,0.0,0.0,18971.61,4171.82,4253.0,1544.6,9969.42,28941.03 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,50879,67399.43,0.0,9471.58,76871.01,15291.09,12331.85,6167.9,33790.84,110661.85 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,25711,120111.03,0.0,8532.56,128643.59,24172.55,12424.5,9949.42,46546.47,175190.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,10597,7976.0,302.84,323.03,8601.87,0.0,1911.46,684.53,2595.99,11197.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11670,2468.03,0.0,32.9,2500.93,0.0,797.44,193.88,991.32,3492.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20617,66641.25,2010.89,2092.77,70744.91,18864.07,13137.3,6094.35,38095.72,108840.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22302,2482.27,0.0,0.0,2482.27,0.0,1042.34,192.66,1235.0,3717.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,34464,49110.8,280.05,1992.75,51383.6,11788.26,12424.5,4134.59,28347.35,79730.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27278,30015.01,1322.89,964.35,32302.25,8074.32,9072.4,2259.75,19406.47,51708.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",20503,1003.5,0.0,0.0,1003.5,0.0,238.93,77.69,316.62,1320.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34401,67498.35,26444.53,2273.58,96216.46,19139.03,13305.8,7522.1,39966.93,136183.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5174,1995.16,0.0,18.62,2013.78,0.0,972.88,156.31,1129.19,3142.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7398,Apprentice Cement Mason I,47710,11340.1,164.31,0.0,11504.41,0.0,2768.61,923.43,3692.04,15196.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,17803,97764.02,41623.58,11537.32,150924.92,26596.73,12424.5,390.12,39411.35,190336.27 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9770,Community Development Asst,8378,33306.6,0.0,0.0,33306.6,6735.16,7598.07,2667.3,17000.53,50307.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,12058,60308.45,0.0,0.0,60308.45,12454.36,9930.64,4991.47,27376.47,87684.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4810,64935.47,18258.33,632.08,83825.88,17939.25,12796.04,6497.7,37232.99,121058.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,7772,133087.01,0.0,0.0,133087.01,26783.95,12424.49,10081.43,49289.87,182376.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,49610,97391.76,4346.88,11868.77,113607.41,25878.4,12376.72,1933.27,40188.39,153795.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,13238,41556.0,604.84,4470.42,46631.26,10371.24,11230.07,3699.84,25301.15,71932.41 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,25716,66970.84,0.0,900.0,67870.84,14167.77,10847.54,5401.28,30416.59,98287.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,14553,52379.84,0.0,1060.0,53439.84,11112.76,11205.95,4072.87,26391.58,79831.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,48810,88831.01,9869.24,5937.31,104637.56,18613.15,12424.5,8524.94,39562.59,144200.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28099,49317.17,4449.24,1432.68,55199.09,10612.27,10842.47,4572.28,26027.02,81226.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,37613,52866.32,0.0,290.0,53156.32,10735.56,10447.34,4386.54,25569.44,78725.76 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,12241,666.19,211.97,0.0,878.16,0.0,197.12,68.16,265.28,1143.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10887,1542.8,0.0,0.0,1542.8,0.0,669.02,127.21,796.23,2339.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42236,7237.76,0.0,913.81,8151.57,1615.72,3136.0,666.19,5417.91,13569.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29638,3996.0,0.0,133.22,4129.22,0.0,0.0,175.89,175.89,4305.11 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,21274,125815.05,0.0,0.0,125815.05,25320.9,12424.5,9885.56,47630.96,173446.01 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8452,Criminal Justice Specialist 2,28534,95968.0,0.0,0.0,95968.0,19779.2,12424.5,7947.12,40150.82,136118.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",51817,19985.01,0.0,3000.0,22985.01,0.0,3345.06,1863.95,5209.01,28194.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,43232,107978.02,0.0,11121.96,119099.98,22255.05,12424.48,8627.77,43307.3,162407.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,17317,36273.41,691.2,9597.31,46561.92,8136.13,5642.51,3802.3,17580.94,64142.86 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),25213,178430.27,0.0,5093.59,183523.86,37054.11,12035.04,10898.17,59987.32,243511.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18226,124600.0,34796.95,8439.68,167836.63,24636.03,12424.5,2806.73,39867.26,207703.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),46759,11034.9,46.32,0.0,11081.22,0.0,3201.7,859.75,4061.45,15142.67 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,38225,77071.11,0.0,0.0,77071.11,15884.7,12424.5,6199.58,34508.78,111579.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,47588,139008.83,537.05,13777.8,153323.68,27480.13,12424.5,2192.11,42096.74,195420.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27719,8104.15,0.0,0.0,8104.15,0.0,3452.58,651.9,4104.48,12208.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,8826,92283.63,8734.25,5980.08,106997.96,19900.99,12466.43,8514.32,40881.74,147879.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2626,16550.66,0.0,0.0,16550.66,1863.6,7176.94,1334.69,10375.23,26925.89 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,33827,30648.2,0.0,0.0,30648.2,5703.64,5244.57,2414.7,13362.91,44011.11 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,7818,140488.03,0.0,0.0,140488.03,28224.32,12342.37,10124.59,50691.28,191179.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,3717,17531.6,390.3,0.0,17921.9,0.0,3249.5,1373.5,4623.0,22544.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,4376,46883.65,0.0,1026.79,47910.44,9760.83,8667.29,3749.63,22177.75,70088.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,32965,41921.6,3619.88,6344.78,51886.26,9244.98,7263.57,4156.67,20665.22,72551.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,8042,91009.67,0.0,582.48,91592.15,19835.04,6253.11,7096.06,33184.21,124776.36 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5254,7097.72,0.0,3396.82,10494.54,1831.21,3028.35,877.99,5737.55,16232.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,28550,110041.08,0.0,0.0,110041.08,22139.91,12424.5,8724.99,43289.4,153330.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,32527,51405.0,0.0,1832.4,53237.4,12356.2,12424.5,4155.6,28936.3,82173.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52757,112159.76,55880.11,22539.14,190579.01,25950.54,15052.75,3205.35,44208.64,234787.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,21537,100761.03,8845.3,3982.51,113588.84,20863.16,12424.48,9667.71,42955.35,156544.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10477,606.1,0.0,14.05,620.15,0.0,262.83,48.01,310.84,930.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,52010,106640.27,4158.28,1517.02,112315.57,22056.97,12387.93,9234.76,43679.66,155995.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,22472,64201.02,7485.31,612.0,72298.33,13335.42,12185.57,5696.34,31217.33,103515.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,31863,66959.22,9991.41,7305.17,84255.8,14698.2,12199.01,6777.03,33674.24,117930.04 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,53060,48873.92,460.36,206.9,49541.18,2648.98,11211.92,3948.13,17809.03,67350.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27009,106271.85,28171.29,7350.65,141793.79,21722.31,11946.64,2345.22,36014.17,177807.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,4039,86663.03,0.0,570.0,87233.03,17986.23,12424.5,6941.39,37352.12,124585.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18451,96059.64,1793.32,16335.57,114188.53,21594.8,12792.93,1880.66,36268.39,150456.92 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",12778,68852.81,18973.1,1969.75,89795.66,16167.14,12322.9,1727.83,30217.87,120013.53 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,32523,24224.0,0.0,3040.0,27264.0,5335.68,5734.39,2245.41,13315.48,40579.48 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,35640,93791.03,0.0,0.0,93791.03,18865.65,6110.7,7495.56,32471.91,126262.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,35356,10187.1,0.0,0.0,10187.1,1895.81,2341.53,807.56,5044.9,15232.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,21794,11597.8,0.0,113.16,11710.96,0.0,2461.01,906.66,3367.67,15078.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,47140,74165.05,220.65,624.0,75009.7,15414.46,12424.5,6157.14,33996.1,109005.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,17704,40974.81,0.0,357.6,41332.41,8672.83,7120.2,3465.7,19258.73,60591.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47650,44381.77,11166.58,2694.49,58242.84,13602.2,8826.1,4423.7,26852.0,85094.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,39474,63598.62,0.0,4847.82,68446.44,14056.32,12045.26,5613.9,31715.48,100161.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,19710,119450.14,33394.01,8198.95,161043.1,23683.73,12424.5,2671.82,38780.05,199823.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,33833,124551.07,0.0,0.0,124551.07,24708.1,10513.04,20560.64,55781.78,180332.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,7634,49584.52,2307.28,206.25,52098.05,4941.9,8243.19,4142.38,17327.47,69425.52 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,8701,6194.2,0.0,1254.53,7448.73,1359.01,382.3,585.32,2326.63,9775.36 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12035,19442.01,0.0,0.0,19442.01,4275.3,4778.65,1556.78,10610.73,30052.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,23375,84644.01,23037.37,14506.94,122188.32,19485.39,12424.5,9727.44,41637.33,163825.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,32731,64808.83,0.0,0.0,64808.83,13342.57,12424.5,4963.83,30730.9,95539.73 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,50490,67515.41,2165.0,7283.57,76963.98,14975.41,12352.82,6096.79,33425.02,110389.0 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,28020,156235.01,0.0,0.0,156235.01,31441.02,12424.5,10385.05,54250.57,210485.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31152,92224.27,9616.09,8309.72,110150.08,20158.03,12496.18,1838.61,34492.82,144642.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,20613,62187.0,1759.07,5746.0,69692.07,13367.37,12424.5,5751.21,31543.08,101235.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,25591,55575.0,0.0,0.0,55575.0,12281.46,7167.99,4500.16,23949.61,79524.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,39870,85278.17,0.0,1742.3,87020.47,17947.72,12472.29,7165.7,37585.71,124606.18 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),41543,184289.01,0.0,1500.0,185789.01,37388.84,12424.5,10842.64,60655.98,246444.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,48930,62811.01,0.0,11790.12,74601.13,14988.58,12424.5,6141.68,33554.76,108155.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,52852,47074.78,0.0,0.0,47074.78,10074.32,8894.45,3751.77,22720.54,69795.32 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,49720,83528.01,0.0,1000.0,84528.01,17421.5,12424.5,6711.37,36557.37,121085.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7398,Apprentice Cement Mason I,15124,38930.05,2733.91,0.0,41663.96,9546.53,9760.44,3358.01,22664.98,64328.94 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,7217,5971.0,0.0,456.75,6427.75,0.0,2547.62,497.64,3045.26,9473.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,22369,81985.42,0.0,0.0,81985.42,16869.7,12424.5,6512.08,35806.28,117791.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,32304,77015.8,388.45,0.0,77404.25,15872.31,12415.54,6167.51,34455.36,111859.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,31149,9051.0,0.0,0.0,9051.0,0.0,2007.04,702.08,2709.12,11760.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31408,4986.56,0.0,0.0,4986.56,0.0,2162.35,401.0,2563.35,7549.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,21580,0.0,4147.68,4396.83,8544.51,0.0,68.5,468.93,537.43,9081.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,26381,162426.19,0.0,0.0,162426.19,32614.69,12424.5,18848.02,63887.21,226313.4 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,9791,18784.12,0.0,274.34,19058.46,4495.68,5626.87,1441.99,11564.54,30623.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42820,119467.38,11910.51,11437.99,142815.88,23620.98,12424.51,2378.47,38423.96,181239.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40527,76994.72,50113.22,12766.09,139874.03,17858.84,15196.12,2324.9,35379.86,175253.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,19972,6012.0,0.0,0.0,6012.0,0.0,1995.09,514.25,2509.34,8521.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,42518,61735.03,0.0,1159.12,62894.15,12970.07,12424.5,5211.68,30606.25,93500.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29731,97783.87,31825.99,11705.69,141315.55,26629.98,12424.5,2350.97,41405.45,182721.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,47937,14332.66,0.0,91.42,14424.08,3214.81,2556.58,1156.51,6927.9,21351.98 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,49989,112209.01,0.0,659.43,112868.44,22582.31,12424.5,8895.29,43902.1,156770.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7178,6748.6,0.0,3775.93,10524.53,512.82,0.0,2997.29,3510.11,14034.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25573,126152.68,14224.14,7123.53,147500.35,25246.36,12370.74,2000.79,39617.89,187118.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21850,33600.0,0.0,1602.96,35202.96,8390.82,8362.64,2868.95,19622.41,54825.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1181,259.28,0.0,0.0,259.28,0.01,0.0,0.0,0.01,259.29 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",16815,49450.5,0.0,1498.5,50949.0,10771.22,7884.78,4225.68,22881.68,73830.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,42802,150710.0,649.8,2518.9,153878.7,30655.55,12424.5,10368.54,53448.59,207327.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,29902,57054.63,0.0,200.0,57254.63,12777.93,12424.5,4493.11,29695.54,86950.17 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,22387,9175.5,0.0,0.0,9175.5,1707.56,1911.46,719.46,4338.48,13513.98 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,49169,37665.0,0.0,1308.53,38973.53,7586.25,6690.11,3158.5,17434.86,56408.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,13466,59115.39,22055.59,6339.41,87510.39,12878.65,11966.11,7146.32,31991.08,119501.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,38956,1287.0,0.0,39.6,1326.6,0.0,388.27,102.7,490.97,1817.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,38877,31183.01,0.0,0.0,31183.01,5803.17,5734.39,2447.69,13985.25,45168.26 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,34229,17109.16,2448.16,362.7,19920.02,3184.01,3527.24,1564.54,8275.79,28195.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,12997,27833.94,0.0,0.0,27833.94,3349.81,8359.66,2217.24,13926.71,41760.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,21639,83614.22,0.0,0.0,83614.22,16817.66,9282.53,7245.59,33345.78,116960.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O890,Harbor Security Officer (OCII),45371,42031.0,0.0,4248.48,46279.48,10594.02,10035.17,3564.56,24193.75,70473.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,8223,65452.11,232.27,4186.98,69871.36,14307.22,12424.5,5526.47,32258.19,102129.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2929,54432.13,0.0,5425.97,59858.1,11944.54,11960.38,4956.03,28860.95,88719.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,11118,8379.83,0.0,61.31,8441.14,0.0,3035.94,654.28,3690.22,12131.36 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0889,Mayoral Staff IX,19738,80154.0,0.0,0.0,80154.0,16520.24,12424.5,14353.95,43298.69,123452.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,28008,43146.71,4489.7,545.0,48181.41,0.0,5459.61,3832.73,9292.34,57473.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,26066,83366.78,0.0,0.0,83366.78,16892.5,10622.47,6685.76,34200.73,117567.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,48721,65638.63,0.0,1360.0,66998.63,13847.6,12131.81,5254.43,31233.84,98232.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6574,119465.02,42263.08,14007.66,175735.76,23629.32,12424.5,2941.55,38995.37,214731.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,50565,14918.11,0.0,185.0,15103.11,3387.63,2276.13,1487.74,7151.5,22254.61 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,1973,89244.54,0.0,0.0,89244.54,20266.84,11153.62,1516.46,32936.92,122181.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,34564,58748.76,0.0,0.0,58748.76,11908.24,10453.31,3965.79,26327.34,85076.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36005,48010.35,0.0,8001.73,56012.08,2195.31,0.0,6301.07,8496.38,64508.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,52393,107330.07,0.0,0.0,107330.07,22116.66,12424.5,8961.44,43502.6,150832.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,36414,44342.4,0.0,0.0,44342.4,10624.23,12328.91,3606.72,26559.86,70902.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7287,Sprv Electronic Main Tech,32050,128599.76,14850.35,6788.91,150239.02,26010.41,12424.5,10059.83,48494.74,198733.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39747,81642.66,0.0,3049.18,84691.84,15341.87,7454.7,6028.02,28824.59,113516.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,12633,39691.22,0.0,799.05,40490.27,7665.03,7167.99,3186.46,18019.48,58509.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2784,119455.92,8424.29,13872.69,141752.9,23662.81,12424.5,2406.13,38493.44,180246.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,39023,84623.78,0.0,0.0,84623.78,17444.67,12400.62,6912.22,36757.51,121381.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,2105,7688.0,2306.4,0.0,9994.4,1430.74,955.74,751.9,3138.38,13132.78 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,26017,74867.01,0.0,624.0,75491.01,15559.21,12424.5,6168.07,34151.78,109642.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,13975,97934.03,0.0,624.0,98558.03,20324.33,12424.5,8173.79,40922.62,139480.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,11445,66102.0,0.0,150.0,66252.0,13656.55,12424.5,5481.7,31562.75,97814.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16740,7278.7,0.0,0.0,7278.7,0.0,621.23,564.94,1186.17,8464.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41819,91741.87,6947.94,16231.93,114921.74,18737.9,9557.31,1947.71,30242.92,145164.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,28642,46157.4,0.0,266.7,46424.1,7041.29,12328.92,3514.42,22884.63,69308.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",18661,8429.4,0.0,0.0,8429.4,0.0,2007.04,653.7,2660.74,11090.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6200,Public Safety Inspection,6220,"Inspector, Weights & Measures",13103,67417.01,0.0,1684.0,69101.01,14241.59,12424.5,5366.24,32032.33,101133.34 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16284,31041.88,0.0,245.05,31286.93,7380.03,7890.76,2614.17,17884.96,49171.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,45299,130845.85,24251.8,15671.48,170769.13,28782.4,15196.12,2864.55,46843.07,217612.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,6069,21907.5,0.0,0.0,21907.5,0.0,2685.01,1696.08,4381.09,26288.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5177,119455.9,14435.17,9116.55,143007.62,23662.83,12424.5,2481.92,38569.25,181576.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,9768,3903.43,0.0,0.0,3903.43,0.0,1400.74,313.59,1714.33,5617.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,41406,41335.02,0.0,0.0,41335.02,9914.28,12424.5,3215.16,25553.94,66888.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,48510,117140.97,9681.96,10296.04,137118.97,23164.17,12424.5,2334.71,37923.38,175042.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47082,1153.8,0.0,28.85,1182.65,0.0,95.81,91.57,187.38,1370.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18238,9081.73,0.0,1237.24,10318.97,0.01,0.0,247.68,247.69,10566.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,27873,85079.68,6306.43,810.0,92196.11,17704.21,12424.5,7540.31,37669.02,129865.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,7145,17633.61,5207.18,2539.11,25379.9,4403.99,3492.72,2069.19,9965.9,35345.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,6859,135421.0,0.0,13907.82,149328.82,30052.43,12424.5,10354.79,52831.72,202160.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,13920,9238.02,1651.51,1964.81,12854.34,1641.64,955.73,219.71,2817.08,15671.42 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,49050,57329.1,0.0,4911.74,62240.84,12207.39,9572.18,5203.13,26982.7,89223.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,27202,9194.43,0.0,67.44,9261.87,0.0,3334.01,717.84,4051.85,13313.72 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,11543,65582.21,0.0,0.0,65582.21,13504.39,12424.5,5335.35,31264.24,96846.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,38545,156746.04,0.0,5804.06,162550.1,32709.6,12424.52,10591.98,55726.1,218276.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,5767,24070.04,939.48,895.64,25905.16,4646.12,5246.06,1982.38,11874.56,37779.72 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9155,Claims Investigator,40176,47287.45,0.0,0.0,47287.45,0.0,0.0,3741.04,3741.04,51028.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,21098,101098.76,0.0,0.0,101098.76,20755.58,12424.5,7933.72,41113.8,142212.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31536,66863.73,4614.31,3854.87,75332.91,19382.55,13178.09,5820.21,38380.85,113713.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,40183,81506.0,40586.01,7079.95,129171.96,16459.34,10035.18,9760.59,36255.11,165427.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29128,0.0,0.0,709.69,709.69,0.0,68.5,54.29,122.79,832.48 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1369,Special Assistant 10,15431,16555.01,0.0,0.0,16555.01,0.0,2241.49,1284.93,3526.42,20081.43 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",2800,Public Health,2806,Disease Control Investigator,47258,19108.4,0.0,294.4,19402.8,3647.12,3536.2,1584.94,8768.26,28171.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,6919,12784.5,0.0,0.0,12784.5,2379.2,2150.4,1015.99,5545.59,18330.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37515,17111.44,3410.86,700.76,21223.06,4272.66,5288.65,1624.84,11186.15,32409.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,36998,33811.0,0.0,0.0,33811.0,6587.2,5543.25,2734.84,14865.29,48676.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,41578,80780.3,20381.96,12386.73,113548.99,18223.39,11803.27,8878.05,38904.71,152453.7 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,34025,35346.19,0.0,0.0,35346.19,8478.3,9867.91,2626.63,20972.84,56319.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,14431,78204.02,0.0,624.0,78828.02,16246.79,12424.5,6491.33,35162.62,113990.64 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,12588,14242.64,267.3,6702.33,21212.27,3674.63,3819.34,1707.58,9201.55,30413.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,18986,80038.28,4210.85,7360.57,91609.7,17428.44,12448.4,1480.77,31357.61,122967.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19910,3416.2,0.0,70.24,3486.44,0.0,1481.39,268.75,1750.14,5236.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,7976,85204.88,0.0,240.0,85444.88,17602.7,12400.61,7594.14,37597.45,123042.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,13075,27438.92,0.0,343.01,27781.93,5336.37,5113.16,2226.39,12675.92,40457.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,250.0,"SEIU - Health Workers, Local 1021",3300,Park & Zoo,3375,Animal Health Technician,49679,50212.07,1444.05,1476.95,53133.07,12055.85,12424.5,4301.78,28782.13,81915.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",47285,98151.66,22447.87,15338.57,135938.1,22358.58,12421.39,9990.34,44770.31,180708.41 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,33432,54654.64,0.0,537.6,55192.24,11467.51,10704.18,4504.31,26676.0,81868.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,4122,106605.02,0.0,0.0,106605.02,19595.63,12424.5,6203.86,38223.99,144829.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,31212,2467.6,106.66,641.98,3216.24,573.26,740.69,245.66,1559.61,4775.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,35284,68067.1,0.0,714.0,68781.1,14180.78,12424.5,5645.66,32250.94,101032.04 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),20366,127025.47,0.0,1500.0,128525.47,25849.42,12424.5,9884.5,48158.42,176683.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,5740,72017.49,0.0,0.0,72017.49,14805.95,11868.98,5619.7,32294.63,104312.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,329,73981.3,2372.37,0.0,76353.67,14998.9,8213.31,6267.86,29480.07,105833.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,46162,60636.7,4681.03,2870.99,68188.72,12982.7,11946.63,5273.75,30203.08,98391.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",25822,93738.09,12350.51,4370.55,110459.15,19752.72,12424.5,8847.27,41024.49,151483.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,37339,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,11595,78963.04,0.0,0.0,78963.04,16274.47,12424.5,6470.88,35169.85,114132.89 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,49795,605.63,348.23,0.0,953.86,0.0,179.2,74.03,253.23,1207.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,27276,156070.82,30.99,13121.81,169223.62,31968.76,12245.3,436.83,44650.89,213874.51 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",31108,850.0,0.0,0.0,850.0,0.0,0.0,67.26,67.26,917.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,25840,107416.0,16625.35,6644.8,130686.15,23501.6,12424.5,9842.29,45768.39,176454.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33393,60447.06,549.44,5235.79,66232.29,12282.06,6589.76,5333.51,24205.33,90437.62 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,3311,135888.02,0.0,0.0,135888.02,27291.82,12424.5,10063.09,49779.41,185667.43 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0904,Mayoral Staff XVI,9331,5269.23,0.0,0.0,5269.23,0.0,477.84,408.98,886.82,6156.05 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),24768,184289.01,0.0,5248.28,189537.29,38144.36,12424.5,10925.3,61494.16,251031.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34901,126525.8,0.0,9011.66,135537.46,19964.31,12424.5,5699.94,38088.75,173626.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,48112,117124.09,47080.8,8885.14,173090.03,23225.71,12424.5,2904.57,38554.78,211644.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,17217,12167.69,0.0,61.31,12229.0,0.0,4401.73,948.15,5349.88,17578.88 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,27948,45840.27,0.0,0.0,45840.27,10281.99,6546.76,3616.99,20445.74,66286.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,21767,87946.78,0.0,600.01,88546.79,18198.21,11661.88,7365.86,37225.95,125772.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",22852,48672.0,12829.05,1825.2,63326.25,10917.14,6212.25,5154.85,22284.24,85610.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52242,1892.4,0.0,315.4,2207.8,0.0,0.0,852.55,852.55,3060.35 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,6977,3338.51,0.0,0.0,3338.51,0.0,379.31,259.12,638.43,3976.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,35316,100459.4,0.0,0.0,100459.4,20736.02,12233.36,8080.96,41050.34,141509.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",13630,82456.23,42144.62,8521.55,133122.4,17311.99,12412.56,9926.97,39651.52,172773.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43011,2976.0,0.0,34.1,3010.1,0.0,1146.87,233.19,1380.06,4390.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14313,34566.3,0.0,0.0,34566.3,6939.88,5304.3,2662.26,14906.44,49472.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",27041,4299.63,0.0,394.71,4694.34,0.0,0.0,370.86,370.86,5065.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",35841,93281.04,0.0,1944.0,95225.04,19584.33,12424.5,7606.34,39615.17,134840.21 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,41835,112984.0,0.0,11320.26,124304.26,25017.79,12424.5,9894.52,47336.81,171641.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,30906,75605.0,23338.89,9829.48,108773.37,16790.34,12424.5,8813.55,38028.39,146801.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,23823,34219.88,59.37,1050.53,35329.78,0.0,5692.56,2873.01,8565.57,43895.35 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,35882,74225.77,0.0,2075.97,76301.74,15702.5,12406.58,5806.01,33915.09,110216.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,13586,62950.54,270.79,300.0,63521.33,13040.88,12424.5,4872.68,30338.06,93859.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,14451,93255.73,0.0,0.0,93255.73,19205.97,12424.5,7510.1,39140.57,132396.3 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,1638,61735.0,0.0,0.0,61735.0,12724.0,12424.5,4759.81,29908.31,91643.31 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,4018,68617.1,0.0,1150.0,69767.1,14356.46,12424.5,1113.87,27894.83,97661.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,30448,12528.71,610.93,1049.68,14189.32,739.55,3849.21,1106.25,5695.01,19884.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,23894,65151.62,1961.7,1240.0,68353.32,13689.34,12368.89,5202.6,31260.83,99614.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,45127,47600.08,0.0,1038.0,48638.08,10007.18,9397.1,3854.2,23258.48,71896.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,45682,26787.07,0.0,0.0,26787.07,5090.46,6039.03,2186.69,13316.18,40103.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,40921,27987.0,0.0,0.0,27987.0,5208.35,5256.52,2211.21,12676.08,40663.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,13901,28116.13,0.0,0.0,28116.13,0.0,6224.21,2180.3,8404.51,36520.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47578,49392.42,791.76,5362.55,55546.73,11321.94,10987.86,4426.23,26736.03,82282.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,12273,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,36067,7005.92,0.0,5441.47,12447.39,1571.43,669.02,984.63,3225.08,15672.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,16461,80064.77,211.01,2150.63,82426.41,16908.2,12138.08,6760.48,35806.76,118233.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15233,58942.2,584.79,1916.92,61443.91,10585.81,6432.07,4759.6,21777.48,83221.39 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),40983,131199.4,0.0,1500.0,132699.4,26701.06,12424.5,9857.19,48982.75,181682.15 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,35947,66224.26,1332.19,0.0,67556.45,13648.48,12418.29,5081.69,31148.46,98704.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13429,64506.94,4342.88,684.99,69534.81,14843.7,12715.04,5337.38,32896.12,102430.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45008,113233.59,37461.82,21546.28,172241.69,25481.14,15196.12,3045.59,43722.85,215964.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,30187,86663.05,2811.1,3137.5,92611.65,18508.46,12424.5,7567.9,38500.86,131112.51 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,9616,6369.72,0.0,1783.2,8152.92,0.0,0.0,118.22,118.22,8271.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44329,1900.95,0.0,867.69,2768.64,490.45,824.31,225.3,1540.06,4308.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,47996,138633.93,26049.2,10111.05,174794.18,27945.01,12424.5,1804.48,42173.99,216968.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5189,0.0,0.0,2104.15,2104.15,0.0,0.0,30.51,30.51,2134.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,15827,51790.3,3667.53,302.98,55760.81,8645.3,11516.57,4454.05,24615.92,80376.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",7672,65344.18,0.0,1313.6,66657.78,13740.61,8703.12,5230.43,27674.16,94331.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,7482,87291.28,0.0,1300.0,88591.28,18156.29,11942.88,7208.67,37307.84,125899.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7482,Power Generation Technician 2,27747,101733.54,21804.11,7644.29,131181.94,21818.61,12060.13,9957.68,43836.42,175018.36 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0965,Dept Head V,10608,307580.34,0.0,0.0,307580.34,61840.15,12424.5,20311.2,94575.85,402156.19 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,4424,35745.73,0.0,0.0,35745.73,8549.3,9975.44,2845.49,21370.23,57115.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,23244,63102.0,0.0,1491.9,64593.9,13313.89,12424.5,5351.32,31089.71,95683.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,29231,78887.67,396.12,485.13,79768.92,16363.19,12412.56,6277.32,35053.07,114821.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,52264,65966.18,0.0,0.0,65966.18,13637.35,11845.08,5159.52,30641.95,96608.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,2379,33215.04,0.0,0.0,33215.04,0.0,5337.16,2673.97,8011.13,41226.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31606,79007.48,0.0,0.0,79007.48,0.0,5807.5,5477.96,11285.46,90292.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,44051,14873.31,0.0,395.22,15268.53,1461.89,4910.06,1183.4,7555.35,22823.88 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),44784,115298.72,0.0,1312.5,116611.22,23345.21,12042.21,9168.07,44555.49,161166.71 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,3.0,"Operating Engineers - Miscellaneous, Local 3",7100,Administrative-Labor & Trades,7108,Heavy Equip Ops Asst Sprv,1732,8234.0,0.0,0.0,8234.0,1532.34,955.73,628.32,3116.39,11350.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1901,54745.07,0.0,1988.73,56733.8,12450.57,12176.07,4656.44,29283.08,86016.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,7511,53910.61,312.75,5062.45,59285.81,12832.36,12376.71,4844.68,30053.75,89339.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,24321,135421.01,0.0,5594.05,141015.06,28371.19,12424.51,10136.15,50931.85,191946.91 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,4075,70398.05,5349.8,16356.57,92104.42,15044.65,9079.44,7055.71,31179.8,123284.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12099,116908.89,15394.24,17152.23,149455.36,23709.59,12400.62,2397.47,38507.68,187963.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,607,10056.0,11.78,1287.3,11355.08,3024.24,1911.46,910.74,5846.44,17201.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37822,2680.9,0.0,279.92,2960.82,0.0,203.1,49.32,252.42,3213.24 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,19025,61198.11,0.0,0.0,61198.11,12599.03,12073.57,4740.13,29412.73,90610.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15970,149099.01,0.0,2884.31,151983.32,30539.67,12424.5,10310.58,53274.75,205258.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7454,Traffic Signal Operator,9263,42295.69,16.94,834.54,43147.17,10335.86,11219.92,3339.29,24895.07,68042.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29794,11247.3,0.0,165.69,11412.99,0.0,4877.22,913.47,5790.69,17203.68 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,44755,96425.02,0.0,0.0,96425.02,19870.04,12424.5,7919.89,40214.43,136639.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7522,68018.16,8707.11,3958.45,80683.72,16867.61,13402.69,5955.43,36225.73,116909.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,37987,38765.0,0.0,680.11,39445.11,7488.99,6212.25,3175.38,16876.62,56321.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,26006,85004.0,251.29,11215.81,96471.1,19271.56,12424.5,7706.68,39402.74,135873.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,46611,57238.0,127.18,5853.93,63219.11,12819.35,0.0,5224.32,18043.67,81262.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,46720,82605.1,0.0,655.92,83261.02,17000.97,11848.72,6802.24,35651.93,118912.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,19671,17862.01,0.0,0.0,17862.01,4006.45,2389.34,1419.52,7815.31,25677.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,49481,56696.0,6241.5,0.0,62937.5,11684.63,12424.5,5103.84,29212.97,92150.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,14263,173020.04,0.0,0.0,173020.04,34620.61,12352.82,17953.09,64926.52,237946.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42786,67269.01,18188.66,2498.65,87956.32,19096.66,13257.3,6616.57,38970.53,126926.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,42761,50782.01,0.0,870.0,51652.01,6832.54,12424.5,4149.87,23406.91,75058.92 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,25715,363.99,0.0,0.0,363.99,0.0,477.86,5.28,483.14,847.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,718.0,"Glaziers, Metal, and Glass Workers, Local 718",7300,Journeyman Trade,7326,Glazier,34858,87531.0,577.19,6133.21,94241.4,18983.09,12424.5,7540.07,38947.66,133189.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,45729,75556.59,22598.96,12002.25,110157.8,16999.82,12416.55,8692.05,38108.42,148266.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,386,84549.07,8848.79,2891.27,96289.13,17061.98,12349.48,1636.87,31048.33,127337.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,41404,34321.58,275.98,328.05,34925.61,7163.46,6276.94,2707.11,16147.51,51073.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6214,113709.75,113.71,24974.37,138797.83,25470.92,11032.72,9835.95,46339.59,185137.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,50163,49773.2,8668.73,1576.96,60018.89,12185.8,12424.52,4818.72,29429.04,89447.93 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4224,Pr Personal Property Auditor,46967,116384.01,0.0,1480.0,117864.01,23700.16,12424.5,9640.82,45765.48,163629.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,7438,66546.62,515.35,3782.4,70844.37,13772.26,11212.69,5835.87,30820.82,101665.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,14671,68067.02,343.61,624.0,69034.63,14157.65,12424.5,5503.38,32085.53,101120.16 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,34700,112263.47,0.0,0.0,112263.47,22787.65,11576.29,16477.1,50841.04,163104.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,16379,22745.65,0.0,1201.0,23946.65,0.0,5383.46,1855.58,7239.04,31185.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,12909,79377.99,0.0,155.0,79532.99,16391.54,12421.82,6497.5,35310.86,114843.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,22989,62811.05,776.24,2803.29,66390.58,13475.88,12424.5,5420.83,31321.21,97711.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,45955,153.82,0.0,3.33,157.15,0.0,44.8,12.18,56.98,214.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32303,121232.11,24295.35,19027.75,164555.21,23998.29,12424.51,2780.21,39203.01,203758.22 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),52551,107911.3,1922.87,6474.68,116308.85,23278.11,12424.5,1760.95,37463.56,153772.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20688,4847.0,0.0,13.68,4860.68,0.0,1866.65,376.95,2243.6,7104.28 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,16937,164889.1,0.0,0.0,164889.1,33126.14,12424.5,28087.89,73638.53,238527.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1770,Photographer,53001,54375.4,0.0,0.0,54375.4,12102.57,12233.36,4420.29,28756.22,83131.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1526,65417.11,21222.14,4967.5,91606.75,19268.61,12889.4,7167.19,39325.2,130931.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,48433,69380.34,12.53,0.0,69392.87,14303.68,12332.81,5647.78,32284.27,101677.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7123,991.21,0.0,1173.33,2164.54,247.12,197.12,126.5,570.74,2735.28 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,2275,21903.67,498.5,0.0,22402.17,0.0,0.0,1772.07,1772.07,24174.24 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,37644,67261.02,174.32,2049.0,69484.34,14260.12,12424.5,5345.79,32030.41,101514.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,29452,47519.5,403.86,7007.86,54931.22,9115.76,6929.06,4388.46,20433.28,75364.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42168,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38417,119461.66,25422.37,7773.79,152657.82,23641.93,12424.5,2556.22,38622.65,191280.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",41156,27404.56,349.65,0.0,27754.21,3828.84,5722.43,2146.77,11698.04,39452.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,35334,101276.01,18811.08,10787.61,130874.7,22964.96,12424.5,9921.28,45310.74,176185.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,28854,18659.82,0.0,0.0,18659.82,3728.41,2638.47,1560.34,7927.22,26587.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,37436,9304.76,0.0,61.31,9366.07,0.0,3368.96,725.96,4094.92,13460.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,37164,14800.0,0.0,1644.65,16444.65,2892.0,2389.32,1343.38,6624.7,23069.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,35378,83655.73,0.0,50.0,83705.73,17221.36,12173.74,6885.7,36280.8,119986.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,39148,5142.0,0.0,0.0,5142.0,1153.36,955.73,406.31,2515.4,7657.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,11056,21521.95,0.0,1455.22,22977.17,4721.89,1481.5,1786.75,7990.14,30967.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,46818,104811.02,0.0,624.0,105435.02,21730.49,12424.5,8559.6,42714.59,148149.61 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,10763,104793.62,0.0,5239.69,110033.31,22185.57,6080.84,8237.21,36503.62,146536.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,36379,81157.01,511.83,21663.4,103332.24,20668.77,12424.51,8398.92,41492.2,144824.44 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,7006,97559.0,0.0,0.0,97559.0,20067.14,11755.49,7668.88,39491.51,137050.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,38814,65967.92,10726.2,8429.57,85123.69,19909.42,12419.54,6868.18,39197.14,124320.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12829,117635.54,11156.07,3086.96,131878.57,23370.32,12101.94,1617.78,37090.04,168968.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,42482,70236.61,3550.36,9250.09,83037.06,15773.71,12423.01,6566.82,34763.54,117800.6 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,44470,174918.38,0.0,0.0,174918.38,35204.26,12418.53,18042.28,65665.07,240583.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38333,70843.23,3494.99,1853.26,76191.48,14862.35,11414.28,6031.51,32308.14,108499.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37066,119404.45,24946.18,5741.56,150092.19,23629.52,12418.53,2549.09,38597.14,188689.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1920,Inventory Clerk,28669,53973.02,0.0,1534.0,55507.02,13095.26,12424.5,4524.97,30044.73,85551.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,29406,67261.13,0.0,624.0,67885.13,13987.79,12424.5,5576.19,31988.48,99873.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,11321,9828.24,0.0,0.0,9828.24,0.0,3252.48,760.9,4013.38,13841.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46338,53642.02,73.5,1.96,53717.48,12870.97,12424.5,4112.42,29407.89,83125.37 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,11071,49860.98,453.55,322.9,50637.43,11653.53,10023.22,4073.19,25749.94,76387.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,29752,60694.42,0.0,1108.49,61802.91,12735.47,12215.32,4873.45,29824.24,91627.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,42445,3776.85,0.0,87.15,3864.0,0.0,1379.84,299.11,1678.95,5542.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,21740,97738.03,50824.87,19380.25,167943.15,28226.15,12421.1,2774.05,43421.3,211364.45 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",3776,198139.03,0.0,5462.78,203601.81,40974.08,12424.5,11247.76,64646.34,268248.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15637,29874.03,3965.64,1339.45,35179.12,7929.8,9313.88,2660.03,19903.71,55082.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,10972,55124.38,188.55,0.0,55312.93,11529.58,10400.2,4551.39,26481.17,81794.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44924,66858.69,5206.66,555.99,72621.34,15353.94,13177.62,5329.65,33861.21,106482.55 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,45083,19789.6,0.0,0.0,19789.6,3682.85,3345.06,1607.21,8635.12,28424.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,17251,61214.81,0.0,0.0,61214.81,12644.71,10895.34,4909.69,28449.74,89664.55 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,32892,20417.93,0.0,0.0,20417.93,0.0,3003.08,1605.72,4608.8,25026.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,29221,81942.0,4757.65,4416.72,91116.37,17805.07,12424.5,7481.91,37711.48,128827.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,6562,72988.45,6731.08,490.0,80209.53,8335.22,11815.23,6389.46,26539.91,106749.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36434,112020.15,6703.76,17675.96,136399.87,24695.81,14909.39,2238.32,41843.52,178243.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50883,85822.08,1931.3,9806.69,97560.07,17146.53,9093.78,7527.75,33768.06,131328.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42564,10579.2,0.0,0.0,10579.2,0.0,4587.51,856.4,5443.91,16023.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,24428,44050.5,0.0,19851.22,63901.72,10212.28,6451.18,5120.82,21784.28,85686.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,40823,45737.14,1905.62,15454.56,63097.32,12437.39,5873.75,1009.84,19320.98,82418.3 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1369,Special Assistant 10,44429,42269.11,0.0,0.0,42269.11,0.0,5501.43,3276.78,8778.21,51047.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,420,43930.14,8352.44,818.65,53101.23,11581.04,13074.76,4033.26,28689.06,81790.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23030,117512.0,599.21,18527.9,136639.11,25246.87,11067.36,9596.94,45911.17,182550.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,15926,102019.0,0.0,0.0,102019.0,19277.18,12424.5,6837.01,38538.69,140557.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25627,112273.14,24574.57,22694.89,159542.6,25824.06,15066.61,2673.72,43564.39,203106.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,10656,24391.1,0.0,774.55,25165.65,6029.15,6022.66,1832.68,13884.49,39050.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,5919,6055.35,479.07,6.12,6540.54,0.0,2831.35,507.15,3338.5,9879.04 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,12217,81542.0,0.0,0.0,81542.0,16806.13,12424.5,6583.45,35814.08,117356.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,20506,6374.0,0.0,0.0,6374.0,1186.2,955.73,494.54,2636.47,9010.47 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,12478,68005.95,0.0,623.45,68629.4,14146.2,12413.63,5645.0,32204.83,100834.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,2916,36635.0,0.0,620.0,37255.0,7099.32,6690.12,3021.88,16811.32,54066.32 +Calendar,2015,4,Community Health,DPH,Public Health,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,3095,85402.84,0.0,2860.0,88262.84,18183.64,12242.73,7055.87,37482.24,125745.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",3400,Agriculture & Horticulture,3450,Agricultural Inspector,10470,67387.09,0.0,1060.0,68447.09,14107.21,12419.12,5335.44,31861.77,100308.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,39067,61428.01,374.23,0.0,61802.24,12660.6,12424.5,5064.68,30149.78,91952.02 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8165,Worker's Comp Supervisor 1,44801,108242.8,0.0,0.0,108242.8,22260.39,12424.5,8361.13,43046.02,151288.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6670,113233.59,39806.9,17850.73,170891.22,25075.2,15196.12,2812.64,43083.96,213975.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,37757,144762.89,5033.8,23460.31,173257.0,29388.18,12424.5,2942.9,44755.58,218012.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,26115,63887.01,6088.43,1247.25,71222.69,13426.54,12424.51,5626.57,31477.62,102700.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,26763,66102.04,7387.6,4017.91,77507.55,13960.86,12424.5,6684.08,33069.44,110576.99 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,42414,32212.3,0.0,2105.44,34317.74,7225.23,3966.28,2790.17,13981.68,48299.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30856,105423.04,0.0,10137.79,115560.83,22862.78,11812.23,1938.25,36613.26,152174.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,27716,31388.0,5128.56,2045.05,38561.61,6783.21,3345.06,640.21,10768.48,49330.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43346,112159.75,8654.75,18000.48,138814.98,24724.25,15052.76,2363.66,42140.67,180955.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,25436,7326.9,10.03,3.49,7340.42,0.0,1505.27,569.73,2075.0,9415.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,30644,67261.02,0.0,1630.0,68891.02,14144.82,12424.5,5519.0,32088.32,100979.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,33066,97934.01,0.0,2004.0,99938.01,20592.49,12424.5,8226.64,41243.63,141181.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",5200,Professional Engineering,5271,Sr Airport Noise Abatement Spe,49533,38060.01,0.0,0.0,38060.01,7082.95,5256.52,3168.2,15507.67,53567.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16809,113401.0,54899.14,15983.67,184283.81,26319.04,14766.05,2839.86,43924.95,228208.76 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,18981,67515.39,127.35,6946.02,74588.76,14705.33,12352.82,5909.03,32967.18,107555.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,11897,79322.46,0.0,0.0,79322.46,16348.38,10226.32,6266.6,32841.3,112163.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,46866,6461.01,0.0,95.25,6556.26,1441.72,1911.46,528.14,3881.32,10437.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,8158,54124.01,0.0,824.0,54948.01,12250.25,12424.5,4285.7,28960.45,83908.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1651,2827.35,0.0,222.63,3049.98,1364.41,0.0,70.76,1435.17,4485.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,21397,60129.83,15775.49,2787.92,78693.24,12556.29,11973.82,6157.41,30687.52,109380.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,15511,53959.69,13353.12,4658.85,71971.66,13203.3,12421.52,5647.66,31272.48,103244.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,5550,17106.14,0.0,238.25,17344.39,3856.39,3044.48,1465.78,8366.65,25711.04 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28901,184289.07,0.0,5248.28,189537.35,38144.36,12424.5,10954.61,61523.47,251060.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,35494,37494.7,0.0,0.0,37494.7,8999.16,12177.75,3055.99,24232.9,61727.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,6575,36133.94,421.53,1646.3,38201.77,4850.64,9634.96,3021.43,17507.03,55708.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,45717,129895.0,0.0,23381.1,153276.1,26141.48,12424.5,10338.76,48904.74,202180.84 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,47370,51224.63,0.0,0.0,51224.63,10746.53,10513.04,4081.34,25340.91,76565.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,6608,94703.17,0.0,0.0,94703.17,18705.91,10043.96,7203.48,35953.35,130656.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,28221,19406.15,0.06,1797.47,21203.68,3647.39,1433.6,56.2,5137.19,26340.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,44089,61777.5,2487.01,0.0,64264.51,12711.26,12424.5,4966.6,30102.36,94366.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32269,22864.99,2186.46,71350.58,96402.03,5235.09,2389.33,72.69,7697.11,104099.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3436,Arborist Technician Supervisor,9998,91653.0,4883.07,1680.75,98216.82,19235.78,12424.5,7829.75,39490.03,137706.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49344,56531.0,0.0,1591.03,58122.03,11979.32,12424.5,4813.8,29217.62,87339.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,1025,200107.16,574.5,13344.54,214026.2,39478.4,12424.5,3583.86,55486.76,269512.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24308,7471.0,0.0,376.96,7847.96,0.0,2879.14,608.04,3487.18,11335.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31436,21426.01,1071.27,2905.39,25402.67,5527.94,4300.79,2022.47,11851.2,37253.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,27597,72564.49,0.0,0.0,72564.49,15049.19,9077.23,5863.68,29990.1,102554.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2700,56531.0,0.0,5740.7,62271.7,13733.62,12424.5,4998.51,31156.63,93428.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator, Taxi And Accessible Servic",38700,3018.0,0.0,0.0,3018.0,561.64,477.86,218.87,1258.37,4276.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4837,1653.0,0.0,0.0,1653.0,0.0,716.79,127.98,844.77,2497.77 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,45324,2366.98,847.87,0.0,3214.85,0.0,700.37,249.52,949.89,4164.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,24748,87188.45,0.0,0.0,87188.45,18053.81,11337.84,15657.9,45049.55,132238.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,52801,24620.12,0.0,0.0,24620.12,1245.8,8047.26,1977.67,11270.73,35890.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49896,8488.95,0.0,0.0,8488.95,0.0,3619.83,674.3,4294.13,12783.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,21814,14765.0,0.0,0.0,14765.0,3311.8,2389.33,1179.85,6880.98,21645.98 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,14629,2611.29,0.0,2.25,2613.54,674.29,555.34,245.21,1474.84,4088.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,9586,79395.05,0.0,1520.0,80915.05,16683.59,12424.51,6368.78,35476.88,116391.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,43978,160748.71,802.5,6009.13,167560.34,31792.93,12424.5,2845.03,47062.46,214622.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,48913,60983.5,2310.96,2436.32,65730.78,12758.34,12185.57,5427.99,30371.9,96102.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,10233,81942.0,0.0,600.0,82542.0,17000.25,12424.5,6551.9,35976.65,118518.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,10352,64208.8,0.0,0.0,64208.8,13218.47,12424.5,5162.77,30805.74,95014.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24714,56263.58,0.0,1317.3,57580.88,11607.83,12365.36,4519.23,28492.42,86073.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,44831,15587.0,0.0,855.58,16442.58,0.0,4683.08,1276.21,5959.29,22401.87 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,39305,91066.02,0.0,1140.0,92206.02,18993.2,12050.99,7050.02,38094.21,130300.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13233,147370.8,2431.41,36301.37,186103.58,20688.81,12281.15,4831.21,37801.17,223904.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,24593,52511.51,970.51,979.65,54461.67,12759.82,12376.72,4362.63,29499.17,83960.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26248,12622.2,1044.47,138.17,13804.84,3059.86,3890.96,1055.47,8006.29,21811.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,19297,10192.86,0.0,0.0,10192.86,0.0,890.02,791.14,1681.16,11874.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,3878,69132.0,0.0,0.0,69132.0,13788.89,9079.44,5451.8,28320.13,97452.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32888,110.2,0.0,871.54,981.74,28.43,47.79,75.2,151.42,1133.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,48515,84499.36,13342.6,10961.99,108803.95,19877.96,10739.37,8982.26,39599.59,148403.54 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,27871,-292.4,0.0,0.0,-292.4,0.0,-95.58,-22.63,-118.21,-410.61 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8240,Pub Safety Communication Coord,24627,109993.47,131213.91,17308.06,258515.44,25136.78,12352.82,12138.45,49628.05,308143.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",10497,130329.3,65476.53,16291.24,212097.07,28844.13,15052.76,3601.42,47498.31,259595.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,24354,70415.78,0.0,0.0,70415.78,14450.19,11793.25,5855.47,32098.91,102514.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44398,18692.4,41.33,1473.98,20207.71,1947.13,8099.82,1632.63,11679.58,31887.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,8808,40192.02,1950.71,569.44,42712.17,7785.52,8553.79,3461.55,19800.86,62513.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,20701,57897.45,9105.88,16968.25,83971.58,15019.78,11182.84,6868.08,33070.7,117042.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,18397,73957.16,861.75,230.0,75048.91,15287.05,12424.47,5940.14,33651.66,108700.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,46148,15700.14,0.0,457.07,16157.21,0.0,3900.16,1252.44,5152.6,21309.81 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,30617,60844.96,11.74,4734.05,65590.75,12922.85,12315.61,5825.44,31063.9,96654.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50106,119463.8,5228.96,823.61,125516.37,23633.47,12424.5,2082.35,38140.32,163656.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,15197,43460.4,1478.84,4322.36,49261.6,9313.14,7598.06,4307.58,21218.78,70480.38 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,6385,74412.09,0.0,3624.0,78036.09,15474.57,12424.5,6482.71,34381.78,112417.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,47310,50241.95,0.0,0.0,50241.95,9990.63,8274.85,3774.13,22039.61,72281.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,12441,6345.0,0.0,0.0,6345.0,1423.17,1433.6,521.97,3378.74,9723.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30942,40724.32,4842.78,977.8,46544.9,10813.77,12682.49,3485.22,26981.48,73526.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,19400,52006.5,0.0,250.0,52256.5,10595.59,10274.11,4122.97,24992.67,77249.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,27371,70585.93,0.0,3135.85,73721.78,15126.72,7544.3,5841.9,28512.92,102234.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36758,63988.74,6478.86,1024.23,71491.83,15196.53,12607.82,5452.71,33257.06,104748.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50425,1428.0,0.0,25.4,1453.4,0.0,382.3,112.81,495.11,1948.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,15974,46218.0,0.0,126.75,46344.75,9244.84,9079.43,3799.89,22124.16,68468.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,44258,72239.91,0.0,205.0,72444.91,15071.86,11325.42,6035.32,32432.6,104877.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,24621,146260.69,0.0,0.0,146260.69,29385.68,12424.49,17550.51,59360.68,205621.37 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,37939,15282.2,0.0,48855.13,64137.33,3612.72,815.36,4575.07,9003.15,73140.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",47623,93281.02,8044.9,2743.04,104068.96,19354.57,12424.5,8546.85,40325.92,144394.88 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,37009,96881.24,0.0,5564.5,102445.74,20995.05,12418.41,8364.62,41778.08,144223.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15713,1147.88,0.0,22.72,1170.6,0.0,434.55,90.86,525.41,1696.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,46572,86502.78,5748.41,7809.06,100060.25,18978.94,12401.86,7997.29,39378.09,139438.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,7554,114590.41,0.0,0.0,114590.41,23018.15,12424.5,9399.07,44841.72,159432.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,51422,41662.5,2891.31,10274.39,54828.2,10292.62,0.0,914.77,11207.39,66035.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,9242,58101.02,1816.84,0.0,59917.86,11974.94,12424.5,4344.75,28744.19,88662.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28992,33210.77,0.0,924.27,34135.04,6188.69,3368.96,2671.2,12228.85,46363.89 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21504,26362.0,0.0,0.0,26362.0,6779.82,6690.11,2059.1,15529.03,41891.03 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18680,10328.83,0.0,685.96,11014.79,2422.15,2726.82,878.0,6026.97,17041.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,23867,107416.06,7644.32,3374.9,118435.28,22787.12,12424.5,9714.05,44925.67,163360.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14959,98858.99,34795.77,11451.65,145106.41,20505.42,12424.5,2423.02,35352.94,180459.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",46928,92743.33,0.0,0.0,92743.33,19106.99,12352.82,7648.76,39108.57,131851.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52908,56531.0,0.0,2289.75,58820.75,12680.14,12424.5,4776.05,29880.69,88701.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26737,8271.25,0.0,0.0,8271.25,0.0,3524.25,657.4,4181.65,12452.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4306,2731.2,0.0,0.0,2731.2,0.0,1146.88,211.99,1358.87,4090.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,25406,62811.0,1283.04,62.44,64156.48,12978.04,12424.5,5315.62,30718.16,94874.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,44991,9488.27,0.0,0.0,9488.27,1720.23,571.95,158.33,2450.51,11938.78 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,43852,52708.34,0.0,0.0,52708.34,12618.84,12424.5,4144.62,29187.96,81896.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25093,722.75,0.0,5.88,728.63,0.0,352.42,56.41,408.83,1137.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44881,83206.52,22547.21,6683.17,112436.9,17257.54,12424.51,1820.23,31502.28,143939.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,10155,82051.9,0.0,0.0,82051.9,16788.36,11444.87,6674.61,34907.84,116959.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6094,74244.93,0.0,420.0,74664.93,15351.77,11967.18,6202.8,33521.75,108186.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,13442,66102.01,0.0,0.0,66102.01,13624.06,12424.5,5203.28,31251.84,97353.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45112,100187.58,11349.99,7261.01,118798.58,20792.78,12424.5,1981.32,35198.6,153997.18 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,40485,1453.51,461.79,242.25,2157.55,0.0,430.07,167.46,597.53,2755.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",14380,27744.7,0.0,0.0,27744.7,0.0,5829.95,2151.04,7980.99,35725.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,22583,117129.69,8682.82,7880.47,133692.98,23771.41,12424.5,2176.45,38372.36,172065.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25631,56531.0,0.0,2614.35,59145.35,11780.12,12424.5,4894.81,29099.43,88244.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45613,1944.69,0.0,0.0,1944.69,0.0,948.26,150.88,1099.14,3043.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",22409,9834.3,0.0,0.0,9834.3,0.0,2341.53,762.91,3104.44,12938.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43698,66827.31,21793.61,1561.64,90182.56,18735.43,13167.7,7039.48,38942.61,129125.17 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,34266,6535.34,0.0,555.88,7091.22,1590.57,872.1,620.53,3083.2,10174.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,7264,130883.51,0.0,8911.44,139794.95,28065.64,12424.75,10065.65,50556.04,190350.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49608,65852.42,6937.17,585.15,73374.74,15104.13,12973.98,5388.25,33466.36,106841.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,12427,15061.0,0.0,1173.3,16234.3,3384.14,4539.73,1322.82,9246.69,25480.99 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),36103,24435.0,0.0,0.0,24435.0,4430.07,2150.39,1930.87,8511.33,32946.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,45033,63887.02,21365.99,7728.45,92981.46,13188.38,12424.56,7562.68,33175.62,126157.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,27452,24324.77,0.0,4502.69,28827.46,5380.92,4973.26,2370.2,12724.38,41551.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,32264,37392.13,0.0,0.0,37392.13,7660.45,5662.71,3077.99,16401.15,53793.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34645,91557.44,2756.35,9578.69,103892.48,24627.19,11628.3,1757.52,38013.01,141905.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,9833,96921.13,5650.18,0.0,102571.31,19970.88,12424.5,8233.5,40628.88,143200.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36078,128259.78,0.0,1759.0,130018.78,22866.41,12230.37,9857.82,44954.6,174973.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,18005,33999.0,14785.93,6885.26,55670.19,7434.33,6690.11,4529.33,18653.77,74323.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19037,18171.64,0.0,2291.41,20463.05,10921.65,1500.8,627.85,13050.3,33513.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39419,66082.37,2799.27,1619.64,70501.28,16597.18,13101.99,5184.67,34883.84,105385.12 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,45980,24776.4,121.84,274.16,25172.4,0.0,0.0,1990.61,1990.61,27163.01 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),32633,79868.7,0.0,1125.0,80993.7,16223.94,9413.95,6768.15,32406.04,113399.74 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7257,Communication Line Sprv1,8187,104811.01,33057.05,17843.78,155711.84,21604.89,12424.5,10536.83,44566.22,200278.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,18992,63557.14,0.0,0.0,63557.14,14180.17,12424.5,4985.91,31590.58,95147.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,27690,138633.91,724.44,4874.04,144232.39,27400.21,12424.5,2446.76,42271.47,186503.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10259,11405.72,0.0,0.0,11405.72,682.35,4945.91,895.94,6524.2,17929.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,3168,20078.5,0.0,0.0,20078.5,3736.6,2628.26,1577.13,7941.99,28020.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,36745,12444.0,0.0,3175.51,15619.51,2740.33,2867.19,1246.56,6854.08,22473.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,16324,83013.0,6910.99,5956.72,95880.71,17362.39,10513.05,7676.47,35551.91,131432.62 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,48386,25445.08,0.0,157.8,25602.88,6139.0,7096.3,2067.26,15302.56,40905.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3436,Arborist Technician Supervisor,7394,91653.04,24440.6,5122.87,121216.51,18889.88,12424.47,9769.55,41083.9,162300.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16372,7729.55,0.0,35.34,7764.89,0.0,1933.87,602.23,2536.1,10300.99 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,8953,767.61,18.56,0.0,786.17,0.0,188.16,61.02,249.18,1035.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,44060,47751.89,0.0,4571.39,52323.28,9904.4,9025.5,4370.72,23300.62,75623.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3073,86128.27,12884.69,8268.65,107281.61,17512.57,10990.9,2485.71,30989.18,138270.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,39780,65592.0,4630.88,1716.5,71939.38,13528.23,12424.5,5901.69,31854.42,103793.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",12261,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,13530,63585.01,0.0,0.0,63585.01,12498.34,8123.71,4949.95,25572.0,89157.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",878,47066.85,19447.59,4673.14,71187.58,10606.24,7127.79,5608.82,23342.85,94530.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40096,2320.0,0.0,0.0,2320.0,0.0,477.86,120.67,598.53,2918.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,34801,83826.01,0.0,0.0,83826.01,17420.7,11468.73,6729.93,35619.36,119445.37 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,32174,67038.26,0.0,614.52,67652.78,13924.79,12235.57,5561.06,31721.42,99374.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,48796,41619.71,0.0,0.0,41619.71,8118.42,7383.02,3166.17,18667.61,60287.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52825,6930.97,0.0,1199.47,8130.44,3797.08,0.0,265.02,4062.1,12192.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,49614,28763.82,0.0,0.0,28763.82,7207.11,8075.92,2626.65,17909.68,46673.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,24217,155950.56,0.0,0.0,155950.56,31410.73,12424.5,17704.75,61539.98,217490.54 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24674,97764.69,33778.65,9973.6,141516.94,26093.82,12424.52,2365.77,40884.11,182401.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21259,265.21,0.0,0.0,265.21,0.0,88.09,20.58,108.67,373.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,52172,161120.33,0.0,0.0,161120.33,32328.88,12424.5,18839.35,63592.73,224713.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15414,65502.45,5556.6,3765.82,74824.87,19080.11,12922.92,5759.91,37762.94,112587.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3608,67485.68,20406.17,543.54,88435.39,18664.11,13305.15,6912.77,38882.03,127317.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6621,138979.97,0.0,2449.33,141429.3,28424.29,12305.04,10113.79,50843.12,192272.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35781,119461.69,74426.8,834.34,194722.83,23641.92,12424.5,3274.12,39340.54,234063.37 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,1896,67517.47,6206.72,7532.58,81256.77,15149.52,12352.82,6445.51,33947.85,115204.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19065,52760.0,491.33,3442.6,56693.93,13460.99,12424.5,4392.55,30278.04,86971.97 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,19889,3769.16,0.0,0.0,3769.16,0.0,854.19,292.42,1146.61,4915.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50498,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3314.32,18140.17,61907.47 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,37719,129895.0,0.0,0.0,129895.0,26141.48,12424.5,9892.99,48458.97,178353.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,44168,55854.83,9153.01,4150.81,69158.65,12751.84,12424.86,5323.24,30499.94,99658.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10332,22791.13,0.0,4185.14,26976.27,4972.67,0.0,4434.37,9407.04,36383.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,24348,82104.2,0.0,0.0,82104.2,16891.47,12424.5,6680.24,35996.21,118100.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,17853,79248.61,2121.45,7611.57,88981.63,17144.74,10695.35,7307.44,35147.53,124129.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,41300,62811.0,1007.76,5537.79,69356.55,14089.71,12424.5,5434.2,31948.41,101304.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,18562,69568.6,5325.96,0.0,74894.56,14335.61,12424.51,5820.47,32580.59,107475.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",17384,12343.05,0.0,0.0,12343.05,0.0,2938.88,958.01,3896.89,16239.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,33040,79722.01,13942.46,840.0,94504.47,14541.05,12424.5,7014.43,33979.98,128484.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45115,56531.0,0.0,2614.35,59145.35,11780.12,12424.5,4847.63,29052.25,88197.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,32743,47257.71,450.19,792.61,48500.51,9915.2,9358.46,3892.86,23166.52,71667.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,20071,86624.4,16199.99,1113.0,103937.39,12777.25,11038.69,8251.51,32067.45,136004.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,44851,79395.07,0.0,1540.0,80935.07,16677.33,12424.51,6560.94,35662.78,116597.85 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,16064,45614.53,0.0,492.65,46107.18,9543.94,6702.05,3807.61,20053.6,66160.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29385,13106.51,2244.4,478.34,15829.25,3815.15,4137.24,1139.74,9092.13,24921.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,19366,82883.01,6529.43,1383.46,90795.9,17365.41,12424.5,7106.03,36895.94,127691.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,26243,70838.78,0.0,619.85,71458.63,14726.22,12341.77,5746.39,32814.38,104273.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,12944,46907.02,0.0,0.0,46907.02,9868.44,6690.11,3755.92,20314.47,67221.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26278,0.0,0.0,250.0,250.0,0.0,22.84,0.0,22.84,272.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,32863,14161.0,0.0,0.0,14161.0,0.0,2341.53,1114.76,3456.29,17617.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7534,31520.39,3450.1,807.51,35778.0,8592.44,9927.25,2645.18,21164.87,56942.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,51372,49679.0,0.0,2114.75,51793.75,11997.21,12424.5,4241.59,28663.3,80457.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,9647,11760.0,0.0,1146.6,12906.6,2637.76,1911.45,1038.56,5587.77,18494.37 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,7018,123776.0,24578.31,0.0,148354.31,24928.04,12424.5,10220.11,47572.65,195926.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44519,1016.75,0.0,8.82,1025.57,0.0,495.79,79.59,575.38,1600.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7853,12429.5,0.0,0.0,12429.5,0.0,5328.2,1002.39,6330.59,18760.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1418,66102.0,1010.8,484.7,67597.5,13647.44,12424.5,5582.08,31654.02,99251.52 +Calendar,2015,1,Public Protection,CRT,Superior Court,196.0,Court Unrepresented Managers,SCRT,SF Superior Court,146C,Emergcy Protective Orders Comm,3238,83018.0,0.0,4596.5,87614.5,17120.71,12424.5,31151.5,60696.71,148311.21 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,18907,5563.7,0.0,0.0,5563.7,0.0,1409.71,430.74,1840.45,7404.15 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,10002,27560.86,0.0,839.36,28400.22,6832.17,6809.58,2283.63,15925.38,44325.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8603,Emergency Services Coord III,43611,89644.43,0.0,0.0,89644.43,18439.38,12424.5,7303.89,38167.77,127812.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19043,1664.78,0.0,0.0,1664.78,197.04,0.0,2478.21,2675.25,4340.03 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,1365,99654.08,0.0,0.0,99654.08,22731.78,12424.5,1684.31,36840.59,136494.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46993,63179.01,7860.36,1808.95,72848.32,17709.65,12444.39,5463.85,35617.89,108466.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31695,33027.7,0.0,0.0,33027.7,0.0,2532.69,2563.47,5096.16,38123.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22894,140535.15,202.63,32536.01,173273.79,32697.07,12442.42,7879.25,53018.74,226292.53 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,475C,Training Technician,14067,86996.01,0.0,5297.0,92293.01,18069.75,12424.5,7536.64,38030.89,130323.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,33113,11810.0,0.0,0.0,11810.0,2591.12,955.72,1256.86,4803.7,16613.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,16241,54839.36,0.0,0.0,54839.36,11930.75,9438.02,4228.24,25597.01,80436.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16707,142708.33,1852.79,20059.33,164620.45,28237.4,12424.5,2750.0,43411.9,208032.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24858,910.4,0.0,0.0,910.4,0.0,382.3,70.67,452.97,1363.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,28751,33315.07,0.0,0.0,33315.07,8387.71,7167.99,2738.11,18293.81,51608.88 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,47876,88296.01,0.0,5322.0,93618.01,18337.86,12424.5,7768.54,38530.9,132148.91 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1230,Instructional Designer,4838,101531.02,0.0,0.0,101531.02,20926.03,12424.5,8192.19,41542.72,143073.74 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,25918,8477.58,0.0,0.0,8477.58,0.0,1060.26,657.01,1717.27,10194.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,45183,63887.03,0.0,2131.24,66018.27,13598.4,12424.47,5215.33,31238.2,97256.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9772,5600.77,0.0,119.21,5719.98,0.0,2822.39,443.46,3265.85,8985.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,2464,83476.53,0.0,0.0,83476.53,17227.52,12142.68,6506.85,35877.05,119353.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,38881,81157.06,1238.47,915.0,83310.53,16903.31,12424.5,6477.96,35805.77,119116.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42655,49282.29,0.0,0.0,49282.29,11769.96,12424.5,4003.91,28198.37,77480.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,32429,7362.14,108.3,0.0,7470.44,0.0,2407.25,579.82,2987.07,10457.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,49702,106605.05,0.0,0.0,106605.05,21971.81,12424.5,8560.9,42957.21,149562.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,37154,100886.05,670.3,4957.59,106513.94,20808.15,11253.67,8579.56,40641.38,147155.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15545,67619.91,5321.93,3717.58,76659.42,19566.55,13326.05,5642.55,38535.15,115194.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,3167,200107.13,718.13,1980.59,202805.85,39478.38,12424.5,3391.14,55294.02,258099.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21889,56531.0,0.0,6251.67,62782.67,13353.1,12424.5,5038.15,30815.75,93598.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,48672,21417.72,0.0,299.78,21717.5,0.0,0.0,1718.2,1718.2,23435.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,27542,85368.0,246.53,288.0,85902.53,17648.23,12424.5,6831.08,36903.81,122806.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39365,113233.6,35114.93,20054.64,168403.17,26184.98,15196.12,2870.85,44251.95,212655.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,40192,0.0,0.0,0.0,0.0,0.0,68.5,0.18,68.68,68.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44023,44513.92,2009.2,621.23,47144.35,11671.26,13115.19,3531.45,28317.9,75462.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,28554,87706.36,531.72,503.25,88741.33,18105.89,12424.5,7287.3,37817.69,126559.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35622,64370.85,20171.39,4311.64,88853.88,16773.99,13620.9,6760.06,37154.95,126008.83 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,11029,86770.28,0.0,0.0,86770.28,17879.65,12424.5,7123.63,37427.78,124198.06 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,474C,Senior Fiscal Technician,38370,64680.0,0.0,3000.0,67680.0,13060.55,10035.18,5602.46,28698.19,96378.19 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25553,97773.53,44052.34,8210.85,150036.72,25795.32,12424.51,2419.8,40639.63,190676.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41193,59816.89,16570.45,5074.1,81461.44,18051.08,11831.65,6127.58,36010.31,117471.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20368,80641.55,1737.15,6176.98,88555.68,10658.31,0.0,7400.11,18058.42,106614.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,17275,134385.81,0.0,0.0,134385.81,27046.1,12328.92,10063.65,49438.67,183824.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,49527,97793.03,24754.26,5857.75,128405.04,20475.4,12424.5,9914.73,42814.63,171219.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,25446,27517.32,366.33,0.0,27883.65,6232.06,7120.2,2299.0,15651.26,43534.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49012,113233.61,23049.24,17992.46,154275.31,23700.78,15196.12,2536.38,41433.28,195708.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,17486,126994.02,0.0,0.0,126994.02,25557.71,12424.5,9944.5,47926.71,174920.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2802,Epidemiologist 1,2442,58653.0,0.0,0.0,58653.0,12530.82,9079.45,4664.65,26274.92,84927.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,8803,107416.0,758.05,9904.83,118078.88,22574.92,12424.52,9247.09,44246.53,162325.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28653,5483.76,0.0,197.93,5681.69,0.0,1364.9,440.28,1805.18,7486.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,30583,13461.17,0.0,0.0,13461.17,0.0,4430.71,1043.41,5474.12,18935.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22036,98858.95,7532.93,8148.98,114540.86,20505.37,12424.5,1910.82,34840.69,149381.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8935,119463.8,33226.39,3699.61,156389.8,23633.47,12424.51,2610.28,38668.26,195058.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,15726,15713.8,0.0,82.55,15796.35,0.0,2628.26,1224.33,3852.59,19648.94 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,48201,83699.03,0.0,0.0,83699.03,17250.56,12424.5,6611.74,36286.8,119985.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,35441,69247.04,8686.15,1998.0,79931.19,14272.17,12424.5,6461.92,33158.59,113089.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2555,Physical Therapist Assistant,51920,3426.0,0.0,8277.64,11703.64,768.45,477.86,903.9,2150.21,13853.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",9382,78527.71,10305.74,3640.3,92473.75,16344.17,10395.9,7106.37,33846.44,126320.19 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,17660,97581.02,0.0,0.0,97581.02,19219.79,10035.18,7962.77,37217.74,134798.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,52944,78204.02,0.0,1115.0,79319.02,16348.1,12424.5,6480.17,35252.77,114571.79 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,9227,121433.03,0.0,0.0,121433.03,24408.54,12424.5,9816.68,46649.72,168082.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,33958,56244.5,0.0,1325.69,57570.19,9812.41,11229.83,4646.03,25688.27,83258.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36538,109813.6,24944.2,14667.2,149425.0,24794.36,15196.12,2494.92,42485.4,191910.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,24284,62569.2,0.0,0.0,62569.2,12703.33,6961.18,5203.63,24868.14,87437.34 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3524,Principal Museum Preparator,15572,75199.02,1514.08,445.35,77158.45,15498.63,12424.5,6111.68,34034.81,111193.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,42127,100554.03,0.0,0.0,100554.03,20724.83,12424.49,8087.98,41237.3,141791.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,22641,72699.02,0.0,1588.75,74287.77,15311.19,12424.5,6088.88,33824.57,108112.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,40721,99034.05,0.0,0.0,99034.05,20374.48,12424.5,7803.12,40602.1,139636.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12398,53122.98,0.0,1454.38,54577.36,8033.73,0.0,7214.28,15248.01,69825.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44088,9762.9,0.0,907.84,10670.74,1759.11,4196.26,872.51,6827.88,17498.62 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,11585,9463.59,0.0,6228.24,15691.83,0.0,0.0,198.99,198.99,15890.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,4777,55264.38,17401.16,7902.45,80567.99,13403.58,12295.84,6187.3,31886.72,112454.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,19258,124599.98,14453.2,9303.01,148356.19,24636.03,12424.5,2480.93,39541.46,187897.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50295,52012.95,0.0,599.66,52612.61,11764.2,11939.77,4318.36,28022.33,80634.94 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,44452,31448.49,0.0,0.0,31448.49,0.0,3498.87,2437.78,5936.65,37385.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12582,93406.8,61510.87,5815.46,160733.13,19595.27,12615.66,10434.3,42645.23,203378.36 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,48911,56276.05,406.31,2144.0,58826.36,13053.57,12424.5,4816.76,30294.83,89121.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,52053,43944.0,0.0,0.0,43944.0,7967.04,4300.79,3425.83,15693.66,59637.66 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),9384,106642.74,0.0,1500.0,108142.74,21961.18,12227.38,8729.69,42918.25,151060.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,43667,61180.03,4405.71,8791.66,74377.4,13063.38,7000.14,6029.46,26092.98,100470.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31790,20824.13,0.0,663.65,21487.78,0.0,1823.36,1666.27,3489.63,24977.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,16678,27429.38,3654.73,2739.56,33823.67,6964.17,7618.97,2648.36,17231.5,51055.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,35374,79625.67,0.0,1060.0,80685.67,16607.62,12422.23,6561.19,35591.04,116276.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,9102,0.0,0.0,313.21,313.21,0.0,22.84,23.96,46.8,360.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,24680,6103.26,0.0,10.64,6113.9,0.0,1081.16,474.54,1555.7,7669.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7689,55641.5,9436.91,7837.04,72915.45,13614.53,12376.71,5822.84,31814.08,104729.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6984,113233.61,10878.71,19781.75,143894.07,25263.2,15196.12,2384.57,42843.89,186737.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,3841,145200.03,0.0,0.0,145200.03,29221.73,12424.51,10238.3,51884.54,197084.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7753,52696.28,6211.02,5620.55,64527.85,15859.32,10380.79,5012.03,31252.14,95779.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19390,97725.82,13125.68,19436.14,130287.64,28528.55,12419.37,2220.95,43168.87,173456.51 +Calendar,2015,6,General Administration & Finance,CON,Controller,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,49544,73063.05,0.0,346.92,73409.97,15058.73,12424.51,5983.04,33466.28,106876.25 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,45307,83694.01,0.0,0.0,83694.01,17249.65,12424.5,6868.68,36542.83,120236.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,47062,66851.21,0.0,3000.0,69851.21,13775.0,12424.5,5740.03,31939.53,101790.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,44995,38765.0,0.0,0.0,38765.0,7362.36,6212.25,3124.2,16698.81,55463.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,28592,75407.04,370.1,0.0,75777.14,15541.47,12424.5,6284.12,34250.09,110027.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",49350,161364.25,52051.93,21704.91,235121.09,35617.27,15052.76,3881.08,54551.11,289672.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24004,89399.51,0.0,3878.62,93278.13,0.0,7116.97,6779.98,13896.95,107175.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28736,14877.0,13.78,631.3,15522.08,2224.44,6451.18,1247.25,9922.87,25444.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,1700,93281.14,0.0,0.0,93281.14,19236.05,12424.49,7486.66,39147.2,132428.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,18583,81157.03,18019.0,21122.49,120298.52,20227.47,12424.5,9712.06,42364.03,162662.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46080,33969.67,3958.45,2721.09,40649.21,9355.21,6649.62,3147.61,19152.44,59801.65 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,36507,74394.13,0.0,6054.86,80448.99,15677.14,12421.52,6670.11,34768.77,115217.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17053,138635.23,1937.55,14880.91,155453.69,27940.06,12424.5,2638.07,43002.63,198456.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,2743,49770.15,3826.21,3042.87,56639.23,10211.97,9662.02,4474.88,24348.87,80988.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3847,45620.4,18949.08,5445.42,70014.9,11725.71,11988.93,5587.91,29302.55,99317.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1326,Customer Service Agent Supv,26307,83528.02,2224.13,4711.32,90463.47,17399.19,12424.5,7432.6,37256.29,127719.76 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,23478,37164.01,0.0,0.0,37164.01,6916.23,4300.79,2917.86,14134.88,51298.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,47306,86388.96,0.0,199.38,86588.34,17861.67,12105.53,7052.84,37020.04,123608.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1938,20970.9,0.0,6855.79,27826.69,2713.49,1758.43,2285.52,6757.44,34584.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41849,52731.68,0.0,1983.66,54715.34,523.2,0.0,6022.91,6546.11,61261.45 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,11287,24893.0,0.0,0.0,24893.0,6422.37,6212.25,2014.01,14648.63,39541.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42113,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3355.45,18181.3,61948.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,37443,43744.41,0.0,0.0,43744.41,9775.3,6690.11,3423.62,19889.03,63633.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,5474,57704.76,228.94,0.0,57933.7,8325.81,12019.16,4571.56,24916.53,82850.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,49217,12763.91,0.0,33.75,12797.66,2814.19,4202.23,1024.29,8040.71,20838.37 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,53092,104850.0,2993.81,5635.15,113478.96,21955.66,12364.77,9363.14,43683.57,157162.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33728,38826.25,194.87,6932.3,45953.42,345.11,0.0,4477.48,4822.59,50776.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,46044,108038.0,37032.15,20008.72,165078.87,24967.46,12424.5,10543.36,47935.32,213014.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,30954,4739.71,0.0,0.0,4739.71,0.0,501.76,367.03,868.79,5608.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14892,103082.96,58334.07,18710.2,180127.23,22934.79,13831.93,3073.85,39840.57,219967.8 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),11737,44476.53,0.0,528.36,45004.89,0.0,4546.59,3488.13,8034.72,53039.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,24817,17206.0,0.0,0.0,17206.0,3859.3,2867.18,1388.03,8114.51,25320.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,40319,83528.0,14523.54,7508.17,105559.71,18658.45,12424.51,8180.0,39262.96,144822.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31351,56163.3,570.98,897.43,57631.71,10885.46,8601.58,3975.83,23462.87,81094.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,8639,18755.6,0.0,1088.08,19843.68,4308.64,4253.0,1568.83,10130.47,29974.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,13660,195625.83,0.0,250.0,195875.83,39417.35,12206.65,11069.65,62693.65,258569.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,14303,17858.52,0.0,2.12,17860.64,0.0,4034.98,1385.15,5420.13,23280.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,26171,168070.91,0.0,0.0,168070.91,33724.66,12424.5,25620.13,71769.29,239840.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,40458,14737.43,644.59,244.65,15626.67,3413.84,4408.31,1321.24,9143.39,24770.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,34935,83114.8,9178.55,2744.47,95037.82,17508.8,11468.75,7575.85,36553.4,131591.22 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,47708,58669.54,0.0,2023.8,60693.34,12393.16,10751.97,5035.22,28180.35,88873.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45499,113233.62,73797.58,20588.02,207619.22,24937.5,15196.12,3489.9,43623.52,251242.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,45917,5513.62,0.0,0.0,5513.62,1094.53,504.75,437.91,2037.19,7550.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,8385,60404.0,23969.64,6916.46,91290.1,13338.06,12376.71,7452.73,33167.5,124457.6 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,50811,56004.08,0.0,0.0,56004.08,12043.04,8601.58,4218.02,24862.64,80866.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3315,10827.15,0.0,1155.16,11982.31,1946.57,4695.03,939.2,7580.8,19563.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,5333,64463.73,29193.39,16412.12,110069.24,15980.62,12424.5,8717.17,37122.29,147191.53 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",52058,198139.04,0.0,5462.78,203601.82,40974.08,12424.5,11294.18,64692.76,268294.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36788,51912.2,213.5,3180.38,55306.08,11633.47,11542.0,4481.19,27656.66,82962.74 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,9335,169873.0,0.0,13067.97,182940.97,34187.08,12424.5,10847.88,57459.46,240400.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,5405,2166.0,1332.12,80.14,3578.26,0.0,716.79,277.03,993.82,4572.08 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2220,6174.45,0.0,0.0,6174.45,1357.78,2257.91,514.59,4130.28,10304.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",16825,1199.9,0.0,0.0,1199.9,0.0,0.0,94.91,94.91,1294.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,16442,83012.0,3989.86,0.0,87001.86,17075.0,12424.5,7136.68,36636.18,123638.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,6300,25861.48,802.77,223.65,26887.9,6275.11,8502.01,2226.96,17004.08,43891.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,16005,27034.9,0.0,2297.96,29332.86,0.0,3583.99,2273.95,5857.94,35190.8 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,1152,6879.07,0.0,0.0,6879.07,1542.98,1205.89,594.83,3343.7,10222.77 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,1152,63824.3,0.0,3000.0,66824.3,13005.09,10398.71,5549.22,28953.02,95777.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,39656,41265.51,0.0,0.0,41265.51,7679.52,5734.39,3211.09,16625.0,57890.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19986,113233.6,55629.76,12017.43,180880.79,24760.99,15196.13,2968.05,42925.17,223805.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,34239,97174.01,0.0,0.0,97174.01,20027.8,12424.51,7771.97,40224.28,137398.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,16979,32284.79,0.0,0.0,32284.79,1664.08,5316.25,2615.8,9596.13,41880.92 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,8282,107427.57,11407.38,12969.64,131804.59,28508.59,12314.61,2227.96,43051.16,174855.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,12373,93596.01,0.0,1311.7,94907.71,19504.03,12424.52,7646.28,39574.83,134482.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",9441,915.0,0.0,0.0,915.0,0.0,0.0,72.4,72.4,987.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,13189,9976.0,0.0,33.75,10009.75,2201.15,3345.06,808.88,6355.09,16364.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,40451,46419.48,0.0,471.16,46890.64,9691.55,6818.54,3548.42,20058.51,66949.15 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,13796,74165.0,7181.01,0.0,81346.01,15285.75,12424.5,6663.47,34373.72,115719.73 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,15457,41656.23,0.0,777.3,42433.53,8724.88,8906.22,3529.05,21160.15,63593.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28908,113233.59,54825.91,22937.5,190997.0,26468.59,15196.12,3255.8,44920.51,235917.51 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),22215,82492.73,24899.7,11452.55,118844.98,18257.41,12376.73,1981.33,32615.47,151460.45 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,16327,129895.0,0.0,0.0,129895.0,26141.48,12424.5,9935.21,48501.19,178396.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19486,4683.21,0.0,0.0,4683.21,2281.85,343.47,2354.97,4980.29,9663.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,23726,21826.43,0.0,375.4,22201.83,5043.19,5065.37,1807.39,11915.95,34117.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,23389,36018.77,11462.22,2037.3,49518.29,7029.88,4587.51,829.76,12447.15,61965.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18871,63861.95,14963.24,1651.83,80477.02,17921.32,12582.56,6066.01,36569.89,117046.91 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,13918,85790.44,4837.19,1047.54,91675.17,17682.48,12424.5,7492.02,37599.0,129274.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,21046,16520.0,0.0,0.0,16520.0,3074.35,2389.32,1307.34,6771.01,23291.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,7858,136466.0,26771.68,8258.16,171495.84,35171.84,12424.5,2036.29,49632.63,221128.47 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,12789,87713.04,0.0,0.0,87713.04,18078.19,12424.5,6990.26,37492.95,125205.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31458,517.57,0.0,4.9,522.47,0.0,252.37,40.55,292.92,815.39 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,46091,75259.49,0.0,0.0,75259.49,15513.72,12424.5,5971.79,33910.01,109169.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,36921,43197.18,10713.54,4787.22,58697.94,11198.92,11691.09,4818.1,27708.11,86406.05 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,48585,6906.01,0.0,0.0,6906.01,1285.21,955.73,543.42,2784.36,9690.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17153,100764.24,0.0,22418.92,123183.16,19518.53,9500.63,8069.47,37088.63,160271.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,41646,7529.75,0.0,266.66,7796.41,0.0,2873.17,604.44,3477.61,11274.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39936,11287.98,0.0,0.0,11287.98,1537.15,4832.41,921.43,7290.99,18578.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,44322,106953.02,21140.4,2686.69,130780.11,22092.36,12424.53,9910.57,44427.46,175207.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,2213,102019.02,0.0,0.0,102019.02,21026.27,12424.5,8238.7,41689.47,143708.49 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0903,Mayoral Staff XV,20808,109987.38,0.0,0.0,109987.38,22135.12,12424.5,17287.72,51847.34,161834.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24247,2899.8,0.0,0.0,2899.8,0.0,967.68,224.87,1192.55,4092.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,38698,63887.01,8732.87,4836.87,77456.75,14162.31,12424.51,6342.29,32929.11,110385.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,40133,16351.0,0.0,574.52,16925.52,0.0,2389.33,1312.32,3701.65,20627.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,51291,97424.01,1220.78,12901.83,111546.62,20079.52,12424.5,9112.31,41616.33,153162.95 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,26077,65637.75,0.0,617.15,66254.9,12354.18,6690.11,10365.12,29409.41,95664.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,48801,80727.01,63.98,6551.29,87342.28,18050.05,12358.26,6928.19,37336.5,124678.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,740,16973.29,0.0,763.52,17736.81,5614.58,1230.39,2724.82,9569.79,27306.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,25949,54912.06,9354.62,2981.66,67248.34,10393.34,6212.25,1128.35,17733.94,84982.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,20367,41524.22,796.5,0.0,42320.72,9001.56,8123.71,3347.86,20473.13,62793.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8312,Sheriff's Captain,25983,6177.0,0.0,714.47,6891.47,1688.61,477.86,118.19,2284.66,9176.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51724,2854.25,0.0,0.98,2855.23,0.0,1391.78,221.38,1613.16,4468.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,48041,18128.0,0.0,0.0,18128.0,3373.64,3822.92,1444.22,8640.78,26768.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,30991,9722.31,767.57,0.0,10489.88,0.0,3177.8,812.12,3989.92,14479.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22154,58744.54,0.0,1686.12,60430.66,0.0,4830.44,4687.38,9517.82,69948.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,42659,41335.0,0.0,0.0,41335.0,9914.28,12424.5,3318.58,25657.36,66992.36 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,43364,88296.02,0.0,3191.03,91487.05,18209.18,12424.5,7603.74,38237.42,129724.47 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,10123,82599.0,0.0,0.0,82599.0,16813.72,10990.91,6591.1,34395.73,116994.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,17457,32879.95,0.0,2349.22,35229.17,7456.86,4947.82,3046.51,15451.19,50680.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21456,5211.03,1224.78,521.24,6957.05,0.0,1036.31,528.59,1564.9,8521.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44507,65151.14,8713.44,3532.98,77397.56,18759.85,12834.04,5702.54,37296.43,114693.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,8841,29011.24,40.97,0.0,29052.21,5409.99,4734.64,2497.44,12642.07,41694.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",37516,23128.01,2758.01,1387.68,27273.7,4327.01,1911.46,455.92,6694.39,33968.09 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15329,97761.28,21658.47,11535.47,130955.22,26599.16,12424.5,1910.31,40933.97,171889.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,50617,61522.78,2387.82,5889.09,69799.69,13803.97,12233.83,5737.3,31775.1,101574.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7878,63899.03,188.96,840.87,64928.86,17727.38,12594.33,4692.31,35014.02,99942.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,49740,82717.0,2016.85,2340.56,87074.41,17190.13,12424.5,7138.54,36753.17,123827.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2472,72907.35,0.0,3142.66,76050.01,467.6,0.0,7143.93,7611.53,83661.54 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,36066,10107.0,0.0,0.0,10107.0,1880.91,1433.6,812.45,4126.96,14233.96 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,27217,85512.96,0.0,0.0,85512.96,17698.5,11918.74,6985.84,36603.08,122116.04 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0889,Mayoral Staff IX,38003,84157.0,0.0,0.0,84157.0,17345.13,12424.5,14887.38,44657.01,128814.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34391,12940.08,0.0,132.56,13072.64,0.0,5549.22,1041.99,6591.21,19663.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,31852,95558.04,1301.38,0.0,96859.42,19695.12,12424.5,8025.73,40145.35,137004.77 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,14228,127588.41,0.0,0.0,127588.41,25620.77,12262.21,17104.1,54987.08,182575.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43152,68134.39,29222.47,4535.44,101892.3,19933.31,13428.55,7773.54,41135.4,143027.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,16907,51494.18,1059.47,554.74,53108.39,11839.3,11576.29,4015.82,27431.41,80539.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,20733,77398.67,20147.09,1386.15,98931.91,14618.5,12060.14,7971.75,34650.39,133582.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41553,670.5,0.0,67.05,737.55,11.99,0.0,379.74,391.73,1129.28 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",4891,38542.52,0.0,0.0,38542.52,4802.85,6451.18,3092.2,14346.23,52888.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,41705,110041.07,21403.9,10886.29,142331.26,23639.79,12424.5,10160.22,46224.51,188555.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2061,113233.58,2899.37,15192.87,131325.82,24432.33,15196.12,2190.23,41818.68,173144.5 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,3852,67911.01,5373.81,11906.92,85191.74,15783.7,12424.5,6865.21,35073.41,120265.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21342,97264.82,3926.51,8134.4,109325.73,20225.25,12424.5,1822.51,34472.26,143797.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,29658,2475.0,0.0,15508.83,17983.83,633.63,286.72,267.51,1187.86,19171.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20709,108970.02,38178.83,17582.95,164731.8,23954.17,14622.68,2796.75,41373.6,206105.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,9950,79384.23,0.0,0.0,79384.23,16352.88,12424.5,6296.34,35073.72,114457.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42196,67774.03,6306.53,5756.97,79837.53,20127.24,13353.78,6015.14,39496.16,119333.69 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,5533,82236.01,0.0,3000.0,85236.01,16925.99,12424.5,7020.24,36370.73,121606.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,35770,58871.7,12467.63,7728.32,79067.65,16640.11,6690.11,1319.63,24649.85,103717.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15300,2762.59,183.39,285.37,3231.35,785.29,872.05,218.36,1875.7,5107.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,7342,116857.58,0.0,2060.0,118917.58,23824.08,11901.84,9751.54,45477.46,164395.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2009,27920.4,0.0,5721.02,33641.42,237.76,0.0,4994.05,5231.81,38873.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,24980,11518.32,0.0,254.98,11773.3,4503.36,0.0,3915.87,8419.23,20192.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45478,60623.64,0.0,600.0,61223.64,11380.8,6600.51,4887.71,22869.02,84092.66 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,8800,83116.1,25403.64,4621.64,113141.38,17716.3,11053.33,9264.25,38033.88,151175.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,37526,81157.04,30256.01,9677.57,121090.62,18002.21,12424.5,9599.97,40026.68,161117.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,3181,64125.66,256.94,0.0,64382.6,13237.96,11847.48,5285.49,30370.93,94753.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,15936,32966.33,0.0,0.0,32966.33,7232.8,3489.91,2876.97,13599.68,46566.01 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36520,56120.03,3939.6,0.0,60059.63,12556.8,12424.51,4965.3,29946.61,90006.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,43587,81862.46,426.44,8932.16,91221.06,18734.0,12412.56,7489.77,38636.33,129857.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,16884,56975.6,4419.33,3376.73,64771.66,12221.64,10825.68,5122.26,28169.58,92941.24 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,18602,20906.74,282.32,0.0,21189.06,0.0,4757.75,1642.53,6400.28,27589.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,92,17566.5,0.0,0.0,17566.5,3940.15,2389.32,1402.8,7732.27,25298.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13898,0.0,0.0,0.0,0.0,0.0,0.0,73.24,73.24,73.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O865,Harbor Office Assistant (OCII),4071,44466.0,614.53,739.43,45819.96,8957.41,9796.24,3714.55,22468.2,68288.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,23594,8729.08,0.0,201.13,8930.21,0.0,2578.98,718.25,3297.23,12227.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,3054,68020.5,0.0,0.0,68020.5,14923.68,6546.77,5563.14,27033.59,95054.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,9557,106953.0,0.0,0.0,106953.0,22043.42,12424.5,8681.8,43149.72,150102.72 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,49911,67911.01,0.0,6955.23,74866.24,14785.56,12424.5,6064.36,33274.42,108140.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8332,132235.85,0.0,11534.02,143769.87,17437.08,12424.5,9660.98,39522.56,183292.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,43051,81942.0,13932.42,16108.39,111982.81,19421.68,12424.5,8921.05,40767.23,152750.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17292,51138.51,1038.42,8008.03,60184.96,0.0,4210.83,2085.81,6296.64,66481.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,21956,55159.78,0.0,158.35,55318.13,11737.43,9265.97,4473.58,25476.98,80795.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,20063,26432.0,1708.83,485.1,28625.93,4919.0,3822.92,2283.56,11025.48,39651.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,34814,41335.02,0.0,0.0,41335.02,9914.28,12424.5,3292.4,25631.18,66966.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,25062,40610.43,82.03,827.41,41519.87,505.9,6791.66,3220.02,10517.58,52037.45 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,40255,93681.01,85510.73,13106.89,192298.63,21168.83,12424.5,10944.76,44538.09,236836.72 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,45427,56437.27,0.0,0.0,56437.27,12302.52,6690.11,4615.37,23608.0,80045.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13259,67708.27,14501.38,7907.33,90116.98,20730.91,13340.69,7035.98,41107.58,131224.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49064,6364.06,0.0,0.0,6364.06,0.0,2759.67,523.83,3283.5,9647.56 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,46349,74613.47,0.0,968.81,75582.28,15579.21,12355.81,6015.41,33950.43,109532.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,25470,22782.48,0.0,1113.69,23896.17,5930.99,5531.29,1947.75,13410.03,37306.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,23483,8392.94,0.0,61.31,8454.25,0.0,3041.91,679.72,3721.63,12175.88 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,32615,49770.6,0.0,0.0,49770.6,671.82,6881.27,3850.03,11403.12,61173.72 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,11479,214255.0,0.0,11962.75,226217.75,45509.27,12424.5,11567.78,69501.55,295719.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0490,Commander 3,9042,143782.21,0.0,8659.96,152442.17,27519.09,8123.72,2570.22,38213.03,190655.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,19029,48833.66,0.0,0.0,48833.66,11737.27,11780.04,4281.74,27799.05,76632.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,19819,81157.01,447.85,13372.18,94977.04,18511.11,12424.5,7749.97,38685.58,133662.62 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,20342,38160.09,0.0,14193.0,52353.09,6918.41,2867.2,4388.24,14173.85,66526.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6614,116936.2,204.89,11885.09,129026.18,23477.63,11013.31,9804.18,44295.12,173321.3 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",6100,Health & Sanitation Inspection,6139,Senior Industrial Hygienist,18464,130910.06,0.0,0.0,130910.06,26346.51,12424.5,9966.66,48737.67,179647.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27658,68369.48,15623.01,6615.56,90608.05,20538.27,13466.91,7078.69,41083.87,131691.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,20055,84564.01,65123.13,14256.86,163944.0,19303.88,12424.5,10466.79,42195.17,206139.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,11265,38934.16,0.0,0.0,38934.16,9308.28,8850.78,3192.1,21351.16,60285.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,39806,65795.8,370.13,2485.24,68651.17,13713.21,11707.53,5589.85,31010.59,99661.76 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,10545,2241.19,329.34,107.42,2677.95,516.46,474.28,207.67,1198.41,3876.36 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,50222,84599.07,0.0,1369.2,85968.27,17717.79,12424.5,6974.89,37117.18,123085.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24442,1968.0,567.7,0.0,2535.7,481.97,621.23,194.79,1297.99,3833.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11550,583.11,0.0,76.06,659.17,2180.87,44.56,20.55,2245.98,2905.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,50364,12360.0,0.0,0.0,12360.0,2424.61,2389.33,1006.87,5820.81,18180.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,41809,110041.04,630.9,709.76,111381.7,22139.91,12424.5,9151.67,43716.08,155097.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42478,34.88,0.0,0.0,34.88,0.0,13.44,2.71,16.15,51.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,53107,10830.0,0.0,0.0,10830.0,149.02,3583.99,843.93,4576.94,15406.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,493,67274.81,20038.59,1680.28,88993.68,18904.44,13259.88,6957.09,39121.41,128115.09 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,21721,91221.41,0.0,0.0,91221.41,18793.07,12424.5,7345.31,38562.88,129784.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",25604,13238.6,340.73,0.0,13579.33,2969.41,1433.6,1117.44,5520.45,19099.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,20660,65592.03,0.0,2284.0,67876.03,13948.13,12424.5,5595.78,31968.41,99844.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,29750,15234.26,2452.92,1255.96,18943.14,3627.2,4680.09,1521.16,9828.45,28771.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,39697,67079.0,10091.28,1252.31,78422.59,14049.73,12424.5,6084.5,32558.73,110981.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29294,149099.0,0.0,10500.24,159599.24,30885.45,12424.5,4392.61,47702.56,207301.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,19506,67729.07,1212.46,70.0,69011.53,13973.41,12424.5,5600.92,31998.83,101010.36 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,45545,33096.02,0.0,0.0,33096.02,7423.44,3822.92,2693.23,13939.59,47035.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,16996,83148.04,0.0,0.0,83148.04,17137.11,12424.51,6798.86,36360.48,119508.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17416,2513.94,0.0,0.0,2513.94,0.0,1090.13,194.63,1284.76,3798.7 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,4909,119052.99,7735.44,15728.99,142517.42,31912.86,12423.13,2373.46,46709.45,189226.87 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2785,Asst General Services Manager,46700,65040.4,0.0,2152.2,67192.6,13866.39,12424.5,13287.27,39578.16,106770.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21026,43439.09,0.0,0.0,43439.09,0.0,5196.79,3368.1,8564.89,52003.98 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0902,Mayoral Staff XIV,13465,133554.97,0.0,0.0,133554.97,27333.89,12424.5,17288.73,57047.12,190602.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,24764,124618.35,0.0,250.0,124868.35,25010.75,11976.5,9790.59,46777.84,171646.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,11166,38907.0,2904.52,9963.28,51774.8,8879.33,6451.18,4209.01,19539.52,71314.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,14486,62811.0,7539.33,8382.41,78732.74,14020.17,12424.5,6469.2,32913.87,111646.61 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,33126,70940.0,0.0,0.0,70940.0,15058.21,9557.31,11702.74,36318.26,107258.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40955,55632.63,1641.35,8365.52,65639.5,10696.67,5361.65,5189.53,21247.85,86887.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,14992,102019.03,0.0,0.0,102019.03,21026.26,12424.5,7781.57,41232.33,143251.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,11558,4238.11,0.0,16.35,4254.46,0.0,1981.67,330.01,2311.68,6566.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,49974,52758.7,23009.74,21900.74,97669.18,12089.49,6546.76,7844.53,26480.78,124149.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",2371,118858.02,19022.1,8636.75,146516.87,24555.68,12424.5,10180.4,47160.58,193677.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,50430,6931.5,0.0,25.0,6956.5,1261.21,716.79,539.94,2517.94,9474.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16079,46182.0,5168.67,9154.18,60504.85,10759.23,8219.29,4974.25,23952.77,84457.62 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,8664,11564.0,0.0,0.0,11564.0,2152.05,1672.53,897.0,4721.58,16285.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41120,97038.45,31763.44,5485.15,134287.04,20156.35,12424.5,2243.85,34824.7,169111.74 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8149,Asst Chf Dist Atty's Invstgtor,45718,126833.02,0.0,7609.98,134443.0,30667.45,12424.5,2243.63,45335.58,179778.58 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,40540,129129.03,0.0,0.0,129129.03,25947.31,12424.5,17235.86,55607.67,184736.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",26482,147829.48,41805.37,20427.74,210062.59,32575.24,14335.96,3424.41,50335.61,260398.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,44440,109611.74,11346.85,15841.63,136800.22,22889.31,9079.44,343.62,32312.37,169112.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,46933,90275.13,9340.26,12430.69,112046.08,20806.36,12277.08,1817.23,34900.67,146946.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",40541,22465.63,0.0,320.0,22785.63,5110.82,2867.19,1885.34,9863.35,32648.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,28183,54607.4,8783.42,2650.36,66041.18,11352.64,12424.5,5285.49,29062.63,95103.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24285,111107.1,81510.82,14685.88,207303.8,23951.52,14909.4,3480.36,42341.28,249645.08 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2579,Med Examiner's Investigatoriii,49918,25418.02,7167.58,4002.0,36587.6,5014.11,2867.19,2703.76,10585.06,47172.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2900,Human Services,2966,Welfare Fraud Investigator,37136,53298.05,0.0,0.0,53298.05,11922.02,6690.11,4389.42,23001.55,76299.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52581,97739.44,7194.99,250.0,105184.43,19973.97,8155.97,8423.33,36553.27,141737.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,32585,82594.7,0.0,887.04,83481.74,17167.04,12406.58,6906.24,36479.86,119961.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,44137,82418.13,12859.53,5958.2,101235.86,17202.37,12099.74,8297.27,37599.38,138835.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,722,95630.81,16320.76,15503.7,127455.27,27040.88,12424.44,1939.57,41404.89,168860.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,28608,42977.27,0.0,0.0,42977.27,10307.84,12424.5,3499.34,26231.68,69208.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47293,35470.82,5097.12,836.44,41404.38,9393.86,11079.08,3029.6,23502.54,64906.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,9218,58411.51,355.5,0.0,58767.01,13058.16,12424.5,4779.01,30261.67,89028.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,30789,143188.02,0.0,109.46,143297.48,28840.77,12424.5,10185.3,51450.57,194748.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,29775,58922.02,1037.36,428.9,60388.28,10643.47,12424.5,4825.87,27893.84,88282.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11773,36849.72,824.21,659.8,38333.73,0.0,3230.07,2956.32,6186.39,44520.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",21577,82203.22,2725.74,5854.92,90783.88,17624.6,12374.32,7209.52,37208.44,127992.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,28428,77071.01,11163.8,984.0,89218.81,16083.41,12424.5,7060.71,35568.62,124787.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23885,54124.04,0.0,624.0,54748.04,12244.62,12424.5,4265.12,28934.24,83682.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7228,Automotive Trnst Shop Sprv 1,40651,22730.0,1824.09,23554.54,48108.63,5009.39,2389.33,3829.07,11227.79,59336.42 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,316C,Sr Court Staff Attorney,48522,150228.03,0.0,3624.0,153852.03,30377.92,12424.5,10496.48,53298.9,207150.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,30805,140694.38,3971.88,10133.14,154799.4,27864.41,12424.5,2637.73,42926.64,197726.04 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,32892,20024.0,1824.29,114.07,21962.36,0.0,2867.19,1699.86,4567.05,26529.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,25177,105546.83,0.0,0.0,105546.83,20056.2,7645.85,10165.65,37867.7,143414.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,24535,81157.05,8233.77,4582.85,93973.67,17142.86,12424.51,7630.31,37197.68,131171.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9120,97756.97,5829.27,8464.36,112050.6,25816.26,12424.5,1860.83,40101.59,152152.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,32055,17235.39,0.0,0.0,17235.39,3790.09,5711.1,1395.85,10897.04,28132.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50320,2286.51,0.0,25981.84,28268.35,494.07,238.93,415.65,1148.65,29417.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21754,69259.67,20173.55,4474.02,93907.24,20267.59,13654.89,7301.92,41224.4,135131.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12692,53582.58,11058.8,3949.01,68590.39,16343.93,10655.87,5180.09,32179.89,100770.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,19435,86663.03,0.0,3650.0,90313.03,18619.01,12424.5,7436.46,38479.97,128793.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,10324,19611.19,0.0,0.0,19611.19,3649.66,3613.88,1570.27,8833.81,28445.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,31434,3444.11,0.0,28.58,3472.69,0.0,0.0,204.42,204.42,3677.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,12136,5782.6,0.0,40.0,5822.6,0.0,1385.81,451.55,1837.36,7659.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,4619,0.0,0.0,109631.84,109631.84,0.0,34.25,0.0,34.25,109666.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28649,21170.61,2208.2,562.56,23941.37,5267.62,6560.67,1824.82,13653.11,37594.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24407,72671.41,9559.18,6404.03,88634.62,15944.2,15052.76,1485.82,32482.78,121117.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5047,65396.98,16355.53,6552.96,88305.47,19795.89,12890.31,6849.21,39535.41,127840.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,23042,41582.0,0.0,0.0,41582.0,7924.49,6690.11,3346.67,17961.27,59543.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,49355,1955.0,0.0,0.0,1955.0,504.39,477.88,151.36,1133.63,3088.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46274,80946.03,3596.51,5966.02,90508.56,16788.41,12424.51,1695.44,30908.36,121416.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,12079,146613.0,0.0,1056.55,147669.55,29486.6,12424.5,10208.45,52119.55,199789.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,44857,140865.07,0.0,0.0,140865.07,28330.12,12424.5,17460.06,58214.68,199079.75 +Calendar,2015,1,Public Protection,CRT,Superior Court,196.0,Court Unrepresented Managers,SCRT,SF Superior Court,185C,"Director, Info Tech Group",49432,168291.01,0.0,6145.5,174436.51,33827.36,12424.5,32707.49,78959.35,253395.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37700,13019.04,0.0,141.19,13160.23,0.0,4344.52,1020.1,5364.62,18524.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,10136,48508.91,0.0,1651.8,50160.71,9996.92,10663.03,4059.89,24719.84,74880.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,46926,61611.7,7144.33,5739.93,74495.96,13170.58,10465.25,5741.5,29377.33,103873.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,20624,11952.32,422.56,527.83,12902.71,1715.39,3721.38,1023.78,6460.55,19363.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,3219,26367.82,9275.53,2924.06,38567.41,0.0,5291.17,2987.72,8278.89,46846.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5834,43324.17,17607.26,2572.48,63503.91,13283.69,8615.79,4955.36,26854.84,90358.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,47856,110631.09,0.0,40.17,110671.26,22462.64,11468.77,9079.4,43010.81,153682.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,37386,160433.01,714.55,1982.09,163129.65,32263.81,12424.5,10469.33,55157.64,218287.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43786,56531.0,129.26,6156.75,62817.01,12333.03,12424.5,5185.33,29942.86,92759.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22536,23652.31,0.0,1428.41,25080.72,1529.06,0.0,3476.09,5005.15,30085.87 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,24484,82407.52,0.0,0.0,82407.52,16962.52,12424.5,6709.91,36096.93,118504.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,44530,117140.92,32253.91,1669.23,151064.06,23164.17,12424.5,2566.48,38155.15,189219.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,24359,92001.31,14207.3,5291.13,111499.74,19226.31,12424.51,9071.22,40722.04,152221.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29236,104344.75,14066.61,19945.8,138357.16,22586.74,9820.14,9351.59,41758.47,180115.63 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,45754,53212.95,0.0,1024.44,54237.39,11235.89,10713.13,4406.02,26355.04,80592.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28291,66491.47,12323.7,3681.94,82497.11,19209.47,13100.93,6438.31,38748.71,121245.82 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7254,Automotive Machinist Sprv 1,47383,50122.0,8152.78,600.0,58874.78,9439.4,5734.39,4694.17,19867.96,78742.74 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,52672,2482.9,0.0,0.0,2482.9,0.0,0.0,196.15,196.15,2679.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,10960,136456.15,15580.1,13700.17,165736.42,27009.54,12424.5,2770.18,42204.22,207940.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52077,5976.2,0.0,0.0,5976.2,0.0,1626.0,463.1,2089.1,8065.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15091,64717.75,0.0,1400.6,66118.35,0.0,5284.18,5123.31,10407.49,76525.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50508,44796.9,12182.37,664.48,57643.75,12757.51,8817.57,4463.4,26038.48,83682.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H050,Asst Chf Of Dept (Fire Dept),13207,206454.18,64432.83,17205.32,288092.33,43783.16,15052.76,4792.32,63628.24,351720.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,12319,5839.19,0.0,0.0,5839.19,0.0,1932.37,452.07,2384.44,8223.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,21472,91517.21,0.0,0.0,91517.21,18843.29,12424.5,7090.87,38358.66,129875.87 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8418,"Chf Prob Ofc, Juv Court",16682,206764.46,0.0,0.0,206764.46,47181.92,12424.5,11221.75,70828.17,277592.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,41548,39034.73,2000.53,4175.01,45210.27,0.0,4578.55,3503.52,8082.07,53292.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,13406,17017.5,0.0,0.0,17017.5,3166.97,3583.99,1361.55,8112.51,25130.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,12452,129895.02,0.0,0.0,129895.02,26141.5,12424.5,10005.34,48571.34,178466.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,28142,119467.43,14104.78,5181.27,138753.48,23621.01,12424.49,2303.41,38348.91,177102.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,5878,96254.08,0.0,0.0,96254.08,19838.23,12424.51,7808.3,40071.04,136325.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,45450,36378.41,0.0,264.93,36643.34,6569.02,9700.66,2778.89,19048.57,55691.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2431,9750.85,344.13,99.4,10194.38,2351.7,2982.18,770.8,6104.68,16299.06 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8234,Fire Alarm Dispatcher,52071,1923.0,0.0,0.0,1923.0,357.87,358.4,149.15,865.42,2788.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,29709,21287.02,0.0,0.0,21287.02,4774.7,3345.06,1731.22,9850.98,31138.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,47646,9324.0,0.0,0.0,9324.0,2091.36,1433.6,778.56,4303.52,13627.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8695,110934.09,6293.21,16268.71,133496.01,0.0,9613.82,9584.44,19198.26,152694.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,42484,97764.35,569.31,11084.45,109418.11,25917.99,12424.5,978.02,39320.51,148738.62 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,49962,172936.0,0.0,0.0,172936.0,34736.06,12424.5,17950.58,65111.14,238047.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17777,3208.0,0.0,0.0,3208.0,719.55,477.86,248.37,1445.78,4653.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,12031,27708.0,86.59,0.0,27794.59,6214.92,5734.39,2267.2,14216.51,42011.1 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,47932,98157.01,0.0,0.0,98157.01,20230.58,12424.5,7830.26,40485.34,138642.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,52510,5621.01,38.33,177.3,5836.64,0.0,2628.26,452.71,3080.97,8917.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,16088,71595.0,0.0,1234.11,72829.11,15017.86,10517.52,5921.51,31456.89,104286.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,33697,33841.8,1476.83,3799.7,39118.33,9280.32,9079.44,3155.37,21515.13,60633.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,1024,117129.68,35037.49,7019.94,159187.11,23205.21,12424.5,2657.54,38287.25,197474.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,37252,54124.0,11097.5,6079.67,71301.17,13011.4,12424.5,5846.9,31282.8,102583.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,18850,66102.04,15250.49,2550.71,83903.24,13945.93,12424.5,6848.2,33218.63,117121.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47277,119461.64,2839.97,820.05,123121.66,23641.88,12400.61,2089.84,38132.33,161253.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,38852,9102.44,0.0,0.0,9102.44,0.0,2013.01,706.28,2719.29,11821.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42365,112685.46,3394.58,6534.36,122614.4,22330.91,12424.5,2086.58,36841.99,159456.39 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,50053,7420.0,0.0,5796.88,13216.88,1709.35,477.86,1030.57,3217.78,16434.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,17693,103239.43,0.0,3613.39,106852.82,22003.23,12424.51,8544.07,42971.81,149824.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,35855,69884.46,0.0,0.0,69884.46,14738.83,10035.21,5603.34,30377.38,100261.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3041,42427.4,4815.51,2466.9,49709.81,11918.61,8230.71,3655.05,23804.37,73514.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,24948,79395.04,0.0,1420.0,80815.04,16648.89,12424.51,6698.12,35771.52,116586.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,11951,63763.18,0.0,0.0,63763.18,13144.33,12400.25,5175.29,30719.87,94483.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15020,44130.16,20451.87,4834.88,69416.91,13135.48,8650.15,5262.23,27047.86,96464.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7317,Senior Water Service Inspector,47420,117750.02,0.0,0.0,117750.02,23696.97,12424.51,9448.69,45570.17,163320.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,32494,57995.02,7851.82,4295.0,70141.84,13080.09,12424.49,5641.85,31146.43,101288.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6440,64506.37,19310.42,1616.23,85433.02,18080.49,12710.68,6417.1,37208.27,122641.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5400,Community Development,5408,Coord Of Citizen Involvement,24374,112146.04,0.0,3574.07,115720.11,22569.26,12424.5,9273.87,44267.63,159987.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25347,45299.1,5759.98,3143.59,54202.67,12575.15,13497.19,4078.28,30150.62,84353.29 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,49904,115541.01,0.0,920.0,116461.01,23437.71,12424.5,9511.37,45373.58,161834.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,46346,62591.3,2263.2,7909.94,72764.44,15672.01,12376.71,5802.86,33851.58,106616.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",3026,178064.19,42911.89,21806.95,242783.03,39341.12,14144.82,4031.28,57517.22,300300.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29794,10368.74,0.0,143.71,10512.45,1762.21,4447.74,861.24,7071.19,17583.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19577,3560.86,0.0,880.22,4441.08,918.7,1544.1,365.42,2828.22,7269.3 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28692,99697.37,0.0,1500.0,101197.37,20926.56,9700.67,7920.49,38547.72,139745.09 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,52253,85004.01,11310.36,3071.9,99386.27,17532.01,12424.5,8153.65,38110.16,137496.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,49442,41021.0,2025.84,7053.69,50100.53,8890.5,8123.71,4035.92,21050.13,71150.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",53087,150234.02,24588.92,15714.97,190537.91,32384.78,15196.12,3193.87,50774.77,241312.68 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,17284,77106.98,0.0,0.0,77106.98,15929.06,12130.62,6280.99,34340.67,111447.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,48904,35525.96,13927.23,3554.41,53007.6,7944.5,7296.71,4260.88,19502.09,72509.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,29654,6496.1,141.81,202.85,6840.76,0.0,3037.43,530.59,3568.02,10408.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,1109,85368.04,0.0,1488.0,86856.04,17896.39,12424.5,7147.53,37468.42,124324.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,35761,118104.05,0.0,0.0,118104.05,23768.42,12424.5,9665.81,45858.73,163962.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3724,56163.3,386.36,897.43,57447.09,10885.46,8601.58,3972.73,23459.77,80906.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,20568,25090.0,0.0,0.0,25090.0,4669.25,4205.2,1961.66,10836.11,35926.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,10592,82407.52,2868.63,1500.0,86776.15,17269.21,12424.5,7181.36,36875.07,123651.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,18120,15895.99,0.0,121.15,16017.14,0.0,5289.38,1241.57,6530.95,22548.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29655,4110.0,0.0,0.0,4110.0,0.0,1227.53,329.05,1556.58,5666.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,52331,56584.15,0.0,0.0,56584.15,10258.72,5019.38,10258.69,25536.79,82120.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,39190,119467.44,0.0,7127.47,126594.91,23620.96,12424.5,1375.1,37420.56,164015.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11170,93468.94,13460.3,7327.82,114257.06,19493.54,11946.64,1861.53,33301.71,147558.77 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,43493,73793.47,0.0,5049.81,78843.28,15334.61,12321.22,6542.59,34198.42,113041.7 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,1709,11785.58,0.0,952.76,12738.34,3029.81,3548.15,1032.68,7610.64,20348.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52158,13824.8,0.0,477.93,14302.73,0.0,4575.52,1109.01,5684.53,19987.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4620,62.65,0.0,0.0,62.65,0.0,20.9,4.85,25.75,88.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,40935,61735.01,0.0,0.0,61735.01,12730.77,12424.5,4868.06,30023.33,91758.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",35646,129917.44,31708.01,17363.14,178988.59,28950.02,15004.96,2996.41,46951.39,225939.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,45300,37144.33,14536.01,2453.78,54134.12,7327.32,4730.87,909.28,12967.47,67101.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,42186,144374.99,311.99,18878.58,163565.56,28582.36,12424.5,2724.26,43731.12,207296.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,43609,27029.0,541.8,1092.5,28663.3,5233.41,3822.92,2238.84,11295.17,39958.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),37296,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10952.19,60765.52,246554.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,43062,40356.0,0.0,283.86,40639.86,8721.27,4300.79,2.08,13024.14,53664.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31078,97764.03,36017.85,14238.13,148020.01,27228.11,12424.5,2440.34,42092.95,190112.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,9406,43197.0,11007.84,7758.91,61963.75,11116.03,5256.53,5053.98,21426.54,83390.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51480,112170.34,85054.62,21215.42,218440.38,25219.89,15052.76,3675.54,43948.19,262388.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49550,80957.65,4773.11,6272.46,92003.22,16693.34,12424.51,1722.0,30839.85,122843.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1807,99644.47,461.5,12309.01,112414.98,17950.31,10240.96,9230.58,37421.85,149836.83 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,36224,78611.1,0.0,0.0,78611.1,16221.04,12218.96,6328.74,34768.74,113379.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,10011,49789.3,5572.92,1933.08,57295.3,12396.83,12424.51,4613.0,29434.34,86729.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2905,52252.19,420.89,3500.93,56174.01,11899.72,11618.1,4461.52,27979.34,84153.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6985,119455.94,8906.78,7676.62,136039.34,23662.85,12424.5,2298.62,38385.97,174425.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,22836,119455.83,19009.92,16249.17,154714.92,23662.78,12424.5,2589.55,38676.83,193391.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,17239,5586.01,117.49,1215.66,6919.16,1266.72,955.73,558.1,2780.55,9699.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20870,66156.81,12680.51,1689.52,80526.84,18581.09,13037.49,6280.83,37899.41,118426.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48177,13325.02,557.74,198.05,14080.81,3179.18,2530.3,1096.47,6805.95,20886.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32872,32160.0,6390.14,17603.06,56153.2,5709.66,2867.19,929.38,9506.23,65659.43 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,12605,73913.72,0.0,5179.82,79093.54,15701.18,12341.29,6566.7,34609.17,113702.71 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,25125,57634.17,1918.67,7385.07,66937.91,12753.1,10644.99,5491.62,28889.71,95827.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,47301,61197.35,0.0,0.0,61197.35,12613.18,12377.55,4712.26,29702.99,90900.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,18022,15588.0,0.0,0.0,15588.0,3427.78,4300.79,1252.6,8981.17,24569.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,21008,113369.02,8617.88,15910.11,137897.01,24031.4,12424.5,10047.6,46503.5,184400.51 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,32566,76144.67,0.0,624.0,76768.67,15817.93,12424.5,6365.72,34608.15,111376.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28466,53700.0,30829.92,7646.3,92176.22,12479.3,9557.31,7473.98,29510.59,121686.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,9672,78498.03,630.79,13574.9,92703.72,16794.84,10035.17,7410.36,34240.37,126944.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,28535,9187.47,0.0,0.0,9187.47,0.0,3040.42,711.29,3751.71,12939.18 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,8008,59503.74,0.0,0.0,59503.74,12249.08,12317.7,4641.01,29207.79,88711.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12129,9959.03,0.0,0.0,9959.03,0.0,4259.15,803.34,5062.49,15021.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31033,56531.0,0.0,6610.02,63141.02,12715.91,12424.5,5111.05,30251.46,93392.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13251,70148.68,29275.68,1917.89,101342.25,19726.06,13819.28,7716.42,41261.76,142604.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,41856,112170.36,62451.55,22197.43,196819.34,25660.37,15052.77,510.28,41223.42,238042.76 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,268,143188.0,0.0,8543.67,151731.67,28816.76,12424.5,10352.73,51593.99,203325.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41243,52607.89,4746.01,994.01,58347.91,13950.38,12612.3,4182.2,30744.88,89092.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25564,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1850.29,10264.06,34268.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21304,98774.57,5829.42,6046.06,110650.05,20543.49,12424.49,1845.79,34813.77,145463.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,47626,116976.08,0.0,0.0,116976.08,23541.49,12424.51,9281.38,45247.38,162223.46 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",37019,198139.03,0.0,5525.28,203664.31,40987.79,12424.5,11215.4,64627.69,268292.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,34310,89646.08,29989.18,6844.14,126479.4,19700.96,12246.2,2099.62,34046.78,160526.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,44493,5912.67,0.0,83.89,5996.56,0.0,1751.67,519.24,2270.91,8267.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30056,2934.08,0.0,91.34,3025.42,0.0,1272.32,250.07,1522.39,4547.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52841,48794.77,4814.54,2384.68,55993.99,14588.36,9703.72,4528.95,28821.03,84815.02 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,27816,54814.3,2355.47,1264.53,58434.3,11301.46,10792.28,4788.43,26882.17,85316.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,4979,56531.0,0.0,3930.9,60461.9,11780.12,12424.5,4998.89,29203.51,89665.41 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,43315,9463.59,0.0,2086.32,11549.91,0.0,0.0,167.47,167.47,11717.38 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,33153,67911.05,10321.19,5848.83,84081.07,14593.72,12424.5,6778.91,33797.13,117878.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2220,5098.41,0.0,0.0,5098.41,1315.38,2210.85,437.89,3964.12,9062.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,27067,104811.08,0.0,624.0,105435.08,21730.49,12424.5,8674.61,42829.6,148264.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,11731,56531.0,0.0,5519.48,62050.48,12285.06,12424.5,5079.63,29789.19,91839.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14218,8199.58,0.0,819.75,9019.33,1729.87,3555.62,727.4,6012.89,15032.22 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17826,42244.5,1336.5,2899.47,46480.47,11034.39,9983.32,3806.5,24824.21,71304.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,29138,26830.0,0.0,0.0,26830.0,6022.63,6690.11,2129.1,14841.84,41671.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,37702,67720.43,10570.58,4728.43,83019.44,14444.93,11975.19,6816.62,33236.74,116256.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2470,Diagnostic Imaging Tech IV,19783,109064.3,7161.56,7904.99,124130.85,22529.28,12340.88,9771.35,44641.51,168772.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14515,1488.5,0.0,0.0,1488.5,0.0,683.95,115.53,799.48,2287.98 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,3508,63566.3,0.0,10095.51,73661.81,14403.63,3819.93,5906.09,24129.65,97791.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,5377,95968.07,0.0,0.0,95968.07,19779.22,12424.49,7221.72,39425.43,135393.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,41658,82044.19,0.0,1599.49,83643.68,17233.51,12415.56,6680.64,36329.71,119973.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,7873,70800.09,0.0,0.0,70800.09,14505.77,9228.77,5806.34,29540.88,100340.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,32045,43992.59,774.38,790.0,45556.97,9557.67,8897.73,3563.29,22018.69,67575.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30787,82095.98,13603.99,7350.55,103050.52,17060.01,12424.5,1718.76,31203.27,134253.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,26925,44477.01,0.0,0.0,44477.01,9009.31,7645.85,3587.91,20243.07,64720.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29238,63389.0,0.0,2833.36,66222.36,12192.12,6690.11,4866.17,23748.4,89970.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,7898,47699.6,6093.67,2858.75,56652.02,9544.5,8840.51,1409.45,19794.46,76446.48 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,37827,56276.08,0.0,624.0,56900.08,12731.55,12424.5,4716.09,29872.14,86772.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24737,2298.55,0.0,0.0,2298.55,0.0,742.67,178.4,921.07,3219.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,51814,2148.75,0.0,0.0,2148.75,399.88,448.0,189.05,1036.93,3185.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,51262,49747.14,0.0,186.19,49933.33,10181.81,8008.85,3835.44,22026.1,71959.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,37399,64882.81,10523.88,2607.93,78014.62,14285.45,10035.18,6186.4,30507.03,108521.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,33776,46021.86,0.0,702.68,46724.54,11261.21,11704.36,3807.54,26773.11,73497.65 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,4774,63727.0,0.0,0.0,63727.0,11553.68,5734.39,8543.44,25831.51,89558.51 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,33942,53152.79,158.85,5114.9,58426.54,12648.81,11358.45,4742.17,28749.43,87175.97 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,33399,126256.46,0.0,0.0,126256.46,25371.4,12415.54,17174.19,54961.13,181217.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,22360,16827.63,0.0,1074.18,17901.81,10903.22,1230.74,3932.08,16066.04,33967.85 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,4673,83528.02,389.15,0.0,83917.17,17215.61,12424.5,6806.61,36446.72,120363.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",3803,135109.0,33199.81,8106.54,176415.35,28149.67,12424.5,2961.76,43535.93,219951.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44663,134832.96,69.14,1547.96,136450.06,27454.31,11701.74,9811.34,48967.39,185417.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41647,138912.43,10034.26,11154.86,160101.55,27467.14,12424.5,2720.34,42611.98,202713.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37895,15626.0,0.0,10.0,15636.0,3438.33,3345.06,1260.67,8044.06,23680.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,18278,38913.0,0.0,392.92,39305.92,7241.66,5734.38,3088.18,16064.22,55370.14 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29660,0.0,0.0,5001.95,5001.95,0.0,34.25,72.53,106.78,5108.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,20695,54330.93,410.29,7724.46,62465.68,13195.55,12472.29,5072.59,30740.43,93206.11 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,16038,164707.04,0.0,0.0,164707.04,33028.2,12424.5,17780.8,63233.5,227940.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,43043,21356.71,0.0,21.43,21378.14,3978.5,4109.63,1711.08,9799.21,31177.35 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,52288,4765.2,0.0,0.0,4765.2,0.0,1576.96,353.52,1930.48,6695.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,41467,48488.6,19.0,2552.11,51059.71,12232.49,12424.5,3891.21,28548.2,79607.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23356,112159.76,14753.06,16273.23,143186.05,24605.61,15052.76,2437.71,42096.08,185282.13 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,43702,55206.77,21420.73,2572.1,79199.6,11452.69,10869.95,6476.17,28798.81,107998.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22844,65454.78,11075.34,647.29,77177.41,18123.18,12902.79,5861.5,36887.47,114064.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",11380,54249.0,7192.2,0.0,61441.2,10454.1,7108.24,4786.15,22348.49,83789.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,6915,84644.01,7864.7,7478.81,99987.52,18220.13,12424.5,8147.89,38792.52,138780.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52307,112159.76,70582.92,19094.19,201836.87,24822.81,15052.76,3397.57,43273.14,245110.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,49846,2599.21,0.0,0.0,2599.21,0.0,860.16,211.02,1071.18,3670.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,21408,36771.02,0.0,2068.37,38839.39,7851.73,8055.32,3102.46,19009.51,57848.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,5161,97424.01,3035.11,7932.84,108391.96,20079.52,12424.49,8228.66,40732.67,149124.63 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,26212,188085.81,0.0,0.0,188085.81,37772.62,12424.5,25931.52,76128.64,264214.45 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,9224,39475.85,0.0,0.0,39475.85,7615.79,6878.28,679.65,15173.72,54649.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3260,Crafts Instructor,5760,60520.81,0.0,1400.5,61921.31,12770.13,12272.18,5003.22,30045.53,91966.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,46243,70068.8,3020.55,4205.06,77294.41,14573.37,12393.15,6112.34,33078.86,110373.27 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,26728,160707.07,0.0,0.0,160707.07,32303.0,12424.5,17742.77,62470.27,223177.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7259,44801.95,2926.57,3221.27,50949.79,12450.32,13489.25,3814.33,29753.9,80703.69 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,36281,67911.0,10954.25,9895.64,88760.89,15584.53,12424.5,7282.04,35291.07,124051.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45409,9238.01,0.0,2217.41,11455.42,1641.64,955.73,192.57,2789.94,14245.36 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,46873,0.0,0.0,426.94,426.94,0.0,68.5,32.66,101.16,528.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,40041,73749.01,2811.59,6484.94,83045.54,16255.54,12424.5,6810.19,35490.23,118535.77 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,35055,100759.77,0.0,0.0,100759.77,20724.88,12143.69,8053.03,40921.6,141681.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6722,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7353,Water Meter Repairer,36769,76728.01,2997.86,0.0,79725.87,15813.98,12424.5,6363.43,34601.91,114327.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,6104,73091.8,10949.7,5025.6,89067.1,5710.52,11182.04,6907.56,23800.12,112867.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,11750,3643.2,0.0,54.65,3697.85,0.0,1099.09,286.29,1385.38,5083.23 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",20444,89833.04,34775.94,9094.65,133703.63,22589.29,12416.44,2629.24,37634.97,171338.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20369,52558.84,17012.21,837.2,70408.25,15122.06,10452.17,5312.69,30886.92,101295.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,26885,15953.04,0.0,130.0,16083.04,0.0,5202.76,1238.21,6440.97,22524.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,7959,85004.02,50440.92,2468.55,137913.49,17519.6,12424.5,10018.19,39962.29,177875.78 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,39237,57195.01,11506.41,13906.57,82607.99,13383.01,10513.04,6549.06,30445.11,113053.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,9383,21987.6,0.0,300.06,22287.66,0.0,0.0,1763.02,1763.02,24050.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,6382,8858.73,0.0,11255.64,20114.37,1943.6,937.81,1579.5,4460.91,24575.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7213,Plumber Supervisor 1,8049,13413.0,0.0,402.39,13815.39,2571.03,0.0,1126.76,3697.79,17513.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,8884,29233.8,4548.42,2376.95,36159.17,6879.27,4778.65,2785.07,14442.99,50602.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,26084,52882.2,1698.16,6643.62,61223.98,12980.0,10274.1,4954.62,28208.72,89432.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30037,9399.6,0.0,0.0,9399.6,2062.27,1003.51,719.5,3785.28,13184.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51550,35691.15,1111.9,4425.38,41228.43,8497.94,6952.35,3212.06,18662.35,59890.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,20738,78082.32,0.0,3418.19,81500.51,16996.73,10560.83,6384.24,33941.8,115442.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23689,121457.53,1040.2,13412.29,135910.02,25350.46,10995.15,9970.16,46315.77,182225.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39201,113233.59,11331.75,16001.84,140567.18,24368.66,15196.12,2393.72,41958.5,182525.68 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,17419,6125.25,325.53,0.0,6450.78,0.0,1839.78,501.42,2341.2,8791.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,30136,131159.63,0.0,0.0,131159.63,26537.53,11803.22,17210.96,55551.71,186711.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,5136,181945.08,0.0,18685.77,200630.85,40377.48,12424.5,11233.27,64035.25,264666.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1398,56531.0,0.0,5866.18,62397.18,12437.47,12424.5,5151.96,30013.93,92411.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,50834,138402.74,0.0,0.0,138402.74,27828.1,12424.5,17336.16,57588.76,195991.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",28028,93558.85,5619.61,5170.6,104349.06,19928.12,12400.6,8369.83,40698.55,145047.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,32431,26013.72,0.0,0.0,26013.72,4841.15,5179.35,1987.94,12008.44,38022.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,3263,99523.9,0.0,0.0,99523.9,20506.77,12424.5,8194.41,41125.68,140649.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,50953,28695.0,0.0,0.0,28695.0,5340.15,5734.37,2299.12,13373.64,42068.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2650,Assistant Cook,49133,8041.3,590.67,0.0,8631.97,0.0,2317.64,669.67,2987.31,11619.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44390,63060.04,8933.96,2442.96,74436.96,17854.13,12418.47,5765.88,36038.48,110475.44 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23214,9504.0,0.0,221.77,9725.77,2437.92,2867.19,784.81,6089.92,15815.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39101,10748.25,889.49,332.63,11970.37,2614.61,2050.7,894.4,5559.71,17530.08 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,41099,12388.4,0.0,118.8,12507.2,2327.6,2365.43,1236.42,5929.45,18436.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,36584,22990.25,0.0,247.84,23238.09,1337.13,4659.19,1797.1,7793.42,31031.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3741,14289.02,1282.32,5093.69,20665.03,61.66,0.0,3954.68,4016.34,24681.37 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,23544,184042.95,0.0,0.0,184042.95,37027.75,10044.14,10876.67,57948.56,241991.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32004,4408.0,0.0,0.0,4408.0,0.0,1911.46,348.74,2260.2,6668.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9052,1110.2,0.0,88.82,1199.02,0.0,277.76,92.83,370.59,1569.61 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,46853,17003.09,0.0,0.0,17003.09,3730.5,0.0,1343.24,5073.74,22076.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,14856,2033.25,0.0,7052.76,9086.01,460.1,358.4,700.21,1518.71,10604.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,20108,47764.28,5343.43,3282.51,56390.22,9932.88,8840.51,1490.38,20263.77,76653.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18072,56531.0,0.0,5511.49,62042.49,12416.8,12424.5,5124.02,29965.32,92007.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2210,66421.8,11069.19,2064.87,79555.86,15619.31,13088.38,6123.79,34831.48,114387.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,12794,55090.0,2714.16,75.0,57879.16,10640.91,7167.97,4754.61,22563.49,80442.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48338,3173.02,0.0,8.05,3181.07,0.0,1553.06,246.66,1799.72,4980.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",39385,9784.35,0.0,0.0,9784.35,0.0,2328.11,759.23,3087.34,12871.69 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,11979,46282.52,0.0,1085.8,47368.32,9772.61,6799.08,3907.5,20479.19,67847.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,27134,85514.88,0.0,1300.0,86814.88,17473.0,10971.19,6821.33,35265.52,122080.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52381,17973.05,0.0,499.57,18472.62,0.0,0.0,1461.34,1461.34,19933.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,23899,4970.81,0.0,0.0,4970.81,117.88,1624.74,396.0,2138.62,7109.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27054,2852.13,0.0,0.0,2852.13,0.0,1197.65,222.72,1420.37,4272.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13229,58121.57,4730.14,957.06,63808.77,15326.76,13120.86,4863.17,33310.79,97119.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,5272,34078.91,0.0,1272.0,35350.91,6578.83,3822.92,2896.07,13297.82,48648.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22390,66862.74,3874.29,781.34,71518.37,15392.07,13174.82,5420.75,33987.64,105506.01 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8165,Worker's Comp Supervisor 1,40206,107838.82,0.0,0.0,107838.82,22185.21,12424.5,8138.17,42747.88,150586.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,24723,55856.04,0.0,0.0,55856.04,11372.74,10990.91,4532.16,26895.81,82751.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38134,105547.58,1103.82,10887.96,117539.36,17564.64,9927.95,7257.86,34750.45,152289.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,51951,16977.99,206.97,799.39,17984.35,0.0,5534.28,1394.26,6928.54,24912.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43308,0.0,0.0,844.72,844.72,0.0,34.25,45.49,79.74,924.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1326,Customer Service Agent Supv,49932,81536.82,7311.29,1488.46,90336.57,17075.63,12424.5,7167.32,36667.45,127004.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,27990,22268.64,0.0,851.31,23119.95,5531.97,6209.26,1911.33,13652.56,36772.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,4123,116599.0,0.0,0.0,116599.0,23438.23,12424.5,8916.17,44778.9,161377.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,32901,8192.07,0.0,0.0,8192.07,1801.46,0.0,658.57,2460.03,10652.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24471,36165.6,3659.94,1435.08,41260.62,9923.77,7111.6,3208.37,20243.74,61504.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50353,67587.45,5201.96,1177.95,73967.36,18814.29,13316.91,5761.52,37892.72,111860.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,2315,62545.0,15336.73,4327.93,82209.66,12704.45,9557.31,6431.31,28693.07,110902.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,5413,82883.02,18145.45,15067.64,116096.11,19126.87,12424.5,9210.09,40761.46,156857.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,36393,22724.87,1602.15,6306.44,30633.46,5836.07,2989.11,2512.56,11337.74,41971.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7398,Apprentice Cement Mason I,43487,45538.5,1911.24,0.0,47449.74,10594.22,10035.26,3849.98,24479.46,71929.2 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,43968,403.76,393.66,0.0,797.42,0.0,119.47,61.89,181.36,978.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47304,709.65,0.0,7.89,717.54,0.0,53.76,0.0,53.76,771.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,49007,13425.0,0.0,8963.69,22388.69,3038.15,2389.33,1807.94,7235.42,29624.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,24093,10484.0,0.0,0.0,10484.0,1951.08,1911.46,805.12,4667.66,15151.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8105,48800.37,0.0,0.86,48801.23,0.0,3947.47,3784.8,7732.27,56533.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,17321,61815.94,0.0,1863.4,63679.34,13083.47,12412.56,5006.66,30502.69,94182.03 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,20842,83699.04,0.0,0.0,83699.04,17247.51,12424.5,6609.59,36281.6,119980.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,19235,66102.03,0.0,0.0,66102.03,13624.08,12424.49,5412.41,31460.98,97563.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30700,65362.22,1146.33,1619.14,68127.69,18336.46,12880.98,4981.24,36198.68,104326.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9396,56531.0,7208.04,1614.0,65353.04,11780.12,12424.5,5385.67,29590.29,94943.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,14111,100554.01,0.0,3597.68,104151.69,21463.53,12424.51,8410.48,42298.52,146450.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40359,52760.01,1341.38,531.9,54633.29,12763.81,12424.5,4477.45,29665.76,84299.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,11920,2133.33,0.0,94.72,2228.05,0.0,530.13,172.94,703.07,2931.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,48641,77796.56,0.0,0.0,77796.56,16000.89,12424.51,6443.44,34868.84,112665.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,1671,75554.51,110.48,0.0,75664.99,15540.29,12424.5,6275.26,34240.05,109905.04 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,18344,50515.86,0.0,0.0,50515.86,0.0,6298.87,3915.53,10214.4,60730.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",15139,23076.88,0.0,30.53,23107.41,4183.84,1911.46,3399.57,9494.87,32602.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,10780,71584.81,0.0,0.0,71584.81,14736.83,12424.49,5760.3,32921.62,104506.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7480,Power Generation Technician 1,9165,81012.73,7197.85,3160.88,91371.46,16891.75,10811.7,7345.52,35048.97,126420.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40310,18495.96,0.0,909.69,19405.65,1872.35,8016.19,1570.47,11459.01,30864.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,14803,23166.03,100.55,0.0,23266.58,5591.32,5103.61,1934.36,12629.29,35895.87 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,28509,18049.63,0.0,769.46,18819.09,4656.76,5536.13,1533.46,11726.35,30545.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28136,94645.51,3799.32,22033.46,120478.29,22161.75,9732.15,9483.94,41377.84,161856.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,52255,154901.71,0.0,0.0,154901.71,31074.33,12424.5,25394.93,68893.76,223795.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,24370,75028.02,5696.03,0.0,80724.05,15463.62,12424.5,6351.29,34239.41,114963.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7259,Water & Power Maint Sprv 1,23822,99098.03,284.1,623.4,100005.53,20687.22,12424.51,8290.07,41401.8,141407.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,44183,28675.7,186.71,6600.72,35463.13,7579.13,6642.33,2907.62,17129.08,52592.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",16889,180314.39,24322.78,29204.71,233841.88,41044.84,15196.12,3944.63,60185.59,294027.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37693,65604.57,0.0,49.95,65654.52,13542.04,12332.99,5434.4,31309.43,96963.95 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,43592,94302.9,0.0,0.0,94302.9,19062.54,11032.72,7348.75,37444.01,131746.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,47058,69906.82,0.0,624.0,70530.82,14533.6,12424.5,5555.3,32513.4,103044.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,52442,139919.32,0.0,36430.61,176349.93,27648.26,12424.5,2801.94,42874.7,219224.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40344,41641.89,6661.68,1196.65,49500.22,11144.51,12971.18,3838.29,27953.98,77454.2 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,34474,162668.38,0.0,5719.99,168388.37,32960.57,9838.07,10542.69,53341.33,221729.7 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,49817,6488.16,541.75,0.0,7029.91,0.0,1797.97,545.64,2343.61,9373.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,26805,52713.41,0.0,3707.32,56420.73,12625.17,12424.5,4574.85,29624.52,86045.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,24447,88535.02,0.0,0.0,88535.02,18213.89,12424.49,7127.93,37766.31,126301.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,990.0,Executive Contract Employees,0900,Management,9989,Executive Contract Employee,34892,320480.0,0.0,0.0,320480.0,64497.2,12424.5,20445.99,97367.69,417847.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,41158,58198.53,1638.13,4309.92,64146.58,13024.13,6451.18,5212.5,24687.81,88834.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,48684,47668.89,4322.63,5150.72,57142.24,9907.46,8834.54,1499.1,20241.1,77383.34 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,24443,75734.03,0.0,0.0,75734.03,15591.04,12424.5,5954.79,33970.33,109704.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,47959,16765.0,0.0,0.0,16765.0,3760.4,2389.33,1355.89,7505.62,24270.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22042,11818.0,0.0,0.0,11818.0,2598.77,2867.19,949.9,6415.86,18233.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5946,9300.13,1982.89,174.87,11457.89,2349.49,2935.71,885.66,6170.86,17628.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45527,28083.9,0.0,6796.64,34880.54,6293.85,0.0,1615.21,7909.06,42789.6 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31122,97243.81,32733.01,16879.82,146856.64,27768.44,12357.3,2437.57,42563.31,189419.95 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,51878,150887.95,0.0,0.0,150887.95,30347.27,12424.5,25257.49,68029.26,218917.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39020,10051.62,0.0,1281.35,11332.97,2205.32,4358.73,906.47,7470.52,18803.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,49317,55459.68,0.0,3582.11,59041.79,11561.98,12187.6,4850.68,28600.26,87642.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,1273,143616.9,24139.41,13759.24,181515.55,28865.53,12424.5,3087.91,44377.94,225893.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,19922,73747.53,0.0,2310.0,76057.53,15650.53,12424.5,5898.7,33973.73,110031.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,30225,82833.95,1240.0,9358.08,93432.03,18217.51,12555.93,7659.12,38432.56,131864.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6623,64903.37,23754.18,568.53,89226.08,17809.29,12778.9,6936.87,37525.06,126751.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27466,66071.26,13509.64,7570.58,87151.48,20152.98,13017.89,6771.23,39942.1,127093.58 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,4887,49583.02,4546.77,879.9,55009.69,11079.74,10859.49,4270.74,26209.97,81219.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,35279,27367.98,730.95,109.35,28208.28,0.0,5298.69,2156.53,7455.22,35663.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,52741,158684.3,0.0,250.0,158934.3,31775.42,11561.77,10385.31,53722.5,212656.8 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,8300,Correction & Detention,8582,"Acpo,Juvp, Juv Prob (SFERS)",18197,153727.42,0.0,0.0,153727.42,30874.26,12424.5,10281.64,53580.4,207307.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,12082,78610.0,0.0,2434.1,81044.1,16419.25,12424.5,6420.52,35264.27,116308.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27072,91395.42,33343.25,6610.11,131348.78,18632.48,9520.27,2179.55,30332.3,161681.08 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,15636,108969.64,0.0,0.0,108969.64,22460.0,12424.52,8712.89,43597.41,152567.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,10914,142568.26,54808.52,8423.33,205800.11,28688.69,12424.5,3019.22,44132.41,249932.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,22239,73749.04,2429.19,5551.89,81730.12,15370.43,12424.5,6691.79,34486.72,116216.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,14599,29983.13,2055.79,279.13,32318.05,4057.95,9013.73,2615.81,15687.49,48005.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,31159,91687.5,0.0,0.0,91687.5,18897.38,12316.96,7386.45,38600.79,130288.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23056,9186.03,0.0,3248.63,12434.66,4223.71,695.83,1935.81,6855.35,19290.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,22380,119158.22,0.0,0.0,119158.22,23953.85,12424.5,9795.35,46173.7,165331.92 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,10876,96254.0,0.0,0.0,96254.0,19838.21,12424.5,7609.32,39872.03,136126.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,52057,73749.03,1422.83,4869.76,80041.62,15511.0,12424.5,6615.01,34550.51,114592.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,17941,200107.1,0.0,9609.68,209716.78,40264.74,12424.5,3478.72,56167.96,265884.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,28035,82717.03,32.01,1954.14,84703.18,17350.11,12424.5,6529.49,36304.1,121007.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",2982,147149.0,0.0,0.0,147149.0,29613.71,12424.51,18593.6,60631.82,207780.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8198,6247.61,0.0,261.54,6509.15,1557.52,1242.46,475.95,3275.93,9785.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14156,27845.36,2517.86,1098.16,31461.38,7248.39,8665.79,2373.79,18287.97,49749.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,13340,7235.0,0.0,61.31,7296.31,0.0,2624.26,565.41,3189.67,10485.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37929,20216.02,0.0,370.84,20586.86,4534.48,3822.91,1706.28,10063.67,30650.53 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,1869,88296.04,0.0,5322.0,93618.04,18337.86,12424.5,7768.54,38530.9,132148.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38723,7544.0,227.35,48.42,7819.77,1794.23,2273.86,599.9,4667.99,12487.76 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,15515,75046.8,0.0,5530.7,80577.5,13869.17,5160.94,6252.1,25282.21,105859.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,37645,1778.0,0.0,69.35,1847.35,0.0,477.86,143.38,621.24,2468.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,36855,22500.04,0.0,0.0,22500.04,4187.25,2389.35,1715.86,8292.46,30792.5 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,23387,93681.02,16803.61,9788.79,120273.42,20410.32,12424.5,9433.14,42267.96,162541.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11594,113233.59,15562.52,18484.14,147280.25,25036.02,15196.12,2342.19,42574.33,189854.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,38753,8240.44,0.0,0.0,8240.44,1848.33,1099.03,872.55,3819.91,12060.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,28834,92327.43,1461.36,2369.04,96157.83,19040.75,12469.3,7575.16,39085.21,135243.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52858,59039.47,15892.77,9767.69,84699.93,14115.57,10381.64,1385.61,25882.82,110582.75 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,19269,55199.42,0.0,0.0,55199.42,11002.75,9031.66,4459.15,24493.56,79692.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28407,0.0,0.0,250.0,250.0,0.0,34.25,0.0,34.25,284.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22437,33736.03,6360.46,787.84,40884.33,8865.4,6586.12,3103.85,18555.37,59439.7 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,18625,113.88,0.0,0.0,113.88,0.0,28.37,8.82,37.19,151.07 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,14305,95781.06,0.0,0.0,95781.06,18865.3,10035.17,7293.61,36194.08,131975.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,50447,82937.7,0.0,0.0,82937.7,17073.7,12361.78,6675.6,36111.08,119048.78 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,2198,93314.4,2542.68,11021.93,106879.01,20883.01,12376.71,8815.84,42075.56,148954.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,13830,135421.02,0.0,0.0,135421.02,27263.36,12424.49,10072.48,49760.33,185181.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49248,68408.05,16965.31,3401.32,88774.68,16332.75,13480.11,6758.29,36571.15,125345.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,51142,15422.41,0.0,50.6,15473.01,0.0,0.0,1388.65,1388.65,16861.66 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1362,Special Assistant 3,50416,44280.66,0.0,0.0,44280.66,8942.67,10053.46,3486.44,22482.57,66763.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,15925,24454.73,0.0,1179.73,25634.46,6128.96,6469.22,2083.2,14681.38,40315.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,44248,53223.12,0.0,0.0,53223.12,11878.05,12424.5,4076.77,28379.32,81602.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11273,30882.51,3932.84,1297.45,36112.8,8176.2,9624.1,2601.36,20401.66,56514.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,2015,0.0,0.0,163.9,163.9,0.0,0.0,12.54,12.54,176.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,33920,39912.78,29.63,0.0,39942.41,8764.55,11994.43,3160.65,23919.63,63862.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,31362,95139.28,0.0,0.0,95139.28,19576.6,11693.49,7108.38,38378.47,133517.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,47398,16566.56,0.0,0.0,16566.56,0.0,5199.77,1284.4,6484.17,23050.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,17793,41335.0,733.41,1262.17,43330.58,10223.25,12424.5,3515.97,26163.72,69494.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,5166,127129.15,0.0,2982.09,130111.24,26235.37,12424.5,17275.1,55934.97,186046.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3232,Marina Assistant Manager,1342,31183.43,833.19,3131.5,35148.12,7550.02,7580.14,2824.14,17954.3,53102.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",27739,65938.64,0.0,0.0,65938.64,0.0,5620.89,5111.5,10732.39,76671.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27384,53663.22,0.0,45736.01,99399.23,0.0,47.79,30.38,78.17,99477.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,5251,61735.01,29208.2,624.0,91567.21,12852.62,12424.5,7413.6,32690.72,124257.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,5033,74165.01,0.0,624.0,74789.01,15414.44,12424.49,6201.07,34040.0,108829.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,37050,117129.69,16815.43,14376.72,148321.84,23205.2,12424.5,2527.86,38157.56,186479.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20673,15853.16,0.0,2516.54,18369.7,235.92,0.0,442.3,678.22,19047.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,27550,38304.1,0.0,0.0,38304.1,8441.43,3822.94,7245.67,19510.04,57814.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,32782,45302.57,253.83,0.0,45556.4,9876.06,10454.68,3509.3,23840.04,69396.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",4512,69568.22,8096.22,115.59,77780.03,13190.5,7167.97,5828.8,26187.27,103967.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",19020,131945.3,2112.36,15139.4,149197.06,26087.48,12424.5,2444.06,40956.04,190153.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,38653,70656.27,506.25,0.0,71162.52,14562.14,12364.77,5901.48,32828.39,103990.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",32854,11316.39,0.0,0.0,11316.39,0.0,2676.04,878.05,3554.09,14870.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,12865,59761.08,5100.6,421.56,65283.24,12326.94,11882.9,5379.98,29589.82,94873.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,2928,75389.0,4158.62,0.0,79547.62,15538.11,12421.52,6330.33,34289.96,113837.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,31635,81542.01,1053.15,0.0,82595.16,16806.14,12424.5,6829.1,36059.74,118654.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,47572,97934.03,0.0,920.0,98854.03,20372.89,12424.5,8140.92,40938.31,139792.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49144,97183.2,4566.44,9897.27,111646.91,20225.05,12424.5,1862.73,34512.28,146159.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23733,62741.26,0.0,5396.34,68137.6,13226.03,11099.62,5360.6,29686.25,97823.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39,59378.93,18742.94,1437.47,79559.34,16523.44,11689.06,6174.64,34387.14,113946.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,9567,54212.74,0.0,0.0,54212.74,10355.99,6785.69,4312.17,21453.85,75666.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,3423,7203.0,0.0,6029.62,13232.62,1631.79,1433.6,1067.21,4132.6,17365.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32730,7032.15,0.0,0.0,7032.15,1814.28,3049.38,581.78,5445.44,12477.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,37554,60845.89,0.0,0.0,60845.89,12529.88,7409.9,4695.02,24634.8,85480.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,912,9282.25,0.0,428.48,9710.73,0.0,3542.17,752.83,4295.0,14005.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,36545,64463.7,4658.78,1571.59,70694.07,13274.71,12424.51,5835.16,31534.38,102228.45 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,6122,63825.6,13466.77,992.08,78284.45,13167.85,12567.87,6389.55,32125.27,110409.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40500,42058.27,6773.89,1147.43,49979.59,11214.47,12773.27,3790.9,27778.64,77758.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49227,0.0,0.0,877.97,877.97,0.0,68.5,67.16,135.66,1013.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,9404,92650.01,0.0,0.0,92650.01,19028.41,11946.64,7659.42,38634.47,131284.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,2954,183.45,0.0,0.0,183.45,41.15,20.9,13.36,75.41,258.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,26768,0.0,0.0,2.21,2.21,0.0,0.0,0.17,0.17,2.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17437,64913.02,9366.64,2346.85,76626.51,18432.01,12792.04,5977.41,37201.46,113827.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37647,35375.18,0.0,5898.52,41273.7,6842.58,2729.03,1340.85,10912.46,52186.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,26893,56644.0,15415.91,18790.74,90850.65,12974.91,9366.16,7196.37,29537.44,120388.09 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,3174,3271.0,370.69,36.0,3677.69,727.8,477.86,282.37,1488.03,5165.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26850,9852.0,0.0,585.94,10437.94,3045.8,1959.25,799.15,5804.2,16242.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46316,11426.38,0.0,0.0,11426.38,0.0,4954.87,896.96,5851.83,17278.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,9876,26139.58,0.0,264.04,26403.62,6344.15,6457.16,2182.2,14983.51,41387.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33542,12694.42,645.55,99.0,13438.97,3065.03,3912.83,956.83,7934.69,21373.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,5531,78980.04,0.0,1952.0,80932.04,16486.19,10990.9,7589.91,35067.0,115999.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,37336,135892.3,35285.41,32202.91,203380.62,26851.36,12400.61,3421.9,42673.87,246054.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,40493,118104.02,0.0,0.0,118104.02,23768.42,12424.73,9362.02,45555.17,163659.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,39003,9058.02,1783.29,912.27,11753.58,1609.88,955.73,197.51,2763.12,14516.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1434,65856.05,3585.28,1732.05,71173.38,18520.91,12981.1,5507.5,37009.51,108182.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,49126,57892.2,196.05,6316.21,64404.46,13048.94,8777.2,5864.21,27690.35,92094.81 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3554,Associate Museum Registrar,43479,53125.03,1061.53,0.0,54186.56,12731.34,12424.5,4151.58,29307.42,83493.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,46718,66102.0,0.0,200.0,66302.0,13666.99,12424.5,5456.72,31548.21,97850.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,10524,54195.43,1992.26,1436.25,57623.94,11471.06,6236.15,4471.57,22178.78,79802.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6355,82194.1,8884.07,7790.09,98868.26,17078.27,12424.5,1639.88,31142.65,130010.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,568,119094.7,654.35,33976.18,153725.23,26563.91,10876.22,7755.72,45195.85,198921.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,12116,72346.13,0.0,0.0,72346.13,0.0,7079.87,5607.19,12687.06,85033.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23489,17922.84,2466.47,648.92,21038.23,4452.23,5533.32,1610.5,11596.05,32634.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33598,119461.64,43992.62,13869.55,177323.81,23641.92,12424.5,2949.69,39016.11,216339.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",16421,47677.21,395.12,0.0,48072.33,9673.95,11277.64,3865.53,24817.12,72889.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,33058,85368.06,0.0,624.0,85992.06,17718.6,12424.5,6800.29,36943.39,122935.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,25353,73773.87,0.0,0.0,73773.87,15809.9,8405.59,6086.37,30301.86,104075.73 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,3375,67261.0,0.0,624.0,67885.0,13991.51,12424.5,5627.94,32043.95,99928.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,4137,66102.0,521.2,0.0,66623.2,13624.06,12424.5,5503.14,31551.7,98174.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9440,57037.74,0.0,576.8,57614.54,0.0,0.0,882.91,882.91,58497.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,25409,118104.03,0.0,0.0,118104.03,23768.42,12424.5,9402.46,45595.38,163699.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14460,1379.8,0.0,0.0,1379.8,0.0,740.69,106.83,847.52,2227.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,37310,11028.12,175.6,266.9,11470.62,2914.14,3001.12,922.77,6838.03,18308.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",46154,15280.31,0.0,0.0,15280.31,0.0,3613.86,1185.6,4799.46,20079.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,51380,89210.02,0.0,1480.0,90690.02,18690.29,12424.5,7517.61,38632.4,129322.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7484,Sr Power Generation Tech,33734,37881.01,12483.3,3776.39,54140.7,7301.48,4157.43,2913.07,14371.98,68512.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,16758,62215.56,1554.82,722.84,64493.22,12711.51,10410.3,5367.34,28489.15,92982.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44121,128085.52,0.0,250.0,128335.52,25936.66,11690.8,9891.27,47518.73,175854.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,14627,53917.71,12797.21,3691.25,70406.17,13215.54,12376.71,5393.47,30985.72,101391.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,24959,3520.0,0.0,60.0,3580.0,666.24,477.86,283.36,1427.46,5007.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7735,48125.24,4015.27,2004.15,54144.66,11855.01,11085.71,4132.55,27073.27,81217.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28211,12620.42,0.0,416.82,13037.24,0.0,0.0,880.3,880.3,13917.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,43524,4339.41,0.0,14.37,4353.78,0.0,1436.58,337.38,1773.96,6127.74 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,44858,69035.9,0.0,0.0,69035.9,14228.94,0.0,5477.89,19706.83,88742.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,644,106393.15,1120.85,16648.71,124162.71,24363.49,10806.09,9649.14,44818.72,168981.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,39690,159161.3,4.74,2115.69,161281.73,31663.89,12424.5,653.08,44741.47,206023.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12771,97140.08,8497.99,5720.04,111358.11,20233.49,12424.5,1849.13,34507.12,145865.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,2141,59949.6,1647.04,80.0,61676.64,12343.77,12424.5,4946.2,29714.47,91391.11 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,2058,63850.33,192.08,5887.16,69929.57,14365.69,12297.21,5778.98,32441.88,102371.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17366,54045.22,9913.02,720.0,64678.24,11090.75,10699.94,5235.24,27025.93,91704.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,19663,80857.5,0.0,11572.81,92430.31,15965.66,6086.81,7863.07,29915.54,122345.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16074,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,14316,63887.03,0.0,624.0,64511.03,13295.99,12424.5,5300.39,31020.88,95531.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,40072,25278.01,0.0,0.0,25278.01,6521.7,5256.52,2039.57,13817.79,39095.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44551,149099.0,0.0,16183.63,165282.63,28792.57,12424.5,6878.39,48095.46,213378.09 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,32356,87256.06,0.0,0.0,87256.06,17892.17,11743.55,6682.32,36318.04,123574.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29683,45445.12,0.0,0.0,45445.12,10245.24,9075.93,3557.26,22878.43,68323.55 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,4804,44165.3,417.58,3370.87,47953.75,3149.43,9925.21,3757.71,16832.35,64786.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,2274,4985.02,89.48,160.0,5234.5,1131.4,1194.67,399.14,2725.21,7959.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40051,39809.74,6802.87,1533.37,48145.98,10810.91,12074.0,3650.82,26535.73,74681.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,15523,149751.39,51063.85,13040.59,213855.83,30198.72,12424.5,3601.69,46224.91,260080.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,33471,12812.0,480.45,1805.6,15098.05,2523.64,1911.46,1190.49,5625.59,20723.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,27435,48568.3,1067.59,0.0,49635.89,11649.35,12424.5,3913.51,27987.36,77623.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51854,1875.19,0.0,0.0,1875.19,0.0,813.14,160.49,973.63,2848.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,32741,65772.01,0.0,13870.68,79642.69,16495.71,10035.18,6485.91,33016.8,112659.49 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,37075,66801.51,0.0,0.0,66801.51,4937.05,10946.1,5299.36,21182.51,87984.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,49486,108038.0,64566.58,21500.36,194104.94,25047.1,12424.5,11023.65,48495.25,242600.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,16827,112776.02,0.0,2255.52,115031.54,23150.48,12424.5,9460.33,45035.31,160066.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32332,40841.65,4752.5,632.55,46226.7,11503.73,8092.23,3107.23,22703.19,68929.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,25531,177003.8,0.0,0.0,177003.8,35587.4,12424.5,17973.16,65985.06,242988.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38454,71688.34,12191.72,6764.68,90644.74,15638.67,14479.33,1517.02,31635.02,122279.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,9682,58538.96,44.33,2329.31,60912.6,12447.86,11840.85,4883.38,29172.09,90084.69 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),19272,0.0,0.0,434.09,434.09,0.0,0.0,33.2,33.2,467.29 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14200,122114.32,0.0,1500.0,123614.32,24990.71,11851.06,9844.73,46686.5,170300.82 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,32136,28622.43,0.0,356.12,28978.55,6983.1,7072.41,2326.81,16382.32,45360.87 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,12068,23977.18,0.0,0.0,23977.18,5260.6,2014.44,5834.8,13109.84,37087.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,40258,74333.38,0.0,0.0,74333.38,15435.02,10685.38,6126.18,32246.58,106579.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37354,48838.97,2432.94,48.54,51320.45,11726.65,12423.73,4245.78,28396.16,79716.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49184,24270.66,2484.61,463.36,27218.63,6243.97,7577.74,2078.15,15899.86,43118.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",49766,45520.05,973.21,18417.87,64911.13,10363.3,5256.52,5242.48,20862.3,85773.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,27465,63887.01,0.0,0.0,63887.01,13167.4,12424.5,5046.75,30638.65,94525.66 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,32363,18128.0,0.0,0.0,18128.0,3373.64,3822.92,1404.88,8601.44,26729.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,1951,4790.58,0.0,824.2,5614.78,0.0,0.0,441.66,441.66,6056.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5973,113222.99,6023.35,14227.51,133473.85,24475.81,15196.12,2272.73,41944.66,175418.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35753,118311.71,627.93,30600.11,149539.75,20658.6,10803.34,10294.7,41756.64,191296.39 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,9307,63102.0,15078.36,12094.57,90274.93,14240.79,12424.5,7374.53,34039.82,124314.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8159,Child Support Officer III,40242,75195.18,0.0,502.28,75697.46,15689.03,10000.89,6225.99,31915.91,107613.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,5317,139239.9,19345.2,4974.18,163559.28,27522.56,12424.5,2788.0,42735.06,206294.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30832,101844.93,37892.53,17272.39,157009.85,23603.27,15052.76,2622.73,41278.76,198288.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3106,113233.58,7615.83,20287.92,141137.33,25257.48,15196.12,2403.19,42856.79,183994.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2520,Morgue Attendant,46261,233.2,0.0,0.0,233.2,0.0,0.0,18.42,18.42,251.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,7208,96254.01,0.0,0.0,96254.01,19838.21,12424.51,7910.92,40173.64,136427.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,52292,74165.06,0.0,624.0,74789.06,15414.49,12424.5,5825.87,33664.86,108453.92 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,37047,75512.51,1855.57,0.0,77368.08,17234.35,12424.5,1286.93,30945.78,108313.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,28563,61370.43,135.96,2808.0,64314.39,12803.59,12137.78,5332.53,30273.9,94588.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5130,Sewage Treatment Plant Supt,32456,147862.02,0.0,0.0,147862.02,29758.89,12424.49,10268.84,52452.22,200314.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,12505,78959.81,0.0,1560.0,80519.81,16083.94,10990.9,6320.56,33395.4,113915.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8373,14284.13,0.0,985.96,15270.09,1641.68,0.0,3382.39,5024.07,20294.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,29033,6345.0,0.0,0.0,6345.0,1423.17,1433.6,516.9,3373.67,9718.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51025,7104.28,0.0,253.26,7357.54,313.26,0.0,1898.49,2211.75,9569.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,44120,156746.06,0.0,6171.69,162917.75,32792.93,12424.5,10468.03,55685.46,218603.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,41095,32470.33,5374.66,21513.94,59358.93,7923.43,3758.83,4724.95,16407.21,75766.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27316,2873.45,0.0,0.0,2873.45,0.0,1206.61,230.73,1437.34,4310.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23531,66905.24,4451.49,3740.84,75097.57,17311.63,13383.16,5687.31,36382.1,111479.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,47700,8970.19,323.25,0.0,9293.44,0.0,1989.11,721.32,2710.43,12003.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,30654,14062.78,31.92,0.0,14094.7,3595.98,3948.37,1142.02,8686.37,22781.07 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,761,119965.06,0.0,0.0,119965.06,23962.88,11468.77,9196.23,44627.88,164592.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,37133,79417.31,8495.82,1730.0,89643.13,16721.49,12376.69,7158.26,36256.44,125899.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,33402,14341.98,0.0,0.0,14341.98,2669.04,2348.71,1175.4,6193.15,20535.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29274,77071.01,23839.98,2064.0,102974.99,16308.83,12424.5,8380.02,37113.35,140088.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,43190,29233.8,20546.41,2665.39,52445.6,6943.97,4778.65,4045.97,15768.59,68214.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48648,72778.17,28433.8,6818.54,108030.51,21814.65,14348.46,8247.74,44410.85,152441.36 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,27356,1418.8,0.0,0.0,1418.8,0.0,191.14,110.12,301.26,1720.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,44606,14281.94,0.0,2.92,14284.86,0.0,4668.15,1106.37,5774.52,20059.38 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2802,Epidemiologist 1,50692,32216.5,0.0,0.0,32216.5,5995.5,5423.76,2539.4,13958.66,46175.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7364,Power House Operator,41540,77709.0,4003.87,3148.35,84861.22,16026.83,12424.5,6936.54,35387.87,120249.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46524,0.0,0.0,389.07,389.07,0.0,68.5,10.64,79.14,468.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,13065,8655.28,0.0,0.0,8655.28,0.0,764.58,670.83,1435.41,10090.69 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,44156,46907.01,925.01,0.0,47832.02,9139.54,7645.85,3766.82,20552.21,68384.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,35572,71420.79,0.0,0.0,71420.79,15669.72,6546.76,5684.11,27900.59,99321.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,32932,35222.72,0.0,5738.39,40961.11,8144.71,6546.76,3374.39,18065.86,59026.97 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8234,Fire Alarm Dispatcher,32137,769.2,0.0,0.0,769.2,0.0,143.35,59.71,203.06,972.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,35302,51720.2,11642.39,6873.13,70235.72,13353.67,12376.71,5759.48,31489.86,101725.58 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,12559,81542.04,0.0,0.0,81542.04,16806.17,12424.5,6696.81,35927.48,117469.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7246,Sewer Repair Supervisor,51931,106116.0,8493.81,11390.02,125999.83,22229.36,12424.5,9802.69,44456.55,170456.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,41677,86506.0,0.0,0.0,86506.0,16835.83,9079.44,6755.64,32670.91,119176.91 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,14254,84018.73,12928.77,8529.3,105476.8,18003.54,12281.15,8495.34,38780.03,144256.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32095,46987.04,112.92,0.0,47099.96,11253.7,12424.5,3825.5,27503.7,74603.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,16032,111918.0,1904.4,0.0,113822.4,22523.67,12424.52,9351.33,44299.52,158121.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,9082,46906.3,20383.33,8827.29,76116.92,12129.68,10889.0,5714.15,28732.83,104849.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,50000,101160.54,0.0,0.0,101160.54,20818.84,12424.5,8269.12,41512.46,142673.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49022,94411.18,18522.76,7007.86,119941.8,19603.33,12424.49,1947.05,33974.87,153916.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37422,4338.4,0.0,704.99,5043.39,0.0,382.3,390.47,772.77,5816.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8687,634.5,0.0,0.0,634.5,142.32,143.35,47.41,333.08,967.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,31337,80570.02,0.0,704.0,81274.02,16749.54,12424.5,5937.59,35111.63,116385.65 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,25200,67196.77,0.0,623.4,67820.17,13976.96,12412.56,5543.72,31933.24,99753.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,18582,112209.08,3337.38,3784.5,119330.96,22856.33,12424.5,9532.62,44813.45,164144.41 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,1623,71363.71,0.0,920.0,72283.71,14925.54,11512.02,5618.51,32056.07,104339.78 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,28304,76552.58,0.0,619.78,77172.36,15916.11,12340.4,6400.88,34657.39,111829.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,41280,2772.33,0.0,0.0,2772.33,0.0,0.0,219.01,219.01,2991.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",43904,94388.0,16050.45,598.6,111037.05,19461.22,12424.51,9105.26,40990.99,152028.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,46450,40356.01,6111.22,1537.98,48005.21,8721.28,4300.79,795.64,13817.71,61822.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10452,112159.76,43319.45,18088.29,173567.5,24704.18,15052.76,3055.99,42812.93,216380.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,49092,7413.2,0.0,25.46,7438.66,0.0,1965.22,577.35,2542.57,9981.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,25269,76636.97,1371.15,205.0,78213.12,15789.3,11940.69,6254.26,33984.25,112197.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,594,56510.06,4617.29,792.16,61919.51,15687.39,11117.31,4822.29,31626.99,93546.5 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,24243,78318.0,5330.34,20069.03,103717.37,16732.11,9079.44,8417.64,34229.19,137946.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39490,6128.56,0.0,217.37,6345.93,0.0,1647.15,491.31,2138.46,8484.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,51561,87359.01,5382.87,650.09,93391.97,18125.96,12424.52,7636.86,38187.34,131579.31 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,18348,840.0,0.0,0.0,840.0,0.0,50.18,65.06,115.24,955.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,45866,56295.96,0.0,6231.21,62527.17,12399.12,12372.9,4910.47,29682.49,92209.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,10149,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24071,68974.92,26957.56,8720.35,104652.83,21312.67,13592.71,7978.23,42883.61,147536.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7635,881.6,0.0,0.0,881.6,0.0,382.3,68.26,450.56,1332.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,35637,2022.15,0.0,1171.81,3193.96,521.71,465.92,255.77,1243.4,4437.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,50830,85368.03,184.44,1584.0,87136.47,17924.95,12424.5,7174.28,37523.73,124660.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,38923,16114.95,436.41,856.84,17408.2,0.0,4077.92,1400.71,5478.63,22886.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6561,9843.4,0.0,906.27,10749.67,1779.87,4229.11,871.15,6880.13,17629.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",43210,147057.7,0.0,0.0,147057.7,29985.76,12424.49,17550.07,59960.32,207018.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20627,119467.33,49138.94,13108.19,181714.46,24090.21,12424.5,3042.48,39557.19,221271.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42329,7585.33,0.0,0.0,7585.33,0.0,3267.41,619.11,3886.52,11471.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33706,136071.0,0.0,1290.43,137361.43,27433.0,12424.5,10015.91,49873.41,187234.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18491,63659.87,2379.54,1675.36,67714.77,14903.89,12546.95,5154.95,32605.79,100320.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8897,126479.47,3694.28,4949.2,135122.95,25010.72,12424.5,2080.23,39515.45,174638.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,41648,106672.3,12862.96,11034.96,130570.22,22163.98,12424.5,2179.84,36768.32,167338.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45530,11840.0,0.0,0.0,11840.0,0.0,3536.21,901.42,4437.63,16277.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,16378,0.0,0.0,0.0,0.0,0.0,68.5,16.65,85.15,85.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,9377,117193.07,0.0,100.0,117293.07,23590.17,12390.04,9439.66,45419.87,162712.94 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7333,Apprentice Stationary Engineer,38075,59441.72,4102.55,6949.89,70494.16,13324.77,9079.44,5747.97,28152.18,98646.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37385,69768.65,26424.73,550.04,96743.42,19242.11,13749.27,7563.03,40554.41,137297.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,2081,140186.53,12845.8,15794.34,168826.67,28277.49,12424.5,2296.7,42998.69,211825.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",30749,93738.0,0.0,641.63,94379.63,19319.82,12424.5,7636.39,39380.71,133760.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26357,60923.27,14773.01,515.42,76211.7,16868.87,12004.99,5730.4,34604.26,110815.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,44795,16888.81,0.0,0.0,16888.81,0.0,4055.89,1308.98,5364.87,22253.68 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,37194,133087.0,0.0,0.0,133087.0,26783.95,12424.5,10081.43,49289.88,182376.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6839,112170.37,55501.45,17906.77,185578.59,24779.35,15052.76,3111.35,42943.46,228522.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,37001,127745.85,0.0,1110.0,128855.85,25937.5,12424.52,9888.78,48250.8,177106.65 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,51479,14911.0,176.81,0.0,15087.81,3278.93,3822.92,1215.94,8317.79,23405.6 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,2595,60639.19,14514.37,3711.88,78865.44,12920.91,11946.63,5753.12,30620.66,109486.1 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,51842,46685.12,0.0,0.0,46685.12,0.0,5984.79,3620.25,9605.04,56290.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,24684,22317.52,0.0,0.0,22317.52,4902.76,6749.85,1759.27,13411.88,35729.4 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2620,Food Service Mgr Administrator,28523,88368.06,0.0,0.0,88368.06,18213.21,12424.5,15081.51,45719.22,134087.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,47756,69876.0,0.0,2388.08,72264.08,15330.74,6451.19,5846.11,27628.04,99892.12 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,38523,6704.84,0.0,0.0,6704.84,0.0,2466.99,132.45,2599.44,9304.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1437,Shelter Office Asst Supv,1773,55783.27,559.96,2281.32,58624.55,11869.99,11304.57,4840.63,28015.19,86639.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45036,80949.9,2803.34,3171.61,86924.85,16584.79,12424.5,3320.3,32329.59,119254.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2296,153033.95,688.11,38063.06,191785.12,0.0,10513.64,10561.23,21074.87,212859.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30244,109120.48,8048.39,11298.17,128467.04,22746.93,14644.35,2135.39,39526.67,167993.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),29956,4611.6,0.0,0.0,4611.6,0.0,1338.02,357.09,1695.11,6306.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21433,129604.96,33698.33,15418.93,178722.22,28450.88,15052.76,461.35,43964.99,222687.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,36001,67102.01,1334.01,3113.58,71549.6,16479.23,12424.5,5727.69,34631.42,106181.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,33071,137332.19,0.0,0.0,137332.19,27566.63,12263.22,18393.98,58223.83,195556.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,43957,93281.02,0.0,1464.0,94745.02,19527.64,12424.5,7849.69,39801.83,134546.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,6376,61735.02,0.0,624.0,62359.02,12852.62,12424.5,5124.28,30401.4,92760.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,18393,32946.69,0.0,0.0,32946.69,8136.58,7293.4,2592.24,18022.22,50968.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3158,70085.58,57.48,10206.22,80349.28,15866.54,12396.13,6560.92,34823.59,115172.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,43109,175.6,0.0,0.0,175.6,0.0,47.79,13.6,61.39,236.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,30638,8379.0,504.05,837.9,9720.95,1715.28,1433.6,789.45,3938.33,13659.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,20753,80570.0,0.0,624.0,81194.0,16734.65,12424.5,6118.71,35277.86,116471.86 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,9909,78963.06,0.0,348.0,79311.06,16341.28,12424.5,6313.68,35079.46,114390.52 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,9186,8785.38,0.0,0.0,8785.38,0.0,2640.21,681.89,3322.1,12107.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28775,37590.0,12057.43,4139.79,53787.22,9043.35,6690.11,4275.95,20009.41,73796.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,11996,56531.0,0.0,3930.9,60461.9,11780.12,12424.5,4952.62,29157.24,89619.14 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,48868,186119.01,0.0,16558.62,202677.63,37456.67,12424.5,11118.07,60999.24,263676.87 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,13731,9942.7,0.0,0.0,9942.7,2186.4,2532.69,752.34,5471.43,15414.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,24204,117137.58,435.22,5833.96,123406.76,23176.47,12424.5,791.97,36392.94,159799.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28685,56531.0,0.0,1975.95,58506.95,11651.3,12424.5,4799.36,28875.16,87382.11 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,35885,100949.89,0.0,1940.0,102889.89,21151.21,12115.68,7965.03,41231.92,144121.81 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,22137,61631.35,0.0,4630.32,66261.67,13271.13,12403.6,5477.89,31152.62,97414.29 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,22226,8536.33,147.69,3322.42,12006.44,1462.7,1850.23,954.05,4266.98,16273.42 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2453,Supervising Pharmacist,8189,171974.0,0.0,1050.0,173024.0,34610.4,12424.5,10546.99,57581.89,230605.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,5571,63887.03,9319.07,1709.69,74915.79,13508.25,12424.5,6175.47,32108.22,107024.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24136,74551.28,0.0,4075.43,78626.71,12200.76,0.0,7261.94,19462.7,98089.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,1396,86909.03,16605.51,2410.69,105925.23,17340.9,11946.64,8233.55,37521.09,143446.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51558,12443.03,627.83,197.91,13268.77,3031.73,3836.78,944.53,7813.04,21081.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,51322,128914.95,0.0,0.0,128914.95,25940.66,12424.5,9994.86,48360.02,177274.97 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0901,Mayoral Staff XIII,51803,101077.02,0.0,0.0,101077.02,20227.63,10513.04,20226.23,50966.9,152043.92 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,8302,0.0,0.0,913.71,913.71,0.0,68.5,69.9,138.4,1052.11 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,491C,Court Administrative Secretary,15787,85332.0,0.0,5265.0,90597.0,17726.67,12424.5,7318.98,37470.15,128067.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30450,77065.71,35319.44,5662.02,118047.17,16488.22,15196.12,1969.64,33653.98,151701.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,21033,38206.86,0.0,0.0,38206.86,9148.9,11480.7,3012.11,23641.71,61848.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,47154,81214.36,14252.99,10649.94,106117.29,18951.01,12316.96,8415.82,39683.79,145801.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,30163,63102.05,0.0,328.46,63430.51,13073.66,12424.5,5209.8,30707.96,94138.47 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,18070,51427.82,2894.64,1680.85,56003.31,11357.73,10750.36,4299.35,26407.44,82410.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34210,149099.02,0.0,2964.96,152063.98,30561.34,12424.5,10297.94,53283.78,205347.76 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,31390,68004.29,0.0,297.49,68301.78,14289.68,9265.75,5630.7,29186.13,97487.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30765,113233.6,56729.99,19118.87,189082.46,25036.03,15196.12,3227.84,43459.99,232542.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q061,Lieutenant 2,20569,156199.44,0.0,15399.05,171598.49,31461.33,12424.5,2530.66,46416.49,218014.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36841,42037.9,3299.71,994.0,46331.61,8426.28,12424.5,3671.36,24522.14,70853.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,47900,116976.11,0.0,0.0,116976.11,23541.49,12424.51,9555.11,45521.11,162497.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52648,6563.83,0.0,83.17,6647.0,0.0,2156.36,515.81,2672.17,9319.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,1872,59229.0,1355.81,819.96,61404.77,12375.85,12424.5,5032.25,29832.6,91237.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",23999,131577.08,20838.22,17186.58,169601.88,28112.43,15196.12,2836.22,46144.77,215746.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,4314,45836.0,6297.42,3803.12,55936.54,8875.35,6690.11,4438.29,20003.75,75940.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,7728,71628.31,0.0,1088.51,72716.82,14910.01,11961.56,5559.76,32431.33,105148.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46441,123650.42,1810.35,31723.76,157184.53,27706.52,10949.09,5063.73,43719.34,200903.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32398,112159.76,11840.87,12778.14,136778.77,24127.65,15052.76,1896.08,41076.49,177855.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51481,69772.16,25712.57,5182.6,100667.33,20566.09,13751.34,7883.7,42201.13,142868.46 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,47179,65103.8,0.0,0.0,65103.8,13391.24,12424.5,5229.62,31045.36,96149.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,17147,118850.35,0.0,0.0,118850.35,23793.87,11764.31,9751.42,45309.6,164159.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,35097,23771.08,354.68,4106.85,28232.61,5393.26,5275.22,2395.54,13064.02,41296.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10660,6544.35,0.0,218.16,6762.51,0.0,501.76,517.44,1019.2,7781.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,183,78871.03,0.0,0.0,78871.03,17304.3,6212.25,10152.12,33668.67,112539.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,31433,154758.21,0.0,0.0,154758.21,31111.27,12424.52,10339.44,53875.23,208633.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22397,126874.63,257.97,11767.29,138899.89,26502.62,11253.73,10096.75,47853.1,186752.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,16876,12758.55,0.0,0.0,12758.55,3247.68,0.0,968.76,4216.44,16974.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,18016,50628.44,12.08,1400.0,52040.52,12419.51,12361.78,4197.88,28979.17,81019.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,38908,76061.02,0.0,0.0,76061.02,15660.91,12424.51,6123.55,34208.97,110269.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51193,13730.26,0.0,0.0,13730.26,504.35,5953.91,1116.26,7574.52,21304.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7331,94262.96,1015.13,1200.0,96478.09,19249.74,7858.5,7862.85,34971.09,131449.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,11200,7053.76,0.0,156.9,7210.66,0.0,2153.92,559.34,2713.26,9923.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12481,2795.22,0.0,79.8,2875.02,0.0,1173.75,230.86,1404.61,4279.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27943,1392.3,0.0,33.58,1425.88,0.0,752.64,110.39,863.03,2288.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17001,5219.44,0.0,0.0,5219.44,0.0,1361.91,404.82,1766.73,6986.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50047,4825.67,0.0,0.0,4825.67,0.0,2092.58,373.6,2466.18,7291.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",38618,178604.32,0.0,26828.59,205432.91,40366.61,15052.76,3363.27,58782.64,264215.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,53207,7724.0,0.0,0.0,7724.0,1732.5,955.73,609.3,3297.53,11021.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,39018,3070.65,0.0,52.41,3123.06,0.0,1012.48,242.28,1254.76,4377.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,9969,199573.98,0.0,0.0,199573.98,40123.69,12424.5,28680.07,81228.26,280802.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,48359,58139.92,57.31,5217.44,63414.67,12625.0,12197.4,4991.12,29813.52,93228.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25676,64327.88,23795.57,4280.42,92403.87,18799.72,12676.58,7143.48,38619.78,131023.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33027,98387.78,12962.21,12326.55,123676.54,20748.54,13198.88,2107.5,36054.92,159731.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8159,Child Support Officer III,46267,93281.05,0.0,0.0,93281.05,19225.77,12424.5,7686.7,39336.97,132618.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48323,67230.87,3225.97,1103.01,71559.85,18730.95,13252.52,5576.94,37560.41,109120.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5681,65308.98,15404.49,4464.15,85177.62,19115.68,12872.09,6654.14,38641.91,123819.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,48926,130845.88,59132.82,16362.6,206341.3,28931.25,15196.12,3506.68,47634.05,253975.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,22546,77589.13,23077.58,414.04,101080.75,16036.19,12089.91,7835.65,35961.75,137042.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,29520,92282.07,0.0,0.0,92282.07,19019.53,12424.5,7576.42,39020.45,131302.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,8487,113994.01,0.0,0.0,113994.01,23175.48,12424.51,9284.78,44884.77,158878.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17588,119005.52,1235.88,5299.9,125541.3,23538.93,12376.71,1879.45,37795.09,163336.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8291,57084.3,2392.68,1213.63,60690.61,15558.38,13053.61,4661.47,33273.46,93964.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,21396,51350.6,2407.88,5415.89,59174.37,10482.38,6212.25,4747.86,21442.49,80616.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21025,38282.35,0.0,1896.03,40178.38,11144.02,0.0,5415.15,16559.17,56737.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27454,70094.36,15407.39,5800.02,91301.77,20822.24,13816.72,6881.52,41520.48,132822.25 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,48074,48950.45,6487.62,3741.86,59179.93,10309.6,8934.29,4891.44,24135.33,83315.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,10805,6084.03,0.0,68.57,6152.6,0.0,1802.45,506.25,2308.7,8461.3 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,40312,97764.12,5047.23,6518.99,109330.34,25342.48,12424.5,1601.65,39368.63,148698.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,13094,102130.47,0.0,14927.86,117058.33,20948.63,9079.44,1950.82,31978.89,149037.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,40111,51518.53,0.0,360.59,51879.12,10615.08,11231.33,4128.03,25974.44,77853.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,6296,14843.44,0.0,0.0,14843.44,0.0,1276.79,1151.52,2428.31,17271.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,40349,116976.02,0.0,0.0,116976.02,23541.49,12424.5,9859.21,45825.2,162801.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,26980,78905.37,3342.93,5754.1,88002.4,16476.63,11512.56,1466.56,29455.75,117458.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,138,115300.5,0.0,0.0,115300.5,23204.36,12424.47,9763.67,45392.5,160693.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41812,119467.52,36101.31,13204.3,168773.13,23621.02,12424.5,2876.9,38922.42,207695.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,710,44859.09,802.9,0.0,45661.99,10740.39,11840.67,3496.76,26077.82,71739.81 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,3624,2376.0,0.0,22.18,2398.18,618.73,716.79,198.49,1534.01,3932.19 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,45045,28680.0,0.0,0.0,28680.0,6432.9,4778.65,2295.04,13506.59,42186.59 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,28453,85218.07,8557.69,6284.23,100059.99,18221.67,11295.54,8201.96,37719.17,137779.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50378,73093.95,6196.53,520.0,79810.48,15092.42,11779.37,6610.18,33481.97,113292.45 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,1277,97997.5,0.0,0.0,97997.5,20171.6,12424.5,7901.2,40497.3,138494.8 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,33548,87713.0,0.0,8021.68,95734.68,19730.7,12424.5,7841.16,39996.36,135731.04 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,40348,84973.01,0.0,0.0,84973.01,17513.31,12424.5,6997.11,36934.92,121907.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24299,68593.48,4.84,17.12,68615.44,14048.76,10532.45,3883.27,28464.48,97079.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,31261,37456.41,0.0,625.64,38082.05,8349.53,7777.27,2919.72,19046.52,57128.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,8567,100554.03,0.0,3569.45,104123.48,21449.78,12424.51,8523.47,42397.76,146521.24 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,24915,176944.0,0.0,0.0,176944.0,35580.26,12424.5,25616.6,73621.36,250565.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,21774,50837.5,0.0,0.0,50837.5,10456.04,8123.71,4073.14,22652.89,73490.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,12361,181133.86,0.0,8727.46,189861.32,35935.53,12424.5,3181.57,51541.6,241402.92 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,25497,81116.01,0.0,0.0,81116.01,16718.53,12424.5,6614.47,35757.5,116873.51 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,45103,47810.4,5805.54,898.6,54514.54,5879.08,10763.92,4312.5,20955.5,75470.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21466,119467.49,783.69,6222.82,126474.0,23621.03,12424.5,2152.85,38198.38,164672.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51646,65947.69,8489.56,1724.51,76161.76,18450.35,12993.64,5406.96,36850.95,113012.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42004,7605.05,0.0,289.1,7894.15,0.0,3285.32,650.29,3935.61,11829.76 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,33520,199320.62,0.0,0.0,199320.62,40015.42,12424.5,25310.47,77750.39,277071.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1650,Accountant I,50335,73250.0,0.0,0.0,73250.0,15097.18,12424.5,5795.33,33317.01,106567.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20134,63453.85,5594.88,2603.68,71652.41,18024.91,12501.03,5266.97,35792.91,107445.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45533,21570.0,694.28,2065.3,24329.58,4662.75,2389.33,404.79,7456.87,31786.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1761,40513.51,0.0,7575.32,48088.83,2819.35,0.0,4471.46,7290.81,55379.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51131,112170.35,32892.59,10672.93,155735.87,23064.35,15052.76,2643.94,40761.05,196496.92 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8204,Institutional Police Officer,48180,73583.01,31684.79,13908.46,119176.26,19700.91,12424.5,2321.26,34446.67,153622.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,50828,85268.01,5465.56,14938.7,105672.27,17568.71,12424.49,8434.74,38427.94,144100.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,8669,27479.5,237.17,0.0,27716.67,6165.8,6690.12,2228.25,15084.17,42800.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,46302,26276.62,0.0,543.06,26819.68,5873.94,5205.93,2299.99,13379.86,40199.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,41756,83146.17,42453.22,6896.7,132496.09,17884.25,12159.89,9936.9,39981.04,172477.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,27907,67499.9,0.0,0.0,67499.9,13467.01,9042.41,5262.06,27771.48,95271.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,10760,34537.22,0.0,0.0,34537.22,6567.86,6430.1,2779.35,15777.31,50314.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",5610,56670.59,0.0,0.0,56670.59,10274.38,4736.85,7923.43,22934.66,79605.25 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,19574,88465.81,0.0,4048.5,92514.31,18375.94,12424.5,7684.62,38485.06,130999.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,21970,3688.45,0.0,0.0,3688.45,0.0,669.02,285.85,954.87,4643.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27582,11790.93,0.0,1671.19,13462.12,10065.77,0.0,4014.33,14080.1,27542.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15727,18727.3,0.0,0.0,18727.3,3595.98,2867.19,1445.08,7908.25,26635.55 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,297,21889.6,0.0,0.0,21889.6,4073.66,2676.04,3331.34,10081.04,31970.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,45317,18822.51,0.0,0.0,18822.51,4139.06,5017.58,1521.71,10678.35,29500.86 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,3192,66954.94,7275.93,8499.86,82730.73,14813.09,12369.25,6573.36,33755.7,116486.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47063,14105.6,0.0,870.72,14976.32,1988.61,6116.67,1204.03,9309.31,24285.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3522,Senior Museum Preparator,12972,15202.5,148.88,390.0,15741.38,3343.05,3583.99,1174.89,8101.93,23843.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,36481,2269.09,0.0,0.0,2269.09,0.0,821.33,183.15,1004.48,3273.57 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,19447,36930.37,0.0,456.3,37386.67,7760.87,7042.54,3052.27,17855.68,55242.35 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25315,28031.51,793.44,713.44,29538.39,1402.23,7472.63,2294.98,11169.84,40708.23 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),43923,184289.0,0.0,5248.28,189537.28,38144.36,12424.5,10942.04,61510.9,251048.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,42903,33739.64,752.07,5045.88,39537.59,5994.03,3345.06,664.44,10003.53,49541.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44002,0.0,0.0,2091.83,2091.83,0.0,22.84,30.33,53.17,2145.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",27781,93281.01,0.0,1689.0,94970.01,19574.07,12424.5,7872.06,39870.63,134840.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,41007,148149.0,0.0,0.0,148149.0,29795.56,12424.5,17546.56,59766.62,207915.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,33757,21239.0,798.29,969.91,23007.2,3841.46,6212.25,2442.67,12496.38,35503.58 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",51318,26718.38,3292.19,1390.82,31401.39,0.0,5535.77,2434.47,7970.24,39371.63 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,8928,182203.21,0.0,0.0,182203.21,36608.82,12424.5,19363.9,68397.22,250600.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,20393,80953.8,11287.1,4977.24,97218.14,16760.25,12424.5,1809.14,30993.89,128212.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,19370,119465.58,21370.7,4741.78,145578.06,23627.23,12424.5,2429.15,38480.88,184058.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,30637,100459.48,0.0,0.0,100459.48,20676.45,12233.36,7890.1,40799.91,141259.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36060,17966.97,0.0,710.61,18677.58,770.72,7732.47,1508.57,10011.76,28689.34 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,41616,114268.05,0.0,0.0,114268.05,26005.28,12424.5,1943.81,40373.59,154641.64 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,44315,56163.04,14643.11,9569.46,80375.61,12508.69,7433.56,6620.92,26563.17,106938.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1592,1317.62,0.0,7.51,1325.13,0.0,703.84,102.59,806.43,2131.56 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,14458,214076.0,0.0,0.0,214076.0,42933.4,12424.5,18712.66,74070.56,288146.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11882,101390.06,40986.27,6276.42,148652.75,21711.14,15020.86,2579.15,39311.15,187963.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,704,11784.0,0.0,240.0,12024.0,2697.0,1911.46,988.33,5596.79,17620.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52844,698.26,0.0,26.95,725.21,0.0,340.48,56.29,396.77,1121.98 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,24793,67261.04,0.0,1040.0,68301.04,14076.22,12424.5,5455.75,31956.47,100257.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,6356,117855.14,0.0,0.0,117855.14,23708.32,12424.5,9622.08,45754.9,163610.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11229,7543.8,393.89,31.73,7969.42,1790.24,2273.81,604.39,4668.44,12637.86 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),26236,184289.02,0.0,5248.28,189537.3,38144.36,12424.5,11043.69,61612.55,251149.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",42694,144029.87,0.0,11638.01,155667.88,30487.91,12340.86,2598.3,45427.07,201094.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2679,116855.11,14908.11,5525.03,137288.25,23124.12,12394.64,2291.7,37810.46,175098.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,51894,15626.0,0.0,0.0,15626.0,3436.13,3345.06,1263.01,8044.2,23670.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,47834,68122.92,36.83,40.0,68199.75,14027.71,10979.68,5439.49,30446.88,98646.63 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3549,Arts Program Assistant,21929,60760.29,0.0,0.0,60760.29,12526.32,12356.64,4944.83,29827.79,90588.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,12659,7890.3,0.0,87.09,7977.39,2047.57,2380.36,642.6,5070.53,13047.92 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,5380,396.0,18.56,0.0,414.56,0.0,95.58,32.18,127.76,542.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32004,10175.37,0.0,0.0,10175.37,0.0,4363.51,835.07,5198.58,15373.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,30581,88831.04,1420.11,13684.85,103936.0,19871.8,12424.5,8312.04,40608.34,144544.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25773,77856.3,3007.7,2462.46,83326.46,15750.04,11946.64,4383.52,32080.2,115406.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,35100,73406.0,1744.54,2544.2,77694.74,15268.83,12424.5,6160.21,33853.54,111548.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,18589,135421.04,0.0,0.0,135421.04,27263.37,12424.5,10089.49,49777.36,185198.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",36011,8493.05,0.0,0.0,8493.05,1673.69,1132.72,753.62,3560.03,12053.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,17673,173335.06,0.0,0.0,173335.06,34823.63,12424.5,18013.54,65261.67,238596.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6339,3085.73,0.0,274.11,3359.84,1033.7,252.37,1328.42,2614.49,5974.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15576,61771.87,13891.2,1734.13,77397.2,17314.63,12165.14,6038.74,35518.51,112915.71 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,7945,17598.05,96.0,0.0,17694.05,0.0,4200.74,1371.87,5572.61,23266.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15258,63600.9,841.19,88.03,64530.12,12517.27,9748.46,4539.38,26805.11,91335.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,12907,85642.62,0.0,0.0,85642.62,17638.21,11134.27,6891.66,35664.14,121306.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,8459,24162.93,0.0,0.0,24162.93,0.0,4956.66,1909.71,6866.37,31029.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2450,62949.84,4425.8,5489.08,72864.72,13879.73,11134.27,5945.42,30959.42,103824.14 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,94,45927.0,0.0,0.0,45927.0,0.0,5734.39,3589.08,9323.47,55250.47 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,20422,50905.12,0.0,1027.89,51933.01,11418.03,6212.25,7941.02,25571.3,77504.31 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,52434,102144.37,0.0,0.0,102144.37,23264.88,11433.58,1736.41,36434.87,138579.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44679,44652.01,27166.9,5877.31,77696.22,11884.48,5734.39,1316.49,18935.36,96631.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,20383,98830.82,19241.0,8936.53,127008.35,20518.09,12424.5,2119.96,35062.55,162070.9 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2453,Supervising Pharmacist,24016,174440.83,0.0,1350.0,175790.83,35150.49,12424.5,10641.01,58216.0,234006.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,3462,83031.0,21372.8,7067.53,111471.33,17077.63,9079.41,7253.64,33410.68,144882.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,32450,21196.0,0.0,0.0,21196.0,3944.61,4300.79,1657.97,9903.37,31099.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,36179,73406.0,4524.03,8688.18,86618.21,16218.9,12424.5,6850.67,35494.07,122112.28 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,14345,138076.33,0.0,0.0,138076.33,27768.91,12424.5,17412.37,57605.78,195682.11 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),38726,184289.14,0.0,1500.0,185789.14,37388.92,12424.5,10937.52,60750.94,246540.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H050,Asst Chf Of Dept (Fire Dept),33312,206434.7,96391.83,20743.44,323569.97,44672.18,15052.77,836.55,60561.5,384131.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33595,2367.07,0.0,0.0,2367.07,0.0,1154.22,183.7,1337.92,3704.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,34459,75709.16,0.0,821.0,76530.16,15773.75,11480.71,6117.34,33371.8,109901.96 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,47393,109969.6,0.0,58786.23,168755.83,26713.2,6498.97,1607.96,34820.13,203575.96 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,15516,165729.37,818.5,1785.0,168332.87,33251.58,9967.08,10508.28,53726.94,222059.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,104.0,"Sheet Metal Workers, Local 104",9300,Port Operation,9345,Sheet Metal Supervisor 1,36495,113369.03,0.0,0.0,113369.03,22816.0,12424.5,9290.1,44530.6,157899.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,21688,83699.03,753.96,744.62,85197.61,17250.56,12424.5,6996.0,36671.06,121868.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21764,27089.01,1908.7,1035.22,30032.93,7043.63,8431.16,2314.07,17788.86,47821.79 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),1726,184289.04,0.0,5248.28,189537.32,38144.36,12424.5,11054.61,61623.47,251160.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7235,Transit Power Line Sprv1,13777,111403.0,72640.87,2637.72,186681.59,22724.13,12424.5,10914.53,46063.16,232744.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,5553,11153.51,0.0,40.0,11193.51,2887.93,2490.04,901.77,6279.74,17473.25 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,4978,24224.0,0.0,3000.0,27224.0,5326.89,5734.39,2242.25,13303.53,40527.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,28581,152544.93,0.0,0.0,152544.93,30699.85,12424.5,17659.7,60784.05,213328.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25723,60879.97,7243.06,1049.89,69172.92,16944.11,11995.49,5278.67,34218.27,103391.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9575,29796.8,4613.4,386.11,34796.31,7670.71,9288.28,2658.51,19617.5,54413.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,12.0,"Carpet, Linoleum and Soft Tile Workers, Local 12",7300,Journeyman Trade,7393,Soft Floor Coverer,15951,83849.3,0.0,393.91,84243.21,17393.35,12021.3,6922.37,36337.02,120580.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,36098,61956.63,0.0,889.23,62845.86,13628.8,8171.5,5177.7,26978.0,89823.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21247,113233.6,23433.76,18323.08,154990.44,25036.03,15196.12,2631.95,42864.1,197854.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1311,52541.71,2031.21,592.2,55165.12,11898.36,10341.25,4170.02,26409.63,81574.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38909,17283.97,3094.37,375.47,20753.81,4231.28,5337.7,1603.52,11172.5,31926.31 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,13913,787.31,196.83,0.0,984.14,0.0,232.96,76.38,309.34,1293.48 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7257,Communication Line Sprv1,33985,84126.0,35853.73,102.15,120081.88,17775.33,10035.18,9442.06,37252.57,157334.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29981,77689.45,3151.65,10263.88,91104.98,13912.5,8226.46,6956.16,29095.12,120200.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31002,129874.78,31565.66,9029.82,170470.26,27086.41,15052.76,2085.36,44224.53,214694.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2719,Janitorial Svcs Asst Sprv,43351,74326.0,106.54,2584.5,77017.04,15318.92,12424.5,6180.17,33923.59,110940.63 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,41073,16989.02,0.0,0.0,16989.02,3735.9,3345.06,1351.24,8432.2,25421.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",5884,10624.56,0.0,0.0,10624.56,0.0,2529.71,824.25,3353.96,13978.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,45261,158707.01,0.0,0.0,158707.01,31940.4,12424.5,18782.0,63146.9,221853.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,35730,56276.0,0.0,784.0,57060.0,12772.81,12424.5,4728.73,29926.04,86986.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,17863,60636.7,3072.75,3214.1,66923.55,12971.58,11946.63,5144.59,30062.8,96986.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25809,97764.05,2644.65,8000.74,108409.44,25734.54,12424.5,1766.41,39925.45,148334.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,15577,64612.85,0.0,584.94,65197.79,13374.22,11790.14,5125.73,30290.09,95487.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,52837,52747.49,0.0,0.0,52747.49,11755.33,12356.99,4239.16,28351.48,81098.97 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,6728,99654.03,0.0,0.0,99654.03,22731.78,12424.5,1651.67,36807.95,136461.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4599,118951.23,0.0,6059.26,125010.49,0.0,0.0,9485.42,9485.42,134495.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,1895,63102.0,0.0,24.59,63126.59,13010.49,12424.5,5235.27,30670.26,93796.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,14283,81942.0,19055.6,4916.81,105914.41,17767.79,12424.49,8605.98,38798.26,144712.67 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,47679,78963.03,0.0,624.0,79587.03,16403.15,12424.5,6528.46,35356.11,114943.14 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,5463,24063.0,0.0,0.0,24063.0,4478.12,4300.79,1899.69,10678.6,34741.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,5162,82883.0,2605.11,1329.45,86817.56,17348.73,12424.5,6894.06,36667.29,123484.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23801,6206.77,1393.57,270.62,7870.96,1759.08,1959.25,571.64,4289.97,12160.93 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,1145,54124.0,0.0,624.0,54748.0,12250.24,12424.5,4537.52,29212.26,83960.26 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,32111,98962.61,0.0,4948.2,103910.81,20880.7,5561.16,8310.39,34752.25,138663.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20924,42433.78,965.89,19.92,43419.59,10196.46,12137.78,3533.11,25867.35,69286.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10158,117135.3,25078.15,25008.9,167222.35,23184.68,12424.5,2827.25,38436.43,205658.78 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,49853,21657.5,0.0,0.0,21657.5,4030.45,2962.76,1267.21,8260.42,29917.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,5146,140462.23,70330.57,15521.84,226314.64,27774.04,12424.5,3805.48,44004.02,270318.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36422,113233.6,1988.22,19560.91,134782.73,25036.03,15196.12,2249.6,42481.75,177264.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39655,125.72,0.0,0.0,125.72,14.47,0.0,324.87,339.34,465.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21073,112113.63,10763.17,6241.81,129118.61,22229.29,12361.79,2190.2,36781.28,165899.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,3478,136316.94,5155.53,24511.31,165983.78,26926.6,12424.5,2827.64,42178.74,208162.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,51064,42643.36,0.0,0.0,42643.36,8466.86,5354.13,3548.14,17369.13,60012.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",27811,93964.34,1108.5,1409.74,96482.58,19644.23,12424.5,7750.64,39819.37,136301.95 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,37962,20709.4,0.0,0.0,20709.4,0.0,0.0,1638.62,1638.62,22348.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,8504,48321.11,234.1,1599.58,50154.79,10588.31,9455.76,3949.01,23993.08,74147.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,42911,34197.05,9924.71,1387.06,45508.82,2349.0,6822.24,3602.45,12773.69,58282.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,4863,52128.0,1567.74,1572.29,55268.03,12503.65,12328.92,4388.79,29221.36,84489.39 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,36345,105813.87,0.0,3915.0,109728.87,21577.85,6493.0,8774.94,36845.79,146574.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43204,3093.77,0.0,66.02,3159.79,0.0,1008.01,245.25,1253.26,4413.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49070,138645.01,133.95,38044.3,176823.26,33480.59,12274.04,9357.8,55112.43,231935.69 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,50769,7253.01,0.0,27.39,7280.4,1600.98,2150.39,583.98,4335.35,11615.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,1360,127129.15,0.0,5899.64,133028.79,26787.33,12424.5,17323.96,56535.79,189564.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1002,60181.2,7453.37,1935.72,69570.29,12678.73,12424.5,5609.6,30712.83,100283.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",4058,6548.2,0.0,0.0,6548.2,0.0,1385.8,508.25,1894.05,8442.25 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9190,97505.45,7546.19,10177.96,115229.6,26197.48,12391.05,1906.91,40495.44,155725.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21865,113233.59,86661.81,18026.71,217922.11,24937.46,15196.13,3664.72,43798.31,261720.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,4746,105996.58,9822.35,5794.35,121613.28,22060.44,12424.5,2029.37,36514.31,158127.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,40626,14747.96,0.0,0.0,14747.96,0.0,4820.47,1186.94,6007.41,20755.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51829,99703.59,13729.22,12285.55,125718.36,20664.3,12364.77,2098.54,35127.61,160845.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34500,50316.31,0.0,0.0,50316.31,0.0,4021.48,3902.26,7923.74,58240.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26109,7365.45,397.79,37.58,7800.82,1749.43,2220.04,598.43,4567.9,12368.72 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,34916,101922.03,0.0,0.0,101922.03,21004.51,12412.61,7850.79,41267.91,143189.94 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,27021,74332.01,0.0,5055.0,79387.01,15456.57,12424.5,6521.07,34402.14,113789.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,14795,138624.7,9245.8,13415.5,161286.0,27434.17,12424.5,1620.56,41479.23,202765.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,30803,47176.8,4415.0,10192.53,61784.33,10454.22,7120.19,4910.11,22484.52,84268.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,44499,124009.24,0.0,0.0,124009.24,24956.86,12424.5,9847.91,47229.27,171238.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34497,47802.2,1945.49,1760.82,51508.51,13520.69,9428.54,3959.1,26908.33,78416.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24163,37520.75,0.0,1528.18,39048.93,7079.57,3703.45,2962.49,13745.51,52794.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31522,113233.6,9244.58,14018.22,136496.4,24067.54,15196.12,2269.96,41533.62,178030.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7484,Sr Power Generation Tech,51301,109220.14,22755.33,5607.63,137583.1,22813.04,12125.84,10070.55,45009.43,182592.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50850,80957.68,6664.76,8256.69,95879.13,16834.03,12424.5,1597.13,30855.66,126734.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14453,112159.76,55803.75,11863.25,179826.76,23388.64,15052.76,3055.62,41497.02,221323.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,1244,56847.31,0.0,659.07,57506.38,11807.42,11921.79,4775.88,28505.09,86011.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5336,49903.85,7342.35,4762.44,62008.64,11674.19,11342.73,4946.97,27963.89,89972.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,36419,87713.0,0.0,0.0,87713.0,18078.17,12424.5,6992.71,37495.38,125208.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,45635,79562.21,0.0,0.0,79562.21,16401.23,12424.5,6349.73,35175.46,114737.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,48333,53757.42,2301.05,0.0,56058.47,12889.82,12424.5,4486.26,29800.58,85859.05 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35109,725.69,0.0,735.28,1460.97,187.23,334.51,112.43,634.17,2095.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,51502,510.13,0.0,0.0,510.13,0.0,164.27,39.6,203.87,714.0 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,24303,72618.23,0.0,0.0,72618.23,14949.56,12424.5,5774.58,33148.64,105766.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,7921,79400.71,10942.52,3597.21,93940.44,17002.94,12412.55,7656.93,37072.42,131012.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,52228,30050.0,9157.82,240.0,39447.82,6794.0,4778.65,3225.88,14798.53,54246.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,4584,49316.6,0.0,2518.8,51835.4,10501.02,8143.13,4110.73,22754.88,74590.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,52810,78963.06,0.0,1241.86,80204.92,16546.38,12424.5,6648.18,35619.06,115823.98 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,33539,22351.0,209.54,0.0,22560.54,5013.33,3345.06,1777.85,10136.24,32696.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8763,106077.73,2093.63,26747.68,134919.04,24943.37,9661.43,10014.47,44619.27,179538.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,4045,36475.9,800.7,131.37,37407.97,6163.75,10465.25,3026.05,19655.05,57063.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,22495,97391.44,0.0,1489.86,98881.3,20375.82,12420.31,8197.66,40993.79,139875.09 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,30753,51626.8,0.0,0.0,51626.8,12380.99,12424.5,4153.86,28959.35,80586.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,34126,58320.0,0.0,0.0,58320.0,12888.12,7167.99,4763.6,24819.71,83139.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50468,9723.71,462.52,43.94,10230.17,2332.15,2973.99,773.57,6079.71,16309.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,19570,6338.39,0.0,0.0,6338.39,1421.69,1432.1,526.01,3379.8,9718.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,33930,158349.48,14725.66,17281.12,190356.26,31946.59,12424.5,3199.33,47570.42,237926.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,20577,102019.04,0.0,0.0,102019.04,21037.44,12424.5,8054.11,41516.05,143535.09 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,4642,29460.01,0.0,200.0,29660.01,6652.75,4778.65,2367.86,13799.26,43459.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,47073,139267.61,31801.68,5046.93,176116.22,27531.06,12424.5,2994.27,42949.83,219066.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,44632,55092.24,0.0,0.0,55092.24,12315.28,12424.5,4453.86,29193.64,84285.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15778,41425.75,0.0,0.0,41425.75,0.0,0.0,3276.44,3276.44,44702.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,37964,138629.28,49502.04,5299.05,193430.37,27417.19,12424.5,3288.1,43129.79,236560.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,17055,61735.01,0.0,624.0,62359.01,12850.34,12424.5,5105.96,30380.8,92739.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,22702,65130.34,0.0,1624.0,66754.34,13742.51,12424.5,5235.05,31402.06,98156.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,2906,68067.1,0.0,624.0,68691.1,14157.68,12424.51,5671.13,32253.32,100944.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,1905,9816.0,1081.29,368.1,11265.39,1826.76,1911.46,864.36,4602.58,15867.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42621,64024.18,500.88,1768.17,66293.23,18012.76,12617.14,5154.35,35784.25,102077.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50473,117753.25,0.0,15814.08,133567.33,0.0,10231.58,9582.24,19813.82,153381.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2618,Food Service Supervisor,20731,68784.76,3527.56,6112.44,78424.76,14681.63,12409.57,6422.78,33513.98,111938.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44245,146782.4,71.24,31834.71,178688.35,35851.89,12233.36,5098.31,53183.56,231871.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5281,97760.26,25910.57,12091.21,135762.04,26683.76,12424.5,2264.91,41373.17,177135.21 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,27735,3101.66,0.0,0.0,3101.66,0.0,979.62,240.13,1219.75,4321.41 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,29950,90801.31,30317.0,9312.92,130431.23,19597.7,12412.56,9888.34,41898.6,172329.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,24212,94039.14,0.0,1904.2,95943.34,19780.48,12472.29,7927.8,40180.57,136123.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,43489,27125.0,41.81,0.0,27166.81,5964.81,5734.38,2105.57,13804.76,40971.57 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,36850,84668.63,3577.35,11537.4,99783.38,18926.36,12376.71,8185.11,39488.18,139271.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3976,0.0,0.0,877.19,877.19,0.0,68.5,67.11,135.61,1012.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,41709,81941.6,0.0,816.0,82757.6,17057.28,12424.44,7337.87,36819.59,119577.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,27713,6190.16,0.0,89.86,6280.02,926.5,448.0,220.56,1595.06,7875.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,35531,79942.31,16134.92,4271.14,100348.37,17116.35,12424.5,7857.43,37398.28,137746.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,4132,4882.0,0.0,0.0,4882.0,885.11,477.86,377.08,1740.05,6622.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,20889,71311.02,4254.99,624.0,76190.01,14826.41,12424.5,6048.79,33299.7,109489.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,14119,66961.81,103.08,1720.45,68785.34,13873.95,11288.86,5358.54,30521.35,99306.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49311,4103.68,0.0,7.51,4111.19,0.0,2060.8,318.77,2379.57,6490.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23288,23822.01,0.0,4543.3,28365.31,0.0,2024.12,2198.53,4222.65,32587.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41904,66909.71,5872.47,2249.16,75031.34,18945.62,13183.23,5644.67,37773.52,112804.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,4903,47502.69,0.0,40.0,47542.69,9615.78,9550.87,3915.26,23081.91,70624.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37444,67172.54,13381.7,2885.73,83439.97,19161.72,13234.12,6171.82,38567.66,122007.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33701,111660.44,18439.74,17859.44,147959.62,23835.35,14984.01,2522.97,41342.33,189301.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2594,67662.62,3740.41,2678.34,74081.37,19293.74,13333.04,5650.02,38276.8,112358.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,3035,31305.0,0.0,14905.25,46210.25,5553.18,2389.33,742.09,8684.6,54894.85 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,51863,237.2,0.0,0.0,237.2,53.2,47.79,19.47,120.46,357.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4644,62461.11,2477.55,1560.0,66498.66,13164.57,12424.5,5225.63,30814.7,97313.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34898,1429.62,0.0,0.0,1429.62,0.0,600.31,108.71,709.02,2138.64 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,28752,60248.02,0.0,0.0,60248.02,12417.39,12424.5,4703.64,29545.53,89793.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,19454,53586.0,0.0,0.0,53586.0,11658.73,10513.04,4272.26,26444.03,80030.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45059,119467.38,673.02,4875.97,125016.37,23620.93,12424.5,1147.73,37193.16,162209.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3312,1874.15,0.0,0.0,1874.15,0.0,786.99,145.46,932.45,2806.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32044,119455.91,6569.93,7762.93,133788.77,23662.84,12424.5,2248.14,38335.48,172124.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6692,124594.06,14618.11,9983.55,149195.72,25147.78,12424.5,2531.51,40103.79,189299.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,41350,86630.94,0.0,0.0,86630.94,17822.65,11880.93,6781.77,36485.35,123116.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,30608,67353.75,0.0,20626.62,87980.37,15253.0,5819.21,7101.07,28173.28,116153.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,46079,61172.5,1488.47,0.0,62660.97,12601.49,12424.03,5046.7,30072.22,92733.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37259,66102.02,1051.39,10.0,67163.41,13625.92,12424.52,5651.63,31702.07,98865.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40333,73360.12,15650.21,7470.49,96480.82,16108.73,15196.11,1597.11,32901.95,129382.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,21512,65994.0,4826.0,11193.36,82013.36,20184.37,12424.5,6656.03,39264.9,121278.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,50267,84239.11,0.0,0.0,84239.11,17364.96,12424.5,6854.8,36644.26,120883.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22582,3385.8,0.0,289.21,3675.01,0.0,921.38,284.51,1205.89,4880.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,34081,87713.04,0.0,5138.79,92851.83,18078.18,12424.5,7181.84,37684.52,130536.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,34769,55495.02,0.0,0.0,55495.02,10715.69,7167.98,4483.97,22367.64,77862.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,21704,83148.07,0.0,0.0,83148.07,17137.11,12424.51,6777.8,36339.42,119487.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,9326,97934.04,0.0,624.0,98558.04,20313.54,12424.5,7532.91,40270.95,138828.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,35833,143188.0,0.0,0.0,143188.0,28816.76,12424.5,10202.0,51443.26,194631.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,28158,119463.83,4044.59,2301.57,125809.99,23633.49,12424.5,2141.55,38199.54,164009.53 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,17864,115541.02,0.0,0.0,115541.02,23248.39,12424.51,9147.5,44820.4,160361.42 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,36696,123670.8,0.0,0.0,123670.8,25613.69,9371.42,27409.25,62394.36,186065.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,32716,0.0,0.0,655.87,655.87,0.0,68.5,55.33,123.83,779.7 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,24330,44931.6,0.0,0.0,44931.6,9412.69,8290.96,3768.98,21472.63,66404.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,6375,31731.6,1924.65,14911.54,48567.79,5634.02,2867.19,800.24,9301.45,57869.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34710,8468.2,0.0,0.0,8468.2,0.0,3652.68,694.86,4347.54,12815.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,17253,43303.49,8487.09,15445.52,67236.1,2463.46,2977.93,4923.39,10364.78,77600.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8080,54944.66,19055.65,984.34,74984.65,12954.77,10827.48,6107.35,29889.6,104874.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,17262,83463.67,0.0,635.39,84099.06,17218.01,11062.58,6930.18,35210.77,119309.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40495,113233.64,36760.72,18250.54,168244.9,24929.25,15196.12,2857.1,42982.47,211227.37 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",20989,198139.02,0.0,1500.0,199639.02,40176.58,12424.5,11220.16,63821.24,263460.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,21078,187169.02,0.0,250.0,187419.02,37667.93,12424.5,10912.12,61004.55,248423.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5737,19961.29,0.0,0.0,19961.29,1248.71,8609.28,1622.45,11480.44,31441.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,34277,57664.64,211.87,1717.51,59594.02,12387.88,10937.14,4555.08,27880.1,87474.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,9051,138637.95,408.3,2830.04,141876.29,27385.65,12424.5,2526.78,42336.93,184213.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20904,57730.06,2113.54,651.96,60495.56,15854.57,11370.57,4566.26,31791.4,92286.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6357,42779.2,0.0,5936.08,48715.28,10885.92,11420.99,3833.62,26140.53,74855.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41600,66381.53,9157.61,3599.12,79138.26,19242.2,13085.63,5561.33,37889.16,117027.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5305,Materials Testing Technician,42849,74326.01,0.0,0.0,74326.01,15318.92,12424.54,5977.15,33720.61,108046.62 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,4857,7114.4,0.0,112.92,7227.32,1589.27,2108.58,580.04,4277.89,11505.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,12303,221381.68,1848.51,8327.86,231558.05,46216.59,11164.13,11680.63,69061.35,300619.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,40424,140127.07,35151.83,27765.51,203044.41,27656.1,12424.5,3408.4,43489.0,246533.41 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,42719,75259.46,0.0,1440.65,76700.11,15513.69,12424.5,6082.0,34020.19,110720.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31794,30109.5,0.0,0.0,30109.5,7205.9,11990.24,2430.26,21626.4,51735.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33753,12415.0,0.0,912.67,13327.67,2469.54,2389.33,1193.15,6052.02,19379.69 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,21270,62255.16,0.0,0.0,62255.16,12901.41,11776.76,5141.08,29819.25,92074.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,18628,8316.0,1097.78,1576.6,10990.38,1561.02,1433.6,843.32,3837.94,14828.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,2123,72461.84,6646.61,2744.0,81852.45,15314.63,10978.06,7177.52,33470.21,115322.66 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,16489,97766.41,8084.79,18561.31,124412.51,28294.56,12424.51,2119.46,42838.53,167251.04 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,27070,70011.35,0.0,0.0,70011.35,14485.03,7723.51,5559.93,27768.47,97779.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46573,100836.84,0.0,250.0,101086.84,19055.02,9379.06,7539.62,35973.7,137060.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16548,12357.03,0.0,385.83,12742.86,0.0,5298.33,1034.13,6332.46,19075.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,24362,19363.67,0.0,0.0,19363.67,4248.4,1911.46,2469.67,8629.53,27993.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,22399,91285.23,3620.75,2584.03,97490.01,19299.39,12424.5,7733.01,39456.9,136946.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38662,97764.92,7891.75,19919.57,125576.24,28623.61,12424.51,2139.09,43187.21,168763.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,21439,73732.14,318.93,0.0,74051.07,15139.26,12118.61,5688.76,32946.63,106997.7 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,13621,97779.26,169428.3,25029.3,292236.86,29163.99,12424.51,4934.42,46522.92,338759.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16991,71968.4,31317.21,5038.89,108324.5,15428.86,14909.4,1807.94,32146.2,140470.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,15586,45235.95,0.0,501.6,45737.55,10231.96,9987.39,3581.36,23800.71,69538.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28159,102800.25,20163.32,17243.44,140207.01,22769.77,15196.12,2389.02,40354.91,180561.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,18674,84644.0,32262.79,12359.41,129266.2,19433.4,12424.5,9824.39,41682.29,170948.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",37697,93738.0,19024.92,3009.15,115772.07,19700.04,12424.5,9829.04,41953.58,157725.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,4598,2204.8,0.0,29.33,2234.13,0.0,731.73,98.04,829.77,3063.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,28808,26869.0,0.0,0.0,26869.0,0.0,3345.06,2131.31,5476.37,32345.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26208,67231.65,3147.73,3113.7,73493.08,16014.43,13245.83,5613.56,34873.82,108366.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",3176,25480.45,0.0,0.0,25480.45,0.0,5991.23,1977.69,7968.92,33449.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,23259,61939.48,16960.01,6302.27,85201.76,13837.45,12201.4,7323.04,33361.89,118563.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10050,4865.16,0.0,95.04,4960.2,0.0,2464.0,384.6,2848.6,7808.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,28341,59058.86,13554.54,1540.0,74153.4,13491.49,12364.76,5731.9,31588.15,105741.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12639,139040.61,0.0,925.0,139965.61,28088.09,12309.28,10091.25,50488.62,190454.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,19211,116976.03,0.0,0.0,116976.03,23541.49,12424.5,9408.84,45374.83,162350.86 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,30026,3068.5,1635.19,242.25,4945.94,0.0,907.95,383.89,1291.84,6237.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48016,47163.11,14545.3,12460.82,74169.23,13670.27,9379.24,5743.49,28793.0,102962.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,26270,9203.29,198.72,920.02,10322.03,2004.07,1800.95,890.85,4695.87,15017.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49524,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3401.97,18227.82,61995.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,20715,25450.0,0.0,0.0,25450.0,5708.4,4778.65,2085.1,12572.15,38022.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,38353,14840.0,0.0,0.0,14840.0,0.0,2532.69,1195.97,3728.66,18568.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18172,119461.68,33158.73,10269.59,162890.0,24111.55,12424.5,2730.53,39266.58,202156.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,30867,63301.68,0.0,0.0,63301.68,0.0,6056.94,4906.97,10963.91,74265.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,42038,79722.04,0.0,0.0,79722.04,16430.89,12424.5,6403.46,35258.85,114980.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33640,3534.13,0.0,26.46,3560.59,0.0,1723.3,276.22,1999.52,5560.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,15971,71311.0,0.0,0.0,71311.0,14697.59,12424.5,5801.92,32924.01,104235.01 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,26343,67261.02,24.1,2009.65,69294.77,14249.17,12424.5,5684.61,32358.28,101653.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44937,64411.6,13078.68,736.04,78226.32,17866.89,12694.19,5849.24,36410.32,114636.64 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,39007,92776.95,47214.67,9159.86,149151.48,19830.9,12303.85,10199.4,42334.15,191485.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,6218,70245.0,0.0,4977.7,75222.7,14606.45,12424.5,6200.29,33231.24,108453.94 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,27150,8237.7,576.0,0.0,8813.7,0.0,1941.33,684.08,2625.41,11439.11 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,40099,21494.88,0.0,112.14,21607.02,5192.64,6223.06,1754.32,13170.02,34777.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45181,2286.65,0.0,282.4,2569.05,0.0,991.57,198.89,1190.46,3759.51 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,47809,55061.52,163.28,1088.05,56312.85,11563.11,12099.56,4625.81,28288.48,84601.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,37318,61582.8,0.0,622.46,62205.26,12815.86,12393.68,5157.06,30366.6,92571.86 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,47021,60481.11,0.0,0.0,60481.11,12449.09,12472.29,4914.65,29836.03,90317.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",44273,131577.09,71383.3,24269.44,227229.83,29479.13,15196.12,3824.12,48499.37,275729.2 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",48160,19352.65,421.99,1162.43,20937.07,0.0,3484.54,1621.12,5105.66,26042.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1362,15939.41,2794.86,544.91,19279.18,3958.17,4935.59,1453.24,10347.0,29626.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20164,80990.41,0.0,2265.15,83255.56,0.0,7078.5,6458.23,13536.73,96792.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,14987,1481.57,0.0,0.0,1481.57,0.0,328.53,114.7,443.23,1924.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,47633,42115.03,10.61,0.0,42125.64,8611.46,8816.5,3522.05,20950.01,63075.65 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,21583,25593.68,0.0,987.27,26580.95,6374.7,6319.77,2151.37,14845.84,41426.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,41637,82871.95,0.0,0.0,82871.95,17148.35,12424.5,6850.44,36423.29,119295.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20910,91038.11,0.0,2743.03,93781.14,0.0,0.0,1577.58,1577.58,95358.72 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,49573,77071.01,0.0,0.0,77071.01,15884.7,12424.5,6321.51,34630.71,111701.72 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,20953,36668.86,0.0,772.12,37440.98,7720.9,6266.01,3536.69,17523.6,54964.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",25604,100492.91,596.27,0.0,101089.18,20309.62,10508.44,8086.97,38905.03,139994.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,35706,63195.98,5491.46,639.05,69326.49,13023.66,11874.96,5708.54,30607.16,99933.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,9,101531.1,11045.64,1675.79,114252.53,21272.26,12424.5,9302.79,42999.55,157252.08 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,17376,47795.51,0.0,3400.8,51196.31,10479.69,7980.36,4260.01,22720.06,73916.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,37548,66349.09,1446.87,0.0,67795.96,13579.29,10689.56,5608.08,29876.93,97672.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,22174,81879.03,0.0,0.0,81879.03,17278.21,10035.18,6692.68,34006.07,115885.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39010,32022.5,2147.64,308.76,34478.9,7808.43,9201.0,2809.55,19818.98,54297.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,20919,82717.02,1489.68,1115.85,85322.55,17177.09,12424.5,6774.95,36376.54,121699.09 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,41689,67330.75,0.0,0.0,67330.75,12368.85,5256.53,7207.01,24832.39,92163.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36824,147617.27,712.38,17154.28,165483.93,31159.53,12300.25,9989.55,53449.33,218933.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,20657,13070.0,0.0,0.0,13070.0,2874.1,2389.33,1037.21,6300.64,19370.64 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,52795,76355.54,0.0,895.81,77251.35,15970.93,11216.88,6384.59,33572.4,110823.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,27821,63365.59,7288.03,623.52,71277.14,13187.65,12414.95,5836.22,31438.82,102715.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,14863,6556.5,0.0,0.0,6556.5,1470.61,1481.39,542.73,3494.73,10051.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,44232,84644.0,36277.05,13664.77,134585.82,19300.79,12424.5,9914.65,41639.94,176225.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16199,47664.26,0.0,1171.8,48836.06,10002.8,10468.66,4034.48,24505.94,73342.0 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,5155,5842.83,0.0,0.0,5842.83,0.0,1384.32,453.48,1837.8,7680.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14985,137799.35,0.0,2199.39,139998.74,28094.41,12424.5,8452.55,48971.46,188970.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19763,43124.28,4371.53,1862.51,49358.32,11671.19,13131.5,3771.41,28574.1,77932.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,8859,166171.03,0.0,624.0,166795.03,33567.58,12424.5,10529.27,56521.35,223316.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,34419,10794.54,0.0,85.84,10880.38,0.0,0.0,860.53,860.53,11740.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45816,56850.61,0.0,3.39,56854.0,0.0,4963.82,4411.92,9375.74,66229.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,14635,25154.0,0.0,312.0,25466.0,6100.64,6212.25,2056.37,14369.26,39835.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,28823,70299.5,1687.8,1030.0,73017.3,14701.42,12424.51,5677.02,32802.95,105820.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,13145,50269.6,0.0,960.0,51229.6,12275.98,12424.5,4163.0,28863.48,80093.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,6811,65592.0,0.0,5588.02,71180.02,14646.74,12424.5,5821.32,32892.56,104072.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,21911,82233.69,0.0,0.0,82233.69,16966.34,12230.79,6576.6,35773.73,118007.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,12618,83997.21,21573.88,7817.97,113389.06,17986.74,12328.92,8864.43,39180.09,152569.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,22459,101733.0,1749.22,3739.49,107221.71,21733.7,12424.5,8793.2,42951.4,150173.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39152,56531.01,0.0,2604.0,59135.01,11796.81,12424.5,4893.93,29115.24,88250.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,28709,43731.0,3693.08,1881.6,49305.68,8887.24,7645.86,4054.12,20587.22,69892.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38793,98810.13,3875.78,6303.1,108989.01,20503.5,12424.5,1818.03,34746.03,143735.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,9415,63102.02,0.0,815.57,63917.59,13171.39,12424.5,5270.84,30866.73,94784.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,27742,110214.48,165.54,8997.4,119377.42,24429.69,11693.07,9754.76,45877.52,165254.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1839,Water Conservation Admin,40108,123476.07,0.0,0.0,123476.07,24829.58,12424.5,17124.77,54378.85,177854.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31118,64733.21,13820.5,7871.24,86424.95,19930.66,12760.02,6536.38,39227.06,125652.01 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",13007,8607.84,480.04,187.39,9275.27,0.0,1789.01,718.75,2507.76,11783.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,43489,22120.0,0.0,0.0,22120.0,5688.9,6690.11,1690.27,14069.28,36189.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,51202,97034.34,0.0,0.0,97034.34,17648.79,12101.94,7814.59,37565.32,134599.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21822,119465.6,15983.86,5337.08,140786.54,23627.22,12424.5,2318.38,38370.1,179156.64 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,33385,81542.03,4193.8,0.0,85735.83,16806.16,12424.5,7022.47,36253.13,121988.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,22178,31843.1,0.0,166.01,32009.11,7743.16,8359.0,2288.86,18391.02,50400.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,41168,80987.96,7141.14,928.5,89057.6,16888.91,12424.53,7085.21,36398.65,125456.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3948,138633.91,2928.27,11357.1,152919.28,27400.21,12424.5,1288.84,41113.55,194032.83 +Calendar,2015,1,Public Protection,PDR,Public Defender,1.0,Miscellaneous Unrepresented Employees,8400,Probation & Parole,8446,Court Alternative Specialist 1,31456,67580.61,0.0,0.0,67580.61,13918.65,12424.5,4804.53,31147.68,98728.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,33107,50637.01,15300.52,4102.47,70040.0,11087.38,9975.45,5607.3,26670.13,96710.13 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,22423,113295.61,0.0,13312.39,126608.0,23027.77,11229.84,17478.4,51736.01,178344.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,44928,97724.0,27115.2,0.0,124839.2,20140.67,12424.5,9808.07,42373.24,167212.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",3139,139538.41,24567.88,23398.43,187504.72,31768.27,15196.12,3142.24,50106.63,237611.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",35360,1806.3,0.0,0.0,1806.3,0.0,430.07,129.57,559.64,2365.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,30076,10015.05,0.0,127.46,10142.51,0.0,3342.08,785.66,4127.74,14270.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,915,143661.33,0.0,41384.15,185045.48,33023.45,12334.25,5066.69,50424.39,235469.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,30309,39568.74,0.0,0.0,39568.74,0.0,3828.9,9109.18,12938.08,52506.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,40840,63509.5,32.36,4468.35,68010.21,13947.84,12424.5,5490.84,31863.18,99873.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,6871,73063.02,0.0,0.0,73063.02,15058.73,12424.5,5990.35,33473.58,106536.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18953,9507.66,383.35,94.89,9985.9,2296.25,2911.04,774.42,5981.71,15967.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,36181,91554.6,0.0,0.0,91554.6,18884.15,12325.94,7546.15,38756.24,130310.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,30467,63887.0,3155.52,689.66,67732.18,13303.52,12424.51,5584.15,31312.18,99044.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,52276,81101.21,7150.28,800.64,89052.13,16881.3,12424.52,7262.17,36567.99,125620.12 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,32536,56077.65,0.0,0.0,56077.65,10166.88,4515.82,4435.86,19118.56,75196.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,491,67627.4,1335.22,2993.01,71955.63,11079.84,12343.87,5772.46,29196.17,101151.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H006,"Invstgtor,Fire Dept",33002,56638.01,34870.46,9139.31,100647.78,11609.69,6307.83,1702.68,19620.2,120267.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27204,52246.27,0.0,2927.64,55173.91,11280.52,11477.02,4288.28,27045.82,82219.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,13449,101531.02,0.0,1717.58,103248.6,21278.98,12424.5,8432.4,42135.88,145384.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10254,97767.52,18545.41,10000.71,126313.64,26209.78,12424.5,2105.27,40739.55,167053.19 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,41275,5299.88,0.0,0.0,5299.88,0.0,1950.29,411.35,2361.64,7661.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48902,15827.77,0.0,0.0,15827.77,3864.13,6841.54,1285.6,11991.27,27819.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,27638,120637.34,0.0,0.0,120637.34,24236.75,12424.5,9604.21,46265.46,166902.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,1322,33151.93,153.97,1231.94,34537.84,3785.74,8341.32,2837.84,14964.9,49502.74 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,8078,17594.4,0.0,0.0,17594.4,3869.0,4524.79,1411.41,9805.2,27399.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,46965,29955.0,0.0,2540.93,32495.93,6572.15,2389.33,2619.04,11580.52,44076.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,29524,63102.02,0.0,1102.41,64204.43,13231.36,12424.5,5068.71,30724.57,94929.0 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",46318,89171.59,2293.22,6964.9,98429.71,21937.27,12324.45,606.09,34867.81,133297.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37982,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52040,149521.84,0.0,750.0,150271.84,30253.38,12460.34,10292.2,53005.92,203277.76 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,556,403.76,333.09,0.0,736.85,0.0,119.47,57.19,176.66,913.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,26317,26068.01,1128.84,216.0,27412.85,5895.51,3345.05,2220.54,11461.1,38873.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,13856,90532.84,4006.08,9317.48,103856.4,19324.47,12229.41,8471.57,40025.45,143881.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,2749,78890.93,0.0,2000.0,80890.93,16628.47,11213.18,6377.65,34219.3,115110.23 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43182,97780.74,130243.72,21203.67,249228.13,28938.91,12424.5,4206.97,45570.38,294798.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,11010,78239.0,0.0,0.0,78239.0,16194.94,11797.37,5994.25,33986.56,112225.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20532,13122.12,8979.18,465.25,22566.55,3194.36,2491.78,1677.51,7363.65,29930.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",2621,118427.01,0.0,0.0,118427.01,23833.74,12424.5,17875.5,54133.74,172560.75 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,4826,67781.29,4314.21,3126.9,75222.4,14439.94,12400.61,5918.24,32758.79,107981.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",104,16040.03,0.0,0.0,16040.03,0.0,3789.47,1243.26,5032.73,21072.76 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,50791,74737.05,0.0,0.0,74737.05,16397.29,6212.25,5957.3,28566.84,103303.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30742,113233.63,24367.67,28588.81,166190.11,27709.23,15196.12,2744.88,45650.23,211840.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,30533,80293.4,7521.83,6407.91,94223.14,17409.51,12502.15,1566.42,31478.08,125701.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,6829,107416.05,3872.35,8035.03,119323.43,23440.03,12424.5,9745.05,45609.58,164933.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,10570,140053.63,2743.46,17399.01,160196.1,27649.9,12424.5,2840.82,42915.22,203111.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1230,15025.22,1978.72,188.88,17192.82,3697.26,4514.81,1223.9,9435.97,26628.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7258,Maintenance Machinist Sprv 1,18331,53573.0,0.0,12019.93,65592.93,12016.42,6212.25,4999.37,23228.04,88820.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,39725,91343.61,0.0,0.0,91343.61,18816.13,12324.21,7359.5,38499.84,129843.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,27280,111839.16,0.0,624.0,112463.16,22659.95,12424.5,8634.82,43719.27,156182.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,22415,79394.99,0.0,0.0,79394.99,16363.74,12424.51,5938.5,34726.75,114121.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8225,3333.55,0.0,0.0,3333.55,0.0,1445.54,265.56,1711.1,5044.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,46400,92091.53,0.0,1868.55,93960.08,18826.76,10116.23,1105.2,30048.19,124008.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13268,125301.31,2307.17,22549.69,150158.17,27218.05,11093.66,6663.86,44975.57,195133.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,36681,100554.04,0.0,550.19,101104.23,20835.74,12424.49,7988.84,41249.07,142353.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26719,113233.6,48736.81,22918.42,184888.83,26058.39,15196.12,3141.28,44395.79,229284.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,32901,10287.33,0.0,0.0,10287.33,2651.34,0.0,852.33,3503.67,13791.0 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,7706,127038.54,0.0,161.34,127199.88,25145.95,10513.04,15176.91,50835.9,178035.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,36996,181945.05,0.0,0.0,181945.05,36724.12,12424.5,10929.46,60078.08,242023.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,46634,26432.93,0.0,533.49,26966.42,6431.85,7365.1,2173.07,15970.02,42936.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29852,0.0,0.0,5509.87,5509.87,0.0,0.0,402.38,402.38,5912.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12763,148512.72,1828.07,39581.94,189922.73,34823.0,12375.34,4850.11,52048.45,241971.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,8423,2636.1,0.0,0.0,2636.1,0.0,692.9,204.09,896.99,3533.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,15226,116976.04,0.0,5179.0,122155.04,24581.57,12424.5,9838.71,46844.78,168999.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,22879,47124.9,1571.91,1674.23,50371.04,9618.97,8237.09,3983.72,21839.78,72210.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,19547,7595.65,0.0,161.88,7757.53,0.0,2523.73,601.37,3125.1,10882.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51620,127308.23,0.0,10666.14,137974.37,26513.3,10606.95,10031.5,47151.75,185126.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,4877,31398.5,0.0,550.11,31948.61,6585.22,6319.77,2391.42,15296.41,47245.02 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35797,2215.0,0.0,0.0,2215.0,412.21,477.86,171.92,1061.99,3276.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,8220,55589.8,0.0,4654.99,60244.79,13278.05,12424.5,4631.11,30333.66,90578.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,2338,176257.05,0.0,0.0,176257.05,35471.94,12424.51,10696.88,58593.33,234850.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6903,440.8,0.0,14.05,454.85,0.0,191.14,35.21,226.35,681.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,28185,35308.0,0.0,0.0,35308.0,6401.35,3345.06,2806.71,12553.12,47861.12 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,8342,72180.03,0.0,3605.3,75785.33,14975.64,12051.83,6303.83,33331.3,109116.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11328,147.0,0.0,1.96,148.96,0.0,71.68,11.56,83.24,232.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,36040,84791.03,0.0,0.0,84791.03,17475.8,12424.51,6697.47,36597.78,121388.81 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,48947,133087.0,0.0,14652.49,147739.49,26783.95,12424.5,10328.42,49536.87,197276.36 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,49036,3681.2,0.0,0.0,3681.2,715.32,0.0,289.77,1005.09,4686.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,1607,112776.02,9154.19,6618.81,128549.02,24009.05,12424.5,9928.05,46361.6,174910.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",6678,177433.41,0.0,0.0,177433.41,35691.35,12424.51,18027.6,66143.46,243576.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14227,123372.72,1311.83,21290.58,145975.13,25107.7,10924.01,5519.82,41551.53,187526.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11410,15924.38,0.0,976.44,16900.82,0.0,1135.47,56.48,1191.95,18092.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33160,61170.32,5139.98,2242.48,68552.78,12843.18,12168.19,5386.76,30398.13,98950.91 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,11261,118104.12,0.0,0.0,118104.12,23768.42,12424.52,9460.14,45653.08,163757.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3671,121679.02,0.0,12655.88,134334.9,24603.24,12134.92,690.44,37428.6,171763.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,15216,29251.0,8479.83,1050.28,38781.11,5443.6,4300.79,2972.37,12716.76,51497.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,40054,66071.95,0.0,1612.9,67684.85,13939.1,12203.49,5292.26,31434.85,99119.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19469,9697.6,0.0,0.0,9697.6,0.0,4205.21,750.79,4956.0,14653.6 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,7580,61735.0,0.0,650.42,62385.42,12857.98,12424.5,5171.32,30453.8,92839.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,22070,26905.0,0.0,0.0,26905.0,6034.83,5734.39,2194.61,13963.83,40868.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39423,206.63,0.0,17.56,224.19,0.0,89.6,17.4,107.0,331.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,20752,11234.86,0.0,83.7,11318.56,2106.38,1953.28,953.54,5013.2,16331.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7220,Asphalt Finisher Supervisor 1,1123,91653.01,19980.5,15417.25,127050.76,22070.44,12424.5,9822.03,44316.97,171367.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,4735,66580.0,14804.49,3362.25,84746.74,13851.16,12424.5,6907.94,33183.6,117930.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,33884,69746.08,62.48,20.0,69828.56,14379.06,12424.5,5791.43,32594.99,102423.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,39524,139690.9,15646.46,14218.1,169555.46,27609.77,12424.5,2836.68,42870.95,212426.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20090,56524.25,0.0,8049.15,64573.4,13745.56,12423.01,5221.9,31390.47,95963.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24704,64046.06,3503.9,733.24,68283.2,14745.27,12621.63,5169.72,32536.62,100819.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,31996,47186.6,0.0,1650.72,48837.32,11692.29,12424.5,3915.84,28032.63,76869.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18347,15500.84,2699.59,487.93,18688.36,4418.15,4893.05,1214.71,10525.91,29214.27 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,47655,53256.3,0.0,0.0,53256.3,10870.72,8980.88,4105.24,23956.84,77213.14 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,13083,97762.54,27675.38,19731.37,145169.29,28576.78,12424.5,2420.96,43422.24,188591.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,30449,96254.02,0.0,0.0,96254.02,19838.22,12424.51,7804.22,40066.95,136320.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,25745,70412.0,0.0,0.0,70412.0,14209.37,10035.17,5594.86,29839.4,100251.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,9200,Airport Operation,9251,Public Relations Mgr,52798,127717.01,0.0,0.0,127717.01,25703.36,12424.5,18310.64,56438.5,184155.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25794,61501.14,133.58,5269.37,66904.09,0.0,4108.15,5185.4,9293.55,76197.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50577,15318.03,0.0,2080.46,17398.49,0.0,1188.21,1349.27,2537.48,19935.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,25987,58686.77,17604.61,1460.0,77751.38,12381.92,12424.5,6255.67,31062.09,108813.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16448,56531.0,1712.19,669.0,58912.19,12649.07,12424.5,4738.23,29811.8,88723.99 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),18723,168636.45,0.0,1562.5,170198.95,34223.47,12424.5,10818.77,57466.74,227665.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,40581,9670.5,0.0,509.37,10179.87,2197.12,1797.43,821.07,4815.62,14995.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,20837,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36642,24458.69,0.0,1833.21,26291.9,6306.34,6224.19,2206.43,14736.96,41028.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9126,Transit Traffic Checker,1467,30657.0,370.22,417.04,31444.26,5782.88,5734.39,2575.0,14092.27,45536.53 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,10160,103283.03,0.0,0.0,103283.03,21287.16,12424.5,8059.4,41771.06,145054.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,13666,63887.0,2235.61,1721.0,67843.61,13517.38,12424.49,5593.13,31535.0,99378.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2324,117139.21,10467.67,14078.73,141685.61,23170.33,12424.5,2365.73,37960.56,179646.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,23403,49679.0,0.0,2161.05,51840.05,11961.74,12424.5,4038.35,28424.59,80264.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,49323,156746.01,0.0,0.0,156746.01,31545.23,12424.53,10449.98,54419.74,211165.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9959,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.23,5147.57,17667.57 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),32012,76216.06,21003.95,4572.96,101792.97,15611.15,8619.5,1968.16,26198.81,127991.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24761,1491.59,0.0,104.64,1596.23,1282.14,0.0,1003.16,2285.3,3881.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,36655,64463.72,4185.69,16042.9,84692.31,15788.15,12424.5,7493.91,35706.56,120398.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,51773,97782.18,0.0,0.0,97782.18,20168.75,12424.5,8029.72,40622.97,138405.15 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28588,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10975.47,60788.8,246577.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,18765,16705.86,14701.64,850.65,32258.15,2476.21,4933.96,2515.64,9925.81,42183.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31552,1697.36,0.0,4.86,1702.22,0.0,919.89,131.79,1051.68,2753.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,1556,93281.03,0.0,1664.0,94945.03,19567.9,12424.5,7870.08,39862.48,134807.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41188,101497.58,0.0,17079.04,118576.62,23513.49,10700.19,9504.38,43718.06,162294.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,43700,68697.0,20503.72,637.34,89838.06,14194.94,12424.5,6975.45,33594.89,123432.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,23621,43262.7,0.0,0.0,43262.7,7681.26,6164.46,3466.63,17312.35,60575.05 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,33310,80951.37,0.0,0.0,80951.37,16678.65,12437.4,6501.6,35617.65,116569.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,35550,21598.53,0.0,388.78,21987.31,5151.04,6466.12,1674.09,13291.25,35278.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,33649,69070.01,0.0,0.0,69070.01,14235.5,12424.5,5557.13,32217.13,101287.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51693,56531.0,0.0,5954.28,62485.28,12303.79,12424.5,5107.19,29835.48,92320.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,43525,44283.0,81.04,2994.02,47358.06,9614.74,9769.06,3644.67,23028.47,70386.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7317,Senior Water Service Inspector,19176,116209.23,16282.27,20227.25,152718.75,25172.23,12424.51,10450.4,48047.14,200765.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39051,17835.41,2643.05,527.5,21005.96,4698.65,5506.68,1607.09,11812.42,32818.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43927,39893.0,3631.63,1365.71,44890.34,10785.13,12244.65,3357.12,26386.9,71277.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18214,77375.1,443.69,1440.0,79258.79,16236.82,12424.5,6561.4,35222.72,114481.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",42628,135109.0,21968.43,8106.54,165183.97,28270.96,12424.5,2751.1,43446.56,208630.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,3230,8862.45,0.0,0.0,8862.45,0.0,1965.23,686.13,2651.36,11513.81 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,40126,113672.0,0.0,13553.2,127225.2,25179.91,12424.5,9939.09,47543.5,174768.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,44348,47523.81,379.23,0.0,47903.04,11381.13,12424.5,3888.77,27694.4,75597.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",47609,135115.5,21902.51,10498.92,167516.93,28692.36,12424.5,2852.34,43969.2,211486.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,28648,16654.59,0.0,0.0,16654.59,3662.36,5519.35,1351.0,10532.71,27187.3 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,34229,158.0,48.0,12.64,218.64,0.0,47.79,16.93,64.72,283.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,47863,83535.0,0.0,0.0,83535.0,17187.93,12281.15,6662.86,36131.94,119666.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,33090,135421.02,0.0,0.0,135421.02,27268.29,12424.5,10046.83,49739.62,185160.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,37853,47666.29,6508.17,4621.88,58796.34,9809.21,8810.64,1465.75,20085.6,78881.94 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,10707,67261.02,0.0,1584.0,68845.02,14188.44,12424.5,5608.96,32221.9,101066.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,26645,30820.92,0.0,1040.0,31860.92,7037.67,10011.28,2539.83,19588.78,51449.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24712,4844.3,312.23,15.14,5171.67,1340.04,1529.17,400.78,3269.99,8441.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,46003,45311.21,159.04,1093.6,46563.85,10953.12,11282.17,3780.29,26015.58,72579.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,28068,107535.85,0.0,0.0,107535.85,21771.58,11606.16,8010.14,41387.88,148923.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36255,1848.67,0.0,0.0,1848.67,-0.17,138.88,63.94,202.65,2051.32 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",2800,Public Health,2806,Disease Control Investigator,41673,59794.63,0.0,480.0,60274.63,12669.71,9951.48,4858.56,27479.75,87754.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,52677,9960.0,0.0,0.0,9960.0,2234.04,1433.6,809.07,4476.71,14436.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",11586,23656.79,0.0,0.0,23656.79,0.0,5579.08,62.22,5641.3,29298.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,35508,142179.84,16779.11,19771.81,178730.76,28125.69,12424.5,3045.26,43595.45,222326.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18984,113233.6,3468.51,18907.88,135609.99,25036.03,15196.12,2165.07,42397.22,178007.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40172,76923.72,28250.39,1540.0,106714.11,16167.34,12400.6,8535.25,37103.19,143817.3 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,26497,65686.39,1986.68,0.0,67673.07,13513.58,12437.3,5422.15,31373.03,99046.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,17091,103655.21,0.0,0.0,103655.21,21356.54,12424.5,8203.54,41984.58,145639.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36846,97762.87,2611.56,9362.84,109737.27,26060.33,12424.5,1824.45,40309.28,150046.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25360,65885.75,9491.59,789.47,76166.81,15181.26,12980.02,4984.11,33145.39,109312.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24913,10268.85,0.0,1711.5,11980.35,3176.29,788.84,497.11,4462.24,16442.59 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,26976,97542.31,0.0,0.0,97542.31,20077.31,12424.5,7745.01,40246.82,137789.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36408,80949.95,4706.53,5247.52,90904.0,16862.48,12424.51,1513.78,30800.77,121704.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,24849,60583.0,0.0,0.0,60583.0,12083.79,9079.46,4859.9,26023.15,86606.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30273,68124.27,3688.62,1055.69,72868.58,18957.18,13423.24,5348.78,37729.2,110597.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,9404,3682.01,0.0,276.15,3958.16,825.87,477.86,312.7,1616.43,5574.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,28687,67893.01,0.0,0.0,67893.01,13701.01,10035.18,5415.51,29151.7,97044.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,45640,93281.01,0.0,600.0,93881.01,19339.03,12424.5,8210.35,39973.88,133854.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35363,27184.96,2247.63,1124.3,30556.89,7095.23,8461.93,2298.85,17856.01,48412.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24328,64491.26,6078.49,5673.37,76243.12,19179.19,12703.16,5952.14,37834.49,114077.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52196,66400.54,12849.22,664.91,79914.67,18354.68,13082.88,6105.25,37542.81,117457.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42812,240.29,0.0,0.0,240.29,43.56,47.79,8.38,99.73,340.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,40941,23301.88,0.0,0.0,23301.88,4336.48,3912.51,1874.03,10123.02,33424.9 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41808,97622.49,23514.58,18677.24,139814.31,28283.81,12406.4,2337.01,43027.22,182841.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35115,56856.45,0.0,0.0,56856.45,13668.66,12424.5,4321.68,30414.84,87271.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,53186,47660.61,0.0,2281.8,49942.41,11437.89,12077.99,4057.75,27573.63,77516.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,1921,8932.7,0.0,0.0,8932.7,1964.31,2341.54,708.03,5013.88,13946.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,23932,87467.25,569.89,2801.97,90839.11,18466.21,12233.36,7235.31,37934.88,128773.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,47272,22882.29,1901.61,656.83,25440.73,5179.03,4130.97,2142.15,11452.15,36892.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11109,67745.0,16391.28,2096.76,86233.04,19081.85,13343.62,6714.72,39140.19,125373.23 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,43282,67584.47,19234.26,9538.03,96356.76,15130.06,12364.77,7631.0,35125.83,131482.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,14389,28986.6,0.0,213.73,29200.33,5707.72,6282.62,2358.95,14349.29,43549.62 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,31189,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8715.76,43112.07,149717.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,41345,32898.6,3920.18,0.0,36818.78,0.0,4061.85,2855.03,6916.88,43735.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46740,17254.84,0.0,844.11,18098.95,1541.37,7482.3,1434.66,10458.33,28557.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,46394,97248.82,0.0,0.0,97248.82,19999.24,12424.5,7731.37,40155.11,137403.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,796,33480.59,254.65,2323.65,36058.89,10596.51,6658.22,2753.52,20008.25,56067.14 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,44335,169973.93,0.0,11895.0,181868.93,34203.69,9939.6,10765.1,54908.39,236777.32 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,9999,27162.01,0.0,0.0,27162.01,6092.46,4300.79,2215.79,12609.04,39771.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52124,2036.33,0.0,138.73,2175.06,1023.5,164.27,105.54,1293.31,3468.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,9798,33138.4,1607.14,0.0,34745.54,7432.94,6212.26,2696.33,16341.53,51087.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44548,121123.88,0.0,13405.7,134529.58,25487.27,11060.8,9751.09,46299.16,180828.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,20067,99098.03,0.0,2310.0,101408.03,20901.11,12424.5,8169.57,41495.18,142903.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48423,2254.05,0.0,301.5,2555.55,0.0,179.2,173.07,352.27,2907.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24805,12086.73,133.35,500.85,12720.93,0.0,3213.65,985.71,4199.36,16920.29 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,13739,67911.03,457.49,10753.64,79122.16,15540.12,12424.5,6519.43,34484.05,113606.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,34261,21924.51,0.0,360.0,22284.51,2956.28,7126.17,1828.29,11910.74,34195.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,47910,68418.53,379.83,7906.76,76705.12,15183.66,12099.43,6266.16,33549.25,110254.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,1817,15421.99,0.0,719.95,16141.94,3459.15,2159.24,1287.08,6905.47,23047.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42207,315.4,0.0,31.54,346.94,0.0,0.0,25.14,25.14,372.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,52133,2672.0,0.0,0.0,2672.0,497.26,477.87,205.8,1180.93,3852.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,43048,89210.1,0.0,1480.0,90690.1,18686.29,12424.5,7433.41,38544.2,129234.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,19544,65592.01,0.0,6506.95,72098.96,14503.08,12424.5,5687.24,32614.82,104713.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43467,40509.28,6005.59,2042.93,48557.8,11506.83,7948.7,3773.39,23228.92,71786.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,39429,106605.0,0.0,2643.66,109248.66,21971.81,12424.5,8920.06,43316.37,152565.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,3733,8337.0,319.34,363.27,9019.61,2244.67,2007.04,690.97,4942.68,13962.29 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,29785,6556.4,2079.79,0.0,8636.19,0.0,1624.74,670.31,2295.05,10931.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33767,2413.26,0.0,0.0,2413.26,0.0,1176.74,187.16,1363.9,3777.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29527,19417.18,0.0,0.0,19417.18,1112.56,8361.51,1535.67,11009.74,30426.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,24169,74274.1,13019.54,2352.99,89646.63,15626.32,12424.5,7101.47,35152.29,124798.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,39453,62127.0,0.0,230.0,62357.0,12836.58,12424.51,5071.82,30332.91,92689.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,43250,54779.04,1127.85,1462.31,57369.2,12584.06,12424.5,4747.51,29756.07,87125.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9126,Transit Traffic Checker,45597,6830.0,0.0,131.03,6961.03,1295.45,1194.67,567.69,3057.81,10018.84 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,29618,6906.0,0.0,0.0,6906.0,1285.2,955.73,511.55,2752.48,9658.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,8562,63887.0,30133.67,11815.01,105835.68,13639.83,12424.45,8598.04,34662.32,140498.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",22055,130341.65,29607.28,16292.82,176241.75,28793.64,15052.76,2995.69,46842.09,223083.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1935,Principal Parts Storekeeper,18208,75927.01,21159.91,3100.55,100187.47,15648.74,12424.51,8216.35,36289.6,136477.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17142,32589.73,0.0,2802.23,35391.96,0.0,2308.51,2743.69,5052.2,40444.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,22577,14114.73,0.0,212.24,14326.97,0.0,4674.12,1110.37,5784.49,20111.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,25496,19576.74,0.0,661.35,20238.09,4818.14,5865.8,1577.75,12261.69,32499.78 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",210,198139.02,0.0,1500.0,199639.02,40176.58,12424.5,11182.88,63783.96,263422.98 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37431,2852.5,0.0,0.0,2852.5,0.0,1217.06,220.84,1437.9,4290.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28423,54848.47,0.0,6397.45,61245.92,12409.6,12054.16,5056.69,29520.45,90766.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32728,670.05,0.0,0.0,670.05,0.0,53.76,52.0,105.76,775.81 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,40774,68722.07,0.0,0.0,68722.07,14164.04,12424.5,5631.78,32220.32,100942.39 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,11468,76161.0,26991.66,900.0,104052.66,15887.05,12424.5,8295.8,36607.35,140660.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,43079,102622.4,0.0,440.0,103062.4,20894.11,11958.58,8421.39,41274.08,144336.48 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,13266,40836.45,1494.31,0.0,42330.76,0.0,5964.36,3283.76,9248.12,51578.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,52458,108371.01,0.0,7865.04,116236.05,28273.79,12424.5,618.38,41316.67,157552.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,16383,67389.59,0.0,625.2,68014.79,14020.61,12448.4,5484.65,31953.66,99968.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1403,67695.38,16382.94,1840.47,85918.79,15869.55,13336.33,6545.39,35751.27,121670.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,45621,62234.8,12794.85,4515.96,79545.61,12727.31,9509.51,6185.88,28422.7,107968.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8121,Investigator/Transit Fare Supv,15888,85344.81,4786.49,6752.12,96883.42,18754.3,11975.67,7631.68,38361.65,135245.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,50054,39886.75,0.0,0.0,39886.75,0.0,6194.3,3093.02,9287.32,49174.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,32520,60828.82,0.0,0.0,60828.82,12536.69,12424.5,4696.77,29657.96,90486.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29744,109751.26,31139.92,17753.18,158644.36,25455.59,15196.12,2594.98,43246.69,201891.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,1343,118724.04,0.0,0.0,118724.04,23889.62,12424.5,9728.95,46043.07,164767.11 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,44296,83369.16,0.0,1200.0,84569.16,17411.55,12424.5,6297.98,36134.03,120703.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14264,1578.88,0.0,0.0,1578.88,373.52,475.9,122.55,971.97,2550.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,3271,56296.71,0.0,0.0,56296.71,12578.57,12424.5,4286.07,29289.14,85585.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19391,117072.55,0.0,20860.79,137933.34,27093.32,10817.68,10105.84,48016.84,185950.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26302,69827.95,18378.66,7863.96,96070.57,21270.41,13750.16,7520.23,42540.8,138611.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,46942,55843.5,1866.41,3272.3,60982.21,8004.26,9312.41,4814.3,22130.97,83113.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,50302,192342.04,0.0,250.0,192592.04,38695.62,12376.71,11014.43,62086.76,254678.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17063,7391.6,346.29,37.29,7775.18,1755.54,2227.93,596.44,4579.91,12355.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49452,398.3,0.0,10.88,409.18,0.0,167.25,31.75,199.0,608.18 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,33112,26118.01,0.0,11376.86,37494.87,5906.7,4300.79,3041.26,13248.75,50743.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,19898,42027.01,0.0,120.0,42147.01,7928.94,6212.25,3402.29,17543.48,59690.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2106,Med Staff Svcs Dept Spc,32316,66109.76,0.0,591.0,66700.76,13823.93,11767.44,5492.49,31083.86,97784.62 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29356,97350.1,14813.21,10862.82,123026.13,26308.63,12373.25,2084.45,40766.33,163792.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46371,106499.76,15762.11,5968.34,128230.21,0.0,9051.07,9497.95,18549.02,146779.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,12349,84644.0,6543.29,2630.0,93817.29,17974.7,12424.5,7660.11,38059.31,131876.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,2735,92282.0,0.0,2204.0,94486.0,19474.32,12424.5,7578.04,39476.86,133962.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13460,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3355.32,18181.17,61948.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30057,67625.52,14997.54,2056.42,84679.48,19087.14,13324.98,5961.66,38373.78,123053.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38520,119467.43,2287.5,13353.58,135108.51,23621.01,12424.5,2366.53,38412.04,173520.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26714,38929.92,7693.79,1379.28,48002.99,10474.24,12165.44,3395.75,26035.43,74038.42 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8602,Emergency Services Coord II,45844,11608.0,0.0,0.0,11608.0,2160.24,1911.46,917.58,4989.28,16597.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,52769,48804.0,0.0,0.0,48804.0,10906.79,6690.12,3944.46,21541.37,70345.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,12011,28953.22,0.0,493.64,29446.86,6529.68,6212.25,2364.44,15106.37,44553.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19108,6777.89,0.0,431.8,7209.69,-0.01,0.0,343.04,343.03,7552.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,22300,32064.0,0.0,700.0,32764.0,7348.99,5734.39,2674.23,15757.61,48521.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45523,65592.01,0.0,1264.11,66856.12,13694.6,12424.51,5463.48,31582.59,98438.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,14094,16567.83,0.0,0.0,16567.83,2236.12,4951.88,1285.93,8473.93,25041.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5644,Principal Environ Specialist,16081,9291.71,0.0,0.0,9291.71,1684.58,961.71,714.79,3361.08,12652.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,39745,19546.1,0.0,0.0,19546.1,3637.52,2341.54,1532.82,7511.88,27057.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40636,149227.18,2027.29,3193.05,154447.52,0.0,0.0,1908.68,1908.68,156356.2 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,45330,35167.0,0.0,784.96,35951.96,7597.46,5165.36,2855.36,15618.18,51570.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31256,2982.88,0.0,1.47,2984.35,0.0,1454.5,231.59,1686.09,4670.44 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,9578,75259.46,0.0,1440.65,76700.11,15513.69,12424.5,6082.0,34020.19,110720.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,28018,5488.75,293.18,31.54,5813.47,1184.65,477.86,98.83,1761.34,7574.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29193,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1851.75,10265.52,34269.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12467,64538.17,25800.63,5757.86,96096.66,19344.82,12715.4,7508.81,39569.03,135665.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",21222,9982.42,14098.42,1300.8,25381.64,1982.14,1146.88,432.1,3561.12,28942.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,42958,46154.69,6617.4,2635.14,55407.23,9458.71,8665.92,4385.12,22509.75,77916.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6212,61912.22,31381.63,9552.14,102845.99,14191.62,10987.92,8159.19,33338.73,136184.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,1591,1239.4,0.0,18.11,1257.51,319.77,278.05,111.78,709.6,1967.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,26362,117135.33,3235.33,12877.16,133247.82,23184.69,12424.5,2223.37,37832.56,171080.38 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,45397,87713.03,0.0,5049.93,92762.96,18078.17,12424.5,7223.48,37726.15,130489.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,7864,82188.11,0.0,0.0,82188.11,16944.84,12200.39,6406.55,35551.78,117739.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25919,15905.99,0.0,0.0,15905.99,290.79,6897.39,1284.68,8472.86,24378.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,4925,112804.9,92942.17,11273.88,217020.95,22872.57,12424.5,3582.46,38879.53,255900.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51181,63340.59,7288.1,968.48,71597.17,15695.73,13088.61,5250.36,34034.7,105631.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40614,21134.87,3641.18,819.29,25595.34,5611.96,6548.68,1933.39,14094.03,39689.37 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,10240,15313.49,361.44,0.0,15674.93,0.0,3486.93,1215.28,4702.21,20377.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,34342,34231.96,0.0,652.77,34884.73,9657.3,7645.85,3567.04,20870.19,55754.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,36021,98157.0,0.0,75.04,98232.04,20230.58,12424.5,8051.66,40706.74,138938.78 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,25166,186119.05,0.0,35362.61,221481.66,41202.32,12424.5,11580.57,65207.39,286689.05 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,587,3340.35,0.0,0.0,3340.35,605.61,215.04,259.27,1079.92,4420.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,24579,60059.0,4318.69,528.0,64905.69,12714.53,10513.04,5341.16,28568.73,93474.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32686,52764.56,29.65,1290.0,54084.21,11118.33,10631.5,4494.8,26244.63,80328.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,311.0,Municipal Attorneys' Association,8100,Legal & Court,8193,Chief Atty1 (Civil & Criminal),45557,220560.0,0.0,1500.0,222060.0,44688.27,12424.5,11625.38,68738.15,290798.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23916,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23027,26741.3,0.0,0.0,26741.3,5521.2,4109.64,2059.28,11690.12,38431.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24009,2284.63,0.0,5.88,2290.51,0.0,1114.02,177.77,1291.79,3582.3 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,6544,66987.21,0.0,240.0,67227.21,13810.37,12373.61,5508.35,31692.33,98919.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20616,17935.05,0.0,559.68,18494.73,1979.09,7777.26,1492.95,11249.3,29744.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,51398,113967.26,0.0,4339.1,118306.36,22451.41,8256.56,9565.48,40273.45,158579.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6274,Chief Housing Inspector,46073,134937.82,0.0,0.0,134937.82,27199.91,12233.36,10077.72,49510.99,184448.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,19759,112744.51,578.4,4478.81,117801.72,23580.17,9294.49,8525.03,41399.69,159201.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28314,69684.52,24191.03,1727.64,95603.19,19562.15,13734.63,7262.29,40559.07,136162.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7282,Street Repair Supervisor 2,30152,105362.7,26207.18,6987.25,138557.13,22047.22,12424.5,10003.61,44475.33,183032.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52545,56163.3,190.74,1496.53,57850.57,10885.46,8601.58,3982.35,23469.39,81319.96 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,42995,9463.59,0.0,4167.09,13630.68,0.0,12424.5,197.64,12622.14,26252.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27606,10954.05,41.33,322.43,11317.81,0.0,4695.03,916.17,5611.2,16929.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49705,59420.91,18353.17,1418.19,79192.27,16819.95,11740.8,5957.5,34518.25,113710.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5106,119463.86,11635.34,1740.83,132840.03,23633.49,12424.5,2252.55,38310.54,171150.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,42510,29576.01,757.89,147.88,30481.78,6667.09,3822.93,2607.82,13097.84,43579.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32092,22865.02,0.0,29311.84,52176.86,5235.1,2389.33,61.29,7685.72,59862.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,432,349.69,0.0,19.35,369.04,0.0,86.61,28.62,115.23,484.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,10304,12089.02,1736.5,768.1,14593.62,3118.99,3345.06,1071.02,7535.07,22128.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41082,111822.69,5498.53,16233.92,133555.14,22144.41,12328.92,2228.47,36701.8,170256.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,21222,115623.52,68071.87,18046.23,201741.62,25738.36,13905.89,3398.69,43042.94,244784.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,8812,2043.0,0.0,0.0,2043.0,527.09,477.86,158.17,1163.12,3206.12 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,9170,59762.08,191.34,6576.16,66529.58,13388.34,10319.44,5234.43,28942.21,95471.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36487,80179.06,1976.84,7959.92,90115.82,16586.47,12305.04,1688.92,30580.43,120696.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,41098,84599.02,0.0,1559.75,86158.77,17760.71,12424.5,7132.05,37317.26,123476.03 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,48447,42177.6,0.0,3000.0,45177.6,10029.83,11086.48,3737.63,24853.94,70031.54 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51331,41860.0,3930.0,0.0,45790.0,10040.14,12424.5,3692.29,26156.93,71946.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,31112,69746.02,0.0,2613.0,72359.02,14910.55,12424.5,5991.62,33326.67,105685.69 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9872,56314.9,0.0,621.6,56936.5,11739.46,12376.71,4675.05,28791.22,85727.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30917,59929.51,329.58,3410.29,63669.38,12661.92,10608.91,5006.86,28277.69,91947.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2639,41410.15,0.0,0.0,41410.15,0.0,0.0,3275.67,3275.67,44685.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45540,67128.01,17494.08,804.86,85426.95,18583.14,13224.81,6281.25,38089.2,123516.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25903,56531.0,0.0,1306.95,57837.95,12664.6,12424.5,4654.81,29743.91,87581.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27346,64838.51,521.2,60.0,65419.71,13353.73,12185.57,5414.65,30953.95,96373.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,26988,15434.38,0.0,148.6,15582.98,1833.83,4611.41,1227.3,7672.54,23255.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,46006,2954.54,0.0,0.0,2954.54,0.0,1060.26,239.94,1300.2,4254.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46553,8441.91,0.0,0.0,8441.91,0.0,3604.9,685.59,4290.49,12732.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,27002,82717.06,0.0,624.0,83341.06,17177.11,12424.5,6465.96,36067.57,119408.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2250,9731.4,0.0,0.0,9731.4,0.0,4157.43,785.67,4943.1,14674.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,46071,50974.96,1269.14,2429.65,54673.75,12383.53,12319.97,4269.15,28972.65,83646.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,46905,24165.0,0.0,13403.75,37568.75,5745.68,4300.79,3038.25,13084.72,50653.47 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,1692,52246.01,0.0,0.0,52246.01,0.0,0.0,4133.8,4133.8,56379.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",16726,103909.6,0.0,0.0,103909.6,21369.99,10035.18,22348.29,53753.46,157663.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3424,Integrated Pest Mgmt Specialst,43755,80357.0,27694.14,3218.48,111269.62,16937.6,12424.5,8681.9,38044.0,149313.62 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0887,Mayoral Staff VII,14497,72699.06,0.0,0.0,72699.06,14983.61,12424.5,13747.0,41155.11,113854.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29828,48943.3,0.0,4658.69,53601.99,12416.18,12376.71,4333.42,29126.31,82728.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,7816,34874.66,0.0,2823.28,37697.94,7822.43,6482.06,3099.9,17404.39,55102.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,30679,34355.03,388.05,320.7,35063.78,7510.13,6385.48,2920.25,16815.86,51879.64 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,2.0,Management Unrepresented Employees,1200,Personnel,1282,"Manager,Employee Relations Div",26952,156814.15,0.0,0.0,156814.15,31467.39,12424.5,17733.16,61625.05,218439.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,26928,63887.09,0.0,24.42,63911.51,13172.88,12424.5,5287.91,30885.29,94796.8 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,32983,71014.21,0.0,0.0,71014.21,14323.65,10035.17,5699.79,30058.61,101072.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,100,97424.06,0.0,0.0,97424.06,20056.8,12424.5,7572.02,40053.32,137477.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,48218,119066.04,28279.58,13272.25,160617.87,31326.28,12424.51,2683.14,46433.93,207051.8 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,19125,0.0,0.0,0.0,0.0,0.0,0.0,-0.01,-0.01,-0.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,38626,7869.8,0.0,0.0,7869.8,2030.44,2604.36,687.49,5322.29,13192.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",31809,149522.33,7630.89,11961.79,169115.01,31740.51,12424.5,2874.8,47039.81,216154.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,9141,80357.0,345.6,0.0,80702.6,16562.14,12424.49,6546.7,35533.33,116235.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,50309,49793.71,733.36,996.58,51523.65,10627.85,9887.34,4217.52,24732.71,76256.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3356,3003.13,0.0,6.2,3009.33,0.0,1157.33,233.48,1390.81,4400.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50381,9638.73,0.0,0.0,9638.73,1207.02,4354.55,768.88,6330.45,15969.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,20712,97763.02,6733.48,4065.4,108561.9,24751.98,12424.51,1801.06,38977.55,147539.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,46204,38599.0,0.0,520.0,39119.0,7358.51,6212.25,3162.09,16732.85,55851.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,6241,133087.01,0.0,0.0,133087.01,26783.95,12424.5,10080.14,49288.59,182375.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9797,149975.2,0.0,8351.29,158326.49,30902.81,12328.92,8044.63,51276.36,209602.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20089,119463.8,22954.88,3678.17,146096.85,23633.47,12424.5,2478.47,38536.44,184633.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,51373,40432.01,193.65,0.0,40625.66,8190.0,7645.85,3214.28,19050.13,59675.79 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,43310,87531.01,0.0,624.0,88155.01,18169.31,12424.5,6973.31,37567.12,125722.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,36458,29444.11,0.0,0.0,29444.11,6604.29,4778.64,2330.06,13712.99,43157.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51015,4886.7,0.0,58.71,4945.41,0.0,1630.72,383.41,2014.13,6959.54 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,34335,63102.01,1090.91,6880.73,71073.65,13951.9,12424.5,5863.96,32240.36,103314.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51415,0.0,0.0,658.31,658.31,0.0,68.5,31.24,99.74,758.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,41696,116638.04,814.98,7137.15,124590.17,23473.53,12424.51,9817.34,45715.38,170305.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2991,"Coord, Human Rights Comm",23316,110619.0,0.0,0.0,110619.0,22262.62,12424.5,9064.27,43751.39,154370.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,27310,85035.32,1648.79,100.0,86784.11,17547.6,12424.5,7104.91,37077.01,123861.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,16629,57166.31,0.0,1140.0,58306.31,13000.45,12424.5,4690.11,30115.06,88421.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,32020,49820.8,645.07,1794.42,52260.29,12126.59,12424.52,4172.68,28723.79,80984.08 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,41315,38806.5,3198.51,0.0,42005.01,508.43,6929.05,3230.77,10668.25,52673.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,1234,45402.3,0.0,5775.21,51177.51,12065.22,12424.5,4094.64,28584.36,79761.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45831,1992.63,352.78,252.92,2598.33,0.0,396.27,197.51,593.78,3192.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28446,112159.77,7139.24,16912.77,136211.78,24605.62,15052.75,2310.02,41968.39,178180.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8717,124878.2,2291.6,27395.44,154565.24,28875.18,11056.61,10223.07,50154.86,204720.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,38125,65592.03,3248.55,824.0,69664.58,13647.35,12424.5,5746.25,31818.1,101482.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,32795,68692.5,0.0,0.0,68692.5,14155.37,12424.5,5543.27,32123.14,100815.64 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,43135,19392.64,0.0,425.93,19818.57,4714.08,5807.68,1579.1,12100.86,31919.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,1331,72522.06,0.0,0.0,72522.06,14947.06,12424.5,5830.93,33202.49,105724.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,25796,42388.84,1782.5,1094.9,45266.24,9177.93,8476.13,3552.98,21207.04,66473.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21141,119455.96,10477.63,11092.27,141025.86,23662.85,12424.5,2347.75,38435.1,179460.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28574,113233.59,9508.15,24574.21,147315.95,25036.02,15196.11,2464.25,42696.38,190012.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,8335,70245.0,20361.77,12005.92,102612.69,15940.69,12424.5,8073.73,36438.92,139051.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,50967,53111.72,0.0,0.0,53111.72,12737.8,12328.92,4316.41,29383.13,82494.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,6756,21082.0,0.0,0.0,21082.0,3923.37,2628.26,1614.28,8165.91,29247.91 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,19105,98680.0,0.0,0.0,98680.0,20099.22,10952.32,8001.94,39053.48,137733.48 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,7131,52185.08,0.0,0.0,52185.08,1282.6,7394.97,4049.16,12726.73,64911.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,38436,11940.8,526.8,7.02,12474.62,0.0,3249.49,965.78,4215.27,16689.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,38442,120111.02,0.0,9770.5,129881.52,24172.55,12424.5,9926.19,46523.24,176404.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,37104,113369.04,0.0,5596.66,118965.7,24019.95,12424.47,9768.28,46212.7,165178.4 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,37117,9511.82,0.0,0.0,9511.82,188.55,2487.88,751.88,3428.31,12940.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,13987,406.73,0.0,12.82,419.55,0.0,98.55,32.56,131.11,550.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,38474,25390.74,0.0,0.0,25390.74,5570.73,2389.32,2097.05,10057.1,35447.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31405,4278.5,0.0,130.37,4408.87,0.0,1815.89,357.62,2173.51,6582.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),16149,50131.2,18231.39,3336.95,71699.54,9951.17,7645.85,1201.12,18798.14,90497.68 +Calendar,2015,1,Public Protection,SHF,Sheriff,969.0,Institutional Police Officers' Association,8200,Protection & Apprehension,8205,Institutional Police Sergeant,29159,32951.51,0.0,10184.83,43136.34,7401.02,3459.99,331.97,11192.98,54329.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34014,124338.24,5908.41,16764.95,147011.6,25368.55,11010.02,9624.34,46002.91,193014.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,25380,52221.82,445.43,6421.84,59089.09,12109.73,9240.6,4876.99,26227.32,85316.41 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,17250,67261.01,862.36,9127.69,77251.06,15036.39,12424.5,6368.86,33829.75,111080.81 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,15105,112209.03,0.0,0.0,112209.03,22582.31,12424.5,9014.07,44020.88,156229.91 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,47335,8756.5,0.0,3000.0,11756.5,1921.17,1011.46,24630.87,27563.5,39320.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,47573,58455.79,777.11,727.08,59959.98,12108.87,12048.54,4385.07,28542.48,88502.46 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0648,"Court Invstgtor, Superior Crt",33478,77347.22,0.0,4625.0,81972.22,16069.41,10704.18,6738.91,33512.5,115484.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51618,0.0,0.0,243.27,243.27,0.0,68.5,18.61,87.11,330.38 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,27614,3785.4,0.0,378.54,4163.94,0.0,0.0,330.29,330.29,4494.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,45129,86663.01,0.0,2080.0,88743.01,18293.23,12424.48,7303.16,38020.87,126763.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,51664,67237.49,624.66,2472.51,70334.66,13998.45,12304.26,5759.66,32062.37,102397.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20722,2372.74,0.0,0.0,2372.74,612.16,1028.91,198.64,1839.71,4212.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",1400,"Clerical, Secretarial & Steno",1466,Meter Reader,25872,64963.02,0.0,0.0,64963.02,13389.14,12424.5,5337.4,31151.04,96114.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2392,Sr Cent Proc & Dist Tech,35851,90151.0,799.63,11592.1,102542.73,19994.8,12424.5,8265.79,40685.09,143227.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,8556,70245.01,405.15,3546.63,74196.79,14606.45,12185.57,5867.42,32659.44,106856.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,5135,68571.03,3144.73,2386.86,74102.62,14385.62,12424.5,6079.9,32890.02,106992.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19327,67323.99,7217.37,4380.77,78922.13,19627.13,13266.68,5901.96,38795.77,117717.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28107,60378.65,30423.07,1740.91,92542.63,12885.41,11746.48,7518.77,32150.66,124693.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,47004,97934.02,912.6,867.15,99713.77,20195.66,12424.5,7814.6,40434.76,140148.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,37993,51190.01,0.0,0.0,51190.01,10273.32,9557.31,4211.57,24042.2,75232.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,3183,68722.0,0.0,0.0,68722.0,14164.02,12424.5,5581.44,32169.96,100891.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40490,125915.15,0.0,8704.13,134619.28,21396.45,12221.23,8253.13,41870.81,176490.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,3407,25425.01,0.0,0.0,25425.01,5332.79,6185.36,2015.29,13533.44,38958.45 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,24952,41136.01,0.0,0.0,41136.01,9000.97,7645.85,3360.47,20007.29,61143.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17967,5956.16,0.0,22.88,5979.04,0.0,522.66,463.59,986.25,6965.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7484,Sr Power Generation Tech,11283,108147.18,12122.39,9466.24,129735.81,22639.5,12006.37,9892.23,44538.1,174273.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52642,5695.91,0.0,1030.72,6726.63,0.0,0.0,788.56,788.56,7515.19 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17455,102019.09,0.0,0.0,102019.09,21026.29,12424.5,8210.37,41661.16,143680.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46216,29770.8,0.0,47460.2,77231.0,6890.79,4014.07,1181.03,12085.89,89316.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15355,44885.99,5090.57,2630.36,52606.92,12321.4,13509.85,3893.05,29724.3,82331.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,31138,25057.92,0.0,486.85,25544.77,6131.67,6188.36,2114.37,14434.4,39979.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",11781,102777.2,11577.14,13859.56,128213.9,23268.7,12424.5,9903.71,45596.91,173810.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7398,Apprentice Cement Mason I,3453,21485.52,0.0,0.0,21485.52,5543.26,4778.62,1725.41,12047.29,33532.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7874,68925.96,6267.88,4874.28,80068.12,20227.84,13582.85,6251.69,40062.38,120130.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,40709,7051.6,149.72,705.16,7906.48,0.0,1624.74,613.67,2238.41,10144.89 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,14717,111091.06,0.0,0.0,111091.06,25340.74,12424.5,1859.45,39624.69,150715.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,9925,67261.02,0.0,0.0,67261.02,13862.82,12424.5,5578.58,31865.9,99126.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27547,9910.43,0.0,7.02,9917.45,0.0,2696.95,768.43,3465.38,13382.83 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,37275,11967.79,0.0,0.0,11967.79,0.0,2859.73,927.81,3787.54,15755.33 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,52114,73833.57,0.0,0.0,73833.57,15209.0,12424.5,5866.9,33500.4,107333.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,17591,63801.95,8970.29,10872.28,83644.52,13945.61,12408.39,6865.21,33219.21,116863.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,7295,56729.2,21715.07,15222.34,93666.61,15343.79,12424.51,7419.12,35187.42,128854.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,18626,142330.84,9632.75,22829.65,174793.24,28131.2,12424.5,2917.03,43472.73,218265.97 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1803,Performance Analyst I,12651,59901.16,0.0,0.0,59901.16,13416.12,12149.73,4678.09,30243.94,90145.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,7236,27220.75,0.0,3100.19,30320.94,6084.62,2878.36,2594.44,11557.42,41878.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34593,111326.49,24351.57,19111.92,154789.98,24649.35,14940.05,2583.92,42173.32,196963.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39874,4639.7,0.0,143.28,4782.98,0.0,337.49,304.87,642.36,5425.34 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,18709,140661.55,0.0,0.0,140661.55,28188.57,12424.5,17440.42,58053.49,198715.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,13853,56314.9,0.0,1975.95,58290.85,11602.83,12376.71,4483.22,28462.76,86753.61 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,51735,118104.0,0.0,0.0,118104.0,23768.42,12424.5,9711.58,45904.5,164008.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50521,37805.5,0.0,4464.26,42269.76,9661.64,9909.73,3419.23,22990.6,65260.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48275,84160.25,0.0,11215.34,95375.59,13321.41,0.0,7963.23,21284.64,116660.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40122,191.22,0.0,19.12,210.34,0.0,14.93,15.98,30.91,241.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27012,3200.0,0.0,0.0,3200.0,825.6,955.73,264.58,2045.91,5245.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33645,62468.85,343.29,938.79,63750.93,12997.73,12424.5,5222.84,30645.07,94396.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,33316,14234.92,0.0,96.88,14331.8,0.0,4701.0,1111.49,5812.49,20144.29 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,27624,23120.0,0.0,0.0,23120.0,5185.84,3822.92,1910.55,10919.31,34039.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,10072,85090.61,1560.8,10429.61,97081.02,19021.89,12424.5,7926.92,39373.31,136454.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3428,Nursery Specialist,33814,76536.12,2185.35,1426.42,80147.89,15785.82,12424.5,6615.45,34825.77,114973.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,15665,75567.69,17636.43,2851.28,96055.4,15862.46,12418.41,7872.06,36152.93,132208.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36337,25704.7,538.73,1230.56,27473.99,2901.93,6833.48,2130.7,11866.11,39340.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,28973,81892.73,0.0,0.0,81892.73,16881.88,12478.26,6718.61,36078.75,117971.48 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,40660,93336.49,0.0,0.0,93336.49,19227.23,12400.55,6866.62,38494.4,131830.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46351,315.4,0.0,0.0,315.4,0.0,0.0,0.0,0.0,315.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",36805,13476.15,0.0,0.0,13476.15,0.0,3201.7,1045.97,4247.67,17723.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,15025,57774.09,0.0,2862.59,60636.68,13527.14,12408.37,4912.9,30848.41,91485.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21020,5318.31,0.0,15.05,5333.36,0.0,2664.1,413.46,3077.56,8410.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,46170,68192.52,0.0,0.0,68192.52,14745.37,7167.99,5468.05,27381.41,95573.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",18037,11038.5,275.46,0.0,11313.96,0.0,2628.25,877.75,3506.0,14819.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",26405,103475.42,3497.44,0.0,106972.86,21314.95,12424.5,8571.15,42310.6,149283.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,49769,3600.18,0.0,0.0,3600.18,188.6,1176.74,278.73,1644.07,5244.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,595,19405.77,0.0,0.0,19405.77,0.0,5017.58,1568.89,6586.47,25992.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,1582,5434.46,0.0,42.02,5476.48,1402.11,1367.53,495.62,3265.26,8741.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10690,3371.35,0.0,0.0,3371.35,0.0,1415.68,269.38,1685.06,5056.41 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,14241,9281.6,0.0,1978.95,11260.55,0.0,0.0,163.28,163.28,11423.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40943,8048.56,0.0,776.87,8825.43,0.0,686.93,684.99,1371.92,10197.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34301,92621.6,5534.7,8404.1,106560.4,24553.43,11787.51,1675.98,38016.92,144577.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,33415,66102.03,426.43,637.58,67166.04,13635.26,12424.5,5439.9,31499.66,98665.7 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10304,863.5,0.0,0.0,863.5,222.78,238.93,60.46,522.17,1385.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,21621,14520.0,0.0,0.0,14520.0,3256.85,2389.33,1171.84,6818.02,21338.02 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,46425,143188.0,0.0,12405.26,155593.26,28816.76,12424.5,10393.19,51634.45,207227.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22505,9599.84,461.84,73.56,10135.24,2311.77,2936.66,714.55,5962.98,16098.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7365,Senior Power House Operator,27501,63574.0,11669.19,2133.08,77376.27,13582.25,9079.44,6332.7,28994.39,106370.66 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,30562,39368.89,0.0,0.0,39368.89,8211.19,8398.18,3202.02,19811.39,59180.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,10019,84791.0,303.84,0.0,85094.84,17475.8,12424.57,6605.2,36505.57,121600.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41288,80953.78,6304.27,7098.09,94356.14,16730.9,12424.51,1760.16,30915.57,125271.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39803,2892.75,0.0,87.81,2980.56,0.0,1254.4,234.56,1488.96,4469.52 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,43813,74434.15,7996.97,5814.2,88245.32,15604.75,10871.44,6866.08,33342.27,121587.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,37432,108038.0,35157.3,18738.38,161933.68,24677.49,12424.5,10487.41,47589.4,209523.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12661,9668.06,0.0,454.15,10122.21,0.0,4135.03,816.01,4951.04,15073.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45278,65396.67,34361.96,6193.83,105952.46,11912.1,6690.11,1812.26,20414.47,126366.93 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,51720,67261.04,0.0,0.0,67261.04,13862.82,12424.5,5516.8,31804.12,99065.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47433,91747.64,10329.66,1333.79,103411.09,18717.0,9557.31,1623.18,29897.49,133308.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0965,Dept Head V,17356,326764.01,0.0,0.0,326764.01,65806.33,12424.5,21691.23,99922.06,426686.07 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,27159,17427.3,176.79,0.0,17604.09,0.0,4161.9,1364.9,5526.8,23130.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47187,67198.8,4105.81,3372.22,74676.83,19328.58,13240.52,5488.9,38058.0,112734.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1733,65491.05,4764.67,1211.39,71467.11,15172.32,12904.36,5451.62,33528.3,104995.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,6973,40615.5,0.0,1648.65,42264.15,9737.15,12424.5,3430.29,25591.94,67856.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,8403,9731.15,0.0,36.0,9767.15,0.0,3430.64,757.43,4188.07,13955.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31899,8010.88,0.0,5.36,8016.24,270.79,0.0,2974.3,3245.09,11261.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,3947,71453.74,0.0,0.0,71453.74,14697.79,12424.5,6057.39,33179.68,104633.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,49694,33538.31,0.0,3148.79,36687.1,8075.56,5280.65,2938.73,16294.94,52982.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6188,132016.02,0.0,1711.89,133727.91,23982.06,12424.5,8259.34,44665.9,178393.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,23428,46112.0,0.0,162.84,46274.84,9167.71,8601.58,3611.98,21381.27,67656.11 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9770,Community Development Asst,49245,50167.95,409.66,2347.62,52925.23,10806.36,9509.52,4357.27,24673.15,77598.38 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,7755,103075.0,0.0,0.0,103075.0,21244.17,12424.5,8469.9,42138.57,145213.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,40834,97419.23,24194.53,22087.39,143701.15,23298.61,12376.7,10121.82,45797.13,189498.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,48022,27416.29,0.0,1617.95,29034.24,6967.44,7096.3,2385.8,16449.54,45483.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",4152,915.0,0.0,0.0,915.0,0.0,109.32,70.94,180.26,1095.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,17094,68274.23,0.0,0.0,68274.23,14040.86,12424.49,5088.99,31554.34,99828.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,9922,77925.01,8006.28,600.0,86531.29,16306.06,11468.81,6814.55,34589.42,121120.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,6093,54878.2,81.04,1631.1,56590.34,11342.17,12070.04,4351.11,27763.32,84353.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39086,16287.0,0.0,454.16,16741.16,3620.86,4300.79,1344.08,9265.73,26006.89 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,19566,88296.05,0.0,3624.0,91920.05,18337.86,12424.5,7087.97,37850.33,129770.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38840,1764.0,0.0,0.0,1764.0,0.0,860.16,136.92,997.08,2761.08 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26998,39786.33,12269.82,5888.44,57944.59,10424.13,5109.53,981.21,16514.87,74459.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31939,500.06,0.0,2.67,502.73,0.0,134.4,39.02,173.42,676.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,16555,91718.19,3484.32,11639.9,106842.41,20574.02,12492.29,1768.01,34834.32,141676.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41257,139103.24,100.5,7843.54,147047.28,27493.17,12424.51,2450.63,42368.31,189415.59 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,28382,93317.19,8370.74,10797.8,112485.73,20514.15,12376.71,9007.52,41898.38,154384.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12156,15736.4,0.0,276.57,16012.97,0.0,5217.69,1241.35,6459.04,22472.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,17176,25730.95,0.0,512.63,26243.58,6302.46,6355.62,2169.63,14827.71,41071.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,1408,68679.32,1551.98,0.0,70231.3,14156.09,12416.73,5571.95,32144.77,102376.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,7037,66101.99,0.0,115.43,66217.42,13647.83,12424.5,5253.43,31325.76,97543.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,47453,34414.29,0.0,0.0,34414.29,5129.3,11170.1,2787.81,19087.21,53501.5 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,48044,84629.02,0.0,225.0,84854.02,16661.21,9079.44,6830.23,32570.88,117424.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,18099,26179.81,7813.92,1854.17,35847.9,2664.47,7693.63,2812.88,13170.98,49018.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,7223,17312.23,0.0,2375.32,19687.55,4466.55,5256.52,1600.18,11323.25,31010.8 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,18687,52075.16,0.0,893.06,52968.22,10885.08,10478.4,4270.29,25633.77,78601.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,47972,61406.01,892.85,2296.02,64594.88,13076.06,12420.02,5157.97,30654.05,95248.93 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,36579,76510.0,0.0,0.0,76510.0,15713.86,11946.64,6108.23,33768.73,110278.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40577,1074.45,0.0,0.0,1074.45,0.0,465.92,90.86,556.78,1631.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8908,24836.95,0.0,3820.69,28657.64,0.0,0.0,2267.57,2267.57,30925.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,3918,85004.04,5577.41,15721.69,106303.14,17519.6,12424.49,8700.95,38645.04,144948.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22602,1424.8,0.0,0.0,1424.8,1281.68,0.0,522.94,1804.62,3229.42 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,6659,1735.0,0.0,16577.93,18312.93,389.16,238.93,1405.28,2033.37,20346.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,17400,85368.03,0.0,0.0,85368.03,17591.49,12424.5,7081.58,37097.57,122465.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,39232,10953.0,0.0,0.0,10953.0,0.0,2867.19,850.12,3717.31,14670.31 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,3464,10460.0,0.0,0.0,10460.0,0.0,624.81,810.74,1435.55,11895.55 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,13681,76379.81,0.0,0.0,76379.81,15644.62,11134.27,6013.63,32792.52,109172.33 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,42500,186119.02,0.0,19521.9,205640.92,41384.63,12424.5,11236.15,65045.28,270686.2 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,28809,107587.2,0.0,0.0,107587.2,21819.54,9320.41,7867.57,39007.52,146594.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,12717,49695.01,4099.85,4602.48,58397.34,11584.84,7167.97,4674.34,23427.15,81824.49 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,1949,102019.04,0.0,0.0,102019.04,21026.28,12424.5,8227.24,41678.02,143697.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,5464,61428.0,0.0,0.0,61428.0,12660.6,12424.5,5094.41,30179.51,91607.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",40014,163996.28,46374.21,13119.71,223490.2,34851.72,12305.03,569.53,47726.28,271216.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,19223,81942.04,14490.72,6385.16,102817.92,18250.18,12424.62,8156.01,38830.81,141648.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",25743,98212.62,12945.77,6688.94,117847.33,20874.58,12424.5,9390.68,42689.76,160537.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38416,41829.7,0.0,1659.36,43489.06,671.02,0.0,5792.0,6463.02,49952.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,38632,91386.2,0.0,0.0,91386.2,18411.11,10142.69,7462.7,36016.5,127402.7 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,2271,32251.95,0.0,0.0,32251.95,0.0,6179.39,2459.04,8638.43,40890.38 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),6494,120191.54,0.0,1500.0,121691.54,24572.04,12424.5,9031.42,46027.96,167719.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1175,67856.96,20605.01,650.34,89112.31,18759.27,13369.66,6959.61,39088.54,128200.85 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36119,48255.94,0.0,0.0,48255.94,10537.51,10636.75,4014.38,25188.64,73444.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42086,1068.6,0.0,35.62,1104.22,136.02,0.0,566.06,702.08,1806.3 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,20137,75781.22,0.0,0.0,75781.22,17253.11,9449.97,1213.66,27916.74,103697.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,4577,13684.25,0.0,0.0,13684.25,0.0,3034.46,1062.11,4096.57,17780.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,40566,52258.04,0.0,1764.4,54022.44,11505.51,4705.54,133.34,16344.39,70366.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,42043,196584.03,0.0,0.0,196584.03,39562.78,12424.51,11158.76,63146.05,259730.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5079,64562.34,24143.48,7479.64,96185.46,19647.06,12721.67,7525.61,39894.34,136079.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,49354,5327.18,110.0,139.49,5576.67,0.0,2490.87,432.78,2923.65,8500.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8121,Investigator/Transit Fare Supv,36330,87325.37,2205.53,7223.07,96753.97,19318.7,12259.46,7896.51,39474.67,136228.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34113,80949.91,4217.08,5318.97,90485.96,16774.33,12424.51,1622.89,30821.73,121307.69 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,1229,11608.01,570.03,1076.94,13254.98,2625.2,1911.46,1063.13,5599.79,18854.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,44175,56531.0,0.0,3604.35,60135.35,11780.12,12424.5,4721.28,28925.9,89061.25 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,37740,129895.02,0.0,0.0,129895.02,26141.49,12424.5,9918.16,48484.15,178379.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47566,35332.35,648.7,460.07,36441.12,10427.74,7026.47,2757.84,20212.05,56653.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37731,56531.0,0.0,7066.95,63597.95,13744.54,12424.5,5101.46,31270.5,94868.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,764,11460.8,0.0,0.0,11460.8,227.45,4969.8,917.18,6114.43,17575.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,13632,42450.02,0.0,0.0,42450.02,8443.51,7167.98,3292.52,18904.01,61354.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,40000,81157.11,581.63,600.0,82338.74,16838.39,12424.5,6738.5,36001.39,118340.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20540,43127.01,2522.95,0.0,45649.96,10202.87,10513.03,3662.57,24378.47,70028.43 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,39781,54124.01,0.0,0.0,54124.01,12110.45,12424.5,4488.16,29023.11,83147.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51253,1828.1,0.0,2.21,1830.31,0.0,991.57,141.7,1133.27,2963.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,1372,85004.0,18402.84,2497.11,105903.95,17519.6,12424.5,8285.65,38229.75,144133.7 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,51413,67261.0,6906.93,749.0,74916.93,13991.51,12424.5,6174.57,32590.58,107507.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,8002,85392.45,14802.74,9216.06,109411.25,17854.87,12472.29,1806.68,32133.84,141545.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,40946,74107.01,0.0,11157.31,85264.32,16259.1,5256.54,6810.14,28325.78,113590.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19044,61108.13,0.0,2329.24,63437.37,11777.8,6654.28,5049.29,23481.37,86918.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3308,15440.97,3406.19,689.08,19536.24,4327.79,3058.28,1469.48,8855.55,28391.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,15019,23770.0,0.0,0.0,23770.0,4423.6,3345.08,1834.4,9603.08,33373.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,25443,11664.2,0.0,876.73,12540.93,2697.22,3058.34,939.89,6695.45,19236.38 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,476C,Personnel/Payroll Repres,41408,82189.81,0.0,4617.0,86806.81,16915.62,12424.5,7114.54,36454.66,123261.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35923,5797.41,0.0,0.0,5797.41,0.0,2458.62,465.39,2924.01,8721.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5666,108886.37,37468.77,18041.43,164396.57,25237.35,15052.75,2699.52,42989.62,207386.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37765,11426.38,0.0,0.0,11426.38,453.13,4954.87,914.51,6322.51,17748.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19303,47409.15,3077.33,2200.95,52687.43,14110.2,9419.26,3997.17,27526.63,80214.06 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,11949,40342.75,4090.41,1201.1,45634.26,9794.52,12255.88,3692.05,25742.45,71376.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",43382,300.0,0.0,0.0,300.0,0.0,0.0,23.73,23.73,323.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,42234,87231.22,0.0,0.0,87231.22,17962.78,10775.88,7187.86,35926.52,123157.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16585,13968.5,0.0,663.7,14632.2,0.0,3469.0,1134.37,4603.37,19235.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33523,108677.24,7425.32,13401.91,129504.47,23232.39,14304.31,2206.03,39742.73,169247.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,38581,83862.51,6260.63,820.16,90943.3,17455.32,12424.52,7303.55,37183.39,128126.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,12729,31366.65,4115.17,1624.73,37106.55,6044.03,6140.57,2834.14,15018.74,52125.29 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21597,47252.98,0.0,2610.47,49863.45,10431.19,10412.51,4114.84,24958.54,74821.99 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,43688,76793.91,1877.88,2126.57,80798.36,16245.93,12380.96,6677.87,35304.76,116103.12 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,24310,63547.61,0.0,0.0,63547.61,13070.16,12424.5,5103.87,30598.53,94146.14 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,42033,88048.31,0.0,0.0,88048.31,18166.19,12472.29,6975.8,37614.28,125662.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),6141,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11072.31,61627.45,251102.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37835,57594.41,0.0,88.41,57682.82,0.0,4814.07,3978.19,8792.26,66475.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10278,19827.73,0.0,0.0,19827.73,1110.01,8538.56,1537.2,11185.77,31013.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,19387,58193.01,0.0,0.0,58193.01,11980.6,12424.5,4619.33,29024.43,87217.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9187,"Deputy Dir II, MTA",47971,210857.16,0.0,0.0,210857.16,42435.42,12424.5,19626.13,74486.05,285343.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,22432,10894.45,0.0,227.03,11121.48,2869.35,2843.3,906.63,6619.28,17740.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,37157,66217.81,0.0,0.0,66217.81,13542.58,11420.99,5229.55,30193.12,96410.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49820,7340.0,550.5,275.25,8165.75,1614.08,1911.46,649.35,4174.89,12340.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,20926,16248.0,4475.24,471.5,21194.74,3750.18,2867.18,1692.0,8309.36,29504.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,34110,72699.07,0.0,1584.0,74283.07,15307.81,12424.5,5774.41,33506.72,107789.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6832,5310.0,0.0,390.82,5700.82,1060.92,1194.67,442.11,2697.7,8398.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,31828,66102.04,3456.77,312.71,69871.52,13685.35,12424.5,5641.21,31751.06,101622.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10496,2948.13,0.0,0.0,2948.13,0.0,1237.97,229.9,1467.87,4416.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,52858,37200.51,7755.31,4818.88,49774.7,7788.38,4730.87,833.46,13352.71,63127.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,42919,97770.51,19640.32,9372.62,126783.45,26070.76,12424.5,2158.36,40653.62,167437.07 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,23063,3879.56,0.0,92.96,3972.52,873.55,839.25,316.86,2029.66,6002.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,32927,48982.34,962.21,427.13,50371.68,10233.65,8504.51,3951.76,22689.92,73061.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41402,49.0,0.0,0.0,49.0,0.0,23.89,3.8,27.69,76.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42438,113233.61,48257.57,24324.7,185815.88,26397.01,15196.13,3142.4,44735.54,230551.42 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,30604,9463.59,0.0,3591.48,13055.07,0.0,0.0,189.3,189.3,13244.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,31700,158276.28,0.0,5588.07,163864.35,27123.24,10502.29,7268.0,44893.53,208757.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7482,Power Generation Technician 2,22128,102895.07,13947.1,6057.9,122900.07,22023.37,12197.51,9784.16,44005.04,166905.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,27025,81942.0,7261.43,4277.05,93480.48,17022.67,12424.5,7464.62,36911.79,130392.27 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,46984,58125.91,0.0,0.0,58125.91,11949.12,12137.78,4006.45,28093.35,86219.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,11040,115028.22,0.0,101.74,115129.96,22821.81,10728.08,9278.47,42828.36,157958.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9542,119467.48,23352.42,11221.45,154041.35,23621.01,12424.5,2579.43,38624.94,192666.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18823,65486.74,23051.03,639.67,89177.44,18085.52,12900.81,6970.7,37957.03,127134.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,43623,61247.98,0.0,0.0,61247.98,12621.73,12326.12,4891.43,29839.28,91087.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29967,910.4,0.0,0.0,910.4,0.0,382.3,70.67,452.97,1363.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,4999,21630.81,323.25,0.0,21954.06,1353.43,4796.57,1708.84,7858.84,29812.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,30598,77665.7,0.0,0.0,77665.7,16036.88,11994.43,6330.57,34361.88,112027.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,4526,44641.5,2992.37,864.0,48497.87,5582.91,6929.04,3666.45,16178.4,64676.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,14232,100554.01,0.0,0.0,100554.01,20724.83,12424.51,8189.51,41338.85,141892.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,1477,33415.0,0.0,336.0,33751.0,6435.86,6690.12,2762.25,15888.23,49639.23 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,1644,56114.13,1900.68,6823.08,64837.89,12738.51,11083.43,5334.04,29155.98,93993.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,49636,74862.0,13060.65,1494.37,89417.02,15395.19,12328.91,7180.07,34904.17,124321.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,15788,33728.01,0.0,0.0,33728.01,6114.9,2867.19,2071.8,11053.89,44781.9 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,30362,67911.02,11031.65,4871.68,83814.35,14397.33,12424.5,6758.27,33580.1,117394.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,48775,66102.0,379.05,1393.97,67875.02,13884.52,12424.5,5604.22,31913.24,99788.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47849,111685.71,61.19,14216.91,125963.81,23103.0,10829.62,9904.25,43836.87,169800.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42282,3709.21,0.0,186.27,3895.48,0.0,925.86,301.93,1227.79,5123.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49004,125432.8,14390.36,3043.88,142867.04,21183.22,11105.6,5502.07,37790.89,180657.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,12607,81157.03,2461.83,1579.88,85198.74,16993.46,12424.5,6972.14,36390.1,121588.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7881,55610.49,0.0,8066.26,63676.75,13708.86,12369.79,4998.7,31077.35,94754.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",45496,103098.48,0.0,11286.94,114385.42,22940.18,11920.0,583.88,35444.06,149829.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,9630,22683.87,0.0,132.15,22816.02,5465.09,6648.31,1792.93,13906.33,36722.35 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,38298,143188.0,0.0,0.0,143188.0,28816.76,12424.5,10255.52,51496.78,194684.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,7091,59427.57,10187.31,5302.2,74917.08,13333.72,11752.98,6114.78,31201.48,106118.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52119,54181.08,12776.35,4063.62,71021.05,15608.55,10652.99,5324.54,31586.08,102607.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40454,1164.52,0.0,9.46,1173.98,0.0,143.35,91.12,234.47,1408.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44533,136071.0,0.0,26446.02,162517.02,26995.08,12424.5,6703.07,46122.65,208639.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31617,62820.52,5304.51,945.36,69070.39,17594.66,12403.78,4856.53,34854.97,103925.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",16587,10436.4,0.0,0.0,10436.4,0.0,2484.9,26.87,2511.77,12948.17 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,50811,26775.33,0.0,0.0,26775.33,4982.88,3673.59,2003.47,10659.94,37435.27 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",SFRA,SF Redevelopment Agency,O615,Dvlpmnt Spec (OCII),36293,95634.01,0.0,0.0,95634.01,18836.37,10035.17,7629.51,36501.05,132135.06 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,2820,108368.76,8122.44,17025.21,133516.41,30508.98,12424.5,2274.12,45207.6,178724.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,26655,58585.69,1037.28,9111.3,68734.27,3415.13,8691.66,5214.18,17320.97,86055.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",4503,3010.5,0.0,0.0,3010.5,0.0,716.81,233.08,949.89,3960.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46579,59320.69,0.0,1442.23,60762.92,12467.39,11801.13,5021.42,29289.94,90052.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,15348,79722.0,0.0,2629.0,82351.0,16982.66,12424.5,6002.23,35409.39,117760.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,38002,80813.49,720.5,2325.47,83859.46,17047.29,9939.6,6907.28,33894.17,117753.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,12972,16771.05,34.09,260.0,17065.14,0.0,4408.31,1266.68,5674.99,22740.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40247,77071.02,0.0,784.0,77855.02,16048.13,12424.5,6454.92,34927.55,112782.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,5288,136464.56,369.5,250.0,137084.06,27428.29,9198.91,10015.78,46642.98,183727.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38574,13521.25,0.0,413.76,13935.01,0.0,5163.93,1079.66,6243.59,20178.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,41562,56302.93,0.0,1720.0,58022.93,12849.9,11763.14,4709.14,29322.18,87345.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13346,42210.17,2415.18,1362.88,45988.23,11288.76,12841.62,3481.57,27611.95,73600.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,3225,70398.36,0.0,1969.29,72367.65,14874.56,12330.6,5972.49,33177.65,105545.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,26925,15612.41,0.0,0.0,15612.41,4028.0,4721.91,1258.83,10008.74,25621.15 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,34217,34404.1,0.0,120.0,34524.1,7629.1,7120.2,2774.66,17523.96,52048.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22904,117330.2,335.7,8631.01,126296.91,17819.51,12376.71,5209.37,35405.59,161702.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23787,117137.5,25344.29,10027.95,152509.74,24557.42,12424.5,393.49,37375.41,189885.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,31795,99016.4,0.0,0.0,99016.4,20379.95,12233.35,7949.67,40562.97,139579.37 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,36203,51085.01,0.0,0.0,51085.01,9854.39,7167.99,4068.59,21090.97,72175.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,47857,176257.01,0.0,0.0,176257.01,35471.94,12424.51,10780.87,58677.32,234934.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,36299,55741.26,949.95,545.95,57237.16,11778.96,10662.32,4763.91,27205.19,84442.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,34245,11684.18,0.0,73.58,11757.76,0.0,0.0,929.91,929.91,12687.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,49424,49083.1,0.0,0.0,49083.1,9998.81,10990.91,3981.62,24971.34,74054.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H032,"Capt,Fire Prev Or Fire Invsgtn",2793,168863.54,61487.27,10131.81,240482.62,35169.05,12424.5,4048.9,51642.45,292125.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,28053,80570.0,0.0,0.0,80570.0,16605.95,12424.52,6683.31,35713.78,116283.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,15397,81157.0,15490.27,22396.95,119044.22,20470.77,12424.5,9477.96,42373.23,161417.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,44958,63683.2,0.0,1059.75,64742.95,13049.37,9950.65,5338.02,28338.04,93080.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2102,98694.45,3465.58,8671.49,110831.52,20474.77,12424.5,1794.52,34693.79,145525.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31200,13626.42,0.0,0.0,13626.42,3503.18,5737.07,1101.76,10342.01,23968.43 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,40711,70562.54,0.0,0.0,70562.54,14338.4,7834.07,5730.28,27902.75,98465.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,37832,84887.0,57594.36,13861.42,156342.78,19681.75,12424.51,10341.63,42447.89,198790.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,16020,158707.02,0.0,0.0,158707.02,31940.4,12424.5,25459.51,69824.41,228531.43 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,37511,84887.71,0.0,1406.65,86294.36,17791.88,12467.15,6879.51,37138.54,123432.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49681,4511.32,0.0,0.0,4511.32,0.0,1956.26,356.74,2313.0,6824.32 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,5505,88478.0,0.0,4716.5,93194.5,18246.67,12424.5,31258.53,61929.7,155124.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39650,7241.25,0.0,15.0,7256.25,0.0,2883.62,561.78,3445.4,10701.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14366,131164.32,1173.3,27589.97,159927.59,30280.78,10931.18,7389.23,48601.19,208528.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,35096,140282.95,2640.47,15581.61,158505.03,27739.18,12364.77,2577.01,42680.96,201185.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,35433,75605.0,14119.39,3058.51,92782.9,15722.38,12424.5,7317.49,35464.37,128247.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,50780,62395.6,0.0,2330.49,64726.09,13267.06,12409.75,5042.99,30719.8,95445.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,18421,73957.01,5499.4,0.0,79456.41,15242.9,12424.5,6247.32,33914.72,113371.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,5323,26203.16,0.0,328.11,26531.27,5963.19,7857.9,2081.95,15903.04,42434.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27932,58013.96,9515.49,4091.63,71621.08,14250.94,11449.3,5251.29,30951.53,102572.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,40497,85368.06,0.0,1058.4,86426.46,17818.11,12424.5,7113.59,37356.2,123782.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",17913,150233.97,4530.6,9702.98,164467.55,31297.62,15196.12,2757.48,49251.22,213718.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,38541,116976.0,0.0,0.0,116976.0,23541.49,12424.52,9455.97,45421.98,162397.98 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,17578,20143.29,0.0,1243.7,21386.99,4554.94,3267.41,1750.36,9572.71,30959.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3541,Curator 1,16715,24606.02,0.0,520.0,25126.02,5410.87,5734.39,1920.71,13065.97,38191.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5277,119463.83,2852.08,821.84,123137.75,23633.47,12424.5,2050.37,38108.34,161246.09 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,38885,12691.47,0.0,49.2,12740.67,3274.4,3436.15,1042.31,7752.86,20493.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5894,71680.69,0.0,6242.87,77923.56,4386.27,0.0,6788.77,11175.04,89098.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,38486,84644.01,242.55,4046.1,88932.66,17556.45,12424.5,7074.35,37055.3,125987.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3836,100479.0,325.35,3095.96,103900.31,20380.13,10990.9,7892.5,39263.53,143163.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,9134,58947.86,652.8,250.0,59850.66,12133.52,12423.0,4800.35,29356.87,89207.53 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45109,184289.02,0.0,5185.78,189474.8,38130.64,12424.5,11021.92,61577.06,251051.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,52659,85368.06,3507.74,0.0,88875.8,17594.6,12424.5,7225.14,37244.24,126120.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,47549,85410.3,10141.64,3692.08,99244.02,18236.01,12424.5,8138.16,38798.67,138042.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10247,358.15,0.0,0.0,358.15,0.0,155.31,27.73,183.04,541.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,40386,67261.04,0.0,1885.3,69146.34,14005.09,12424.5,5476.03,31905.62,101051.96 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),21999,32552.0,0.0,1302.08,33854.08,6300.25,3822.92,595.09,10718.26,44572.34 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,26558,104645.6,0.0,100.0,104745.6,21532.36,12424.5,8205.48,42162.34,146907.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,14996,69222.13,1932.69,2864.95,74019.77,14394.73,11401.99,5715.26,31511.98,105531.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51669,3670.05,0.0,0.0,3670.05,0.0,1541.12,283.72,1824.84,5494.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,37366,97774.0,9482.59,8769.96,116026.55,25913.86,12424.5,1964.38,40302.74,156329.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,24326,108038.02,17573.11,2616.78,128227.91,22273.91,12424.5,9875.54,44573.95,172801.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35529,91749.82,14356.92,634.37,106741.11,18708.56,9557.31,1814.99,30080.86,136821.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,1.0,Miscellaneous Unrepresented Employees,1500,Administrative Secretarial,AC35,Bd/Comm Secretary 3,51470,108939.0,0.0,0.0,108939.0,21924.09,12424.5,8765.54,43114.13,152053.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31482,56531.0,0.0,6879.4,63410.4,12333.35,12424.5,5232.11,29989.96,93400.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40975,58178.11,3576.73,3042.74,64797.58,15886.58,13328.44,4682.44,33897.46,98695.04 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,33825,220899.0,0.0,0.0,220899.0,44441.32,12424.48,11464.16,68329.96,289228.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,18169,90618.75,8956.51,10258.27,109833.53,20721.63,11183.48,8986.94,40892.05,150725.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,52212,66000.42,585.03,2114.25,68699.7,13757.97,11149.56,6162.81,31070.34,99770.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43062,78971.39,15212.78,4317.38,98501.55,14888.29,8123.71,813.04,23825.04,122326.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48937,6061.0,0.0,867.74,6928.74,1200.24,2628.26,566.73,4395.23,11323.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43412,56531.0,1972.31,2930.55,61433.86,11796.81,12424.5,5030.86,29252.17,90686.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,34910,6692.0,0.0,0.0,6692.0,1501.02,955.73,556.83,3013.58,9705.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50734,55490.86,3549.95,4167.87,63208.68,16467.1,10951.6,4639.38,32058.08,95266.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30042,53853.74,1351.91,1418.84,56624.49,13655.92,11660.75,4308.08,29624.75,86249.24 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",53140,69120.57,6050.24,4670.1,79840.91,16833.38,12371.1,1635.47,30839.95,110680.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,31534,76728.0,0.0,0.0,76728.0,15813.99,12424.5,6071.62,34310.11,111038.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",SFRA,SF Redevelopment Agency,O970,Accounting Supervisor (OCII),23784,111016.03,0.0,0.0,111016.03,21866.07,10035.18,9072.84,40974.09,151990.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,45821,129461.65,41710.49,17007.57,188179.71,28733.41,15034.61,3156.94,46924.96,235104.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,34366,95013.53,137.29,0.0,95150.82,19569.18,12424.51,7412.78,39406.47,134557.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,5587,102693.49,151.51,5040.04,107885.04,22194.1,12385.26,8536.62,43115.98,151001.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,34966,14716.0,906.26,2164.29,17786.55,3335.8,3106.13,1464.97,7906.9,25693.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4782,0.0,0.0,2135.4,2135.4,0.0,68.5,144.23,212.73,2348.13 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,25485,130845.82,12584.12,15816.83,159246.77,28792.93,15196.12,2640.77,46629.82,205876.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,39050,13346.0,0.0,315.56,13661.56,2960.19,2867.19,1102.94,6930.32,20591.88 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,48255,10410.0,0.0,0.0,10410.0,2334.96,1433.6,834.65,4603.21,15013.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10065,59963.54,6471.22,1782.94,68217.7,14222.68,11867.07,5161.22,31250.97,99468.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,48690,71311.0,0.0,624.0,71935.0,14826.41,12424.5,5964.09,33215.0,105150.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,30845,64222.53,0.0,3669.01,67891.54,13619.59,12170.21,5621.92,31411.72,99303.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,19073,176172.8,0.0,0.0,176172.8,35456.67,12418.51,10824.92,58700.1,234872.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,40871,31250.0,0.0,0.0,31250.0,5815.63,5256.52,2444.0,13516.15,44766.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,17015,69850.35,23541.17,5054.2,98445.72,14690.96,12422.54,7641.4,34754.9,133200.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,41023,81776.03,0.0,624.0,82400.03,16983.28,12424.5,6580.98,35988.76,118388.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48559,57101.14,569.9,7993.78,65664.82,13310.14,4787.97,5094.45,23192.56,88857.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,51604,106953.01,7730.77,1872.52,116556.3,22067.6,12424.53,9169.85,43661.98,160218.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,38053,28269.18,0.0,0.0,28269.18,5125.2,2341.54,3446.05,10912.79,39181.97 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36463,97540.97,62647.73,21629.6,181818.3,28262.11,12394.64,2893.68,43550.43,225368.73 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,19404,17886.82,0.0,0.0,17886.82,0.0,5882.52,1386.59,7269.11,25155.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,1617,55030.79,0.0,1651.8,56682.59,11357.17,12093.64,4610.29,28061.1,84743.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41976,141487.19,1423.57,8925.62,151836.38,28020.14,12424.5,2587.58,43032.22,194868.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,53056,21180.0,0.0,0.0,21180.0,5464.44,5734.39,1727.45,12926.28,34106.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,17151,66706.31,4439.67,0.0,71145.98,13689.78,12010.97,5178.41,30879.16,102025.14 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,39397,69061.0,0.0,0.0,69061.0,13730.41,8888.3,5324.74,27943.45,97004.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,30913,97724.0,10928.74,0.0,108652.74,20140.67,12424.5,8764.69,41329.86,149982.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,46612,84644.0,108330.65,22323.98,215298.63,17556.45,12424.5,11294.78,41275.73,256574.36 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14754,97762.85,13793.18,5172.89,116728.92,25056.0,12424.5,663.82,38144.32,154873.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,8384,31552.0,0.0,0.0,31552.0,5871.8,5256.52,2567.7,13696.02,45248.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51217,6931.93,0.0,278.89,7210.82,1247.23,0.0,2897.43,4144.66,11355.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,51009,98278.49,0.0,340.0,98618.49,20328.01,12468.46,7980.69,40777.16,139395.65 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,15242,55083.81,0.0,555.51,55639.32,11367.87,11081.05,4595.45,27044.37,82683.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,10086,25604.25,526.62,2738.81,28869.68,6455.14,6188.36,2187.13,14830.63,43700.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,22021,49679.01,0.0,2949.45,52628.46,12065.34,12424.5,4307.53,28797.37,81425.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,5543,65589.63,0.0,0.0,65589.63,13487.86,12424.5,5263.22,31175.58,96765.21 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,18181,91203.0,0.0,0.0,91203.0,18802.0,10035.18,7506.45,36343.63,127546.63 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,26021,74412.06,0.0,3624.0,78036.06,15474.54,12424.5,6285.57,34184.61,112220.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,7863,11893.2,0.0,0.0,11893.2,1770.98,2365.44,978.65,5115.07,17008.27 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,45935,58397.63,3510.64,3857.43,65765.7,12232.87,9833.57,5434.64,27501.08,93266.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17925,56531.0,0.0,4789.13,61320.13,13353.55,12424.5,4913.51,30691.56,92011.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23918,66295.55,108.45,11807.23,78211.23,14500.99,7233.1,6192.06,27926.15,106137.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H006,"Invstgtor,Fire Dept",5504,57925.24,34959.32,7532.13,100416.69,11501.78,6451.18,1718.4,19671.36,120088.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31855,43955.51,3041.6,2574.77,49571.88,12012.32,13061.68,3719.78,28793.78,78365.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4316,9655.46,0.0,1380.21,11035.67,1386.95,0.0,1800.96,3187.91,14223.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25465,1016.75,0.0,39.2,1055.95,0.0,495.79,81.95,577.74,1633.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42164,119455.91,48448.44,8878.91,176783.26,23662.83,12424.5,3013.29,39100.62,215883.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,53057,54453.74,0.0,960.0,55413.74,11424.21,9939.6,4583.56,25947.37,81361.11 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,45647,75957.56,0.0,1085.0,77042.56,15855.64,12247.33,6329.01,34431.98,111474.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31098,68506.02,0.0,825.0,69331.02,13871.21,6090.81,5686.85,25648.87,94979.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,53085,117140.92,11575.49,4632.29,133348.7,23164.17,12424.51,2225.37,37814.05,171162.75 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,45813,12087.06,383.15,0.0,12470.21,0.0,0.0,986.13,986.13,13456.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23319,48170.31,0.0,2968.52,51138.83,1566.41,0.0,1542.37,3108.78,54247.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,29300,9999.0,0.0,137.8,10136.8,2527.61,3016.52,816.54,6360.67,16497.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,2301,63819.67,9999.42,3779.95,77599.04,13629.82,12290.52,6385.27,32305.61,109904.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,19876,35449.4,2615.97,1130.95,39196.32,7012.86,5969.44,3122.12,16104.42,55300.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,3058,99743.54,0.0,0.0,99743.54,20515.83,12424.5,8036.64,40976.97,140720.51 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,24406,48075.05,639.05,0.0,48714.1,11458.76,11468.77,3879.31,26806.84,75520.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14728,125364.87,336.44,19624.67,145325.98,28796.22,11099.62,10067.87,49963.71,195289.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,18911,200107.11,1450.69,10793.44,212351.24,40264.73,12424.5,548.98,53238.21,265589.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,9421,4463.51,0.0,0.0,4463.51,1151.58,1349.97,366.99,2868.54,7332.05 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,9919,5268.0,0.0,0.0,5268.0,0.0,1433.6,408.33,1841.93,7109.93 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17570,4412.5,0.0,275.78,4688.28,1138.43,1194.67,391.52,2724.62,7412.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,14016,67599.39,7168.27,9250.95,84018.61,15176.62,11110.37,6867.2,33154.19,117172.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,35703,70349.88,0.0,0.0,70349.88,14149.02,0.0,5800.96,19949.98,90299.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,38569,69976.5,30394.55,10423.75,110794.8,15623.01,12376.71,8762.88,36762.6,147557.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5177,Safety Officer,32531,123515.0,0.0,0.0,123515.0,25068.82,11442.25,9908.39,46419.46,169934.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,53156,97769.54,44353.17,11070.77,153193.48,26463.76,12424.5,2555.03,41443.29,194636.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,42498,72495.8,0.0,622.25,73118.05,15065.06,12389.74,6063.12,33517.92,106635.97 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,26217,1769.0,0.0,0.0,1769.0,0.0,477.86,136.95,614.81,2383.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,13265,152525.07,0.0,0.0,152525.07,30690.27,12424.48,10383.54,53498.29,206023.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,18566,74310.6,0.0,0.0,74310.6,15460.41,11315.86,5960.79,32737.06,107047.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,6372,113739.24,9462.41,11348.88,134550.53,25852.72,12408.91,10038.03,48299.66,182850.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,23379,110041.06,0.0,0.0,110041.06,22139.91,12424.5,9038.95,43603.36,153644.42 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,11934,62882.64,0.0,0.0,62882.64,12936.78,12373.73,4304.49,29615.0,92497.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46833,74884.24,9460.63,6808.89,91153.76,16431.81,15052.75,1518.11,33002.67,124156.43 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,19668,99844.49,0.0,0.0,99844.49,22776.88,12424.5,1697.48,36898.86,136743.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31513,56531.0,3167.8,2614.35,62313.15,11780.12,12424.5,5141.0,29345.62,91658.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,40796,55221.09,286.53,1131.52,56639.14,12428.99,12423.0,4578.19,29430.18,86069.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,50109,7193.3,0.0,16.94,7210.24,0.0,2127.99,661.6,2789.59,9999.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44414,119455.87,67836.46,10702.59,197994.92,23662.78,12424.5,3368.42,39455.7,237450.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,45760,42131.01,0.0,0.0,42131.01,0.0,4438.17,3266.22,7704.39,49835.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,44302,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,24055,23913.35,0.0,493.76,24407.11,5363.77,4122.43,1980.47,11466.67,35873.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,42355,54988.89,0.0,1387.81,56376.7,11611.29,7323.41,4380.71,23315.41,79692.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29218,87523.76,3082.17,9906.03,100511.96,17857.73,9664.83,1506.77,29029.33,129541.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,31481,115782.57,0.0,0.0,115782.57,23236.6,11406.04,16989.75,51632.39,167414.96 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34384,9021.26,0.0,628.66,9649.92,2122.02,2380.36,689.92,5192.3,14842.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,11511,31902.13,0.0,2080.9,33983.03,7891.09,7208.01,2770.89,17869.99,51853.02 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,7571,145387.56,0.0,0.0,145387.56,29149.64,12424.5,25182.54,66756.68,212144.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22756,93611.93,19188.88,11571.28,124372.09,19347.91,12424.5,2065.85,33838.26,158210.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,2723,67729.01,4597.87,0.0,72326.88,13956.77,12424.49,5799.19,32180.45,104507.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12941,2741.04,0.0,0.0,2741.04,0.0,1451.51,212.22,1663.73,4404.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33737,2702.76,0.0,0.0,2702.76,0.0,1134.93,210.22,1345.15,4047.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,3290,16506.0,0.0,708.38,17214.38,3702.29,2150.39,1416.67,7269.35,24483.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18545,66232.43,309.79,2420.39,68962.61,18803.2,13052.65,5398.7,37254.55,106217.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,24483,103062.27,0.0,0.0,103062.27,21213.55,12240.95,8311.31,41765.81,144828.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2820,Senior Health Program Planner,33407,105804.04,0.0,624.0,106428.04,21935.15,12424.5,8578.04,42937.69,149365.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50637,93545.97,8870.0,5925.8,108341.77,19510.81,11946.63,1728.66,33186.1,141527.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5102,61397.15,1741.9,1266.35,64405.4,17049.12,12089.1,4909.52,34047.74,98453.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,10789,67599.56,2524.91,0.0,70124.47,13926.5,12400.6,5693.51,32020.61,102145.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,10536,101531.01,0.0,0.0,101531.01,20926.03,12424.5,8342.33,41692.86,143223.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,15566,68722.0,3447.94,0.0,72169.94,14164.02,12424.5,5693.78,32282.3,104452.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,17271,117139.2,3724.97,5405.14,126269.31,23170.33,12424.5,2076.89,37671.72,163941.03 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),3690,50114.75,6553.39,5970.5,62638.64,10450.86,7645.85,1050.17,19146.88,81785.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,14082,56276.0,2567.15,1662.65,60505.8,12894.37,12424.5,4949.57,30268.44,90774.24 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,25768,120111.03,0.0,0.0,120111.03,24172.55,12424.5,9342.7,45939.75,166050.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51365,22604.0,1435.31,410.4,24449.71,5937.71,5256.52,1990.75,13184.98,37634.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,3827,84599.04,981.79,600.0,86180.83,17548.1,12424.51,7055.81,37028.42,123209.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,7.0,"Bricklayers, Local 3",7300,Journeyman Trade,7307,Bricklayer,39864,94871.35,9181.47,2628.0,106680.82,20092.1,12400.61,8431.11,40923.82,147604.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46854,97648.36,9286.34,14433.23,121367.93,27259.93,12409.58,2124.64,41794.15,163162.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",12113,84276.3,0.0,1000.0,85276.3,17548.06,12333.89,6936.57,36818.52,122094.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,17087,92529.97,0.0,4131.9,96661.87,20024.16,11403.11,7840.67,39267.94,135929.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35206,4367.67,0.0,0.0,4367.67,0.0,1144.9,339.0,1483.9,5851.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,25280,52990.51,0.0,0.0,52990.51,11814.32,12424.5,4083.51,28322.33,81312.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,3520,64454.57,22656.32,12269.74,99380.63,14822.11,12422.7,8629.6,35874.41,135255.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",40936,93738.02,974.13,0.0,94712.15,19319.82,12424.5,7813.34,39557.66,134269.81 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,40962,28937.01,0.0,0.0,28937.01,5495.83,6212.25,2356.56,14064.64,43001.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,17680,53517.01,16070.84,2146.75,71734.6,13354.66,12424.5,5514.32,31293.48,103028.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,52621,68722.02,0.0,0.0,68722.02,14164.03,12424.5,5699.92,32288.45,101010.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35569,119467.38,7942.63,13996.32,141406.33,23620.97,12424.5,2401.89,38447.36,179853.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,17904,54780.0,0.0,2227.95,57007.95,13135.96,12424.5,4583.63,30144.09,87152.04 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,2555,28266.3,747.48,60.11,29073.89,6229.53,0.0,2496.09,8725.62,37799.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,45519,83997.2,52067.38,11404.8,147469.38,18735.16,12328.94,10134.97,41199.07,188668.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,49018,132283.33,0.0,250.0,132533.33,26341.51,11116.35,9876.81,47334.67,179868.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26129,54738.8,0.0,7094.19,61832.99,14242.04,12424.5,5002.54,31669.08,93502.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,29792,14644.01,0.0,0.0,14644.01,3284.64,1911.46,1184.79,6380.89,21024.9 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",28003,225.8,0.0,0.0,225.8,0.0,47.79,17.48,65.27,291.07 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,33290,80570.01,0.0,624.0,81194.01,16734.66,12424.5,6599.77,35758.93,116952.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,16330,156147.05,0.0,0.0,156147.05,31413.79,12376.71,10462.72,54253.22,210400.27 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,14789,112209.01,0.0,80.42,112289.43,22582.31,12424.5,9085.46,44092.27,156381.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,9634,93281.0,0.0,1420.0,94701.0,19516.08,12424.5,7541.91,39482.49,134183.49 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,40870,94955.25,0.0,0.0,94955.25,19534.67,12169.8,7767.57,39472.04,134427.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,15298,93281.01,0.0,1360.0,94641.01,19496.99,12424.5,7155.7,39077.19,133718.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13945,1625.25,0.0,162.53,1787.78,0.0,0.0,319.63,319.63,2107.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36526,668.52,0.0,0.0,668.52,0.0,167.25,51.76,219.01,887.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,25094,95574.91,0.0,0.0,95574.91,19660.43,12281.14,7708.76,39650.33,135225.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,18486,4087.15,0.0,0.0,4087.15,0.0,1213.18,317.23,1530.41,5617.56 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,25624,73912.08,1350.62,1746.29,77008.99,15310.56,12201.99,5901.73,33414.28,110423.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31569,0.0,0.0,642.33,642.33,0.0,0.0,49.14,49.14,691.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,37718,86331.7,7982.7,2120.0,96434.4,18224.47,12376.71,7920.54,38521.72,134956.12 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,39496,28053.64,0.0,0.0,28053.64,1508.63,6224.2,2209.6,9942.43,37996.07 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9979,Labor and Employment Advisor,33080,58234.02,0.0,0.0,58234.02,12776.52,5256.52,8074.63,26107.67,84341.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,29697,49596.68,0.0,3600.75,53197.43,12171.05,12404.43,4061.63,28637.11,81834.54 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,29865,92752.07,0.0,1640.46,94392.53,19458.16,12353.95,7533.53,39345.64,133738.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45389,11439.5,0.0,156.27,11595.77,0.0,4898.12,945.31,5843.43,17439.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,4097,44737.0,38.13,0.0,44775.13,10034.53,5256.47,3613.91,18904.91,63680.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38937,62335.24,15642.32,4043.25,82020.81,18157.24,12280.12,6147.03,36584.39,118605.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,29453,81157.01,13168.25,12946.28,107271.54,18709.76,12424.49,8747.71,39881.96,147153.5 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,34963,8195.71,0.0,0.0,8195.71,0.0,2455.04,635.27,3090.31,11286.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,36808,0.0,0.0,179.17,179.17,0.0,0.0,13.71,13.71,192.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,6022,63887.01,416.67,1038.68,65342.36,13379.72,12424.44,5161.83,30965.99,96308.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,32373,121964.13,4032.56,8019.96,134016.65,24629.72,12370.74,2392.03,39392.49,173409.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,7723,61507.9,0.0,0.0,61507.9,12673.06,12378.49,4987.53,30039.08,91546.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,42249,3142.66,0.0,0.0,3142.66,0.0,1469.44,243.74,1713.18,4855.84 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,39966,67911.03,5387.23,3340.83,76639.09,14389.48,12424.5,6030.4,32844.38,109483.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,12413,89781.06,0.0,18376.01,108157.07,18840.85,10513.04,8760.93,38114.82,146271.89 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",7125,69109.81,30126.5,3626.35,102862.66,16603.6,12368.83,1975.1,30947.53,133810.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,45096,73316.6,470.7,826.2,74613.5,15120.03,11086.47,5987.64,32194.14,106807.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51352,119455.23,22338.17,16652.73,158446.13,24135.01,12424.5,410.55,36970.06,195416.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,49859,66942.0,0.0,0.0,66942.0,13237.22,9079.44,5521.81,27838.47,94780.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,53118,62468.8,13447.83,300.04,76216.67,12866.34,12424.5,6193.48,31484.32,107700.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44886,119465.59,23167.06,5668.27,148300.92,23627.22,12424.5,2471.99,38523.71,186824.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31004,3809.75,0.0,3.43,3813.18,0.0,1857.7,295.8,2153.5,5966.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44741,68673.22,0.0,7406.14,76079.36,14762.27,8446.27,1247.58,24456.12,100535.48 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,22.0,"Prof & Tech Engineers - Personnel, Local 21",1500,Administrative Secretarial,1549,"Sctry, Juv Probation Comm",10092,57597.01,709.88,0.0,58306.89,11918.34,8959.98,4368.82,25247.14,83554.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,31042,56531.0,0.0,3241.05,59772.05,11783.02,12424.5,4692.63,28900.15,88672.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,33247,190699.05,17506.3,15423.2,223628.55,41482.47,10264.55,11443.93,63190.95,286819.5 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,8231,4264.75,189.26,0.0,4454.01,0.0,1266.34,345.71,1612.05,6066.06 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,2223,67261.05,0.0,0.0,67261.05,13862.82,12424.5,5285.76,31573.08,98834.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,47703,90436.04,0.0,0.0,90436.04,18551.61,10709.74,7241.14,36502.49,126938.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,7.0,"Bricklayers, Local 3",7300,Journeyman Trade,7307,Bricklayer,34648,94047.01,1021.78,2586.0,97654.79,19943.21,12296.39,8015.9,40255.5,137910.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,39199,56276.06,0.0,1324.0,57600.06,12891.98,12424.5,4454.92,29771.4,87371.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",51149,20240.0,5737.96,8084.24,34062.2,3594.64,1911.46,555.42,6061.52,40123.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,30039,53984.43,248.35,2050.84,56283.62,2878.26,9013.74,4409.09,16301.09,72584.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2488,Supv Chemist,5418,119321.04,0.0,0.0,119321.04,24013.57,12424.5,9797.25,46235.32,165556.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30148,30701.69,3435.95,1136.33,35273.97,8518.49,9593.75,2500.35,20612.59,55886.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,28261,23065.8,0.0,0.0,23065.8,4181.81,2484.89,1753.01,8419.71,31485.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",4100,Property Administration,4119,Events & Facilities Specialist,13170,13385.41,1443.11,187.4,15015.92,3044.39,1911.46,1212.49,6168.34,21184.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16496,1010.77,0.0,12.96,1023.73,0.0,0.0,72.35,72.35,1096.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,17260,60290.66,0.0,2693.71,62984.37,12967.92,12132.94,5123.86,30224.72,93209.09 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,52216,99967.98,17022.2,25731.44,142721.62,21492.99,12424.5,10060.52,43978.01,186699.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28771,60709.12,0.0,7773.32,68482.44,0.0,5349.71,5305.24,10654.95,79137.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,16399,70152.71,21161.56,9039.67,100353.94,15553.0,12408.08,8188.59,36149.67,136503.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49409,67559.54,3296.25,5606.98,76462.77,20093.66,13315.6,4820.4,38229.66,114692.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33226,61960.31,13054.38,2062.11,77076.8,17476.85,12206.06,6055.7,35738.61,112815.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35503,59032.38,0.0,1140.0,60172.38,13391.56,12355.79,4891.89,30639.24,90811.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,8661,62514.61,0.0,1040.0,63554.61,13092.63,12424.5,5167.94,30685.07,94239.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,20124,23369.72,498.6,818.73,24687.05,5384.59,6650.81,1991.73,14027.13,38714.18 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,47422,24635.33,924.17,0.0,25559.5,0.0,5591.03,1981.62,7572.65,33132.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,19045,997.0,0.0,40.0,1037.0,0.0,238.93,80.49,319.42,1356.42 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,36202,99456.04,0.0,1176.46,100632.5,20387.54,10513.04,8111.98,39012.56,139645.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43420,36083.5,0.0,0.0,36083.5,7094.86,8075.92,2761.38,17932.16,54015.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,478,80.65,0.0,1.61,82.26,0.0,23.89,6.37,30.26,112.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30507,40240.37,5983.07,1903.02,48126.46,10910.71,12578.15,3630.63,27119.49,75245.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10218,2699.9,0.0,847.58,3547.48,696.57,1170.77,288.81,2156.15,5703.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,28184,88802.44,1112.17,2630.72,92545.33,18878.5,11898.82,7416.8,38194.12,130739.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47761,127870.05,0.0,5031.69,132901.74,26710.79,10979.55,9855.69,47546.03,180447.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,35047,84644.0,44065.66,16962.27,145671.93,19854.61,12424.5,10113.86,42392.97,188064.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31643,6041.03,0.0,1009.25,7050.28,4115.9,490.11,320.47,4926.48,11976.76 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",9397,81799.2,0.0,11114.09,92913.29,17086.19,5160.95,7463.72,29710.86,122624.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,3747,106605.02,0.0,0.0,106605.02,21971.81,12424.5,7957.88,42354.19,148959.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7915,148230.41,0.0,15944.02,164174.43,21278.04,12352.82,6121.65,39752.51,203926.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22049,44891.04,0.0,23704.99,68596.03,11247.94,3764.15,5531.0,20543.09,89139.12 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,36804,63705.01,0.0,0.0,63705.01,13129.83,12424.5,4444.66,29998.99,93704.0 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,9944,35402.75,880.17,3329.35,39612.27,1008.48,7922.11,3114.58,12045.17,51657.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,16468,6962.1,0.0,0.0,6962.1,1295.64,1099.09,535.87,2930.6,9892.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43809,7718.36,0.0,0.0,7718.36,0.0,3288.31,621.96,3910.27,11628.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48149,9287.94,0.0,326.08,9614.02,0.0,4027.57,774.19,4801.76,14415.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,32807,45038.5,19098.88,0.0,64137.38,10792.43,12424.5,5142.48,28359.41,92496.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19271,43199.94,871.2,3514.25,47585.39,10863.63,10769.89,3771.27,25404.79,72990.18 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,29098,143188.04,0.0,5254.98,148443.02,28816.78,12424.5,10343.94,51585.22,200028.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10435,0.0,0.0,92.94,92.94,0.0,0.0,1.35,1.35,94.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,44740,84644.0,27502.21,9725.93,121872.14,18217.22,12424.5,9712.95,40354.67,162226.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,38014,19991.65,445.43,260.03,20697.11,0.0,6654.28,1626.04,8280.32,28977.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45850,116248.7,1979.18,6433.52,124661.4,20218.57,11270.88,8110.22,39599.67,164261.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,52314,36269.03,5098.34,822.25,42189.62,6948.32,5256.5,3513.8,15718.62,57908.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,19143,144524.2,1234.57,736.3,146495.07,17091.39,12424.5,8682.01,38197.9,184692.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,25858,55812.53,0.0,2193.75,58006.28,10163.43,5256.52,7024.63,22444.58,80450.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,39136,53973.0,3265.7,6323.47,63562.17,14192.3,12424.5,5234.33,31851.13,95413.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,28095,40581.31,0.0,724.34,41305.65,8032.89,8553.79,3297.66,19884.34,61189.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,29398,46313.51,0.0,0.0,46313.51,11093.19,12049.68,3644.5,26787.37,73100.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,8045,70245.0,6355.04,10692.52,87292.56,15643.54,12424.5,7140.21,35208.25,122500.81 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,4662,93884.0,0.0,0.0,93884.0,19350.03,12424.5,7710.52,39485.05,133369.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22243,5021.99,0.0,12.22,5034.21,0.0,1672.52,390.5,2063.02,7097.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44465,43416.97,461.92,4662.3,48541.19,0.0,3767.68,3767.57,7535.25,56076.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,42688,181349.56,0.0,0.0,181349.56,36407.03,12424.5,18139.39,66970.92,248320.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,45147,118104.03,0.0,0.0,118104.03,23768.42,12424.5,9594.15,45787.07,163891.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,41108,100324.61,4697.81,1312.42,106334.84,20933.61,12370.74,8504.96,41809.31,148144.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,12669,97424.0,3509.25,1497.9,102431.15,20289.52,12424.51,8362.51,41076.54,143507.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8625,112680.08,41838.62,24428.5,178947.2,22350.68,12424.5,2946.44,37721.62,216668.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,52257,80485.88,0.0,2894.97,83380.85,17182.94,12203.49,6486.23,35872.66,119253.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,30716,52371.0,1463.96,0.0,53834.96,12548.79,12400.61,4202.71,29152.11,82987.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,25196,85044.61,12266.3,0.0,97310.91,17781.0,10751.97,7715.89,36248.86,133559.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,11087,17653.0,0.0,0.0,17653.0,3881.91,4061.86,1374.08,9317.85,26970.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6763,40217.94,10987.13,2233.81,53438.88,12039.28,7995.11,4121.45,24155.84,77594.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",49190,131577.08,0.0,7894.65,139471.73,27411.0,15196.12,2306.29,44913.41,184385.14 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,985C,Court Commissioner,3143,158092.49,0.0,0.0,158092.49,49981.11,12424.5,32792.72,95198.33,253290.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,930,67869.55,6027.83,6142.03,80039.41,14917.74,10775.86,1332.14,27025.74,107065.15 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,44884,78963.07,0.0,336.0,79299.07,16338.6,12424.5,6512.65,35275.75,114574.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,13108,86663.03,4761.01,2190.0,93614.04,18312.17,12424.51,7487.52,38224.2,131838.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,41360,4620.74,0.0,353.97,4974.71,0.0,1415.68,385.7,1801.38,6776.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,30886,83097.01,0.0,0.0,83097.01,17095.75,12424.5,6627.59,36147.84,119244.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29911,4040.37,0.0,0.0,4040.37,0.0,349.44,68.1,417.54,4457.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,50875,76338.0,0.0,1290.32,77628.32,15999.45,12424.5,6434.12,34858.07,112486.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",37886,93281.12,0.0,624.0,93905.12,19354.57,12424.5,7635.92,39414.99,133320.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,36704,147149.01,0.0,0.0,147149.01,29613.71,12424.5,17396.31,59434.52,206583.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,22774,0.0,0.0,93.45,93.45,0.0,0.0,0.0,0.0,93.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,39695,75927.01,0.0,0.0,75927.01,15648.74,12424.5,6277.31,34350.55,110277.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47391,136071.01,0.0,18689.9,154760.91,27759.09,12424.5,5652.55,45836.14,200597.05 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,41499,88296.0,0.0,5322.0,93618.0,18337.86,12424.5,7768.54,38530.9,132148.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37164,54603.54,8076.83,3225.27,65905.64,16395.59,10858.9,5137.94,32392.43,98298.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,13786,59044.9,0.0,0.0,59044.9,12186.66,12424.5,4885.25,29496.41,88541.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33002,69182.46,18091.61,14064.72,101338.79,17258.94,8697.14,1689.75,27645.83,128984.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1800,40725.3,0.0,0.0,40725.3,0.0,3583.99,3159.45,6743.44,47468.74 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,20993,72272.2,0.0,48.0,72320.2,14898.99,12472.29,5997.28,33368.56,105688.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32842,67078.24,17471.71,799.3,85349.25,18582.87,13215.25,6316.54,38114.66,123463.91 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,7460,227731.05,0.0,52519.66,280250.71,52687.96,12424.5,12506.79,77619.25,357869.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10301,66998.53,20408.44,4254.45,91661.42,19564.65,13205.46,6909.52,39679.63,131341.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,33587,108373.47,7304.4,10880.69,126558.56,28994.16,12424.5,2146.09,43564.75,170123.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,44187,93281.06,0.0,624.0,93905.06,19354.57,12424.5,7787.82,39566.89,133471.95 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,52391,82652.37,0.0,834.46,83486.83,17207.36,12139.16,6929.9,36276.42,119763.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,51293,16466.68,0.0,175.0,16641.68,0.0,0.0,1628.47,1628.47,18270.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24602,20057.62,0.0,180.0,20237.62,4447.12,3380.9,1636.97,9464.99,29702.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",1367,131577.12,47781.31,17939.86,197298.29,29151.67,15196.12,3365.23,47713.02,245011.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,48980,164637.22,11635.22,13575.79,189848.23,33123.98,12424.5,284.74,45833.22,235681.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,18533,51726.61,329.28,7229.88,59285.77,11351.19,7741.42,4738.27,23830.88,83116.65 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",19654,60392.1,9461.82,2762.33,72616.25,14461.3,10799.17,1007.75,26268.22,98884.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13009,111690.93,758.73,16266.57,128716.23,24518.05,10834.71,9488.71,44841.47,173557.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,20579,62696.12,5948.36,2879.23,71523.71,13425.59,9625.7,5933.91,28985.2,100508.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,33487,113228.15,4289.84,14484.99,132002.98,25074.97,12424.5,2201.47,39700.94,171703.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35702,2447.2,0.0,1.91,2449.11,0.0,612.27,190.91,803.18,3252.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,7.0,"Bricklayers, Local 3",7300,Journeyman Trade,7378,Tile Setter,3688,0.0,0.0,1548.64,1548.64,0.0,0.0,118.48,118.48,1667.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,52419,22504.09,0.0,513.52,23017.61,5504.93,6271.99,2409.7,14186.62,37204.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,42073,16717.63,145.17,0.0,16862.8,4313.16,4044.95,1294.87,9652.98,26515.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,6524,77908.1,0.0,621.62,78529.72,16179.91,12377.2,6142.26,34699.37,113229.09 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,43567,208032.0,0.0,5723.14,213755.14,43018.44,12424.5,11405.74,66848.68,280603.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31665,13892.52,0.0,1437.19,15329.71,6484.75,1093.84,532.52,8111.11,23440.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,28333,156746.03,0.0,4052.23,160798.26,32371.13,12424.47,10492.33,55287.93,216086.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40221,10758.45,0.0,1939.41,12697.86,1710.28,0.0,2807.95,4518.23,17216.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,9214,191620.69,1865.3,18664.93,212150.92,40024.61,12424.5,549.65,52998.76,265149.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,33304,84922.49,0.0,2344.3,87266.79,17987.48,12472.29,6936.01,37395.78,124662.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,34136,15138.64,0.0,0.0,15138.64,3069.7,3297.27,1229.1,7596.07,22734.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,37692,64307.01,90.04,0.0,64397.05,13224.02,12424.51,5507.23,31155.76,95552.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,48026,64463.7,5244.05,15141.25,84849.0,15279.96,12424.5,6491.27,34195.73,119044.73 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,19426,136466.02,38724.26,19426.66,194616.94,36896.27,12424.52,3320.42,52641.21,247258.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20465,0.0,0.0,860.25,860.25,0.0,68.5,65.81,134.31,994.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,20867,47653.91,0.0,1422.87,49076.78,11729.44,11893.0,3824.06,27446.5,76523.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16434,65113.01,26304.04,564.97,91982.02,17957.54,12828.78,7152.59,37938.91,129920.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,44722,125753.06,0.0,0.0,125753.06,25323.41,12418.49,9907.98,47649.88,173402.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,29043,25250.64,0.0,19.33,25269.97,6017.09,7027.31,2041.62,15086.02,40355.99 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,34918,122667.03,0.0,25728.24,148395.27,24836.11,11707.69,18179.74,54723.54,203118.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",44743,134272.82,7998.96,9024.3,151296.08,26576.37,12424.5,2531.81,41532.68,192828.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,43228,47447.2,0.0,0.0,47447.2,11389.23,12100.62,3614.19,27104.04,74551.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,27419,10592.03,0.0,73.58,10665.61,0.0,3839.35,826.65,4666.0,15331.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25211,56531.0,27.31,5368.34,61926.65,12371.17,12424.5,5065.28,29860.95,91787.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23654,71803.19,3479.18,3745.01,79027.38,14194.82,7832.04,6186.48,28213.34,107240.72 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,8877,67586.53,500.11,4953.93,73040.57,14465.24,12364.77,6038.19,32868.2,105908.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26025,47305.11,298.73,5062.36,52666.2,12163.18,12367.75,4198.8,28729.73,81395.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10636,69343.88,7436.31,2073.18,78853.37,19558.83,13663.79,5823.63,39046.25,117899.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,42583,5178.0,0.0,0.0,5178.0,963.62,955.73,387.3,2306.65,7484.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22446,0.0,0.0,876.33,876.33,0.0,0.0,67.04,67.04,943.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21055,1742.56,0.0,0.0,1742.56,0.0,731.73,135.25,866.98,2609.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,922,35232.5,667.1,2066.03,37965.63,7729.99,4061.86,1322.93,13114.78,51080.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,42981,70172.81,0.0,0.0,70172.81,14428.03,12197.16,5311.51,31936.7,102109.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12590,20252.8,0.0,0.0,20252.8,1176.08,8721.05,1570.22,11467.35,31720.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,24473,135895.1,27405.21,17101.99,180402.3,26871.77,12394.64,3087.4,42353.81,222756.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,41959,6319.95,0.0,1325.97,7645.92,1417.57,931.84,619.43,2968.84,10614.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10822,117137.52,27213.74,8179.65,152530.91,23176.47,12424.5,2545.69,38146.66,190677.57 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,29839,5636.1,1045.37,263.4,6944.87,0.0,1541.12,539.04,2080.16,9025.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,27510,4398.46,0.0,0.0,4398.46,967.22,1409.71,351.49,2728.42,7126.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16075,36156.58,3157.36,1670.56,40984.5,9630.41,10900.88,3108.87,23640.16,64624.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15869,133234.53,0.0,9886.18,143120.71,28733.47,12424.5,10117.98,51275.95,194396.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18727,177.63,0.0,0.0,177.63,0.0,86.62,13.75,100.37,278.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8152,"Srclaimsinvstgtor,Cty Atty Ofc",28829,9140.02,0.0,0.0,9140.02,1700.96,955.73,692.75,3349.44,12489.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,26932,116976.0,0.0,0.0,116976.0,23541.49,12424.47,9086.79,45052.75,162028.75 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,47558,24418.0,0.0,0.0,24418.0,0.0,3345.06,1866.06,5211.12,29629.12 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,34319,17153.36,0.0,0.0,17153.36,2488.61,0.0,1935.49,4424.1,21577.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43121,113233.64,35521.17,20047.67,168802.48,25707.53,15196.13,2867.67,43771.33,212573.81 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4224,Pr Personal Property Auditor,20478,116383.99,0.0,1480.0,117863.99,23700.16,12424.5,9503.23,45627.89,163491.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,28157,112776.0,0.0,3947.29,116723.29,23490.94,12424.5,9399.22,45314.66,162037.95 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,48756,23013.19,0.0,2832.74,25845.93,5535.14,4559.38,2062.05,12156.57,38002.5 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,14864,97730.8,0.0,0.0,97730.8,20131.42,12424.51,7662.91,40218.84,137949.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10207,62619.05,1400.3,2233.83,66253.18,15687.16,12477.43,4848.99,33013.58,99266.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50235,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3249.15,18075.0,61842.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,39146,7680.28,0.0,0.0,7680.28,0.0,1752.69,592.62,2345.31,10025.59 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",35307,105082.05,0.0,0.0,105082.05,21657.97,12424.5,8589.96,42672.43,147754.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,8012,156746.09,0.0,0.0,156746.09,31536.67,12424.5,10468.1,54429.27,211175.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,51467,68571.01,2044.99,1842.07,72458.07,14185.0,12424.5,5962.36,32571.86,105029.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15283,54899.83,19797.09,5105.26,79802.18,12391.31,12065.46,6235.73,30692.5,110494.68 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1830,Perf Analyst III Project Mgr,40629,130755.26,0.0,0.0,130755.26,26256.5,12424.5,10015.45,48696.45,179451.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40687,64334.51,11023.13,6922.38,82280.02,19451.76,12669.17,6385.24,38506.17,120786.19 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,45921,41186.61,5200.95,158.06,46545.62,7225.68,5256.52,3691.31,16173.51,62719.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,18229,135421.0,0.0,5684.66,141105.66,28390.7,12424.5,10214.21,51029.41,192135.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",43704,67973.3,2956.0,634.38,71563.68,14737.08,8123.72,5735.71,28596.51,100160.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,51235,5204.63,0.0,68.25,5272.88,0.0,1730.77,158.07,1888.84,7161.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),7613,184289.02,0.0,5185.78,189474.8,38130.64,12424.5,11132.18,61687.32,251162.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32675,68929.29,32146.85,5897.97,106974.11,20495.76,13581.06,8122.83,42199.65,149173.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8645,56531.0,202.6,2537.18,59270.78,12138.59,12424.5,4904.71,29467.8,88738.58 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,48843,40816.21,779.95,2733.21,44329.37,10433.64,12424.5,3359.81,26217.95,70547.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46295,112680.09,32634.33,9669.44,154983.86,22350.67,12424.5,2102.95,36878.12,191861.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,10973,3428.71,0.0,448.85,3877.56,769.06,525.65,315.65,1610.36,5487.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,44102,93996.73,9028.54,574.95,103600.22,19359.37,12285.56,8520.7,40165.63,143765.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51215,112159.76,9781.63,14024.42,135965.81,24128.89,15052.76,2259.69,41441.34,177407.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,42766,37180.74,0.0,120.34,37301.08,7687.74,4138.91,3155.5,14982.15,52283.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,2268,67261.05,0.0,624.0,67885.05,13991.51,12424.5,5627.94,32043.95,99929.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3695,138705.45,29755.93,15746.42,184207.8,27430.96,12424.51,3141.81,42997.28,227205.08 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,17647,11764.08,0.0,0.0,11764.08,0.0,2931.41,912.55,3843.96,15608.04 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23709,7880.4,0.0,171.07,8051.47,2069.61,2377.38,624.66,5071.65,13123.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47352,8265.0,0.0,0.0,8265.0,0.0,3583.99,639.88,4223.87,12488.87 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,28434,74820.49,0.0,0.0,74820.49,15376.59,12424.5,5791.89,33592.98,108413.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47775,113223.0,2720.9,19142.77,135086.67,25079.5,15196.12,2254.57,42530.19,177616.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,21894,84599.06,3749.69,600.0,88948.75,17548.1,12424.53,7274.97,37247.6,126196.35 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49456,26550.31,0.0,0.0,26550.31,6756.67,6737.9,2165.35,15659.92,42210.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,16420,75641.02,0.0,0.0,75641.02,15566.71,12424.5,6035.47,34026.68,109667.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,34857,140411.19,3255.35,17612.02,161278.56,28360.21,12424.5,2696.31,43481.02,204759.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,10331,56674.0,0.0,1095.54,57769.54,12238.21,7045.41,4600.38,23884.0,81653.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",52045,135115.5,47537.98,9567.96,192221.44,28516.3,12424.5,3190.82,44131.62,236353.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,23395,2818.8,0.0,447.1,3265.9,641.48,430.09,306.86,1378.43,4644.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29937,97264.82,19466.4,5334.98,122066.2,20225.25,12424.5,2035.76,34685.51,156751.71 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8240,Pub Safety Communication Coord,43887,47977.0,2524.74,4579.81,55081.55,6819.44,5531.71,4427.13,16778.28,71859.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,7509,30698.92,12451.14,3199.15,46349.21,6178.54,9013.74,3749.64,18941.92,65291.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",6748,20240.0,9093.2,1805.16,31138.36,3594.64,1911.46,524.9,6031.0,37169.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,13202,116976.01,0.0,0.0,116976.01,23541.49,12424.5,9433.3,45399.29,162375.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",23604,50.0,0.0,0.0,50.0,0.0,11.94,3.88,15.82,65.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,22182,104098.36,0.0,5725.41,109823.77,22311.57,12050.64,9104.96,43467.17,153290.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,12824,43952.61,0.0,2983.75,46936.36,11016.39,10146.22,3666.02,24828.63,71764.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,29943,78256.41,0.0,0.0,78256.41,15858.94,10513.04,6200.0,32571.98,110828.39 +Calendar,2015,1,Public Protection,CRT,Superior Court,196.0,Court Unrepresented Managers,SCRT,SF Superior Court,147C,Mental Health Hearing Officer,50922,93830.89,0.0,4804.44,98635.33,19350.54,12424.5,31866.66,63641.7,162277.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,29945,84644.0,40892.38,15294.42,140830.8,19261.72,12424.5,10022.0,41708.22,182539.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",16786,131359.36,55044.08,23870.85,210274.29,30452.79,14766.03,498.14,45716.96,255991.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6198,66379.77,7433.62,4655.36,78468.75,19463.04,13082.1,6124.33,38669.47,117138.22 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29338,102019.0,0.0,0.0,102019.0,21026.26,12424.5,8195.26,41646.02,143665.02 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,36540,88725.96,0.0,0.0,88725.96,18272.88,10327.87,7021.57,35622.32,124348.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10306,6842.01,0.0,845.96,7687.97,1371.27,2965.75,633.36,4970.38,12658.35 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,24227,32550.02,0.0,0.0,32550.02,7141.47,2389.33,3973.31,13504.11,46054.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,24653,61735.0,0.0,168.0,61903.0,12755.27,12424.5,5022.88,30202.65,92105.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,26299,45836.0,9895.2,1488.9,57220.1,8740.11,6690.11,4558.65,19988.87,77208.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,34416,48025.0,0.0,206.68,48231.68,9501.6,8511.98,3892.39,21905.97,70137.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1652,92671.8,3843.81,5307.97,101823.58,18350.42,10217.42,1692.82,30260.66,132084.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17073,9061.14,793.63,447.77,10302.54,0.0,1801.97,791.24,2593.21,12895.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,27612,85368.0,1690.73,1589.0,88647.73,17922.98,12424.5,6953.11,37300.59,125948.32 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24610,97391.19,4177.8,19872.61,121441.6,27831.33,12376.73,2021.89,42229.95,163671.55 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,13728,78083.2,0.0,0.0,78083.2,16230.69,11052.07,6223.99,33506.75,111589.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7643,99874.48,13314.51,7262.54,120451.53,20708.73,12388.67,2008.74,35106.14,155557.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),9020,50070.39,15473.2,2688.36,68231.95,10275.17,7636.94,1135.86,19047.97,87279.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,22058,62027.56,5613.15,1789.39,69430.1,13016.23,12339.39,5702.67,31058.29,100488.39 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,6615,83249.1,0.0,0.0,83249.1,17132.23,12424.5,1378.01,30934.74,114183.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,12615,65145.0,0.0,2186.33,67331.33,13877.37,12424.53,5567.82,31869.72,99201.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41003,30288.11,0.0,1246.64,31534.75,5295.45,0.0,1079.26,6374.71,37909.46 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,45753,21313.12,0.0,0.0,21313.12,3864.08,2389.34,1619.69,7873.11,29186.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37520,3726.95,0.0,112.45,3839.4,0.0,1565.01,305.71,1870.72,5710.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,118,118104.07,0.0,0.0,118104.07,23768.42,12424.5,9151.71,45344.63,163448.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,20914,57245.6,11531.46,7729.05,76506.11,11749.3,6570.65,6020.24,24340.19,100846.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,8397,61338.01,715.06,0.0,62053.07,12675.3,11959.66,5054.13,29689.09,91742.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,9556,82853.31,3754.88,9549.41,96157.6,19039.59,12420.02,7686.35,39145.96,135303.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,10182,112209.01,0.0,0.0,112209.01,22870.16,12424.5,9220.82,44515.48,156724.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,33435,12491.7,1321.24,1797.67,15610.61,2346.32,1863.67,1233.41,5443.4,21054.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,13553,112209.06,0.0,0.0,112209.06,22582.31,12424.5,8414.59,43421.4,155630.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,47591,9193.64,0.0,0.0,9193.64,0.0,2780.58,727.16,3507.74,12701.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,43356,76472.88,0.0,0.0,76472.88,15814.05,11946.64,6173.71,33934.4,110407.28 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,41689,75790.01,0.0,0.0,75790.01,16628.3,6212.25,6083.24,28923.79,104713.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26649,35680.89,0.0,4507.12,40188.01,4924.84,0.0,5470.2,10395.04,50583.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,15488,114720.07,0.0,0.0,114720.07,23087.61,12424.5,9351.22,44863.33,159583.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50346,66813.1,12255.93,6858.82,85927.85,20200.45,13165.5,6475.84,39841.79,125769.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,19832,5228.0,5237.7,704.1,11169.8,1240.2,955.73,894.48,3090.41,14260.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,26881,47472.91,4233.68,1077.7,52784.29,9500.87,8798.7,1322.17,19621.74,72406.03 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,50991,12769.36,0.0,0.0,12769.36,2801.62,857.17,949.1,4607.89,17377.25 +Calendar,2015,4,Community Health,DPH,Public Health,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,32029,79722.0,7274.58,0.0,86996.58,16430.89,12424.5,6824.86,35680.25,122676.83 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,48871,57086.15,0.0,5177.5,62263.65,11855.79,11170.1,5142.06,28167.95,90431.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,16787,125284.04,0.0,0.0,125284.04,25227.49,12424.5,9874.6,47526.59,172810.63 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,26247,31013.5,0.0,0.0,31013.5,0.0,4061.86,2365.22,6427.08,37440.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,48851,127129.07,0.0,5610.99,132740.06,26753.11,12424.5,17305.29,56482.9,189222.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30957,74422.32,7378.76,5782.66,87583.74,13860.53,7645.85,1497.02,23003.4,110587.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,31110,117139.22,9409.9,10353.12,136902.24,23170.33,12424.5,2338.55,37933.38,174835.62 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,29426,60949.79,367.77,2198.82,63516.38,12942.23,11260.9,4899.12,29102.25,92618.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,28996,63123.37,0.0,616.62,63739.99,13141.89,12277.5,5241.96,30661.35,94401.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,45986,110041.1,0.0,1254.9,111296.0,22405.88,12424.5,9138.16,43968.54,155264.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,51309,62468.83,1896.91,1200.09,65565.83,13056.25,12424.5,5406.86,30887.61,96453.44 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,26698,11402.0,0.0,0.0,11402.0,0.0,2628.26,900.84,3529.1,14931.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,29463,112776.01,19566.52,2255.52,134598.05,23150.48,12424.5,9994.35,45569.33,180167.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,31066,18267.0,0.0,0.0,18267.0,0.0,5447.67,1449.63,6897.3,25164.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6333,Senior Building Inspector,24925,123743.89,0.0,6187.21,129931.1,26137.69,12364.77,9940.09,48442.55,178373.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,22117,95761.31,0.0,0.0,95761.31,19733.28,12397.61,7817.42,39948.31,135709.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37646,62425.35,5669.75,803.73,68898.83,17360.23,12296.8,5040.92,34697.95,103596.78 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,377C,Principal Mgmt Analyst,4707,39741.31,0.0,9046.74,48788.05,0.0,4288.85,3844.31,8133.16,56921.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",10195,130329.26,17560.91,18528.89,166419.06,29288.59,15052.75,2827.46,47168.8,213587.86 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,25131,140768.76,0.0,0.0,140768.76,28206.25,12424.5,25150.56,65781.31,206550.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35857,77892.8,0.0,105808.61,183701.41,16568.84,8123.71,44.85,24737.4,208438.81 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,40910,9463.59,0.0,6040.08,15503.67,0.0,12424.5,224.8,12649.3,28152.97 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,1245,20201.01,0.0,3000.0,23201.01,4442.23,4778.65,1906.41,11127.29,34328.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6955,56531.0,4728.51,1950.9,63210.41,11780.12,12424.5,5166.54,29371.16,92581.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36155,227.6,0.0,7.25,234.85,0.0,95.58,18.23,113.81,348.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3437,67525.45,5756.12,2950.39,76231.96,19283.56,13307.36,5786.1,38377.02,114608.98 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,28749,28896.0,0.0,0.0,28896.0,6481.37,3345.06,2348.55,12174.98,41070.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,7456,63748.0,0.0,0.0,63748.0,12530.35,8123.71,5145.13,25799.19,89547.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,46257,31236.23,210.62,12840.04,44286.89,7577.31,6112.5,3591.83,17281.64,61568.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32481,51638.6,0.0,6567.07,58205.67,13477.8,12424.5,4456.88,30359.18,88564.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19985,1726.42,0.0,0.0,1726.42,0.0,748.64,133.91,882.55,2608.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27572,39128.05,10732.57,1076.67,50937.29,11682.68,7781.32,3814.3,23278.3,74215.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19345,56993.89,4166.63,823.69,61984.21,15005.41,13062.45,4505.36,32573.22,94557.43 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8217,Comm Pol Svcs Aide Supervisor,32544,78610.1,7929.56,5218.92,91758.58,16663.71,12424.5,7560.92,36649.13,128407.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7061,17939.72,0.0,0.0,17939.72,769.5,7731.27,1465.74,9966.51,27906.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,28785,95267.91,4954.49,27.89,100250.29,14843.12,12376.74,8046.08,35265.94,135516.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,3661,166171.02,0.0,579.79,166750.81,33568.77,12424.5,10586.66,56579.93,223330.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,5537,77071.02,27.77,1884.0,78982.79,16275.35,12424.5,6539.55,35239.4,114222.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25915,12569.84,0.0,1287.26,13857.1,902.68,0.0,530.6,1433.28,15290.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,12418,44415.67,0.0,933.46,45349.13,10864.07,12394.64,3667.47,26926.18,72275.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,47824,100761.0,32180.45,4136.15,137077.6,21610.5,12424.51,10017.69,44052.7,181130.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,9310,47756.5,6882.82,2801.67,57440.99,11503.83,11420.99,4617.71,27542.53,84983.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,32939,130845.88,3909.36,15911.69,150666.93,28827.33,15196.12,2512.65,46536.1,197203.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,7404,82103.0,23239.49,300.48,105642.97,16955.94,12424.5,8641.99,38022.43,143665.4 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,20498,3181.77,8.99,0.0,3190.76,0.0,786.99,247.42,1034.41,4225.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",15838,150.0,0.0,0.0,150.0,0.0,17.92,11.61,29.53,179.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,1491,51061.84,20.77,1619.25,52701.86,11267.22,11297.63,4160.66,26725.51,79427.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34165,19280.99,3270.88,296.16,22848.03,5620.36,3735.9,1092.78,10449.04,33297.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,47995,125224.18,0.0,0.0,125224.18,25216.61,12418.53,9909.19,47544.33,172768.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34689,9718.84,0.0,468.84,10187.68,1234.23,649.6,296.24,2180.07,12367.75 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,51511,170335.03,0.0,0.0,170335.03,34279.71,12424.5,17948.21,64652.42,234987.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,52034,80349.54,6553.61,13818.94,100722.09,19384.01,12302.53,7868.09,39554.63,140276.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4703,61421.1,7993.82,896.07,70310.99,14143.0,12098.19,5371.71,31612.9,101923.89 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,20686,77669.42,0.0,4414.54,82083.96,15006.26,7693.64,6274.99,28974.89,111058.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18887,112201.36,95692.75,19611.87,227505.98,25391.06,15004.98,3825.37,44221.41,271727.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9714,42203.51,0.0,24.89,42228.4,0.0,0.0,3340.44,3340.44,45568.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2487,Chemist III,51228,88723.59,0.0,0.0,88723.59,18307.24,10759.26,6985.55,36052.05,124775.64 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,27832,93681.03,52587.17,12671.37,158939.57,20865.46,12424.5,10352.01,43641.97,202581.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,1568,77071.04,1183.65,624.0,78878.69,16013.39,12424.5,6391.9,34829.79,113708.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,49514,64965.8,0.0,1779.43,66745.23,13759.57,12333.35,5530.78,31623.7,98368.93 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,19692,84599.01,0.0,0.0,84599.01,17436.44,12424.5,6230.49,36091.43,120690.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13494,112170.34,27598.03,18026.38,157794.75,24779.32,15052.76,2671.36,42503.44,200298.19 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,36707,178141.66,0.0,0.0,178141.66,35851.2,12424.5,25791.85,74067.55,252209.21 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,45065,36490.1,0.0,0.0,36490.1,7051.71,6576.63,2859.99,16488.33,52978.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18881,36670.51,4392.84,521.16,41584.51,10158.26,7177.0,3186.24,20521.5,62106.01 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,13879,21852.0,0.0,0.0,21852.0,681.31,2867.2,3639.63,7188.14,29040.14 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,41980,148137.9,0.0,0.0,148137.9,29793.01,12424.5,17525.98,59743.49,207881.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26390,50368.81,7983.95,5399.05,63751.81,15463.49,9972.39,4976.68,30412.56,94164.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,21480,13364.7,43.93,1235.66,14644.29,3166.64,3034.45,1162.37,7363.46,22007.75 +Calendar,2015,1,Public Protection,ADP,Adult Probation,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1246,Principal Personnel Analyst,51091,72800.0,0.0,0.0,72800.0,15912.89,6690.11,5987.99,28590.99,101390.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,37331,104042.57,0.0,3908.95,107951.52,21764.22,9497.58,8850.81,40112.61,148064.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30613,66828.13,12979.3,5113.86,84921.29,19673.68,13165.25,6618.96,39457.89,124379.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,18858,6962.61,0.0,2.45,6965.06,0.0,1385.81,540.6,1926.41,8891.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24675,119463.82,428.72,3821.08,123713.62,23633.49,12424.5,153.48,36211.47,159925.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25181,39124.9,4480.24,9923.76,53528.9,8760.57,6033.06,1057.56,15851.19,69380.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,16241,10995.0,0.0,0.0,10995.0,2836.7,2389.33,928.49,6154.52,17149.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,5925,160570.12,0.0,0.0,160570.12,32314.91,12424.5,18451.45,63190.86,223760.98 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,10405,16280.55,0.0,0.0,16280.55,3253.01,1075.2,1262.15,5590.36,21870.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,20046,62672.64,711.53,8074.73,71458.9,13947.6,11086.48,5623.34,30657.42,102116.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,9587,24954.26,882.96,250.0,26087.22,5074.56,4619.83,2073.01,11767.4,37854.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,49280,96254.02,6564.74,0.0,102818.76,19838.22,12424.5,8091.4,40354.12,143172.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,26073,59516.3,10875.91,6449.21,76841.42,14191.06,12424.5,5991.49,32607.05,109448.47 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,22196,92615.24,0.0,0.0,92615.24,19078.95,12424.5,7464.68,38968.13,131583.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,37014,53566.0,1766.79,7153.79,62486.58,13776.76,12424.5,4983.32,31184.58,93671.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6072,3185.0,0.0,11.27,3196.27,0.0,1553.06,247.93,1800.99,4997.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13357,11033.74,0.0,0.0,11033.74,0.0,4729.91,894.08,5623.99,16657.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",4237,1800.14,0.0,0.0,1800.14,0.0,167.26,139.37,306.63,2106.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,23874,22813.86,29.34,0.0,22843.2,1117.53,6827.5,1860.66,9805.69,32648.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,32294,83148.0,0.0,0.0,83148.0,17137.11,12424.5,6700.43,36262.04,119410.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,40973,129433.51,0.0,0.0,129433.51,26018.64,12424.5,9855.75,48298.89,177732.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,32558,60145.03,16936.42,4336.33,81417.78,13372.93,11707.7,6666.78,31747.41,113165.19 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47595,97730.99,43543.14,13654.24,154928.37,27111.2,12418.41,2630.82,42160.43,197088.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42796,11873.02,0.0,0.0,11873.02,2144.53,3442.78,914.01,6501.32,18374.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,17719,62950.54,346.01,270.8,63567.35,13028.0,12424.5,4876.27,30328.77,93896.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44413,56531.0,0.0,5217.0,61748.0,12310.19,12424.5,5055.66,29790.35,91538.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,30480,84062.41,0.0,0.0,84062.41,17344.7,12480.35,6971.7,36796.75,120859.16 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,17836,59229.0,14001.24,2763.25,75993.49,12207.44,12424.5,6242.69,30874.63,106868.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,52179,122169.11,44741.51,10578.46,177489.08,25956.5,15052.76,2980.2,43989.46,221478.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17671,3131.4,0.0,540.56,3671.96,2012.37,262.89,156.7,2431.96,6103.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,43894,49596.4,0.0,1584.95,51181.35,11619.64,11061.09,4165.47,26846.2,78027.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,20282,77842.49,20010.74,11050.36,108903.59,17313.52,11419.5,9113.58,37846.6,146750.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44874,14658.3,0.0,0.0,14658.3,2858.27,2245.97,1130.18,6234.42,20892.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,39621,63887.0,7954.75,2938.55,74780.3,13696.57,12424.5,6148.44,32269.51,107049.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5107,91811.36,11922.03,13808.07,117541.46,20783.0,12448.4,1913.7,35145.1,152686.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O890,Harbor Security Officer (OCII),25180,34642.0,0.0,3992.24,38634.24,8787.3,10035.18,3117.72,21940.2,60574.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,14777,83926.51,0.0,55.0,83981.51,17282.43,12424.5,6599.79,36306.72,120288.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7442,84149.83,0.0,2470.69,86620.52,15723.84,7589.52,6313.9,29627.26,116247.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,44619,32265.14,0.0,577.32,32842.46,7862.32,9351.22,2625.37,19838.91,52681.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,3099,135421.01,0.0,2174.46,137595.47,27677.14,12424.52,10164.09,50265.75,187861.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46011,68333.07,12269.32,2363.31,82965.7,19392.19,13464.81,6263.82,39120.82,122086.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33882,78314.4,50.29,34452.97,112817.66,16597.08,6976.83,8117.38,31691.29,144508.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,9865,40766.3,0.0,0.0,40766.3,7291.76,6068.9,3193.85,16554.51,57320.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",24730,8788.95,0.0,0.0,8788.95,0.0,0.0,696.08,696.08,9485.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21825,130845.82,9826.0,16969.67,157641.49,29050.2,15196.13,2631.64,46877.97,204519.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,609,47785.24,45.76,6491.51,54322.51,11560.77,10618.29,4258.93,26437.99,80760.5 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),19096,67001.5,0.0,750.0,67751.5,13253.72,7884.78,5421.02,26559.52,94311.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,8489,11408.49,0.0,0.0,11408.49,2123.11,1878.61,901.0,4902.72,16311.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50937,117129.71,54810.85,16489.88,188430.44,23205.2,12424.5,3160.02,38789.72,227220.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,15188,67771.27,0.0,3718.41,71489.68,14567.64,10962.24,5663.1,31192.98,102682.66 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8146,District Attry's Investigator,4706,109563.02,932.15,6573.78,117068.95,26491.62,12424.5,1993.4,40909.52,157978.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,15966,87882.35,18654.08,1530.28,108066.71,18186.32,12424.5,8656.86,39267.68,147334.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,16119,37139.14,0.0,680.0,37819.14,8925.36,8577.68,3085.81,20588.85,58407.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,46147,73406.0,420.9,1060.0,74886.9,15349.34,12424.5,6051.87,33825.71,108712.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33214,53729.62,18760.52,3659.07,76149.21,15776.65,10615.08,5654.58,32046.31,108195.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,18260,62106.94,3262.44,5192.82,70562.2,13788.84,12351.57,5752.73,31893.14,102455.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,52935,70931.01,0.0,874.0,71805.01,14747.71,12424.5,5876.31,33048.52,104853.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,26075,108887.0,0.0,0.0,108887.0,20690.94,7645.85,8506.42,36843.21,145730.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14800,91568.21,0.0,3257.46,94825.67,0.0,7953.11,7347.82,15300.93,110126.6 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),36547,113064.99,0.0,1487.5,114552.49,22868.29,9207.27,8490.79,40566.35,155118.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16552,108254.14,18953.11,10226.3,137433.55,22720.64,14532.13,2284.76,39537.53,176971.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,22336,40162.51,0.0,0.0,40162.51,7551.8,6212.25,3170.16,16934.21,57096.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1723,71625.42,63854.15,6383.61,141863.18,21408.97,14118.12,9743.57,45270.66,187133.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,33060,50284.5,0.0,333.93,50618.43,10157.72,9557.31,4092.18,23807.21,74425.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40088,355.25,0.0,14.7,369.95,0.0,173.23,28.72,201.95,571.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,47722,79452.81,0.0,0.0,79452.81,16355.38,12424.5,6412.64,35192.52,114645.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50833,0.0,0.0,2124.18,2124.18,0.0,0.0,162.5,162.5,2286.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,12904,66102.03,0.0,0.0,66102.03,13624.07,12424.5,5300.32,31348.89,97450.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24175,119467.46,29656.66,8842.74,157966.86,23621.01,12424.5,2645.31,38690.82,196657.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3215,Aquatics Facility Supervisor,20288,19305.0,0.0,97.6,19402.6,3610.83,3822.92,1758.7,9192.45,28595.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12088,117135.35,122069.58,17099.39,256304.32,23184.7,12424.5,4318.98,39928.18,296232.5 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,40290,74412.03,0.0,4768.8,79180.83,15474.53,12424.5,6570.28,34469.31,113650.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,10699,101531.0,0.0,0.0,101531.0,20926.02,12424.49,8090.87,41441.38,142972.38 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,33663,141997.71,0.0,0.0,141997.71,28577.18,12424.5,17479.33,58481.01,200478.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18179,75550.3,23977.89,1460.0,100988.19,15848.19,12424.5,8277.78,36550.47,137538.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28169,119155.04,0.0,3923.69,123078.73,16419.73,11214.31,9201.64,36835.68,159914.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,9360,21287.0,3335.61,0.0,24622.61,4774.7,3345.06,1979.92,10099.68,34722.29 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,6031,85712.91,0.0,0.0,85712.91,17629.97,12424.5,6830.04,36884.51,122597.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27187,12438.9,0.0,7.64,12446.54,0.0,3112.1,965.11,4077.21,16523.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8990,1525.64,0.0,0.0,1525.64,0.0,640.64,118.42,759.06,2284.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,5104,15899.6,0.0,863.34,16762.94,0.0,5208.74,1340.91,6549.65,23312.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6893,25431.31,5441.86,1736.86,32610.03,6700.65,4956.85,2517.7,14175.2,46785.23 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8452,Criminal Justice Specialist 2,51606,93990.51,0.0,0.0,93990.51,19335.68,12424.5,7797.82,39558.0,133548.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,44727,3027.0,0.0,0.0,3027.0,563.32,477.86,234.94,1276.12,4303.12 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,21068,211597.01,0.0,2680.71,214277.72,32086.08,12424.5,11306.91,55817.49,270095.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,34196,7018.54,0.0,0.0,7018.54,0.0,1839.78,544.75,2384.53,9403.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49729,42037.9,4906.34,497.7,47441.94,8839.18,12424.5,3767.55,25031.23,72473.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,29152,38610.45,0.0,1219.16,39829.61,8981.87,8690.58,3257.55,20930.0,60759.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8238,6689.0,0.0,0.0,6689.0,0.0,2898.13,556.76,3454.89,10143.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19284,670.78,0.0,0.0,670.78,0.0,0.0,29.85,29.85,700.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,24846,96254.02,0.0,1360.0,97614.02,20115.81,12424.51,7972.8,40513.12,138127.14 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,17923,84525.79,0.0,0.0,84525.79,16611.02,9068.27,6462.35,32141.64,116667.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,46083,10770.07,0.0,239.8,11009.87,870.97,3049.39,854.35,4774.71,15784.58 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,8365,25875.15,36.36,773.57,26685.08,6396.83,6391.45,2152.75,14941.03,41626.11 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,5363,88296.01,0.0,5322.0,93618.01,18337.86,12424.5,7768.54,38530.9,132148.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31533,130845.81,26088.41,16555.62,173489.84,28972.94,15196.12,2902.65,47071.71,220561.55 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,1839,72699.0,0.0,624.0,73323.0,15112.3,12424.5,6007.18,33543.98,106866.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,30078,59097.72,43.73,1420.0,60561.45,13479.36,12424.5,4473.89,30377.75,90939.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,22910,45015.07,0.0,2438.05,47453.12,10903.51,10870.54,3930.13,25704.18,73157.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18844,40830.41,4225.33,1008.25,46063.99,10865.46,12716.19,3489.01,27070.66,73134.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,43596,10544.6,0.0,133.13,10677.73,0.0,2461.01,828.76,3289.77,13967.5 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,49238,133087.05,0.0,13308.7,146395.75,26783.95,12424.5,10257.67,49466.12,195861.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,12781,49679.0,0.0,4339.55,54018.55,12581.13,12424.5,4210.66,29216.29,83234.84 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0891,Mayoral Staff XI,52506,96542.0,0.0,0.0,96542.0,19872.7,12424.5,15726.19,48023.39,144565.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,35376,70123.04,2221.73,1755.45,74100.22,14346.9,11468.77,6129.55,31945.22,106045.44 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,23557,80570.0,0.0,0.0,80570.0,16605.95,12424.5,6457.09,35487.54,116057.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25307,85745.96,128.6,12588.55,98463.11,16401.71,7361.52,6375.88,30139.11,128602.22 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,11476,101531.03,0.0,0.0,101531.03,20926.03,12424.51,8234.85,41585.39,143116.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,46417,69746.0,0.0,0.0,69746.0,14374.9,12424.5,3802.4,30601.8,100347.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",35606,7212.0,0.0,452.55,7664.55,1606.14,1433.6,538.44,3578.18,11242.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,24907,21747.16,0.0,360.0,22107.16,4577.17,2502.83,2051.2,9131.2,31238.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",36333,17408.08,0.0,0.0,17408.08,0.0,4109.64,1351.14,5460.78,22868.86 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8911,19442.0,0.0,0.0,19442.0,4275.3,4778.65,1556.78,10610.73,30052.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,43044,2437.6,0.0,16.0,2453.6,0.0,382.3,190.44,572.74,3026.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42181,112645.38,36830.32,18646.78,168122.48,25156.84,14286.08,2589.46,42032.38,210154.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51371,10789.95,0.0,644.63,11434.58,2154.83,0.0,1149.48,3304.31,14738.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15424,144715.33,0.0,4688.26,149403.59,25984.96,12421.52,9888.46,48294.94,197698.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3374,119455.96,27449.4,22288.86,169194.22,23661.16,12424.5,2818.84,38904.5,208098.72 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,53077,16738.01,0.0,0.0,16738.01,3680.69,4300.79,1345.12,9326.6,26064.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,50765,105740.72,0.0,5285.51,111026.23,22404.68,10336.79,8902.49,41643.96,152670.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6246,Senior Plumbing Inspector,49732,29278.0,0.0,4162.76,33440.76,5626.57,2867.19,2204.76,10698.52,44139.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,36908,36922.32,0.0,1329.11,38251.43,9212.76,9121.25,3123.87,21457.88,59709.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,232,83647.0,0.0,0.0,83647.0,17256.99,12424.5,6525.16,36206.65,119853.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,21770,83699.02,0.0,0.0,83699.02,17250.56,12424.5,6898.11,36573.17,120272.19 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,24984,2261.0,711.61,242.25,3214.86,0.0,669.02,249.53,918.55,4133.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6142,118371.13,228.1,32412.83,151012.06,26708.25,10809.73,10229.84,47747.82,198759.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,13549,159639.24,14345.68,17604.9,191589.82,31507.49,12424.5,3221.6,47153.59,238743.41 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0116,"Brd Comm Mbr, M=$200/Mtg",14003,10500.0,0.0,0.0,10500.0,0.0,0.0,830.76,830.76,11330.76 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14708,80532.0,0.0,750.0,81282.0,15938.13,5734.38,6157.19,27829.7,109111.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13601,118341.75,726.77,32048.91,151117.43,28837.23,10478.33,10305.2,49620.76,200738.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,2708,447.5,0.0,0.0,447.5,0.0,149.31,34.69,184.0,631.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,8818,11500.5,0.0,400.0,11900.5,0.0,3106.12,1024.41,4130.53,16031.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,33155,52473.21,0.0,2073.98,54547.19,11257.6,8841.41,4597.78,24696.79,79243.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,46217,79474.33,0.0,0.0,79474.33,16402.89,12424.52,6477.63,35305.04,114779.37 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),50736,135318.68,0.0,1562.5,136881.18,27525.2,12424.5,10093.87,50043.57,186924.75 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,31425,163254.8,0.0,0.0,163254.8,32764.9,12424.5,28004.26,73193.66,236448.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46395,97557.6,640.5,6802.61,105000.71,25384.31,12398.04,1787.02,39569.37,144570.08 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,24420,177279.0,0.0,17727.9,195006.9,39520.43,12424.5,4591.3,56536.23,251543.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,11147,77764.27,0.0,0.0,77764.27,16019.34,12354.19,6269.57,34643.1,112407.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27748,69976.5,0.0,3511.15,73487.65,14417.6,12376.71,6013.57,32807.88,106295.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,38900,20022.01,0.0,0.0,20022.01,4490.94,2867.19,1611.36,8969.49,28991.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,43477,96332.05,5844.78,0.0,102176.83,19854.28,12424.5,8418.79,40697.57,142874.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10530,124792.3,442.53,9774.25,135009.08,24419.09,11096.03,5277.98,40793.1,175802.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,34402,61794.57,268.5,6001.41,68064.48,13026.07,10931.17,5357.84,29315.08,97379.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35407,58224.24,21621.56,5245.12,85090.92,13131.21,10465.25,1417.32,25013.78,110104.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33331,67405.94,9458.44,5839.07,82703.45,20045.56,13280.6,6458.69,39784.85,122488.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29834,13760.85,0.0,66.3,13827.15,0.0,4571.06,1072.16,5643.22,19470.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35641,2724.09,0.0,0.0,2724.09,0.0,1143.89,219.15,1363.04,4087.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,43220,126427.01,0.0,0.0,126427.01,25284.15,12424.5,17198.15,54906.8,181333.81 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,14382,104975.44,0.0,0.0,104975.44,21596.56,12424.5,8260.11,42281.17,147256.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",18361,12644.1,0.0,0.0,12644.1,0.0,3010.55,981.19,3991.74,16635.84 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",47798,63460.6,6524.03,3299.54,73284.17,13277.29,12328.92,1377.91,26984.12,100268.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,21276,105030.72,4809.47,14500.05,124340.24,21582.36,9079.44,2114.96,32776.76,157117.0 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,17600,54446.21,1303.31,2262.38,58011.9,11164.17,8756.88,4640.08,24561.13,82573.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,9395,"Property Manager, Port",7389,105363.0,0.0,0.0,105363.0,21716.08,12424.5,8390.2,42530.78,147893.78 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,30593,49301.0,0.0,855.0,50156.0,9334.02,5256.52,4035.58,18626.12,68782.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,32400,5014.0,0.0,0.0,5014.0,1124.64,955.73,379.1,2459.47,7473.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,15960,70245.0,10492.05,4964.65,85701.7,14627.15,12424.5,6977.74,34029.39,119731.09 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,9643,747.7,0.0,0.0,747.7,167.71,95.58,58.89,322.18,1069.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,4605,8833.53,0.0,61.31,8894.84,0.0,0.0,703.48,703.48,9598.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,16927,73800.01,0.0,25.63,73825.64,14816.74,9557.33,5941.32,30315.39,104141.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8131,67638.74,4899.69,2207.95,74746.38,19134.86,13329.28,5801.01,38265.15,113011.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,28561,54124.07,987.91,2663.22,57775.2,12721.05,12424.5,4404.92,29550.47,87325.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13591,112690.84,2841.18,12176.84,127708.86,22311.18,12424.5,2128.52,36864.2,164573.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47878,54760.91,0.0,10911.53,65672.44,1206.23,0.0,5032.35,6238.58,71911.02 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37726,4885.2,0.0,373.83,5259.03,978.71,1099.09,387.65,2465.45,7724.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,24715,68261.21,0.0,0.0,68261.21,14044.0,12310.72,5555.87,31910.59,100171.8 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,30248,93420.44,0.0,0.0,93420.44,19218.76,12424.5,7635.05,39278.31,132698.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,3666,44957.0,98.33,210.68,45266.01,10836.62,11946.64,3686.71,26469.97,71735.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45836,3309.45,0.0,843.58,4153.03,853.83,1435.09,343.16,2632.08,6785.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,9882,26243.02,0.0,688.61,26931.63,5011.98,2867.2,2164.7,10043.88,36975.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,3768,24439.5,0.0,2511.13,26950.63,4956.53,3768.81,2235.48,10960.82,37911.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39999,19971.85,0.0,578.86,20550.71,0.0,4966.81,1593.27,6560.08,27110.79 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,27611,57433.0,2623.16,2816.55,62872.71,12339.66,11468.77,5196.13,29004.56,91877.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,44944,11710.71,0.0,276.32,11987.03,0.0,3837.86,930.1,4767.96,16754.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,445,97934.01,17902.06,1383.01,117219.08,20325.3,12424.5,9356.84,42106.64,159325.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,2040,85782.99,11256.77,3451.32,100491.08,17720.99,12045.2,1674.1,31440.29,131931.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34952,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1767.81,10181.58,34185.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,36787,47278.21,150.78,0.0,47428.99,11329.31,12424.5,3811.34,27565.15,74994.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,50211,51096.11,0.0,0.0,51096.11,11711.54,10644.57,4128.06,26484.17,77580.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,1929,91487.93,0.0,0.0,91487.93,18852.84,12401.95,7179.38,38434.17,129922.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3215,Aquatics Facility Supervisor,16894,75199.11,269.44,1658.38,77126.93,15842.32,12424.5,6389.98,34656.8,111783.73 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,29407,0.0,0.0,8199.19,8199.19,0.0,0.0,627.24,627.24,8826.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,35620,36701.69,8557.43,5277.48,50536.6,8693.97,7304.66,4509.13,20507.76,71044.36 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,31846,80570.02,0.0,624.0,81194.02,16734.65,12424.5,6439.84,35598.99,116793.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,4326,0.0,0.0,61.36,61.36,0.0,0.0,4.69,4.69,66.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,27974,84040.66,14589.55,7902.76,106532.97,18226.14,12276.36,1729.11,32231.61,138764.58 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,42273,8133.0,0.0,0.0,8133.0,1513.56,1433.6,628.05,3575.21,11708.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),27006,7576.2,46.32,0.0,7622.52,0.0,2198.18,591.33,2789.51,10412.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,18125,135827.8,31255.88,12224.82,179308.5,26834.91,12394.64,3056.37,42285.92,221594.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",27622,198139.08,0.0,1500.0,199639.08,40176.6,12424.5,11218.82,63819.92,263459.0 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,17923,28896.0,0.0,0.0,28896.0,6481.37,3345.06,2270.05,12096.48,40992.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,52533,32877.34,0.0,1548.61,34425.95,7374.38,5205.75,2652.1,15232.23,49658.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43309,66348.39,4027.96,2749.9,73126.25,18961.8,13079.29,5694.85,37735.94,110862.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,11102,62640.04,69.69,1120.0,63829.73,13136.4,12424.5,5132.53,30693.43,94523.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,48697,21970.27,0.0,0.0,21970.27,3404.04,6152.52,1792.26,11348.82,33319.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8494,77071.04,111.08,824.0,78006.12,16053.66,12424.5,6084.85,34563.01,112569.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37732,149099.02,0.0,8313.54,157412.56,29259.79,12424.5,9390.12,51074.41,208486.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,31845,5469.0,0.0,180.0,5649.0,1242.21,1433.59,438.45,3114.25,8763.25 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,31813,120111.04,0.0,0.0,120111.04,24172.55,12424.5,9765.78,46362.83,166473.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,29399,82717.0,1499.23,1000.0,85216.23,17277.03,12424.5,6872.85,36574.38,121790.61 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,34316,56004.96,0.0,0.0,56004.96,11505.32,11973.51,4528.66,28007.49,84012.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,31803,15945.0,0.0,0.0,15945.0,0.0,2389.33,874.38,3263.71,19208.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36734,14109.15,0.0,0.0,14109.15,0.0,6056.94,1139.88,7196.82,21305.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3922,87130.83,216.15,72376.69,159723.67,18790.74,9079.45,232.29,28102.48,187826.15 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,41336,22461.0,0.0,0.0,22461.0,4180.0,3822.92,1813.31,9816.23,32277.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,36083,20400.63,0.0,0.0,20400.63,4486.09,4438.17,1657.82,10582.08,30982.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,33383,94041.81,0.0,148.28,94190.09,19383.57,12250.26,7163.03,38796.86,132986.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34533,56531.01,0.0,2938.05,59469.06,11659.55,12424.5,4826.24,28910.29,88379.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",27849,77977.67,0.0,23766.76,101744.43,15786.22,7645.85,12461.87,35893.94,137638.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,34053,74890.02,0.0,0.0,74890.02,15029.5,9557.31,6054.82,30641.63,105531.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,4716,43944.0,0.0,0.0,43944.0,8178.01,4300.79,3523.23,16002.03,59946.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5933,102281.26,3517.16,7145.59,112944.01,21306.28,11682.62,1774.02,34762.92,147706.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,47051,63566.91,3383.57,4225.54,71176.02,13206.63,11744.14,5888.22,30838.99,102015.01 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,35397,93681.0,53243.46,4736.6,151661.06,19514.24,12424.5,10251.03,42189.77,193850.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7213,Plumber Supervisor 1,1669,113369.02,0.0,4070.63,117439.65,23637.23,12424.52,9383.57,45445.32,162884.97 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),31706,162747.58,0.0,1500.0,164247.58,33046.78,12424.5,10622.71,56093.99,220341.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,39812,1425.95,0.0,0.0,1425.95,0.0,471.89,110.39,582.28,2008.23 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1161,"Ex Asst To Admin, SFGH",6195,107128.3,0.0,23866.8,130995.1,21879.86,10847.55,17218.58,49945.99,180941.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,5824,10890.0,0.0,0.0,10890.0,2442.65,2389.33,872.09,5704.07,16594.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,5098,1587.03,0.0,11.26,1598.29,0.0,525.65,116.92,642.57,2240.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,8693,47581.22,953.96,4546.95,53082.13,9917.45,8819.62,1426.38,20163.45,73245.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,9264,87363.82,0.0,0.0,87363.82,18001.51,12400.61,7243.24,37645.36,125009.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26708,3889.13,0.0,198.8,4087.93,4407.85,0.0,2518.94,6926.79,11014.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,36936,116976.01,0.0,0.0,116976.01,23541.49,12424.49,9010.96,44976.94,161952.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,37503,8846.65,0.0,61.31,8907.96,0.0,0.0,704.49,704.49,9612.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,40011,54232.41,1538.56,3586.17,59357.14,13567.04,12424.5,4763.51,30755.05,90112.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,32811,48467.83,571.5,640.0,49679.33,10082.67,9761.24,3929.32,23773.23,73452.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30991,31748.42,1037.36,341.72,33127.5,4839.68,9079.44,2615.62,16534.74,49662.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,47514,61691.0,0.0,0.0,61691.0,13483.4,6690.12,4987.2,25160.72,86851.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51692,66679.59,6088.6,5547.81,78316.0,19825.36,13144.22,6060.58,39030.16,117346.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1084,138335.23,0.0,28263.44,166598.67,31877.42,11700.18,9510.77,53088.37,219687.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,33380,93281.03,0.0,1460.0,94741.03,19526.58,12424.5,7609.11,39560.19,134301.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,23337,23900.67,0.0,329.69,24230.36,840.99,4258.98,1878.13,6978.1,31208.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7319,Electric Motor Repairer,11075,84644.01,19002.9,4206.1,107853.01,17587.73,12424.49,8605.53,38617.75,146470.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24866,119461.67,29603.61,1765.92,150831.2,23641.92,12424.5,2524.38,38590.8,189422.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,20143,54035.19,491.68,7072.72,61599.59,14052.44,12231.27,4984.36,31268.07,92867.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,22724,54503.93,0.0,8791.43,63295.36,11958.16,5495.45,8747.35,26200.96,89496.32 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,45976,90205.03,0.0,0.0,90205.03,18575.97,12424.5,7263.88,38264.35,128469.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28699,11066.68,1771.02,732.28,13569.98,3439.33,2200.81,1034.96,6675.1,20245.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,3582,27028.98,0.0,1021.72,28050.7,6741.69,6678.17,2312.48,15732.34,43783.04 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,13469,295.65,0.0,0.0,295.65,53.6,0.0,5.01,58.61,354.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,31683,69329.07,20374.06,9414.58,99117.71,15455.19,12261.49,7838.35,35555.03,134672.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2850,112696.19,8331.82,13345.82,134373.83,22291.43,12424.5,2242.3,36958.23,171332.06 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,1615,52757.51,0.0,0.0,52757.51,11298.44,9639.32,4206.34,25144.1,77901.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9241,Airport Electrician Supervisor,18343,116638.06,0.0,11389.02,128027.08,25769.26,12424.5,9871.85,48065.61,176092.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,41815,105505.1,0.0,333.14,105838.24,21158.85,11934.69,8502.07,41595.61,147433.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,24856,65452.0,19151.26,943.56,85546.82,13678.16,12424.5,7022.57,33125.23,118672.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,44538,150.0,0.0,0.0,150.0,0.0,35.84,11.62,47.46,197.46 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,35685,74412.04,188.87,3624.0,78224.91,15474.52,12424.5,6918.0,34817.02,113041.93 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,43659,197971.78,0.0,30995.81,228967.59,46063.02,11130.68,11589.23,68782.93,297750.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28494,66561.72,5080.15,1703.01,73344.88,18674.86,13115.68,5385.75,37176.29,110521.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,26397,2834.29,0.0,243.73,3078.02,641.02,477.75,242.61,1361.38,4439.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22811,11569.51,0.0,2307.63,13877.14,151.97,0.0,2412.67,2564.64,16441.78 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,52320,67911.06,409.59,2334.45,70655.1,14483.38,12424.5,5797.87,32705.75,103360.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,7610,129895.03,0.0,0.0,129895.03,26141.5,12424.5,9941.22,48507.22,178402.25 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,45542,93484.02,0.0,0.0,93484.02,19241.73,12424.5,1511.36,33177.59,126661.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,1917,13121.6,54.58,1324.4,14500.58,2963.37,0.0,1195.53,4158.9,18659.48 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,12226,32769.01,0.0,11663.41,44432.42,7189.51,3153.91,3599.86,13943.28,58375.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,52174,55166.63,9734.79,1450.0,66351.42,11876.23,10520.21,5183.19,27579.63,93931.05 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,36035,66400.0,0.0,400.0,66800.0,14179.72,9557.31,5311.75,29048.78,95848.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21171,29388.35,0.0,8459.3,37847.65,0.0,0.0,2323.76,2323.76,40171.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,41825,9279.6,0.0,35.1,9314.7,2089.29,1815.9,774.51,4679.7,13994.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,36063,42201.51,0.0,12868.07,55069.58,9362.19,6845.42,4565.01,20772.62,75842.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,17701,38660.67,532.22,993.58,40186.47,8773.9,4599.46,3235.89,16609.25,56795.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,48952,4526.0,0.0,4.34,4530.34,0.0,1744.21,351.41,2095.62,6625.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,32091,67261.0,241.03,0.0,67502.03,13862.82,12424.5,5597.67,31884.99,99387.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,7450,82883.01,18985.85,20126.34,121995.2,20160.3,12424.5,9737.14,42321.94,164317.14 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,12066,68041.84,0.0,16.06,68057.9,13953.38,11229.84,5399.69,30582.91,98640.81 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,41292,70559.65,0.0,593.48,71153.13,14599.63,11816.78,5868.88,32285.29,103438.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,11806,56531.0,880.24,2600.32,60011.56,11870.22,12424.5,4891.16,29185.88,89197.44 +Calendar,2015,6,General Administration & Finance,REG,Elections,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,9423,83694.0,0.0,0.0,83694.0,17249.65,12424.5,6668.2,36342.35,120036.35 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,51033,7253.0,0.0,106.44,7359.44,1618.33,2150.39,573.71,4342.43,11701.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",45922,68827.26,528.38,3965.41,73321.05,14707.58,10412.69,6019.51,31139.78,104460.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30592,870.46,283.85,0.0,1154.31,246.34,0.0,91.2,337.54,1491.85 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",22470,45501.08,0.0,0.0,45501.08,10205.88,5412.85,3686.35,19305.08,64806.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,46098,48496.0,0.0,88739.34,137235.34,11085.84,3822.92,128.44,15037.2,152272.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,20963,112685.42,4809.02,8602.53,126096.97,22330.92,12424.5,1446.74,36202.16,162299.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,46994,72313.06,298.52,24986.0,97597.58,16692.94,6212.25,208.21,23113.4,120710.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8716,113233.59,55343.74,19389.52,187966.85,25036.02,15196.12,3195.56,43427.7,231394.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38570,64539.13,8827.92,1668.46,75035.51,16154.77,13343.08,5733.44,35231.29,110266.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52347,66570.9,16229.4,5713.32,88513.62,19799.54,13116.15,6660.61,39576.3,128089.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51078,58488.24,12849.66,790.31,72128.21,15814.19,13191.84,5508.29,34514.32,106642.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,31022,81942.0,16992.57,2053.6,100988.17,17118.91,12424.5,8051.98,37595.39,138583.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17127,113233.59,44493.64,24369.16,182096.39,25330.53,15196.11,3099.54,43626.18,225722.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,17498,3295.0,0.0,0.0,3295.0,613.2,477.86,278.36,1369.42,4664.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52245,112159.74,54508.9,25783.41,192452.05,26551.53,15052.77,3272.62,44876.92,237328.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41050,67542.1,10218.1,6899.97,84660.17,20426.19,13307.6,6397.15,40130.94,124791.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,43822,23392.0,0.0,3336.11,26728.11,4887.51,4061.86,2145.5,11094.87,37822.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,22228,90341.2,0.0,0.0,90341.2,18579.54,12424.5,7241.32,38245.36,128586.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9605,4182.15,0.0,281.34,4463.49,0.0,1756.16,354.15,2110.31,6573.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2893,66251.44,5597.02,558.66,72407.12,18292.58,13054.63,5302.09,36649.3,109056.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",351.0,Municipal Executive Association - Miscellaneous,0900,Management,0962,Dept Head II,45888,184475.67,0.0,0.0,184475.67,37082.55,12424.5,28332.14,77839.19,262314.86 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,33038,12517.56,0.0,0.0,12517.56,0.0,0.0,990.92,990.92,13508.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,34750,65452.09,0.0,624.0,66076.09,13616.29,12424.5,5430.61,31471.4,97547.49 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,43752,87531.07,0.0,0.0,87531.07,18040.64,12424.5,7261.19,37726.33,125257.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,32573,17884.0,0.0,0.0,17884.0,3923.76,1911.45,1364.09,7199.3,25083.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,36530,89210.02,0.0,504.0,89714.02,18488.39,12424.5,7147.59,38060.48,127774.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1489,63417.55,16860.26,3446.65,83724.46,18441.76,12519.9,6333.44,37295.1,121019.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,78,8828.59,0.0,0.0,8828.59,0.0,3803.98,721.0,4524.98,13353.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15444,97541.66,3980.96,4266.97,105789.59,18854.86,10035.18,1794.47,30684.51,136474.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40873,75836.4,46195.66,250.0,122282.06,15301.58,6319.77,9688.96,31310.31,153592.37 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,37928,67911.04,0.0,6421.07,74332.11,15101.37,12424.5,6646.79,34172.66,108504.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,13877,13108.98,0.0,19.02,13128.0,1655.96,0.0,5309.7,6965.66,20093.66 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45484,141113.6,0.0,1562.5,142676.1,28653.13,12424.5,10020.09,51097.72,193773.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,41518,53472.84,311.86,2173.23,55957.93,13352.46,12309.51,4596.78,30258.75,86216.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39540,4270.25,0.0,906.53,5176.78,960.01,1851.72,423.2,3234.93,8411.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,20854,48489.02,2337.88,0.0,50826.9,10232.18,10035.18,4211.14,24478.5,75305.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,44696,93499.0,32228.95,9228.61,134956.56,20302.43,12424.5,9964.99,42691.92,177648.48 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,32625,77071.04,0.0,1984.0,79055.04,16291.64,12424.5,6271.27,34987.41,114042.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11922,49032.01,14624.33,17792.42,81448.76,19463.6,9750.91,6312.89,35527.4,116976.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,34807,79833.81,13465.02,3581.76,96880.59,17165.2,12424.5,7719.4,37309.1,134189.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,34780,51588.03,0.0,0.0,51588.03,11571.24,5734.39,4170.5,21476.13,73064.16 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9611,5902.5,0.0,0.0,5902.5,0.0,2350.5,456.97,2807.47,8709.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,22615,132343.13,0.0,0.0,132343.13,26544.38,12424.5,17263.77,56232.65,188575.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46668,2260.14,0.0,0.0,2260.14,0.0,1102.08,175.38,1277.46,3537.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,25914,52871.0,3755.49,1488.39,58114.88,13039.05,12424.5,4665.36,30128.91,88243.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17949,1322.4,0.0,42.15,1364.55,0.0,573.44,105.64,679.08,2043.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,37652,55387.74,2003.23,3270.0,60660.97,11601.6,8372.98,4969.95,24944.53,85605.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28584,37219.37,210.28,958.44,38388.09,8646.31,7325.92,2938.34,18910.57,57298.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,39996,44187.02,8763.21,6287.49,59237.72,13991.96,8399.15,4851.94,27243.05,86480.77 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,40675,93051.56,37145.14,13272.88,143469.58,21308.44,12340.88,10165.94,43815.26,187284.84 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2595,Sr Employee Asst Counselor,17417,43640.01,0.0,0.0,43640.01,8121.4,5256.52,3451.16,16829.08,60469.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42852,119463.91,9223.98,2060.93,130748.82,23633.57,12424.5,2225.61,38283.68,169032.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48774,7627.9,0.0,1037.1,8665.0,3640.64,0.0,2561.36,6202.0,14867.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,946,44336.01,0.0,0.0,44336.01,9365.69,9079.44,3551.99,21997.12,66333.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30629,35569.94,0.0,1502.77,37072.71,7748.16,3071.95,2970.15,13790.26,50862.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,20927,95494.24,0.0,0.0,95494.24,19696.83,12328.96,7516.91,39542.7,135036.94 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,20621,51361.95,0.0,0.0,51361.95,12333.17,12127.27,4139.37,28599.81,79961.76 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8217,Comm Pol Svcs Aide Supervisor,3274,78610.18,1327.37,5836.31,85773.86,16705.94,12424.5,6794.58,35925.02,121698.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49738,20977.61,2758.54,923.05,24659.2,5301.69,6501.89,1866.46,13670.04,38329.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,50486,130611.67,0.0,4699.91,135311.58,27094.98,11946.39,9965.71,49007.08,184318.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,51863,46199.72,0.0,0.0,46199.72,9266.38,9509.52,3668.07,22443.97,68643.69 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,47991,90775.05,0.0,0.0,90775.05,18709.23,12424.5,6901.86,38035.59,128810.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42926,8643.78,0.0,283.19,8926.97,0.0,3326.68,691.3,4017.98,12944.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51404,69550.55,22453.92,548.19,92552.66,19179.13,13707.75,7023.19,39910.07,132462.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,9027,57005.0,0.0,0.0,57005.0,12506.91,6212.25,4682.02,23401.18,80406.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,19028,97580.65,1280.56,5595.0,104456.21,20106.42,12424.5,8592.97,41123.89,145580.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,50480,3697.0,0.0,3092.54,6789.54,829.24,477.86,522.6,1829.7,8619.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",43078,130329.28,31486.3,13230.95,175046.53,27897.77,15052.76,2960.14,45910.67,220957.2 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9157,Claims Adjuster,24857,57837.0,0.0,21986.96,79823.96,12689.43,6212.25,6323.7,25225.38,105049.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7353,Water Meter Repairer,48104,76728.04,0.0,0.0,76728.04,15813.99,12424.5,6071.62,34310.11,111038.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,11957,23741.0,1053.22,452.87,25247.09,4504.16,2867.21,1953.28,9324.65,34571.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",22179,11232.0,6598.8,4642.56,22473.36,2519.34,1433.6,1836.03,5788.97,28262.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,21693,65944.07,450.12,697.43,67091.62,13740.48,12394.64,6036.78,32171.9,99263.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22309,67643.45,7015.01,3224.02,77882.48,16158.21,13330.23,5737.3,35225.74,113108.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,3979,22211.25,79.98,2208.06,24499.29,5660.74,6209.26,1985.91,13855.91,38355.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,43136,61735.03,99.57,0.0,61834.6,12724.0,12424.5,5014.63,30163.13,91997.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39777,67359.47,3066.78,676.12,71102.37,18630.13,13271.58,5500.99,37402.7,108505.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,41726,106116.0,0.0,4124.95,110240.95,22731.87,12424.5,9053.28,44209.65,154450.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,41662,116976.03,0.0,0.0,116976.03,23541.49,12424.51,8957.86,44923.86,161899.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7923,65839.18,18966.27,1685.38,86490.83,18460.34,12972.67,6719.06,38152.07,124642.9 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,20239,45700.41,2407.79,992.89,49101.09,11058.48,10883.4,3928.24,25870.12,74971.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",7436,1196.0,0.0,0.0,1196.0,0.0,0.0,94.6,94.6,1290.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47451,21159.51,2800.27,1009.23,24969.01,5364.69,6555.71,1909.65,13830.05,38799.06 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,15850,55634.78,0.0,0.0,55634.78,12092.5,6605.0,4642.18,23339.68,78974.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,36.0,"Hod Carriers, Local 166",7400,Skilled Labor,7428,Hodcarrier,9467,63809.33,552.38,858.0,65219.71,13241.48,10286.04,5163.09,28690.61,93910.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,3890,21194.01,0.0,0.0,21194.01,4660.54,5256.51,1724.46,11641.51,32835.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1432,Senior Transcriber Typist,29903,67211.47,0.0,0.0,67211.47,13837.12,12424.5,5440.7,31702.32,98913.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2392,Sr Cent Proc & Dist Tech,9964,38012.0,4205.22,2654.5,44871.72,7074.05,5734.39,3644.33,16452.77,61324.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29675,59097.72,0.0,0.0,59097.72,13169.1,12424.5,4760.2,30353.8,89451.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,48805,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",8658,1404.9,0.0,0.0,1404.9,0.0,334.51,108.76,443.27,1848.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,49496,100014.87,15599.97,6189.65,121804.49,21365.07,12331.9,9333.69,43030.66,164835.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,25317,96771.16,0.0,0.0,96771.16,20175.2,10990.9,7646.12,38812.22,135583.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,376,85368.0,0.0,1380.0,86748.0,17876.69,12424.5,7138.98,37440.17,124188.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,16119,4234.95,0.0,80.0,4314.95,948.85,955.73,334.55,2239.13,6554.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,29025,3520.65,58.2,7.18,3586.03,0.0,1170.77,278.34,1449.11,5035.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,269,62587.13,15605.7,4709.72,82902.55,13296.03,12448.39,6522.02,32266.44,115168.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,30326,60275.4,3162.63,354.0,63792.03,12414.08,12424.5,5179.91,30018.49,93810.52 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,29051,69098.83,0.0,5969.81,75068.64,14496.11,9844.03,6012.82,30352.96,105421.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,33865,25460.08,6696.63,2759.3,34916.01,5710.7,3345.06,2824.06,11879.82,46795.83 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,50133,9463.59,0.0,4258.32,13721.91,0.0,12424.5,198.97,12623.47,26345.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43815,67492.19,9267.48,4478.55,81238.22,19757.43,13302.36,5999.4,39059.19,120297.41 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,25261,43362.0,0.0,11639.75,55001.75,9794.41,6540.79,4463.25,20798.45,75800.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50316,14058.46,0.0,239.78,14298.24,0.0,5372.4,1108.52,6480.92,20779.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",18315,49912.11,10636.51,9742.07,70290.69,9910.7,5734.39,1196.77,16841.86,87132.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,8740,23839.1,0.0,0.0,23839.1,-719.46,0.0,4057.2,3337.74,27176.84 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,48034,64973.86,0.0,0.0,64973.86,13177.53,10513.04,5283.9,28974.47,93948.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9123,66276.05,3495.97,3383.69,73155.71,19060.22,13056.42,5704.23,37820.87,110976.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,50413,78406.39,0.0,0.0,78406.39,16043.67,11674.55,6094.01,33812.23,112218.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,13801,56531.0,3167.8,3900.29,63599.09,11780.12,12424.5,5237.74,29442.36,93041.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,455,174852.11,0.0,0.0,174852.11,35303.5,12424.5,28249.14,75977.14,250829.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,20265,130750.75,0.0,0.0,130750.75,26844.08,12424.5,17199.87,56468.45,187219.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44654,64689.26,6399.58,1753.23,72842.07,18142.27,12746.35,5560.22,36448.84,109290.91 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O035,Management Assistant II (OCII),5635,53370.62,0.0,0.0,53370.62,10764.79,9987.38,4413.72,25165.89,78536.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",18639,51292.8,10635.3,3777.22,65705.32,11504.99,6546.76,5357.44,23409.19,89114.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11498,72030.96,5358.05,2357.52,79746.53,15473.38,9079.44,1294.2,25847.02,105593.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21051,9238.01,451.08,1990.07,11679.16,1641.64,955.73,196.42,2793.79,14472.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18454,67006.7,3552.15,1945.81,72504.66,18914.29,13206.83,5537.04,37658.16,110162.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45235,67237.28,4931.56,3526.28,75695.12,16124.05,13247.09,5775.21,35146.35,110841.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,1758,15791.22,0.0,58.97,15850.19,3912.33,4438.18,1307.47,9657.98,25508.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,48261,125802.98,68138.57,15534.97,209476.52,27738.27,14609.48,3519.96,45867.71,255344.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,36504,34566.01,5489.2,6398.88,46454.09,11141.85,6565.57,3600.27,21307.69,67761.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43019,137041.42,0.0,9606.02,146647.44,26798.59,12424.5,5871.22,45094.31,191741.75 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28146,184289.02,0.0,5248.28,189537.3,38144.36,12424.5,10933.16,61502.02,251039.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,50028,56276.02,1215.14,2831.7,60322.86,13175.82,12424.5,4935.26,30535.58,90858.44 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,30050,108304.04,27350.44,19335.76,154990.24,31063.2,12415.85,2643.59,46122.64,201112.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,12424,86397.41,0.0,0.0,86397.41,17751.13,11721.2,6269.89,35742.22,122139.63 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,10234,89183.65,0.0,10756.3,99939.95,18500.58,9509.52,8001.43,36011.53,135951.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25565,65503.89,6716.86,1661.97,73882.72,16410.0,13245.36,5637.75,35293.11,109175.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19084,16267.5,596.91,1195.83,18060.24,5029.64,3235.09,1370.92,9635.65,27695.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37585,55068.4,3879.43,2602.27,61550.1,13808.56,12424.5,4730.11,30963.17,92513.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,40195,26746.08,0.0,1192.18,27938.26,6546.26,6162.5,2382.22,15090.98,43029.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,37871,91331.0,0.0,0.0,91331.0,18823.67,12424.5,7490.46,38738.63,130069.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15280,4709.26,0.0,1009.87,5719.13,1214.99,1982.72,464.32,3662.03,9381.16 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13066,29421.98,33.34,2173.03,31628.35,7083.91,7831.02,2703.99,17618.92,49247.27 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,39391,149414.76,0.0,0.0,149414.76,30024.5,12424.5,18606.74,61055.74,210470.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10902,102800.23,13033.07,17045.18,132878.48,23886.22,15196.12,2208.73,41291.07,174169.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,44615,63887.02,2419.97,3802.35,70109.34,13952.59,12424.5,5778.13,32155.22,102264.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,6304,57990.0,0.0,0.0,57990.0,10513.6,4778.62,3549.25,18841.47,76831.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,46962,16164.02,0.0,886.09,17050.11,4322.7,4137.24,1430.26,9890.2,26940.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,10587,37665.0,0.0,0.0,37665.0,7182.21,6690.11,3056.95,16929.27,54594.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,14041,49327.6,6728.0,2566.32,58621.92,12040.36,12424.5,4727.66,29192.52,87814.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",38625,0.0,0.0,61499.88,61499.88,0.0,0.0,0.0,0.0,61499.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35701,68023.51,5264.85,2385.72,75674.08,19279.0,13403.53,5566.57,38249.1,113923.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29938,117216.2,0.0,1648.75,118864.95,23886.0,12424.5,9467.36,45777.86,164642.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,13124,64273.01,0.0,1392.85,65665.86,13381.51,10211.39,5203.18,28796.08,94461.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,48164,85040.82,14865.51,810.0,100716.33,17699.71,12418.53,8258.22,38376.46,139092.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,10731,68380.0,0.0,728.0,69108.0,14069.15,11229.83,5717.87,31016.85,100124.85 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,15792,44033.0,0.0,0.0,44033.0,8284.0,6212.25,3537.42,18033.67,62066.67 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,12157,74533.21,1958.85,0.0,76492.06,15336.14,12424.5,6214.18,33974.82,110466.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51736,63398.6,9588.07,1593.84,74580.51,13378.23,12328.93,6007.94,31715.1,106295.61 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,27143,100875.02,0.0,6714.65,107589.67,22147.25,12137.78,8531.61,42816.64,150406.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,3342,138496.63,19816.35,16969.65,175282.63,27933.12,12412.54,2834.83,43180.49,218463.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15245,56531.0,0.0,3594.0,60125.0,11788.47,12424.5,4720.4,28933.37,89058.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,26165,63887.01,261.56,2018.68,66167.25,13594.06,12424.51,5227.14,31245.71,97412.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17432,9391.5,0.0,0.0,9391.5,0.0,3601.91,728.15,4330.06,13721.56 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,42420,56276.0,0.0,624.0,56900.0,12731.53,12424.5,4720.67,29876.7,86776.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15379,72664.26,7378.67,4772.92,84815.85,15566.77,15052.75,1413.03,32032.55,116848.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,42066,51405.0,27.86,2419.73,53852.59,12547.79,12424.5,4962.59,29934.88,83787.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9108,661.2,0.0,0.0,661.2,0.0,286.72,51.19,337.91,999.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,41018,77071.0,19190.53,1500.0,97761.53,16192.91,12424.5,7984.5,36601.91,134363.44 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,12830,55692.3,0.0,0.0,55692.3,12218.88,3822.92,8472.87,24514.67,80206.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42597,81739.66,0.0,10477.94,92217.6,16531.17,7239.66,7212.71,30983.54,123201.14 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),22443,184289.05,0.0,5185.78,189474.83,38130.64,12424.5,11001.88,61557.02,251031.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,48335,79395.05,0.0,664.0,80059.05,16498.48,12424.51,6638.31,35561.3,115620.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,14818,4072.0,0.0,0.0,4072.0,913.35,764.58,335.94,2013.87,6085.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27530,2652.11,0.0,250.0,2902.11,770.47,521.95,147.88,1440.3,4342.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42246,1739.51,0.0,5.88,1745.39,0.0,848.21,135.42,983.63,2729.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1892,12047.03,0.0,1041.04,13088.07,9512.83,979.62,290.61,10783.06,23871.13 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,20416,76706.92,4041.45,746.04,81494.41,15934.42,12365.54,6481.53,34781.49,116275.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",13371,179494.7,0.0,11458.68,190953.38,37383.28,12424.5,3201.09,53008.87,243962.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37850,57829.83,2500.79,2079.14,62409.76,15540.02,13228.04,4710.44,33478.5,95888.26 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0951,Dep Dir I,4112,122153.35,0.0,0.0,122153.35,24517.95,12424.5,17125.58,54068.03,176221.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32732,8319.57,0.0,4.78,8324.35,0.0,2064.79,645.51,2710.3,11034.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",33418,12441.4,385.93,727.57,13554.9,0.0,2580.48,1051.56,3632.04,17186.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,16375,8137.8,0.0,147.75,8285.55,0.0,2693.97,410.66,3104.63,11390.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,43751,8545.79,0.0,389.87,8935.66,0.0,1690.45,693.55,2384.0,11319.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19539,136071.0,0.0,21174.29,157245.29,29223.22,12424.5,6258.01,47905.73,205151.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39762,2963.63,0.0,0.0,2963.63,0.0,988.58,229.76,1218.34,4181.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48629,1287.0,0.0,0.0,1287.0,239.51,286.72,99.89,626.12,1913.12 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,17979,60248.01,696.45,0.0,60944.46,12417.39,12424.5,4799.71,29641.6,90586.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,42470,41798.91,3097.31,2788.07,47684.29,10155.46,11092.45,3811.1,25059.01,72743.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6163,21264.14,157.59,504.28,21926.01,5473.36,6045.0,1797.55,13315.91,35241.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,4157,17887.2,0.0,825.75,18712.95,3933.4,4730.87,1496.94,10161.21,28874.16 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,26579,67261.0,0.0,0.0,67261.0,13862.82,12424.5,5469.15,31756.47,99017.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47003,61733.66,6160.29,1389.27,69283.22,17179.0,12158.46,5345.78,34683.24,103966.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,47842,74173.8,10905.99,4596.98,89676.77,15992.86,12342.37,7358.43,35693.66,125370.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,22279,49927.61,457.28,0.0,50384.89,11958.34,12424.5,4015.64,28398.48,78783.37 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,37484,34126.98,0.0,0.0,34126.98,8209.73,8428.35,2736.15,19374.23,53501.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,36917,48672.0,0.0,312.0,48984.0,10987.08,6212.25,4034.14,21233.47,70217.47 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,14721,44708.38,134.29,3628.21,48470.88,9982.19,5966.09,4035.68,19983.96,68454.84 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1249,Personnel Trainee,49338,33885.0,0.0,0.0,33885.0,8531.16,7168.1,2679.84,18379.1,52264.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,31819,69478.0,2849.56,317.14,72644.7,14291.65,12424.5,5876.12,32592.27,105236.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,30438,100504.08,0.0,0.0,100504.08,20353.12,9367.84,8304.77,38025.73,138529.81 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,41529,91684.0,0.0,0.0,91684.0,16622.32,5734.39,10963.22,33319.93,125003.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,5128,6444.92,0.0,0.0,6444.92,1168.46,477.86,707.77,2354.09,8799.01 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8340,"Asst Director, Juvenile Hall",16258,103790.01,0.0,0.0,103790.01,23688.24,12424.5,10554.62,46667.36,150457.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5164,97516.89,87014.08,21253.51,205784.48,28073.52,12390.28,3492.05,43955.85,249740.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,13543,0.0,0.0,388.08,388.08,0.0,68.5,29.69,98.19,486.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,44449,95968.0,0.0,0.0,95968.0,19779.2,12424.5,7530.39,39734.09,135702.09 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,13791,15929.86,0.0,0.0,15929.86,3075.44,573.44,8686.27,12335.15,28265.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,7205,97980.84,15620.9,4135.43,117737.17,20612.01,12430.47,8805.0,41847.48,159584.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45879,3278.45,0.0,0.0,3278.45,0.0,0.0,268.34,268.34,3546.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,34876,14372.89,0.0,0.0,14372.89,1238.94,3937.91,1115.74,6292.59,20665.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,37874,70245.0,5046.11,4712.25,80003.36,14616.35,12424.5,6553.56,33594.41,113597.77 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,26822,32131.0,1063.59,351.3,33545.89,6126.95,6690.11,2670.07,15487.13,49033.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19325,137135.73,477.89,34040.79,171654.41,31627.43,12139.58,4648.96,48415.97,220070.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,26409,138637.94,16116.44,14197.27,168951.65,27385.65,12424.5,2879.22,42689.37,211641.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10025,58490.78,15356.22,4179.54,78026.54,16951.36,11510.53,6092.81,34554.7,112581.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30780,121190.99,7389.34,250.0,128830.33,24382.75,11291.96,9892.88,45567.59,174397.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,24561,124660.19,0.0,0.0,124660.19,25102.24,12424.5,9702.66,47229.4,171889.59 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,26460,78747.05,0.0,0.0,78747.05,16226.02,12424.5,6204.2,34854.72,113601.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32995,139302.11,0.0,9044.45,148346.56,28014.96,12332.57,7089.1,47436.63,195783.19 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",50400,21127.01,0.0,3000.0,24127.01,0.0,3536.21,1954.39,5490.6,29617.61 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,49285,31476.87,0.0,0.0,31476.87,7060.26,3783.5,2584.7,13428.46,44905.33 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0116,"Brd Comm Mbr, M=$200/Mtg",27902,10000.0,0.0,0.0,10000.0,0.0,0.0,791.12,791.12,10791.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,50110,2466.3,0.0,16165.39,18631.69,541.11,238.93,1427.59,2207.63,20839.32 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),3675,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11005.23,61560.37,251035.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3496,118455.58,325.86,3740.43,122521.87,23446.67,12319.97,1705.14,37471.78,159993.65 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,39931,72614.36,0.0,3895.13,76509.49,15068.6,12124.34,6360.54,33553.48,110062.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27529,7826.85,0.0,0.0,7826.85,0.0,3333.11,630.38,3963.49,11790.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,28960,69637.67,0.0,1440.0,71077.67,14637.84,11898.85,5453.66,31990.35,103068.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,53005,151532.75,0.0,0.0,151532.75,30600.06,12021.84,10401.08,53022.98,204555.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,584,102019.06,0.0,0.0,102019.06,21022.54,12424.5,8900.21,42347.25,144366.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16831,113233.59,55729.9,19134.4,188097.89,25176.25,15196.12,3317.64,43690.01,231787.9 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,2684,67245.0,0.0,2412.4,69657.4,14194.4,12421.52,5516.33,32132.25,101789.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,8190,139506.25,298.52,3673.29,143478.06,27571.98,12424.5,2444.72,42441.2,185919.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,25321,49343.29,184.03,5962.71,55490.03,10896.02,10967.02,4462.35,26325.39,81815.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,37745,596.4,0.0,0.0,596.4,0.0,191.14,46.29,237.43,833.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34327,124734.6,696.49,35122.63,160553.72,19054.89,11043.47,9883.94,39982.3,200536.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2880,39716.06,6229.67,1758.19,47703.92,10761.8,12413.2,3590.24,26765.24,74469.16 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,302,105054.57,9945.03,3573.14,118572.74,21921.14,12388.66,9765.71,44075.51,162648.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24219,66903.35,7271.46,3280.89,77455.7,19235.93,13186.28,5975.69,38397.9,115853.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23457,55701.69,5503.4,1298.49,62503.58,14816.01,13261.84,4802.11,32879.96,95383.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,8035,101733.0,0.0,0.0,101733.0,20967.28,12424.5,8829.02,42220.8,143953.8 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47501,97563.47,3103.8,9665.3,110332.57,26072.19,12399.11,1869.75,40341.05,150673.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29797,100551.32,25527.37,7611.2,133689.89,19590.18,10513.04,2216.01,32319.23,166009.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1828,27119.75,2157.87,948.96,30226.58,7036.4,8440.89,2813.09,18290.38,48516.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,49435,118427.0,12858.44,5921.36,137206.8,25025.43,12424.5,10032.09,47482.02,184688.82 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,15224,113852.03,0.0,0.0,113852.03,22913.02,12424.49,8547.12,43884.63,157736.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10984,7375.5,0.0,343.66,7719.16,1169.88,0.0,1596.55,2766.43,10485.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,33945,703.99,0.0,49.37,753.36,0.0,218.03,58.33,276.36,1029.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,37567,111116.25,12950.92,3342.37,127409.54,22679.8,12424.5,9868.6,44972.9,172382.44 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,27817,79105.05,0.0,100.0,79205.05,16317.35,12424.5,6100.56,34842.41,114047.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24625,63450.44,1125.39,70388.66,134964.49,13710.37,6630.38,2129.22,22469.97,157434.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,40601,61535.26,23782.6,3607.94,88925.8,13206.27,12236.34,7249.29,32691.9,121617.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17016,5248.57,0.0,140.02,5388.59,0.0,0.0,426.24,426.24,5814.83 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,15228,41130.1,0.0,0.0,41130.1,8015.57,7406.92,3211.95,18634.44,59764.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,17971,64922.22,0.0,0.0,64922.22,10831.25,11994.42,4668.82,27494.49,92416.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,15014,97769.67,26662.19,23530.89,147962.75,23311.59,12421.52,10274.59,46007.7,193970.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,32446,22552.01,5223.98,0.0,27775.99,5058.4,3822.92,2153.09,11034.41,38810.4 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,37358,91885.52,0.0,0.0,91885.52,18863.53,12167.65,7226.66,38257.84,130143.36 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,101,74412.05,0.0,3767.1,78179.15,15474.54,12424.5,6366.71,34265.75,112444.9 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,32340,100106.9,0.0,0.0,100106.9,20599.72,12388.9,7842.55,40831.17,140938.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,19878,78610.04,0.0,0.0,78610.04,16201.97,12424.5,6037.22,34663.69,113273.73 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,37953,129895.04,0.0,49.65,129944.69,26141.5,12424.5,9938.97,48504.97,178449.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,3379,101784.9,0.0,0.0,101784.9,20943.8,12424.5,8156.49,41524.79,143309.69 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,7865,6073.6,0.0,706.19,6779.79,1149.48,621.23,711.12,2481.83,9261.62 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,48740,6480.28,0.0,5394.1,11874.38,1216.09,1082.0,982.63,3280.72,15155.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,42408,97793.01,10465.57,15454.93,123713.51,22560.87,12424.5,9789.52,44774.89,168488.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,51337,139662.87,4555.99,6909.34,151128.2,27656.95,12424.5,2320.87,42402.32,193530.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,2819,67261.02,0.0,1630.26,68891.28,14198.82,12424.5,5455.73,32079.05,100970.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,17802,79264.96,1416.86,88.0,80769.82,16345.67,12352.8,6636.61,35335.08,116104.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,41722,35100.0,5610.94,1235.0,41945.94,8149.93,6212.25,3242.12,17604.3,59550.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,48357,79722.02,1354.0,2496.75,83572.77,16947.98,12424.5,6858.35,36230.83,119803.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52441,112770.84,6648.85,21562.04,140981.73,25723.53,14479.31,2311.6,42514.44,183496.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,10870,73811.11,3402.66,0.0,77213.77,15215.75,12400.61,6340.07,33956.43,111170.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43440,51066.34,0.0,6430.07,57496.41,13289.98,12282.52,4953.32,30525.82,88022.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,24963,197836.55,0.0,0.0,197836.55,39916.15,12424.5,26140.26,78480.91,276317.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,44483,73125.4,6701.75,10724.27,90551.42,16486.0,12376.71,7177.18,36039.89,126591.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,48092,65492.4,0.0,4049.82,69542.22,14262.52,12309.22,5736.11,32307.85,101850.07 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,28945,88565.0,0.0,0.0,88565.0,18189.67,11946.64,6979.71,37116.02,125681.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,12511,87502.01,0.0,250.0,87752.01,17305.9,8997.6,6612.06,32915.56,120667.57 +Calendar,2015,1,Public Protection,POL,Police,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,5603,112209.0,9203.25,0.0,121412.25,22870.16,12424.5,9504.92,44799.58,166211.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,16101,31842.85,14.81,0.0,31857.66,4565.44,9591.66,2528.7,16685.8,48543.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17240,20008.98,0.0,462.56,20471.54,1249.9,0.0,774.27,2024.17,22495.71 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,19955,35008.0,17.13,0.0,35025.13,8164.68,9079.44,2805.53,20049.65,55074.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,49943,74685.62,3240.2,3268.99,81194.81,15640.46,12272.48,6697.6,34610.54,115805.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",43321,92618.31,9320.94,1455.25,103394.5,19223.91,12275.17,8124.68,39623.76,143018.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,10245,71311.02,2871.02,0.0,74182.04,14697.59,12424.5,6090.14,33212.23,107394.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,32506,9611.42,260.25,2067.31,11938.98,2893.78,1256.61,199.98,4350.37,16289.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,59,2666.01,0.0,13537.32,16203.33,603.37,477.86,1246.29,2327.52,18530.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10397,101714.85,5757.2,15236.01,122708.06,22551.22,13512.84,2041.81,38105.87,160813.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,42401,30324.02,0.0,900.0,31224.02,7638.9,10035.18,2538.35,20212.43,51436.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29927,139166.47,15479.65,11751.7,166397.82,27486.09,12424.5,2826.33,42736.92,209134.74 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8143,Sr Public Defenders Invstgtor,36588,101531.01,0.0,0.0,101531.01,20926.02,12424.5,7942.98,41293.5,142824.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",44726,18873.81,0.0,0.0,18873.81,0.0,4450.12,49.94,4500.06,23373.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,10659,97934.03,0.0,72.0,98006.03,20209.06,12424.5,8011.49,40645.05,138651.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,2228,87830.63,0.0,180.0,88010.63,18244.97,11709.26,7302.53,37256.76,125267.39 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),26598,113461.67,0.0,1500.0,114961.67,23089.09,12164.78,9277.14,44531.01,159492.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26427,2176.45,0.0,68.49,2244.94,0.0,943.78,181.27,1125.05,3369.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3839,5711.94,0.0,0.0,5711.94,0.0,2476.89,464.63,2941.52,8653.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,44072,76665.81,27744.91,8732.09,113142.81,17648.33,11454.5,8977.29,38080.12,151222.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,3150,54124.0,0.0,3408.0,57532.0,12853.98,12424.5,4701.47,29979.95,87511.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,43687,108514.43,0.0,0.0,108514.43,22317.18,12424.5,8713.3,43454.98,151969.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8047,52842.18,0.0,2624.25,55466.43,10973.07,11608.79,4553.81,27135.67,82602.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,50300,24741.82,0.0,0.0,24741.82,5549.59,5256.52,2028.49,12834.6,37576.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31392,75594.5,10650.59,11361.89,97606.98,17769.07,9318.38,1657.74,28745.19,126352.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11485,64126.05,7070.33,786.03,71982.41,17839.58,12641.27,5456.91,35937.76,107920.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2552,"Dir Of Act, Therapy & Vol Svcs",1250,87761.57,0.0,3311.16,91072.73,18077.48,12339.86,7492.99,37910.33,128983.06 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,24812,223993.0,0.0,13507.5,237500.5,45028.29,12424.51,11735.44,69188.24,306688.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13916,67682.7,29865.55,5679.94,103228.19,20100.28,13338.36,7824.2,41262.84,144491.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,9354,Elevator And Crane Technician,22684,112344.9,52665.65,1517.92,166528.47,22635.05,12376.71,10520.4,45532.16,212060.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12583,68677.41,3211.86,1699.7,73588.97,16035.77,13535.12,5620.92,35191.81,108780.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42882,64903.75,19613.37,646.28,85163.4,17928.4,12787.62,6647.29,37363.31,122526.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,14098,25177.0,154.83,1092.45,26424.28,5665.13,6690.12,2098.73,14453.98,40878.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,563,32317.9,670.68,621.68,33610.26,8179.81,7550.28,2725.47,18455.56,52065.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6252,Line Inspector,8133,106514.1,75619.69,0.0,182133.79,21567.51,11692.29,10835.17,44094.97,226228.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22909,59171.27,5873.39,3154.22,68198.88,16656.82,13551.49,5203.59,35411.9,103610.78 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,27987,111436.0,0.0,6128.98,117564.98,23674.78,12424.5,9719.74,45819.02,163384.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37999,62696.14,1057.38,9376.07,73129.59,13877.7,5565.65,5360.76,24804.11,97933.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14650,31178.85,3603.19,1047.34,35829.38,8461.89,9737.76,2664.96,20864.61,56693.99 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,10420,1418.8,0.0,0.0,1418.8,0.0,191.14,110.12,301.26,1720.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40412,56531.0,899.79,964.26,58395.05,11791.44,12424.5,4835.36,29051.3,87446.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",52011,147858.3,107264.66,8871.5,263994.46,30966.56,12424.5,4444.5,47835.56,311830.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33274,60952.79,7566.29,676.74,69195.82,14962.4,13315.18,5280.86,33558.44,102754.26 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,3018,63928.0,0.0,0.0,63928.0,12658.25,8601.58,5026.49,26286.32,90214.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",43651,103185.89,0.0,0.0,103185.89,21267.47,12424.5,8436.48,42128.45,145314.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13475,87756.18,2629.38,15598.13,105983.69,19582.7,7767.53,7405.88,34756.11,140739.8 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,32084,55086.02,24249.35,2244.2,81579.57,11351.14,10869.95,6535.48,28756.57,110336.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14854,140334.0,0.0,250.0,140584.0,28242.36,12424.5,10126.84,50793.7,191377.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46756,75823.2,234.84,8477.64,84535.68,15428.48,8028.14,6817.06,30273.68,114809.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,40111,1089.0,0.0,0.0,1089.0,244.26,238.93,84.31,567.5,1656.5 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,20267,57906.65,0.0,4014.74,61921.39,13140.27,12424.5,5118.9,30683.67,92605.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24280,21341.2,0.0,0.0,21341.2,5088.03,9390.05,1681.94,16160.02,37501.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,26321,23026.66,874.1,82.27,23983.03,0.0,4772.68,1902.52,6675.2,30658.23 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,10569,67911.05,1284.76,5002.71,74198.52,14498.4,12424.5,6129.91,33052.81,107251.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13455,60071.45,1187.06,1028.16,62286.67,16822.32,11828.6,4701.77,33352.69,95639.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,10404,80724.03,0.0,0.0,80724.03,17135.07,9557.29,6199.62,32891.98,113616.01 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,15134,35659.13,0.0,535.53,36194.66,7585.87,5784.2,3091.93,16462.0,52656.66 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,3544,99654.04,0.0,0.0,99654.04,22731.79,12424.5,1639.84,36796.13,136450.17 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,2580,164343.55,0.0,4071.75,168415.3,33551.8,10930.81,10483.72,54966.33,223381.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,19885,32160.0,1373.5,12461.11,45994.61,5709.66,2867.19,754.91,9331.76,55326.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,9247,26153.44,0.0,0.0,26153.44,0.0,4497.97,1992.22,6490.19,32643.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,635,10183.8,72.33,270.4,10526.53,0.0,3153.91,815.17,3969.08,14495.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",35159,130341.62,23851.93,12318.55,166512.1,28092.19,15052.76,2810.5,45955.45,212467.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",11230,82535.0,42260.93,11346.01,136141.94,18396.67,12424.5,9978.81,40799.98,176941.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,1497,47885.83,4651.5,3100.32,55637.65,9967.12,8864.4,1385.88,20217.4,75855.05 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,5882,118427.0,0.0,0.0,118427.0,23833.74,12424.5,17059.57,53317.81,171744.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11502,5974.06,113.8,1.21,6089.07,0.0,2523.71,472.72,2996.43,9085.5 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,42654,33009.82,0.0,0.0,33009.82,7242.36,3345.06,2725.99,13313.41,46323.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,38727,130200.84,0.0,0.0,130200.84,26173.85,12424.5,24866.89,63465.24,193666.08 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,37913,12937.03,0.0,0.0,12937.03,0.0,3083.73,1003.59,4087.32,17024.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,31752,3859.0,1414.57,598.85,5872.42,829.61,477.86,424.09,1731.56,7603.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,28806,404.16,0.0,1.8,405.96,94.41,0.0,21.48,115.89,521.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28251,1974.54,0.0,136.69,2111.23,34.64,0.0,129.96,164.6,2275.83 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,566,81689.42,0.0,1360.0,83049.42,17091.08,12119.87,6594.03,35804.98,118854.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,29635,56531.0,0.0,1965.6,58496.6,11667.81,12424.5,4794.85,28887.16,87383.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8979,1224.44,0.0,8.91,1233.35,0.0,0.0,-0.02,-0.02,1233.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1430,Transcriber Typist,34842,61735.01,0.0,624.0,62359.01,12849.21,12424.5,5169.23,30442.94,92801.95 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,8529,27536.8,0.0,0.0,27536.8,6176.52,5256.52,2208.39,13641.43,41178.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,47319,7668.08,0.0,0.0,7668.08,0.0,0.0,606.52,606.52,8274.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34387,691.4,0.0,0.0,691.4,0.0,0.0,49.96,49.96,741.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,11293,74572.1,0.0,0.0,74572.1,15313.12,11994.66,6078.0,33385.78,107957.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,43952,158657.78,0.0,0.0,158657.78,31930.0,12424.51,17676.34,62030.85,220688.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,19144,0.0,0.0,42.69,42.69,0.0,0.0,3.27,3.27,45.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,4515,108080.65,7665.01,5156.15,120901.81,21562.49,11468.77,2056.49,35087.75,155989.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,27724,31581.22,0.0,307.55,31888.77,5934.48,4730.88,2622.58,13287.94,45176.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1487,77856.3,1344.87,3709.55,82910.72,15750.04,11946.64,4367.88,32064.56,114975.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,39523,48629.69,0.0,3516.62,52146.31,10162.22,10677.31,4066.02,24905.55,77051.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,4627,130845.84,84252.42,16355.7,231453.96,28930.04,15196.12,3859.86,47986.02,279439.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,30281,108038.0,13596.26,14354.68,135988.94,24266.95,12424.5,10008.35,46699.8,182688.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26611,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3376,Animal Care Asst Supv,6891,49831.31,306.08,964.31,51101.7,11136.45,10970.0,4140.21,26246.66,77348.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,42052,65829.63,0.0,850.64,66680.27,13721.88,12158.45,5522.42,31402.75,98083.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3868,73360.12,16189.08,7254.14,96803.34,16108.73,15196.12,1613.92,32918.77,129722.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,30048,19800.02,926.99,1681.1,22408.11,4445.69,3967.18,1955.55,10368.42,32776.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29976,68852.6,323.11,1140.0,70315.71,14267.24,11295.53,5601.03,31163.8,101479.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1081,132457.2,1020.48,11179.25,144656.93,27761.6,11038.69,9771.23,48571.52,193228.45 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",30479,103763.85,0.0,5763.13,109526.98,22998.36,6546.76,8811.98,38357.1,147884.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,27819,42343.7,9454.64,629.2,52427.54,8456.45,8208.78,4376.67,21041.9,73469.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",24873,139614.63,19682.08,12958.35,172255.06,29960.28,14132.87,2770.29,46863.44,219118.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7235,Transit Power Line Sprv1,24382,111403.0,60905.41,4764.19,177072.6,23297.49,12424.5,10869.61,46591.6,223664.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25955,473.0,0.0,0.0,473.0,103.78,95.58,38.54,237.9,710.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22267,5537.95,0.0,4527.78,10065.73,1593.1,0.0,784.98,2378.08,12443.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,5485,14535.0,0.0,0.0,14535.0,2704.95,2867.18,1157.29,6729.42,21264.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,51699,69402.02,0.0,0.0,69402.02,14280.06,12424.5,5601.55,32306.11,101708.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,13902,44580.45,0.0,362.2,44942.65,9217.1,7741.42,3397.28,20355.8,65298.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1706,Telephone Operator,29467,53374.46,3572.02,5326.62,62273.1,13609.85,12346.85,5079.67,31036.37,93309.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,4106,23513.0,0.0,0.0,23513.0,5273.94,3345.06,1926.04,10545.04,34058.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2626,Chief Dietitian,22522,43282.41,0.0,226.4,43508.81,8329.65,6976.83,3508.22,18814.7,62323.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,34017,18089.0,0.0,190.0,18279.0,4019.54,3345.06,1473.12,8837.72,27116.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18000,9046.18,0.0,444.02,9490.2,0.0,3876.68,755.63,4632.31,14122.51 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,1100,Administrative & Mgmt (Unrep),1119,Chief Investment Officer,46881,507831.6,0.0,0.0,507831.6,105052.98,12424.5,23566.16,141043.64,648875.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,37816,61735.03,0.0,619.8,62354.83,12851.75,12424.5,5117.15,30393.4,92748.23 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7203,Bldg & Grounds Maint Sprv,46276,105773.0,9114.29,6.0,114893.29,21801.4,12424.5,9236.64,43462.54,158355.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,7975,56476.3,5542.05,5682.39,67700.74,12728.62,11202.9,5543.31,29474.83,97175.57 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,41995,6589.97,325.52,0.0,6915.49,0.0,1980.15,537.5,2517.65,9433.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39837,356.95,0.0,0.0,356.95,0.0,0.0,25.4,25.4,382.35 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9770,Community Development Asst,10443,28739.41,0.0,3137.07,31876.48,6446.24,0.0,2638.56,9084.8,40961.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,33154,56076.4,0.0,1280.0,57356.4,12796.21,12424.5,4581.39,29802.1,87158.5 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,33893,5361.0,0.0,0.0,5361.0,1383.15,1433.6,444.96,3261.71,8622.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,44310,51747.59,519.54,0.0,52267.13,11347.17,10949.34,4191.2,26487.71,78754.84 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,43394,67844.04,0.0,4949.32,72793.36,14683.61,12412.56,5953.23,33049.4,105842.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,13772,80645.7,8061.4,7579.42,96286.52,16589.65,12424.5,7907.02,36921.17,133207.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,44549,6055.5,0.0,825.75,6881.25,1331.61,1576.95,528.14,3436.7,10317.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28782,12830.77,701.36,153.17,13685.3,3110.08,3953.92,1043.37,8107.37,21792.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,35185,45624.0,0.0,1624.0,47248.0,11332.43,12424.5,3866.02,27622.95,74870.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,12874,54825.99,0.0,6918.45,61744.44,12061.61,12047.47,4807.61,28916.69,90661.13 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,31385,232836.47,450.4,0.0,233286.87,44872.57,12319.97,11636.35,68828.89,302115.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,33601,78503.21,0.0,2554.0,81057.21,16689.52,12233.33,6641.41,35564.26,116621.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11098,68122.68,9716.72,3996.32,81835.72,19776.79,13425.57,6043.67,39246.03,121081.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47794,97290.22,541.5,8048.99,105880.71,0.0,8380.5,8208.67,16589.17,122469.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,45688,17606.82,0.0,1483.49,19090.31,4374.39,5149.0,1543.93,11067.32,30157.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25707,66267.24,18412.76,1861.91,86541.91,18653.98,13056.95,6762.45,38473.38,125015.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,16979,7786.02,0.0,0.0,7786.02,1448.98,1379.84,629.21,3458.03,11244.05 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,38528,99654.07,0.0,0.0,99654.07,22731.77,12424.5,1695.51,36851.78,136505.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,21799,4516.18,0.0,119.72,4635.9,0.0,1189.7,359.83,1549.53,6185.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31956,56531.0,0.0,5105.15,61636.15,13337.76,12424.5,4994.32,30756.58,92392.73 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,50902,900.0,0.0,0.0,900.0,283.6,0.0,1375.08,1658.68,2558.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,29500,59744.0,0.0,8243.27,67987.27,13072.57,7645.86,5443.32,26161.75,94149.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,20760,56531.0,81.64,1663.31,58275.95,11993.42,12424.5,4780.06,29197.98,87473.93 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",10268,27693.5,0.0,3000.0,30693.5,5153.8,4635.3,2475.65,12264.75,42958.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,1421,143188.01,0.0,82.1,143270.11,28816.76,12424.5,10262.27,51503.53,194773.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",45659,150234.0,14066.34,25532.28,189832.62,34367.81,15196.12,3190.68,52754.61,242587.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52120,18088.72,41.33,1574.95,19705.0,1813.86,7843.5,1561.67,11219.03,30924.03 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,27005,68617.1,157.5,0.0,68774.6,14121.48,12424.5,1097.25,27643.23,96417.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,33636,63887.07,45.79,372.31,64305.17,13250.92,12424.5,5289.32,30964.74,95269.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44773,113233.61,16897.35,18223.42,148354.38,25036.04,15196.12,2526.8,42758.96,191113.34 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,39125,130200.05,0.0,19810.74,150010.79,27003.26,9557.31,16470.49,53031.06,203041.85 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,41679,63078.66,5828.88,6105.73,75013.27,13772.51,12420.02,6175.87,32368.4,107381.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",5200,Professional Engineering,5264,Airport Noise Abatement Spec,1036,23608.01,0.0,0.0,23608.01,4393.47,4300.79,1897.79,10592.05,34200.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9955,57038.44,1019.78,4572.06,62630.28,12328.15,4927.99,2935.29,20191.43,82821.71 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4191,3129.0,0.0,0.0,3129.0,0.0,1335.03,242.25,1577.28,4706.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48811,67554.54,13111.67,3924.85,84591.06,19553.59,13310.7,6556.8,39421.09,124012.15 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",5300,Sub-Professional Engineering,5322,Graphic Artist,49322,62462.54,0.0,210.6,62673.14,12913.56,12113.89,5078.03,30105.48,92778.62 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,3157,77071.02,0.0,0.0,77071.02,15884.7,12424.5,6190.19,34499.39,111570.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28676,908.31,227.08,0.0,1135.39,257.05,286.72,87.9,631.67,1767.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,11541,63887.01,137.36,2707.5,66731.87,13734.98,12424.51,5271.79,31431.28,98163.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8072,112689.19,8750.77,12519.55,133959.51,22317.14,12424.5,2280.62,37022.26,170981.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,13926,5445.98,0.0,0.0,5445.98,0.0,1780.05,421.63,2201.68,7647.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50944,10098.0,172.33,321.87,10592.2,2291.3,4300.79,847.32,7439.41,18031.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,36186,79395.08,0.0,1344.0,80739.08,16635.2,12424.5,6440.36,35500.06,116239.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,40690,84599.02,0.0,841.92,85440.94,17622.42,12424.5,7088.97,37135.89,122576.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17449,61512.37,9592.51,6533.37,77638.25,18557.94,12115.32,6054.19,36727.45,114365.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33315,112601.75,0.0,13020.17,125621.92,23188.26,10918.63,9829.06,43935.95,169557.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",7346,12059.78,0.0,0.0,12059.78,0.0,2849.28,936.03,3785.31,15845.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",23460,131836.13,1984.0,16479.61,150299.74,29196.28,15196.12,2517.57,46909.97,197209.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,38073,41727.01,1000.8,337.05,43064.86,8322.91,9079.44,3485.45,20887.8,63952.66 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,32906,95526.39,1684.36,11377.49,108588.24,25992.85,12137.77,2188.08,40318.7,148906.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,9860,116019.92,37816.23,13486.25,167322.4,22921.92,12305.03,2850.7,38077.65,205400.05 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,8013,75927.05,181.38,851.41,76959.84,15648.74,12424.5,6068.66,34141.9,111101.74 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,46174,89824.21,0.0,4698.0,94522.21,18493.57,12424.5,7845.82,38763.89,133286.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,4045,10428.0,136.87,413.88,10978.75,2338.97,1911.46,872.2,5122.63,16101.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7691,62416.86,2979.49,4410.25,69806.6,18257.07,12302.05,5222.96,35782.08,105588.68 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,52538,6369.71,0.0,44.2,6413.91,0.0,8362.64,93.0,8455.64,14869.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,40090,63982.81,1373.26,8100.94,73457.01,19195.37,12042.21,5768.32,37005.9,110462.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,35650,21808.02,0.0,0.0,21808.02,4795.57,5017.59,1762.92,11576.08,33384.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,51628,60962.16,4109.83,6614.85,71686.84,13691.35,11760.69,5675.77,31127.81,102814.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,42434,35590.0,170.91,660.0,36420.91,8496.76,9557.3,2869.45,20923.51,57344.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,1909,63887.0,87.62,6468.7,70443.32,14498.9,12424.5,5804.6,32728.0,103171.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30422,147070.73,467.94,37358.83,184897.5,34654.2,12256.78,5090.64,52001.62,236899.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,25005,52405.2,611.89,0.0,53017.09,12557.61,12424.5,4229.34,29211.45,82228.54 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,944,17841.0,0.0,0.0,17841.0,0.0,2867.19,1412.18,4279.37,22120.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,26326,61735.02,0.0,624.0,62359.02,12852.62,12424.5,5098.75,30375.87,92734.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10952,56531.02,705.76,1477.11,58713.89,11756.73,12424.5,4854.22,29035.45,87749.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,16539,10553.22,0.0,0.0,10553.22,0.0,3906.55,818.75,4725.3,15278.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",48136,6265.95,0.0,0.0,6265.95,0.0,1326.08,485.11,1811.19,8077.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,24391,128329.01,0.0,0.0,128329.01,26128.45,12424.5,17230.0,55782.95,184111.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24701,121258.83,0.0,9315.64,130574.47,23884.65,12373.73,7788.29,44046.67,174621.14 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,45911,55458.33,0.0,536.36,55994.69,11523.0,10679.34,4425.0,26627.34,82622.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,25815,68722.02,0.0,0.0,68722.02,14164.03,12424.5,5581.44,32169.97,100891.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,124,31552.0,0.0,0.0,31552.0,5871.8,5256.52,2590.49,13718.81,45270.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,36190,20720.21,0.0,8943.85,29664.06,4863.36,4581.9,2415.31,11860.57,41524.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,22395,56422.96,81.64,622.8,57127.4,11755.61,12400.61,4483.32,28639.54,85766.94 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,25271,2061.27,0.0,0.0,2061.27,0.0,764.59,159.98,924.57,2985.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",27076,26808.21,0.0,0.0,26808.21,2877.47,6325.74,2078.64,11281.85,38090.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6159,5901.9,51.96,173.16,6127.02,2535.65,263.07,344.89,3143.61,9270.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,24797,136147.06,49403.63,17362.47,202913.16,26929.08,12424.5,3414.95,42768.53,245681.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9099,47454.43,3183.44,459.59,51097.46,12973.27,9338.75,3823.62,26135.64,77233.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1559,227.6,0.0,7.25,234.85,0.0,95.58,18.23,113.81,348.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39342,24152.61,2102.61,621.6,26876.82,6111.44,7502.61,2029.75,15643.8,42520.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,50075,93738.14,4497.03,2184.6,100419.77,19309.6,12424.5,8071.0,39805.1,140224.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,11787,8280.71,60.62,25.14,8366.47,0.0,2753.7,648.88,3402.58,11769.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33820,94549.08,16104.29,4882.36,115535.73,19634.08,12412.56,1928.08,33974.72,149510.45 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,1943,78963.09,0.0,624.0,79587.09,16403.16,12424.5,6347.54,35175.2,114762.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,20066,80762.03,0.0,0.0,80762.03,16645.32,12424.48,6632.38,35702.18,116464.21 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,21700,97756.57,6511.39,20062.19,124330.15,28651.54,12424.51,2062.26,43138.31,167468.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,34077,6685.0,0.0,30.23,6715.23,0.0,2430.0,520.41,2950.41,9665.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",40811,15506.56,0.0,0.0,15506.56,0.0,3664.63,1203.17,4867.8,20374.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9603,17913.24,654.22,1147.96,19715.42,5606.0,3562.37,1521.81,10690.18,30405.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17762,7517.25,407.31,32.51,7957.07,1784.13,2265.79,611.28,4661.2,12618.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14079,6164.32,0.0,0.0,6164.32,967.79,2673.06,517.11,4157.96,10322.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,10500,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2374.54,12827.89,44127.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,34906,90150.0,0.0,0.0,90150.0,17824.55,9557.31,6950.48,34332.34,124482.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",36188,94388.0,8806.13,9402.72,112596.85,21392.43,12424.5,9183.85,43000.78,155597.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7014,1479.4,0.0,47.16,1526.56,0.0,621.23,126.19,747.42,2273.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,43629,98683.72,0.0,0.0,98683.72,20347.47,12372.23,8418.11,41137.81,139821.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31304,8118.85,0.0,0.0,8118.85,0.0,3520.62,658.44,4179.06,12297.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,27667,113697.04,13198.35,27122.53,154017.92,27177.86,14861.6,2555.27,44594.73,198612.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,9748,5978.0,0.0,0.0,5978.0,1112.5,955.73,420.25,2488.48,8466.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51737,21203.92,2338.55,673.76,24216.23,5294.54,6569.03,1707.62,13571.19,37787.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32387,67440.15,16087.52,1895.14,85422.81,18978.95,13288.38,6415.98,38683.31,124106.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,32326,50184.12,25235.57,4709.54,80129.23,11406.47,10051.48,6554.34,28012.29,108141.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37639,143513.32,0.0,30314.44,173827.76,31220.02,12322.23,5806.2,49348.45,223176.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,4143,43398.02,0.0,0.0,43398.02,9266.7,9079.44,3403.73,21749.87,65147.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52302,22098.73,0.0,1965.85,24064.58,0.0,1946.82,1863.08,3809.9,27874.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,2142,100602.07,48447.0,9408.28,158457.35,22483.15,12113.89,10385.31,44982.35,203439.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,29455,9826.27,53.89,39.58,9919.74,0.0,3255.45,769.58,4025.03,13944.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,33030,77607.49,17968.26,11443.73,107019.48,17645.13,11398.53,8497.6,37541.26,144560.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,35389,80357.02,31272.14,345.6,111974.76,16562.14,12424.5,8916.21,37902.85,149877.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,10797,69053.8,989.9,270.0,70313.7,14228.93,11176.03,5605.45,31010.41,101324.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,26765,69549.31,0.0,0.0,69549.31,14216.63,8841.99,5753.75,28812.37,98361.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,22722,119463.8,17973.11,3678.17,141115.08,23633.47,12424.5,2403.52,38461.49,179576.57 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,33869,88296.05,0.0,3624.0,91920.05,18337.86,12424.5,7315.98,38078.34,129998.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,16202,115483.22,8478.66,17336.49,141298.37,23358.16,12424.5,2349.08,38131.74,179430.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,46678,25316.71,0.0,0.0,25316.71,5836.89,5567.97,2087.33,13492.19,38808.9 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,44015,101531.0,0.0,0.0,101531.0,20926.02,12424.5,8296.54,41647.06,143178.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18353,33242.77,4368.23,832.55,38443.55,8751.78,10375.41,2953.57,22080.76,60524.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31886,1318.01,0.0,9729.85,11047.86,394.48,262.11,788.37,1444.96,12492.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41133,8347.65,0.0,18.73,8366.38,0.0,3619.83,647.73,4267.56,12633.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7525,55001.01,5454.6,3082.3,63537.91,12535.14,12233.36,5113.79,29882.29,93420.2 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,30000,75058.04,0.0,1732.63,76790.67,15778.38,12098.12,6051.07,33927.57,110718.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44498,5988.47,0.0,250.0,6238.47,1679.54,1174.11,377.09,3230.74,9469.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,21211,102019.01,0.0,0.0,102019.01,21026.26,12424.5,8066.67,41517.43,143536.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,5671,89229.3,0.0,1456.12,90685.42,18360.33,12424.5,7330.09,38114.92,128800.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16794,2952.25,0.0,0.98,2953.23,0.0,1439.57,229.14,1668.71,4621.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,21174,80737.34,3129.37,1645.31,85512.02,16914.25,12177.62,6850.55,35942.42,121454.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3558,Senior Museum Registrar,19457,74120.08,0.0,1560.0,75680.08,15116.32,11098.43,5371.48,31586.23,107266.31 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,46549,74412.02,0.0,5808.8,80220.82,15687.94,12424.5,7115.86,35228.3,115449.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,38722,97424.0,4852.84,32.0,102308.84,20086.7,12424.51,8176.43,40687.64,142996.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,22111,19691.35,0.0,1902.46,21593.81,727.23,5292.36,1674.54,7694.13,29287.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,29001,76008.04,0.0,210.0,76218.04,15799.91,11313.47,6179.05,33292.43,109510.47 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,7046,57582.09,134.49,8877.78,66594.36,14241.42,12424.5,5252.24,31918.16,98512.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,19753,146616.49,1976.06,15683.89,164276.44,31839.26,12086.77,10436.03,54362.06,218638.5 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,50906,74412.0,0.0,5055.0,79467.0,15474.51,12424.5,6592.17,34491.18,113958.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,5499,87089.0,806.76,82.15,87977.91,17951.74,12424.5,6860.49,37236.73,125214.64 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,21144,0.0,0.0,701.89,701.89,0.0,0.0,53.7,53.7,755.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,34204,8950.82,0.0,0.0,8950.82,0.0,3239.75,693.74,3933.49,12884.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19943,56531.0,2652.02,2132.56,61315.58,11901.37,12424.5,5057.54,29383.41,90698.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,13396,28956.36,0.0,1737.38,30693.74,7219.17,3718.69,507.43,11445.29,42139.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34773,56163.3,659.01,313.0,57135.31,10885.46,8601.58,3967.47,23454.51,80589.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,39610,44222.51,2083.2,2618.95,48924.66,9512.07,8362.64,4005.29,21880.0,70804.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,49343,54909.0,3002.44,6434.98,64346.42,12952.34,12424.5,5260.37,30637.21,94983.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,27009,4069.0,409.28,1789.51,6267.79,919.75,477.86,104.43,1502.04,7769.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23085,1981.65,0.0,5.73,1987.38,0.0,495.79,153.86,649.65,2637.03 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,9742,20785.8,0.0,241.89,21027.69,5003.95,6230.17,1697.77,12931.89,33959.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,31455,61699.64,0.0,0.0,61699.64,12716.08,12417.34,5010.34,30143.76,91843.4 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,14401,78804.45,0.0,0.0,78804.45,16250.91,12155.71,6907.88,35314.5,114118.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40024,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1850.29,10264.07,34268.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,23164,164926.2,0.0,0.0,164926.2,33067.94,12424.5,17792.34,63284.78,228210.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,32374,28946.65,0.0,476.62,29423.27,5334.44,2078.71,2211.58,9624.73,39048.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44300,18629.96,22.04,6770.89,25422.89,6563.97,0.0,472.16,7036.13,32459.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,15582,81954.31,17444.87,5945.5,105344.68,17989.36,12424.5,8613.38,39027.24,144371.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5660,17920.96,2781.18,620.2,21322.34,4446.25,5535.0,1632.56,11613.81,32936.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,11524,52338.6,0.0,5318.47,57657.07,13282.5,12424.5,4604.99,30311.99,87969.06 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,7560,104853.16,2068.02,7065.94,113987.12,22252.15,12364.77,9338.51,43955.43,157942.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,28954,79395.09,0.0,624.0,80019.09,16501.16,12424.51,6396.68,35322.35,115341.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21352,54195.05,10758.22,4030.22,68983.49,16519.91,10777.66,5379.54,32677.11,101660.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,45954,16018.67,0.0,0.0,16018.67,0.0,5271.46,1316.77,6588.23,22606.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,20289,112776.07,15012.06,42704.29,170492.42,25327.75,12424.5,10598.59,48350.84,218843.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,45403,79722.06,9981.75,2350.0,92053.81,16916.38,12424.55,7348.65,36689.58,128743.39 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,29504,42494.35,0.0,0.0,42494.35,7704.23,3822.92,5390.72,16917.87,59412.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,15949,18894.84,40.61,0.0,18935.45,0.0,6212.25,1467.96,7680.21,26615.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,50676,80082.88,0.0,0.0,80082.88,16420.25,10235.28,6337.95,32993.48,113076.36 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,6116,5119.94,880.25,763.34,6763.53,1238.94,999.03,534.34,2772.31,9535.84 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,52848,46583.1,0.0,920.0,47503.1,9782.59,6164.46,3534.43,19481.48,66984.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,18693,85004.0,536.09,12288.01,97828.1,19298.86,12424.5,7773.01,39496.37,137324.47 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,3505,90750.49,142.84,0.0,90893.33,20765.7,11307.49,1545.31,33618.5,124511.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11459,45342.01,0.0,0.0,45342.01,1104.95,4300.79,3558.43,8964.17,54306.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51179,74626.44,391.63,18952.41,93970.48,17056.39,7441.56,7471.8,31969.75,125940.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,32895,71961.59,0.0,974.16,72935.75,15009.95,9543.04,6039.27,30592.26,103528.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,33888,166171.03,1047.93,4365.51,171584.47,33528.96,12424.5,10569.69,56523.15,228107.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,32712,88671.6,0.0,0.0,88671.6,18269.1,12424.5,7097.36,37790.96,126462.56 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,20998,78899.92,0.0,0.0,78899.92,15849.86,9637.94,5520.84,31008.64,109908.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,41320,70245.0,903.95,4666.9,75815.85,14640.89,12424.5,5995.33,33060.72,108876.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37033,68655.71,11659.69,4367.13,84682.53,19989.98,13527.77,6610.28,40128.03,124810.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18637,64523.94,14220.89,760.01,79504.84,17761.76,12703.09,6203.11,36667.96,116172.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,814,21694.5,1339.94,491.83,23526.27,5363.4,4193.39,1819.61,11376.4,34902.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",12982,845.0,0.0,0.0,845.0,0.0,0.0,66.87,66.87,911.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,40503,70931.02,0.0,250.0,71181.02,14619.09,12424.5,5766.08,32809.67,103990.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,48491,55930.0,0.0,0.0,55930.0,10897.63,7645.83,4427.5,22970.96,78900.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7349,Steamfitter Supervisor I,10681,114454.02,124.33,3477.62,118055.97,23753.86,12424.5,9684.6,45862.96,163918.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24098,30286.73,466.0,620.0,31372.73,6902.91,5629.31,2511.25,15043.47,46416.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,47172,85654.03,1335.82,561.06,87550.91,17449.04,10549.87,7237.89,35236.8,122787.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,39955,88420.01,37437.5,8304.87,134162.38,18729.72,12615.64,9962.42,41307.78,175470.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,7935,3430.84,0.0,2.87,3433.71,0.0,1140.91,266.33,1407.24,4840.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,33015,3970.45,0.0,56.78,4027.23,0.0,1317.12,175.54,1492.66,5519.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42253,119459.83,29821.96,14630.2,163911.99,23648.12,12424.5,2786.57,38859.19,202771.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7480,Power Generation Technician 1,53189,59025.94,13513.54,2704.75,75244.23,13070.9,8876.35,6043.24,27990.49,103234.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39218,443.7,0.0,11.83,455.53,0.0,107.52,35.36,142.88,598.41 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,27702,40049.0,0.0,0.0,40049.0,689.13,5256.52,3198.11,9143.76,49192.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,15651,82103.06,706.05,658.0,83467.11,17049.75,12424.52,6666.62,36140.89,119608.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,50261,114828.4,0.0,0.0,114828.4,20652.65,5925.53,12847.74,39425.92,154254.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,47590,62577.41,687.03,423.3,63687.74,13913.76,11946.64,4933.02,30793.42,94481.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,50405,27232.0,1129.29,1838.93,30200.22,5240.62,4396.35,2438.34,12075.31,42275.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,33852,27502.0,0.0,0.0,27502.0,6287.61,7645.85,2218.29,16151.75,43653.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,18839,140216.82,8302.88,17438.74,165958.44,27709.88,12424.49,2820.83,42955.2,208913.64 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19594,24294.19,0.0,1883.53,26177.72,0.0,0.0,2070.72,2070.72,28248.44 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,2244,129895.01,0.0,12.41,129907.42,26141.48,12424.5,9955.01,48520.99,178428.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,35314,117137.5,169.84,820.04,118127.38,23176.47,12424.5,308.94,35909.91,154037.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,36556,8004.84,0.0,0.0,8004.84,0.0,2596.43,621.3,3217.73,11222.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,33675,56531.0,1064.43,6837.55,64432.98,12347.7,12424.5,5061.09,29833.29,94266.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,40682,19749.02,0.0,3597.17,23346.19,3502.41,1433.6,62.66,4998.67,28344.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,44633,3808.71,0.0,173.86,3982.57,0.0,943.78,308.89,1252.67,5235.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51150,113233.59,7371.33,17655.86,138260.78,26161.75,15196.12,2307.47,43665.34,181926.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,19311,52935.11,16468.98,5035.26,74439.35,13501.55,12187.24,6050.56,31739.35,106178.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,19299,29867.65,884.07,0.0,30751.72,6967.38,9043.6,2491.76,18502.74,49254.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,41579,106605.05,0.0,0.0,106605.05,21971.81,12424.5,8300.83,42697.14,149302.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,24899,158112.94,914.56,6880.45,165907.95,31466.36,12405.87,2818.25,46690.48,212598.43 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2881,19442.0,0.0,0.0,19442.0,4275.3,4778.65,1556.78,10610.73,30052.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,25525,57539.0,492.3,6040.1,64071.4,13307.85,8601.58,5148.88,27058.31,91129.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,29036,44033.02,0.0,0.0,44033.02,8284.01,6212.25,3486.23,17982.49,62015.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43462,45737.4,2566.97,1637.29,49941.66,10002.43,7048.52,2698.41,19749.36,69691.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1936,Senior Storekeeper,12565,63102.0,0.0,552.0,63654.0,13127.4,12424.5,5277.0,30828.9,94482.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,14923,74165.0,41786.38,1195.89,117147.27,15285.75,12424.5,9452.89,37163.14,154310.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49699,415.5,0.0,38.52,454.02,93.48,0.0,35.96,129.44,583.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3395,18365.03,678.88,1133.62,20177.53,269.19,0.0,837.39,1106.58,21284.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,52765,72903.33,422.84,1819.35,75145.52,15219.42,12281.15,6116.04,33616.61,108762.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,36994,219912.07,0.0,0.0,219912.07,44257.53,12424.5,19917.53,76599.56,296511.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,51917,60940.37,0.0,440.0,61380.37,6592.76,8521.53,5087.59,20201.88,81582.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12856,119455.97,22411.17,6795.73,148662.87,23662.84,12424.5,2485.95,38573.29,187236.16 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,5120,13399.97,0.0,0.0,13399.97,2493.74,1433.6,2261.35,6188.69,19588.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37724,43899.75,5500.44,1474.82,50875.01,11755.11,13360.82,3900.45,29016.38,79891.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30705,21154.0,0.0,1456.82,22610.82,3101.02,0.0,5261.89,8362.91,30973.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23187,57991.43,10343.48,561.72,68896.63,15644.58,13281.8,5041.33,33967.71,102864.34 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,28570,4674.0,0.0,0.0,4674.0,869.84,955.73,362.23,2187.8,6861.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,19639,42716.54,47.27,633.36,43397.17,8588.27,0.0,3601.58,12189.85,55587.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,47814,67344.77,0.0,1060.0,68404.77,14087.7,12416.14,5561.32,32065.16,100469.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50485,65111.11,422.92,3769.65,69303.68,14177.67,12237.12,5717.29,32132.08,101435.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,336,23335.63,2143.51,1788.53,27267.67,0.0,3434.66,2172.96,5607.62,32875.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,18375,2360.0,0.0,205.32,2565.32,477.41,477.86,199.11,1154.38,3719.7 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,43526,170926.01,0.0,40093.74,211019.75,39798.73,9832.09,11229.74,60860.56,271880.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27088,80949.94,16160.21,9069.45,106179.6,16855.4,12424.5,1762.6,31042.5,137222.1 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14337,116060.0,0.0,750.0,116810.0,22565.42,8601.58,9234.73,40401.73,157211.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,17360,92282.01,0.0,0.0,92282.01,19019.5,12424.5,7655.51,39099.51,131381.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25739,2278.4,0.0,0.0,2278.4,364.28,987.99,176.4,1528.67,3807.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",34703,180092.01,3693.72,22906.63,206692.36,39877.29,15052.76,1034.4,55964.45,262656.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,14367,53818.4,7300.26,4652.98,65771.64,12711.33,12424.5,5304.46,30440.29,96211.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,46850,41286.87,1542.54,541.25,43370.66,9097.56,6475.09,3413.03,18985.68,62356.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,13174,54280.9,138.47,1236.6,55655.97,12392.29,12424.53,4228.48,29045.3,84701.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,48812,75927.0,4325.81,0.0,80252.81,15648.74,12424.5,6426.69,34499.93,114752.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37547,67935.53,14884.78,4663.16,87483.47,19901.7,13385.79,6620.67,39908.16,127391.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,29483,60801.23,0.0,3624.28,64425.51,13192.02,12089.64,5019.29,30300.95,94726.46 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,554,93815.53,0.0,0.0,93815.53,19296.43,12424.5,7471.15,39192.08,133007.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32755,116692.41,7102.53,3322.62,127117.56,23600.73,12137.79,329.05,36067.57,163185.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47402,43955.78,5188.65,1702.79,50847.22,11846.75,13378.38,3827.54,29052.67,79899.89 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,13793,117169.72,0.0,0.0,117169.72,23826.67,12424.5,18030.08,54281.25,171450.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,5455,154747.12,22104.02,6415.27,183266.41,31274.96,12148.23,10871.23,54294.42,237560.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16133,67456.33,8508.28,866.97,76831.58,15594.35,13295.18,5656.78,34546.31,111377.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20648,27607.55,1935.05,875.21,30417.81,7152.8,8594.95,2292.5,18040.25,48458.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,27240,186.81,0.0,0.0,186.81,41.9,41.82,14.46,98.18,284.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",28384,131564.77,48112.34,20101.66,199778.77,29704.98,15196.12,3351.31,48252.41,248031.18 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,44661,67261.01,1003.79,125.0,68389.8,13862.83,12424.5,6240.05,32527.38,100917.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,8696,93248.28,30768.08,0.0,124016.36,19489.74,10878.31,9791.84,40159.89,164176.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,357,4380.0,0.0,504.36,4884.36,1015.56,1194.67,379.1,2589.33,7473.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,47949,116976.03,0.0,0.0,116976.03,23541.49,12424.51,9351.14,45317.14,162293.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,4011,6138.47,0.0,218.56,6357.03,0.0,1896.53,492.5,2389.03,8746.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,37176,124447.83,25791.31,8100.25,158339.39,25114.87,12424.5,409.57,37948.94,196288.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,25512,71265.01,0.0,1992.0,73257.01,15127.53,12185.57,6073.95,33387.05,106644.06 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,472C,Fiscal Technician,6917,41292.24,0.0,3000.0,44292.24,8274.73,9242.22,3545.94,21062.89,65355.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,10109,69196.44,0.0,5374.0,74570.44,14507.71,11722.93,5537.32,31767.96,106338.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21465,0.0,0.0,11334.05,11334.05,0.0,0.0,847.93,847.93,12181.98 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),19661,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11063.75,61618.89,251093.67 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,51941,52905.01,0.0,0.0,52905.01,11691.49,7167.99,4387.51,23246.99,76152.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,35229,42931.81,0.0,4668.94,47600.75,9102.76,8028.14,3820.74,20951.64,68552.39 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,7850,72699.06,0.0,281.1,72980.16,15052.22,12424.5,6052.2,33528.92,106509.08 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,31352,13794.26,0.0,0.0,13794.26,0.0,4124.58,1069.43,5194.01,18988.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),26577,10763.55,0.0,0.0,10763.55,0.0,3082.24,835.42,3917.66,14681.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,51781,21753.7,0.0,0.0,21753.7,0.0,3775.13,1661.85,5436.98,27190.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,52629,13542.0,0.0,0.0,13542.0,2971.11,1433.6,1109.49,5514.2,19056.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,13200,77000.88,668.46,0.0,77669.34,15937.57,11909.78,6434.27,34281.62,111950.96 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,11887,1251.63,348.23,0.0,1599.86,0.0,370.34,124.17,494.51,2094.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32461,983.07,0.0,0.0,983.07,0.0,479.36,76.11,555.47,1538.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25671,113233.58,20592.32,18293.02,152118.92,25036.02,15196.12,2584.26,42816.4,194935.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,3562,57989.72,104.86,622.8,58717.38,12079.43,12400.55,4795.81,29275.79,87993.17 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52401,52760.0,0.0,3910.06,56670.06,13572.68,12424.5,4431.67,30428.85,87098.91 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,9116,14612.0,0.0,0.0,14612.0,2719.28,1911.46,1157.19,5787.93,20399.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49017,65619.79,0.0,4707.1,70326.89,2675.53,0.0,6564.57,9240.1,79566.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,48052,123776.05,0.0,0.0,123776.05,24910.01,12424.45,9811.29,47145.75,170921.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,32062,84644.0,6777.88,4700.39,96122.27,17755.1,12424.5,7636.69,37816.29,133938.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,29384,92361.0,15194.35,15374.4,122929.75,20917.77,12472.29,9794.7,43184.76,166114.51 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,7411,137660.69,0.0,0.0,137660.69,27664.52,12424.5,17349.75,57438.77,195099.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34513,65052.37,27481.69,614.89,93148.95,17929.51,12815.7,7068.22,37813.43,130962.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,50359,18305.61,0.0,0.0,18305.61,3809.67,2557.78,1687.53,8054.98,26360.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,51922,45633.55,0.0,0.0,45633.55,10925.21,12424.5,3428.61,26778.32,72411.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,31870,67261.04,0.0,612.0,67873.04,13988.82,12424.5,5406.65,31819.97,99693.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19678,15157.37,0.0,510.67,15668.04,0.0,3763.2,1214.82,4978.02,20646.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0490,Commander 3,42286,202561.24,0.0,10056.32,212617.56,40432.69,11468.77,3575.31,55476.77,268094.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19068,56531.01,402.56,7450.9,64384.47,12685.25,12424.5,5309.19,30418.94,94803.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,22694,137339.04,2768.53,13417.78,153525.35,27145.68,12424.5,2560.66,42130.84,195656.19 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,11212,90144.7,0.0,615.62,90760.32,18716.77,12257.55,7082.06,38056.38,128816.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,45322,10858.5,0.0,149.65,11008.15,0.0,3727.35,883.88,4611.23,15619.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46650,68999.82,5353.63,4417.47,78770.92,20147.02,13600.29,6107.56,39854.87,118625.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,26880,117137.52,0.0,820.04,117957.56,23176.47,12424.5,2007.19,37608.16,155565.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27206,77856.3,2385.35,1697.06,81938.71,15750.04,11946.64,4364.4,32061.08,113999.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",24408,6021.01,0.0,0.0,6021.01,0.0,1433.58,467.33,1900.91,7921.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,898,3172.5,0.0,0.0,3172.5,711.59,716.79,263.36,1691.74,4864.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,42452,4646.45,0.0,0.0,4646.45,872.71,68.5,359.73,1300.94,5947.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24388,4456.21,0.0,881.74,5337.95,1149.69,1932.37,433.23,3515.29,8853.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,41971,138635.28,6718.08,7440.32,152793.68,27940.06,12424.5,2592.28,42956.84,195750.52 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,52781,7068.38,0.0,126.29,7194.67,1338.93,1230.51,592.16,3161.6,10356.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,27176,63771.01,2747.25,0.0,66518.26,13141.38,12424.5,5356.25,30922.13,97440.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,32350,52472.74,226.65,2035.54,54734.93,11897.61,10200.51,4416.76,26514.88,81249.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,29549,61962.35,374.38,3414.93,65751.66,13322.17,12424.5,5443.92,31190.59,96942.25 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",37901,800.0,0.0,0.0,800.0,0.0,0.0,63.27,63.27,863.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36019,47531.2,1431.42,2032.68,50995.3,11437.8,12424.5,4105.11,27967.41,78962.71 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,14467,71137.95,0.0,0.0,71137.95,12897.34,5734.38,7866.46,26498.18,97636.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,33450,63430.69,0.0,8346.22,71776.91,13942.31,9318.38,5920.88,29181.57,100958.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2488,Supv Chemist,23418,119321.0,0.0,0.0,119321.0,24028.78,12424.5,9630.76,46084.04,165405.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,19572,101423.73,511.23,2174.63,104109.59,19897.39,11127.28,1744.62,32769.29,136878.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,30250,138629.96,27116.13,20173.25,185919.34,27414.76,12424.5,3170.17,43009.43,228928.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36985,4777.32,0.0,134.11,4911.43,455.2,0.0,2062.21,2517.41,7428.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,40667,56276.07,0.0,723.23,56999.3,12759.61,12424.5,4716.65,29900.76,86900.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,10724,56531.01,0.0,3930.9,60461.91,11780.12,12424.5,4998.89,29203.51,89665.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44292,34634.7,397.82,3108.28,38140.8,8860.63,9354.22,3055.11,21269.96,59410.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,10599,51208.5,2133.88,1492.65,54835.03,12278.92,12376.71,4481.95,29137.58,83972.61 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43732,27997.88,0.0,0.0,27997.88,7130.15,7105.27,2277.42,16512.84,44510.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,48708,69247.06,2788.08,1203.9,73239.04,14272.17,12424.5,5868.25,32564.92,105803.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18431,2760.55,0.0,115.77,2876.32,1521.12,0.0,1990.87,3511.99,6388.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49010,11563.07,0.0,0.0,11563.07,0.0,4951.88,935.31,5887.19,17450.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,19239,63887.0,3083.39,957.83,67928.22,13363.29,12424.51,5599.72,31387.52,99315.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8433,77071.0,30477.72,1964.0,109512.72,16288.69,12424.5,8902.55,37615.74,147128.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9701,120541.7,26173.01,29083.76,175798.47,23819.39,12424.5,3062.71,39306.6,215105.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52492,2297.17,0.0,225.01,2522.18,1360.28,0.0,-670.28,690.0,3212.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,8333,62387.03,240.1,403.66,63030.79,12900.09,12340.88,4903.0,30143.97,93174.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,383,56531.0,0.0,950.55,57481.55,11780.12,12424.5,4763.11,28967.73,86449.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34771,40223.35,3000.21,2173.9,45397.46,10969.52,12572.58,3173.39,26715.49,72112.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",8465,10837.8,0.0,0.0,10837.8,0.0,2580.48,840.79,3421.27,14259.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17467,66020.24,9717.82,902.67,76640.73,15225.78,13009.35,5642.44,33877.57,110518.3 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,3119,47166.03,0.0,1110.0,48276.03,10785.71,6690.11,3874.4,21350.22,69626.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32058,61735.0,1626.08,1709.0,65070.08,13076.52,12424.5,5338.81,30839.83,95909.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6115,Wastewater Control Inspector,15351,96254.01,1172.69,0.0,97426.7,19838.21,12424.5,7665.8,39928.51,137355.21 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,8085,36858.82,674.9,0.0,37533.72,7560.41,6809.58,3227.24,17597.23,55130.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,15560,193080.03,7609.98,250.0,200940.01,38857.54,12424.5,11154.61,62436.65,263376.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36397,75201.63,481.1,12896.46,88579.19,13246.52,6868.54,6573.01,26688.07,115267.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",19760,130943.6,56249.35,18506.55,205699.5,26412.19,12424.5,3452.81,42289.5,247989.0 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,35297,85146.15,1884.93,491.27,87522.35,17552.76,12445.4,6957.74,36955.9,124478.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12248,44403.85,0.0,0.0,44403.85,0.0,5823.98,3442.09,9266.07,53669.92 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,34321,68955.0,0.0,0.0,68955.0,14316.49,11468.78,5493.68,31278.95,100233.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,32371,81942.03,14979.21,16196.36,113117.6,19535.77,12424.5,9188.12,41148.39,154265.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,21214,41155.02,0.0,0.0,41155.02,7915.65,6946.99,3344.18,18206.82,59361.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2406,Pharmacy Helper,22445,72319.0,0.0,1471.65,73790.65,15033.79,12424.5,6114.9,33573.19,107363.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,23325,50166.2,108.68,0.0,50274.88,12016.57,12272.18,4046.12,28334.87,78609.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,47866,149099.04,0.0,7080.75,156179.79,31390.81,12424.5,10289.8,54105.11,210284.9 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,34369,2602.69,0.0,626.67,3229.36,4979.75,0.0,2628.87,7608.62,10837.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21023,130845.82,81582.01,17702.49,230130.32,29175.95,15196.12,3883.82,48255.89,278386.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,36525,38496.0,9717.56,1763.54,49977.1,9112.97,9079.44,3668.5,21860.91,71838.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,10622,68523.73,100.09,0.0,68623.82,14125.6,12388.96,5692.16,32206.72,100830.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,52225,54124.0,0.0,621.6,54745.6,12249.79,12424.5,4541.89,29216.18,83961.78 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,6424,71517.84,0.0,5030.73,76548.57,14819.91,11941.26,6215.84,32977.01,109525.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,13005,17353.8,0.0,80.9,17434.7,2799.56,4587.51,1383.5,8770.57,26205.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,39617,2395.31,0.0,38.42,2433.73,0.0,875.09,195.3,1070.39,3504.12 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,15309,119066.06,90167.41,20558.89,229792.36,32952.07,12424.5,3912.09,49288.66,279081.02 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,900,67911.0,714.78,4019.55,72645.33,14825.39,12424.5,5955.28,33205.17,105850.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,8288,75689.58,0.0,595.01,76284.59,15730.47,11846.76,6303.87,33881.1,110165.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,32994,67261.02,0.0,0.0,67261.02,13862.82,12424.5,5427.22,31714.54,98975.56 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,12928,190281.61,0.0,4542.96,194824.57,36654.44,12424.5,10904.19,59983.13,254807.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,51877,81252.01,0.0,0.0,81252.01,17087.15,8601.58,6480.05,32168.78,113420.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,26836,116976.12,0.0,0.0,116976.12,23541.49,12424.52,8971.42,44937.43,161913.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,49337,15716.1,0.0,51.64,15767.74,3525.12,3054.16,1301.82,7881.1,23648.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,391,29994.78,0.0,25314.09,55308.87,6470.36,2364.48,882.55,9717.39,65026.26 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,33790,1907.52,0.0,1447.0,3354.52,357.96,318.5,455.81,1132.27,4486.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,9820,81776.0,0.0,689.0,82465.0,16996.89,12424.5,6816.38,36237.77,118702.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,52348,138711.46,13381.93,12735.5,164828.89,27406.26,12424.51,2763.57,42594.34,207423.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,14744,44441.09,0.0,0.0,44441.09,8057.15,2867.19,5002.26,15926.6,60367.69 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,14063,109061.37,0.0,0.0,109061.37,22455.51,12424.5,8235.42,43115.43,152176.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23778,10579.9,0.0,956.6,11536.5,0.0,2879.14,893.15,3772.29,15308.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,6727,124631.0,0.0,435.93,125066.93,25162.36,12424.5,9871.6,47458.46,172525.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,10632,129308.03,0.0,0.0,129308.03,26023.62,12424.5,9955.7,48403.82,177711.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,8921,102019.04,0.0,0.0,102019.04,21026.27,12424.5,8279.84,41730.61,143749.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,34529,64260.76,1279.3,1080.0,66620.06,13439.55,12076.32,5148.83,30664.7,97284.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,38346,49770.98,0.0,1561.7,51332.68,10566.97,9192.94,4012.29,23772.2,75104.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,24570,75605.0,17207.39,11630.42,104442.81,16976.81,12424.5,8281.01,37682.32,142125.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40947,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,49570,86042.83,0.0,2744.12,88786.95,17890.56,10677.31,7046.86,35614.73,124401.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,44863,2267.58,0.0,0.0,2267.58,0.0,0.0,186.75,186.75,2454.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18794,119455.9,35641.45,8430.75,163528.1,23662.8,12424.5,2788.44,38875.74,202403.84 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,31323,35243.02,0.0,0.0,35243.02,7459.73,6212.25,2827.0,16498.98,51742.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,23754,62468.84,19746.24,5714.17,87929.25,13257.56,12424.5,6920.32,32602.38,120531.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,51898,48914.06,823.75,2237.6,51975.41,9572.56,7242.65,4156.47,20971.68,72947.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4332,8678.48,0.0,250.0,8928.48,2434.68,1708.37,606.72,4749.77,13678.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,5814,64455.81,1610.35,11949.7,78015.86,15302.1,12424.5,6350.83,34077.43,112093.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3525,138629.97,25087.14,31652.27,195369.38,27414.76,12424.5,3276.67,43115.93,238485.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,1846,106953.0,13671.54,1424.81,122049.35,11047.02,12424.51,9541.6,33013.13,155062.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27805,0.0,0.0,250.0,250.0,0.0,34.25,0.0,34.25,284.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17838,38107.41,24412.01,3123.58,65643.0,10680.08,7476.57,5124.62,23281.27,88924.27 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,34932,77045.97,0.0,748.8,77794.77,16008.45,12420.44,6425.44,34854.33,112649.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,33770,58976.44,0.0,0.0,58976.44,11951.21,10418.96,4563.68,26933.85,85910.29 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,352C,Ct Comp Sys Engineer II,23481,109668.01,0.0,5733.0,115401.01,22210.03,12424.5,9440.48,44075.01,159476.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50671,10899.85,0.0,94.64,10994.49,0.0,4671.13,891.18,5562.31,16556.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",29985,131577.13,18537.98,15724.46,165839.57,28936.78,15196.12,2772.79,46905.69,212745.26 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,6487,119427.0,0.0,0.0,119427.0,24015.04,12424.5,17062.22,53501.76,172928.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,7552,6125.91,0.0,80.0,6205.91,0.0,1311.15,481.51,1792.66,7998.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,8895,67061.4,0.0,0.0,67061.4,13865.42,12042.22,4990.88,30898.52,97959.92 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,53042,5385.67,0.0,205.0,5590.67,1225.95,873.6,445.47,2545.02,8135.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23863,2678.0,0.0,0.0,2678.0,0.0,1230.5,207.68,1438.18,4116.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,8929,138633.92,0.0,4813.73,143447.65,27589.41,12424.5,2420.76,42434.67,185882.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,36134,4006.0,0.0,0.0,4006.0,745.52,477.86,314.08,1537.46,5543.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,2767,79512.99,0.0,12686.55,92199.54,17944.8,12418.53,7347.55,37710.88,129910.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,44543,87555.23,0.0,214.45,87769.68,18241.33,10811.94,7185.02,36238.29,124007.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",16141,148823.35,60095.68,18602.92,227521.95,32876.34,15052.76,3837.23,51766.33,279288.28 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,41968,56276.04,0.0,624.0,56900.04,12731.54,12424.5,4671.14,29827.18,86727.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,1958,53239.97,2473.25,0.0,55713.22,12022.63,11743.54,4489.66,28255.83,83969.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,27716,27100.0,5971.22,16323.0,49394.22,4811.0,2389.33,803.32,8003.65,57397.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,46794,11422.79,0.0,338.44,11761.23,0.0,4141.0,911.63,5052.63,16813.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8520,0.0,0.0,12006.33,12006.33,0.0,45.68,899.36,945.04,12951.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3097,136740.99,150.75,8982.7,145874.44,27094.88,12171.83,2484.34,41751.05,187625.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28762,3001.51,0.0,175.65,3177.16,0.0,994.56,246.36,1240.92,4418.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,32379,2250.32,0.0,0.0,2250.32,580.58,567.47,190.09,1338.14,3588.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,6410,57732.73,0.0,608.18,58340.91,12046.68,12109.29,4714.25,28870.22,87211.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32945,3556.25,0.0,0.0,3556.25,0.0,1493.33,283.73,1777.06,5333.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,53112,116976.02,0.0,4417.63,121393.65,24418.94,12424.5,9823.44,46666.88,168060.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26159,5737.95,0.0,191.27,5929.22,203.25,430.07,319.7,953.02,6882.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,2162,97934.03,0.0,1372.8,99306.83,20490.67,12424.5,8232.98,41148.15,140454.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16537,53276.69,1450.09,6194.72,60921.5,13732.71,12269.19,4909.47,30911.37,91832.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30400,41122.21,3214.77,985.47,45322.45,10954.82,12672.39,3172.44,26799.65,72122.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,35491,100761.02,1323.53,872.0,102956.55,20948.84,12424.5,8237.51,41610.85,144567.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21501,66388.85,15135.78,2710.51,84235.14,18852.71,13077.1,6579.78,38509.59,122744.73 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,42022,103283.03,0.0,930.65,104213.68,21480.27,12424.5,8629.75,42534.52,146748.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",22112,140345.22,13419.68,18395.14,172160.04,30747.77,14192.61,2436.45,47376.83,219536.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,51539,84644.0,3297.92,4554.73,92496.65,17679.54,12424.5,7391.04,37495.08,129991.73 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,30683,444.13,355.8,0.0,799.93,0.0,131.41,62.09,193.5,993.43 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,30677,62169.8,0.0,3852.51,66022.31,13258.23,9019.71,5154.77,27432.71,93455.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12284,7001.15,0.0,0.0,7001.15,0.0,0.0,568.03,568.03,7569.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11082,97764.67,11237.66,17788.51,126790.84,28110.17,12424.51,2149.09,42683.77,169474.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5193,43483.41,0.0,0.0,43483.41,0.0,5704.52,3370.7,9075.22,52558.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",42742,118962.92,0.0,0.0,118962.92,24197.73,12421.52,17044.95,53664.2,172627.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",23559,118403.71,8340.62,3495.38,130239.71,24369.47,12376.71,9806.17,46552.35,176792.06 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,38633,68067.03,0.0,624.0,68691.03,14157.65,12424.5,5626.18,32208.33,100899.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",41924,7488.61,0.0,0.0,7488.61,1679.7,955.72,624.0,3259.42,10748.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,37527,146598.4,0.0,919.46,147517.86,29435.03,12424.5,10289.84,52149.37,199667.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,47283,19008.0,4877.78,3052.8,26938.58,4556.76,2867.19,2200.68,9624.63,36563.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,10519,79395.06,0.0,0.0,79395.06,16372.45,12424.51,6540.84,35337.8,114732.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9351,22002.9,0.0,0.0,22002.9,4827.43,3392.84,1688.78,9909.05,31911.95 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,33923,75496.4,0.0,0.0,75496.4,15554.64,11158.16,6033.39,32746.19,108242.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52668,55855.0,15450.49,5043.55,76349.04,12859.4,12424.5,5860.8,31144.7,107493.74 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,17831,94194.83,0.0,0.0,94194.83,19376.33,12424.5,6741.93,38542.76,132737.59 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,24010,143188.0,0.0,0.0,143188.0,28816.76,12424.5,10253.55,51494.81,194682.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,1914,22846.31,0.0,321.24,23167.55,5164.36,3544.63,1934.24,10643.23,33810.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3895,17515.94,0.0,0.0,17515.94,684.39,7541.31,1425.72,9651.42,27167.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,40324,59179.1,1088.59,2278.8,62546.49,12832.31,10990.91,5145.82,28969.04,91515.53 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6124,Pr Environmental Hlth Insp,18612,124338.07,0.0,0.0,124338.07,25023.46,12424.5,9667.74,47115.7,171453.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,28807,5936.0,62.61,855.52,6854.13,1340.73,1911.46,538.61,3790.8,10644.93 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,23214,2028.85,325.52,0.0,2354.37,0.0,600.31,182.73,783.04,3137.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34849,30584.0,400.24,970.97,31955.21,7573.25,12424.5,2596.61,22594.36,54549.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22886,12520.0,0.0,0.0,12520.0,2269.88,1911.46,971.76,5153.1,17673.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,51758,68067.01,0.0,0.0,68067.01,14029.01,12424.5,5568.59,32022.1,100089.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,15297,148885.31,0.0,5646.33,154531.64,31055.21,12406.56,10340.16,53801.93,208333.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,38096,138352.1,0.0,0.0,138352.1,27826.32,12424.5,17369.28,57620.1,195972.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,48966,108071.7,9332.83,8956.28,126360.81,21595.33,11468.77,2150.51,35214.61,161575.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11660,20099.98,0.0,100.58,20200.56,-0.03,1421.65,3135.09,4556.71,24757.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",13512,27210.08,0.0,0.0,27210.08,0.0,5689.58,2097.68,7787.26,34997.34 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,8598,38851.31,-263.85,520.0,39107.46,7509.47,6690.11,3168.2,17367.78,56475.24 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,9225,24628.27,0.0,421.72,25049.99,5966.45,7209.79,2020.09,15196.33,40246.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,37504,27441.95,0.0,0.0,27441.95,5106.94,3512.31,2194.88,10814.13,38256.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,9400,32902.5,0.0,890.0,33792.5,7696.62,7884.78,2694.36,18275.76,52068.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,49984,128023.93,19772.56,9180.57,156977.06,25094.35,11468.76,2669.19,39232.3,196209.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,20158,64419.36,0.0,0.0,64419.36,13333.99,11911.75,5072.6,30318.34,94737.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,367,73360.12,12498.1,6700.14,92558.36,16108.73,15196.11,1542.0,32846.84,125405.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,48619,14276.25,0.0,720.62,14996.87,0.0,5468.57,1162.32,6630.89,21627.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,49798,141841.96,3669.29,18760.18,164271.43,28010.14,12424.5,2791.56,43226.2,207497.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41874,11597.91,0.0,0.0,11597.91,0.0,4966.81,945.49,5912.3,17510.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,18417,47698.3,3369.37,997.98,52065.65,9547.89,8840.51,1406.32,19794.72,71860.37 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,39104,89028.01,0.0,0.0,89028.01,18349.02,12424.5,7147.91,37921.43,126949.44 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35756,37355.0,35.74,1690.19,39080.93,9129.41,10035.18,3147.39,22311.98,61392.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18411,72671.42,13589.14,6249.49,92510.05,15944.21,15052.76,1542.13,32539.1,125049.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,3063,9807.58,0.0,0.0,9807.58,0.0,0.0,775.7,775.7,10583.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,33722,67321.44,10253.22,5310.03,82884.69,14751.93,9137.45,6817.91,30707.29,113591.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40119,5433.6,0.0,0.0,5433.6,0.0,2293.76,437.16,2730.92,8164.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,32149,43974.01,0.0,0.0,43974.01,10246.17,10035.18,3581.5,23862.85,67836.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29686,67558.52,867.6,2984.54,71410.66,13574.03,7374.06,5760.16,26708.25,98118.91 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,23339,118104.0,0.0,0.0,118104.0,23768.42,12424.5,9483.71,45676.63,163780.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,38665,39736.65,437.4,5405.52,45579.57,10288.01,10489.14,3629.25,24406.4,69985.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",30459,135111.61,4646.17,10808.92,150566.7,28670.54,12424.5,2538.75,43633.79,194200.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,48616,97934.0,0.0,624.0,98558.0,20313.5,12424.5,8173.79,40911.79,139469.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,38615,2878.21,0.0,4049.07,6927.28,645.58,547.09,502.67,1695.34,8622.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,22419,64892.83,0.0,0.0,64892.83,13371.9,12424.51,5192.67,30989.08,95881.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,30810,14736.0,596.56,565.32,15897.88,0.0,3345.06,1269.91,4614.97,20512.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27121,110.2,0.0,0.0,110.2,0.0,47.79,8.54,56.33,166.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4416,4690.8,0.0,250.0,4940.8,1403.93,932.86,346.25,2683.04,7623.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,30739,1393.86,0.0,0.0,1393.86,0.0,509.23,107.91,617.14,2011.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,44516,67220.27,12352.38,2741.4,82314.05,14380.49,11072.26,6458.23,31910.98,114225.03 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,34163,64265.02,0.0,820.97,65085.99,14400.49,11468.77,5113.11,30982.37,96068.36 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,19386,59722.01,4250.06,3173.63,67145.7,12480.26,12520.08,5431.65,30431.99,97577.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,27906,49978.78,446.21,2711.5,53136.49,10805.24,9885.84,4330.12,25021.2,78157.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,38514,150710.0,0.0,3109.2,153819.2,30732.9,12424.5,10352.72,53510.12,207329.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,42149,151586.57,0.0,0.0,151586.57,30180.35,11453.9,17601.66,59235.91,210822.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H032,"Capt,Fire Prev Or Fire Invsgtn",19650,207510.71,2617.92,16600.85,226729.48,43564.6,12424.49,3815.21,59804.3,286533.78 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,31323,1897.7,0.0,0.0,1897.7,353.15,334.51,144.48,832.14,2729.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,13684,32444.2,0.0,1333.83,33778.03,0.0,0.0,2671.8,2671.8,36449.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,33539,64246.0,0.0,0.0,64246.0,12726.34,8601.57,4985.15,26313.06,90559.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8796,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3263.39,18089.24,61856.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31709,129617.27,90523.75,12941.18,233082.2,28075.17,15052.76,3933.27,47061.2,280143.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2490,66354.58,3730.04,904.0,70988.62,15340.7,13079.24,5380.39,33800.33,104788.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38113,1322.4,0.0,0.0,1322.4,0.0,573.44,109.85,683.29,2005.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",2506,86285.03,0.0,0.0,86285.03,17785.91,11492.67,6969.44,36248.02,122533.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,45910,62833.26,189.38,10595.21,73617.85,14858.11,12110.66,5831.53,32800.3,106418.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,43045,116976.03,0.0,564.53,117540.56,23643.85,12424.5,9617.3,45685.65,163226.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,52024,70135.0,78.75,0.0,70213.75,13833.25,11892.87,5653.66,31379.78,101593.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21197,3901.65,0.0,27.45,3929.1,0.0,1902.5,304.79,2207.29,6136.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25695,37954.0,0.0,10.17,37964.17,8484.33,6690.11,3072.62,18247.06,56211.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H120,Pilot Of Fire Boats,18786,150219.99,47929.28,9764.36,207913.63,31499.93,15196.12,3472.48,50168.53,258082.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40780,65589.6,0.0,1670.0,67259.6,13830.59,12424.5,5415.51,31670.6,98930.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3782,49580.03,111.26,1785.4,51476.69,0.0,3924.47,3985.76,7910.23,59386.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,37317,55363.02,5370.06,416.0,61149.08,10239.69,6212.25,4808.15,21260.09,82409.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,47922,34494.0,0.0,0.0,34494.0,7567.98,2867.19,2784.43,13219.6,47713.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,51483,85307.7,0.0,2663.65,87971.35,18568.25,8392.51,7099.73,34060.49,122031.84 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4306,Collections Officer,43961,65784.76,0.0,0.0,65784.76,13551.94,12400.61,5150.81,31103.36,96888.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,26901,92282.01,0.0,250.0,92532.01,19071.6,12424.5,7141.16,38637.26,131169.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,39622,108038.0,14449.52,5131.65,127619.17,22361.82,12424.51,9856.33,44642.66,172261.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,52164,72759.05,9240.63,6018.38,88018.06,15472.17,11779.39,7053.38,34304.94,122323.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1931,Senior Parts Storekeeper,32293,72319.0,4249.66,2943.15,79511.81,14905.16,12424.5,6375.13,33704.79,113216.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20994,6104.65,0.0,388.77,6493.42,1827.09,1214.02,369.98,3411.09,9904.51 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,31518,67517.48,2899.64,7885.72,78302.84,15011.78,12352.82,6402.3,33766.9,112069.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2508,72090.28,319.62,3153.55,75563.45,0.0,5580.7,5861.07,11441.77,87005.22 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",38058,23039.94,1339.47,28.38,24407.79,0.0,5020.57,1891.68,6912.25,31320.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,24575,10563.0,0.0,3304.71,13867.71,2369.29,1672.53,1110.58,5152.4,19020.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,11048,85139.32,7493.0,1154.7,93787.02,17586.49,12424.5,7510.47,37521.46,131308.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,10246,58177.01,0.0,0.0,58177.01,12987.87,12424.5,4454.76,29867.13,88044.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,36541,143188.0,0.0,15200.61,158388.61,28816.76,12424.5,10364.37,51605.63,209994.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19373,63776.03,12611.66,892.96,77280.65,17674.48,12567.51,5813.23,36055.22,113335.87 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,39107,67911.0,0.0,3395.55,71306.55,14696.7,12424.5,5538.81,32660.01,103966.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,37839,74142.25,0.0,0.0,74142.25,15254.43,12424.5,5946.74,33625.67,107767.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,43924,74165.0,0.0,624.0,74789.0,15414.44,12424.5,5828.68,33667.62,108456.62 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,9903,101047.02,0.0,2155.85,103202.87,21227.21,12424.5,8473.02,42124.73,145327.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,21921,15864.0,19447.46,3503.62,38815.08,3281.77,1911.46,697.01,5890.24,44705.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14426,113223.01,27870.97,18529.6,159623.58,24960.88,15196.12,2767.99,42924.99,202548.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,33026,196584.01,0.0,0.0,196584.01,39562.78,12424.49,11137.57,63124.84,259708.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,25574,73335.85,665.9,3013.88,77015.63,15370.53,12412.56,6313.32,34096.41,111112.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,48932,8580.0,0.0,54.0,8634.0,1606.77,1911.46,684.6,4202.83,12836.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22203,39233.18,4578.22,916.35,44727.75,10399.89,12264.65,3171.1,25835.64,70563.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,5557,158707.0,0.0,0.0,158707.0,31940.4,12424.5,17663.87,62028.77,220735.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45239,67020.57,19469.57,876.85,87366.99,18629.4,13211.96,6775.42,38616.78,125983.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,52271,56229.46,5256.04,2894.65,64380.15,12144.39,11195.67,5026.94,28367.0,92747.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38808,112387.44,65190.19,17214.54,194792.17,24651.19,14718.25,3388.72,42758.16,237550.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,17685,116864.24,0.0,4885.9,121750.14,24501.66,12412.57,9830.5,46744.73,168494.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37372,39309.64,3616.31,730.17,43656.12,10823.29,8012.91,3318.8,22155.0,65811.12 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0889,Mayoral Staff IX,15898,81139.03,0.0,0.0,81139.03,16670.05,12424.5,14390.31,43484.86,124623.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,25306,93681.0,0.0,2115.07,95796.07,19743.8,12424.5,7763.92,39932.22,135728.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13377,26624.42,4008.37,635.88,31268.67,6839.18,8287.19,2354.08,17480.45,48749.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,30514,16430.24,0.0,190.36,16620.6,0.0,4072.3,1288.71,5361.01,21981.61 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34469,31247.39,2774.88,2023.79,36046.06,5882.4,7944.51,2904.64,16731.55,52777.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,9386,"Senior Property Manager, Port",2310,128315.03,0.0,0.0,128315.03,25823.83,12424.5,9938.77,48187.1,176502.13 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,48118,93479.59,16724.39,5030.17,115234.15,19543.53,12397.63,9002.24,40943.4,156177.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,42107,138720.86,15106.96,17529.68,171357.5,27411.17,12424.5,2912.68,42748.35,214105.85 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,26455,66811.03,0.0,0.0,66811.03,13621.22,7418.86,5141.86,26181.94,92992.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,43675,62811.03,619.98,1994.0,65425.01,13305.75,12424.5,5169.66,30899.91,96324.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31294,40528.95,12456.73,4043.02,57028.7,12992.73,8059.91,4425.08,25477.72,82506.42 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,37325,141797.03,0.0,29143.43,170940.46,28874.61,10751.97,16972.22,56598.8,227539.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,13743,7976.08,0.0,49.05,8025.13,0.0,2888.1,621.96,3510.06,11535.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,11381,37264.68,95.08,790.0,38149.76,9018.27,9836.74,3064.97,21919.98,60069.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7264,Auto Body & Fender Wrk Sprv 1,50321,107816.03,37640.95,25186.64,170643.62,25653.96,12424.5,10646.29,48724.75,219368.37 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",26683,198139.02,0.0,1562.5,199701.52,40190.29,12424.5,11230.28,63845.07,263546.59 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),30727,141978.09,0.0,1500.0,143478.09,28786.19,12424.5,10130.79,51341.48,194819.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,6698,63102.0,0.0,600.38,63702.38,13118.57,12424.5,5029.07,30572.14,94274.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17848,27885.03,0.0,760.0,28645.03,7390.41,6212.25,2333.02,15935.68,44580.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,45556,62972.02,0.0,0.0,62972.02,13274.95,10035.18,4996.23,28306.36,91278.38 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,29458,66851.2,0.0,3000.0,69851.2,13775.0,12424.5,5802.87,32002.37,101853.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,47769,138813.43,12356.98,9267.68,160438.09,27467.47,12424.5,2679.11,42571.08,203009.17 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,42613,63102.0,984.05,2857.23,66943.28,13394.51,12424.5,5537.22,31356.23,98299.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,38241,82566.2,4672.53,2830.25,90068.98,17562.57,12376.71,7226.72,37166.0,127234.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35143,13718.26,0.0,1552.62,15270.88,1705.06,0.0,3369.53,5074.59,20345.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,16152,72849.62,0.0,0.0,72849.62,15003.88,12382.7,5932.23,33318.81,106168.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29964,2570.58,0.0,0.0,2570.58,0.0,1114.68,199.02,1313.7,3884.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,40267,78837.57,0.0,2100.0,80937.57,16690.39,10501.1,6725.63,33917.12,114854.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16205,30209.44,4024.15,401.44,34635.03,7779.35,9412.03,2642.67,19834.05,54469.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,19899,136272.61,0.0,731.66,137004.27,27515.75,12424.5,10076.59,50016.84,187021.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12387,50967.88,2506.39,3101.69,56575.96,15415.95,10135.89,4165.33,29717.17,86293.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6476,28488.72,6208.78,326.71,35024.21,6904.53,12207.91,2744.0,21856.44,56880.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",32748,93738.01,0.0,0.0,93738.01,19319.82,12424.5,7483.53,39227.85,132965.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,6060,10720.0,609.28,456.71,11785.99,1903.22,955.73,198.26,3057.21,14843.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",24248,99328.23,2937.61,3514.31,105780.15,20020.14,10370.22,8596.15,38986.51,144766.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34865,144706.01,0.0,12006.1,156712.11,30939.45,12424.5,9735.35,53099.3,209811.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25308,56191.1,0.0,7601.84,63792.94,13734.76,12424.5,5159.77,31319.03,95111.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45483,21006.1,0.0,440.0,21446.1,5533.09,5256.52,1755.89,12545.5,33991.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,52171,82341.01,0.0,144.0,82485.01,17030.04,12424.5,6738.0,36192.54,118677.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19259,3577.01,0.0,2.94,3579.95,0.0,1744.21,277.69,2021.9,5601.85 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,53042,79316.64,0.0,1045.0,80361.64,16423.78,11550.91,6394.46,34369.15,114730.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50171,2098.8,0.0,0.0,2098.8,470.76,430.07,162.5,1063.33,3162.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,17370,113081.19,47.97,3352.22,116481.38,23168.28,11952.61,9329.09,44449.98,160931.36 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,43419,173274.01,0.0,17327.4,190601.41,38319.98,12424.5,10915.34,61659.82,252261.23 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,39081,93501.98,30664.68,5386.03,129552.69,19559.19,12400.61,9918.54,41878.34,171431.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36223,99972.5,631.68,6944.05,107548.23,20556.83,10274.11,8125.16,38956.1,146504.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45524,25176.52,0.0,1836.68,27013.2,6506.98,6406.39,2293.92,15207.29,42220.49 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,45699,175714.74,0.0,0.0,175714.74,35278.98,12424.5,17995.24,65698.72,241413.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,16352,143188.0,0.0,6324.62,149512.62,28816.76,12424.5,10292.58,51533.84,201046.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2208,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26323,7790.06,0.0,0.0,7790.06,0.0,3378.03,648.13,4026.16,11816.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,28126,62817.01,0.0,1888.07,64705.08,12698.88,8123.67,5264.65,26087.2,90792.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,39637,108381.48,103745.49,25113.15,237240.12,32469.2,12424.5,4048.7,48942.4,286182.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,52957,1541.4,0.0,45.26,1586.66,0.0,334.51,123.15,457.66,2044.32 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,22207,31169.81,0.0,160.0,31329.81,5969.97,3799.03,2270.25,12039.25,43369.06 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",12063,105082.03,0.0,0.0,105082.03,21657.96,12424.5,8443.97,42526.43,147608.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,41516,62479.84,183.57,921.62,63585.03,13081.42,12305.09,5271.48,30657.99,94243.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,47139,8670.0,0.0,168.34,8838.34,1944.69,1433.6,732.7,4110.99,12949.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,3739,109319.47,0.0,0.0,109319.47,21874.39,11606.16,8781.83,42262.38,151581.85 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,16334,77571.22,0.0,0.0,77571.22,15970.95,12424.5,6261.57,34657.02,112228.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,32019,51332.0,0.0,0.0,51332.0,9044.93,6212.25,4115.64,19372.82,70704.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,4651,57726.86,60.78,0.0,57787.64,12865.83,12424.5,4700.67,29991.0,87778.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35721,69736.85,22188.45,3755.45,95680.75,20129.07,13743.53,7445.1,41317.7,136998.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48583,3607.35,0.0,98.58,3705.93,0.0,0.0,265.86,265.86,3971.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,46292,56120.02,0.0,1805.26,57925.28,12956.15,12424.51,4704.94,30085.6,88010.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18024,4314.0,0.0,66.54,4380.54,932.55,477.86,74.47,1484.88,5865.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42885,180459.51,0.0,1500.0,181959.51,36548.65,12424.5,10929.5,59902.65,241862.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24816,6983.5,0.0,17.36,7000.86,0.0,2682.01,543.2,3225.21,10226.07 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,37398,213648.56,0.0,10575.0,224223.56,42975.82,12388.66,11507.2,66871.68,291095.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,40874,55862.44,324.15,2289.75,58476.34,11517.86,12276.67,4841.89,28636.42,87112.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5226,25293.28,165.3,1319.58,26778.16,5064.94,5594.67,1995.33,12654.94,39433.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21560,24561.9,0.0,1800.18,26362.08,0.0,2150.39,2044.4,4194.79,30556.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,41268,66401.68,0.0,615.98,67017.66,13826.98,12264.78,5502.96,31594.72,98612.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2935,"Sr Marriage, Fam & Cld Cnslr",37152,97399.34,3316.67,1830.26,102546.27,20271.02,12421.34,8280.35,40972.71,143518.98 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,42456,65043.28,0.0,0.0,65043.28,13646.33,10512.02,5165.85,29324.2,94367.48 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,17517,208032.0,0.0,1562.5,209594.5,42181.17,12424.5,11315.23,65920.9,275515.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,38556,11337.18,0.0,26.34,11363.52,0.0,3086.18,880.63,3966.81,15330.33 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,15756,3578.19,0.0,0.0,3578.19,0.0,1311.15,289.35,1600.5,5178.69 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,9834,61735.0,0.0,640.91,62375.91,12855.94,12424.5,5123.37,30403.81,92779.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,49947,9442.5,0.0,2444.19,11886.69,1757.25,1194.67,967.89,3919.81,15806.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32407,15468.6,605.41,53.34,16127.35,0.0,4157.43,1250.99,5408.42,21535.77 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,15487,71480.62,0.0,3599.42,75080.04,14811.48,11935.05,6247.7,32994.23,108074.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,25209,96254.02,0.0,1643.38,97897.4,20144.07,12424.51,7993.97,40562.55,138459.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,26154,9713.2,0.0,61.31,9774.51,0.0,0.0,773.01,773.01,10547.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29535,113233.6,34427.67,18904.1,166565.37,25036.03,15196.12,2836.19,43068.34,209633.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,34494,11898.0,7180.98,2486.0,21564.98,2348.91,1433.6,389.52,4172.03,25737.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23162,79490.88,0.0,5256.92,84747.8,16231.83,8687.6,6832.59,31752.02,116499.82 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,45591,91178.45,0.0,0.0,91178.45,18234.67,10455.22,7489.65,36179.54,127357.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6569,59336.42,17074.14,1540.0,77950.56,13563.12,12424.5,6269.63,32257.25,110207.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49689,129775.31,34178.62,21326.1,185280.03,27140.79,12424.5,479.18,40044.47,225324.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",19564,139759.2,17402.19,22361.91,179523.3,31649.03,14144.8,3104.54,48898.37,228421.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,25793,112209.07,0.0,0.0,112209.07,22870.16,12424.5,9170.5,44465.16,156674.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39334,42631.92,4182.17,1696.44,48510.53,11517.67,13104.99,3638.84,28261.5,76772.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9692,51936.8,0.0,6823.54,58760.34,13540.23,12424.5,4708.42,30673.15,89433.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,51346,83319.97,503.85,0.0,83823.82,17217.81,11508.44,6757.69,35483.94,119307.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1662,Patient Accounts Asst Sprv,8503,3027.0,0.0,0.0,3027.0,563.32,477.86,239.55,1280.73,4307.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35171,8967.53,0.0,834.08,9801.61,1869.36,3888.63,770.59,6528.58,16330.19 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,10615,83808.62,0.0,0.0,83808.62,17260.46,12424.5,6646.4,36331.36,120139.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49076,3604.38,0.0,273.08,3877.46,1078.8,716.79,260.98,2056.57,5934.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,49332,54950.49,159.24,2160.73,57270.46,12824.91,11899.45,4639.96,29364.32,86634.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,26818,83465.41,0.0,0.0,83465.41,17254.37,11946.63,6932.98,36133.98,119599.39 +Calendar,2015,1,Public Protection,DAT,District Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,20856,3633.0,0.0,0.0,3633.0,676.1,477.86,281.97,1435.93,5068.93 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,6965,841.19,0.0,0.0,841.19,0.0,256.85,65.88,322.73,1163.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,30578,97424.0,4909.65,3702.26,106035.91,20722.15,12424.51,8676.41,41823.07,147858.98 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,45203,18451.0,0.0,0.0,18451.0,4057.37,4300.78,1389.08,9747.23,28198.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,49634,91695.01,0.0,6868.08,98563.09,18888.77,12424.5,7922.69,39235.96,137799.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23250,47707.2,10720.91,5159.56,63587.67,12269.04,12424.5,5046.16,29739.7,93327.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38422,122219.31,12035.49,28784.8,163039.6,29362.12,11157.26,9394.76,49914.14,212953.74 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,41198,1304.88,333.09,0.0,1637.97,0.0,394.24,127.88,522.12,2160.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,43883,175.6,0.0,0.0,175.6,0.0,47.79,13.6,61.39,236.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,27945,67261.01,0.0,0.0,67261.01,13862.83,12424.5,5202.95,31490.28,98751.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,35290,93673.94,3386.51,1934.0,98994.45,19629.7,11943.29,7913.86,39486.85,138481.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,22018,559.99,0.0,0.0,559.99,0.0,204.59,43.46,248.05,808.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41940,3017.25,0.0,100.59,3117.84,217.58,0.0,1347.75,1565.33,4683.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",28110,149481.5,47170.6,16049.45,212701.55,31927.91,14479.33,3628.6,50035.84,262737.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,31154,30581.64,1039.05,2291.29,33911.98,6095.67,6254.07,2691.39,15041.13,48953.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3435,Urban Forestry Inspector,40725,59876.99,0.0,0.0,59876.99,12335.54,12385.66,4794.89,29516.09,89393.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",40588,2007.0,0.0,0.0,2007.0,0.0,477.86,155.39,633.25,2640.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,17723,77060.51,0.0,0.0,77060.51,15853.48,12424.5,6379.43,34657.41,111717.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,1111,36377.18,0.0,0.0,36377.18,8724.93,11815.22,3397.71,23937.86,60315.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17929,124765.17,11569.53,5266.33,141601.03,25155.43,12424.5,1825.24,39405.17,181006.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23695,121079.91,747.04,3063.1,124890.05,0.0,9069.53,9440.6,18510.13,143400.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,16254,69902.0,1008.0,1664.0,72574.0,14749.15,12424.5,5910.09,33083.74,105657.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,9767,39100.0,2400.98,85.53,41586.51,9640.49,9557.31,3354.97,22552.77,64139.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,7876,124282.41,0.0,0.0,124282.41,24960.2,12424.5,27354.99,64739.69,189022.1 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,10733,110556.99,0.0,720.0,111276.99,22873.37,12424.5,8760.89,44058.76,155335.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,4486,6460.0,0.0,0.0,6460.0,1420.56,1911.46,515.08,3847.1,10307.1 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,38838,34511.41,0.0,956.32,35467.73,7853.03,5734.39,2632.01,16219.43,51687.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,45664,79395.03,0.0,624.0,80019.03,16501.14,12424.51,6635.15,35560.8,115579.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,40850,30514.45,0.0,0.0,30514.45,5678.72,4898.12,2467.57,13044.41,43558.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,19931,65579.54,0.0,608.4,66187.94,13641.02,12113.89,5237.68,30992.59,97180.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,30080,54124.1,0.0,3365.54,57489.64,12856.57,12424.5,4502.59,29783.66,87273.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,50812,938.76,0.0,21.6,960.36,0.0,310.61,74.54,385.15,1345.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13682,7524.18,397.39,36.41,7957.98,1786.69,2267.89,617.03,4671.61,12629.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16229,77420.19,0.0,1567.87,78988.06,8611.32,7511.56,6473.85,22596.73,101584.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,12988,61385.02,806.35,6277.74,68469.11,13339.0,12424.5,5542.23,31305.73,99774.84 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,28618,77071.05,0.0,1909.0,78980.05,16252.89,12424.5,6534.14,35211.53,114191.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,31515,76579.9,0.0,190.0,76769.9,15806.57,12424.5,6174.23,34405.3,111175.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,20287,92001.3,27996.96,12568.66,132566.92,20503.52,12424.5,9964.72,42892.74,175459.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32925,43745.25,5333.92,3539.72,52618.89,13688.11,8699.54,4101.52,26489.17,79108.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,37747,56120.02,151.95,0.0,56271.97,12556.79,12424.5,4531.82,29513.11,85785.08 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,4389,24418.0,0.0,0.0,24418.0,1310.14,3345.06,1910.97,6566.17,30984.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29595,3318.08,0.0,32.94,3351.02,0.0,961.72,259.44,1221.16,4572.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,39005,99301.39,0.0,374.4,99675.79,20498.98,12424.5,8211.09,41134.57,140810.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,5642,51638.6,0.0,7582.85,59221.45,13490.79,12424.5,4535.52,30450.81,89672.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,18664,5031.34,0.0,27.18,5058.52,0.0,1678.95,392.22,2071.17,7129.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1505,57935.62,16232.09,1367.4,75535.11,15376.83,13251.63,5766.17,34394.63,109929.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,33065,65490.47,0.0,0.0,65490.47,13486.87,12308.87,5317.92,31113.66,96604.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26055,5773.77,0.0,542.82,6316.59,0.0,495.79,479.45,975.24,7291.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,29921,59095.5,0.0,874.08,59969.58,11729.41,7884.78,4652.0,24266.19,84235.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,12154,7946.52,0.0,0.0,7946.52,0.0,2629.76,615.23,3244.99,11191.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,15943,79357.19,0.0,623.7,79980.89,16479.46,12418.53,6565.71,35463.7,115444.59 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1830,Perf Analyst III Project Mgr,48936,9140.0,0.0,0.0,9140.0,1700.96,955.73,719.49,3376.18,12516.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,31049,11200.51,0.0,0.0,11200.51,2512.27,1911.46,875.17,5298.9,16499.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47808,41697.84,3516.85,1865.09,47079.78,11301.86,12996.19,3527.49,27825.54,74905.32 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,16001,6065.02,0.0,72.6,6137.62,1349.67,1791.99,459.0,3600.66,9738.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",5300,Sub-Professional Engineering,5322,Graphic Artist,39574,51438.02,0.0,0.0,51438.02,11281.32,10990.9,4163.8,26436.02,77874.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,1465,158351.74,14.35,6719.88,165085.97,31315.08,12424.5,2759.12,46498.7,211584.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,26766,100554.05,0.0,0.0,100554.05,20724.83,12424.5,8010.19,41159.52,141713.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36326,114387.25,242.66,7677.8,122307.71,22676.27,12424.5,1160.6,36261.37,158569.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,33378,77312.02,0.0,0.0,77312.02,16042.61,11468.74,6252.34,33763.69,111075.71 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,33,203366.21,0.0,36174.94,239541.15,46982.73,12233.36,11694.15,70910.24,310451.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,44159,10493.32,0.0,0.0,10493.32,0.0,3354.01,838.11,4192.12,14685.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27870,29392.51,1057.0,5512.18,35961.69,0.0,2365.02,2784.44,5149.46,41111.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,42927,158686.58,2741.19,11545.93,172973.7,31517.3,12424.5,2938.73,46880.53,219854.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47117,11460.81,0.0,0.0,11460.81,0.0,4969.8,917.18,5886.98,17347.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,33117,116937.36,0.0,3027.44,119964.8,23563.43,12424.5,9788.92,45776.85,165741.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,41273,73749.01,214.07,6272.93,80236.01,16037.38,12424.5,6630.14,35092.02,115328.03 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,8498,150409.06,0.0,0.0,150409.06,30269.95,12424.5,10273.54,52967.99,203377.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,2138,57875.1,3026.5,1758.73,62660.33,13094.69,12424.48,5049.57,30568.74,93229.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,2832,65085.5,0.0,5415.73,70501.23,13930.18,12328.92,5812.64,32071.74,102572.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,20299,92338.9,1192.47,7049.72,100581.09,19752.55,12663.43,8218.96,40634.94,141216.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,9267,182636.38,0.0,2285.49,184921.87,37175.11,12118.66,10895.99,60189.76,245111.63 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,13365,155370.88,0.0,0.0,155370.88,31222.13,12258.56,10356.12,53836.81,209207.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,12161,118691.13,67956.81,7714.92,194362.86,24843.18,15196.11,3273.85,43313.14,237676.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17674,3072.61,0.0,0.0,3072.61,0.0,1290.23,246.19,1536.42,4609.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40390,35462.85,0.0,5910.51,41373.36,351.62,0.0,3571.72,3923.34,45296.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39254,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2412.83,12866.18,44166.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8789,32056.56,293.87,2037.66,34388.09,4091.55,0.0,6825.52,10917.07,45305.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,34032,56066.19,0.0,0.0,56066.19,0.0,7088.83,4347.72,11436.55,67502.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,51317,2244.76,0.0,7.98,2252.74,0.0,400.21,174.85,575.06,2827.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15729,101229.39,6062.67,17674.48,124966.54,20702.34,9567.58,9774.15,40044.07,165010.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50091,76076.08,0.0,12288.92,88365.0,12672.87,7426.38,7286.13,27385.38,115750.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,46997,53340.04,7345.9,7711.18,68397.12,11764.07,9421.83,5360.35,26546.25,94943.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31973,111455.75,0.0,16.36,111472.11,0.0,9270.59,8640.99,17911.58,129383.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,38470,81116.02,0.0,0.0,81116.02,16718.54,12424.5,6655.69,35798.73,116914.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18305,68994.56,17847.0,5063.77,91905.33,20300.49,13595.99,6970.08,40866.56,132771.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,7641,66024.66,9169.99,5802.75,80997.4,14239.46,10840.38,6413.92,31493.76,112491.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32223,5433.6,0.0,0.0,5433.6,0.0,2293.76,437.16,2730.92,8164.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47899,112159.77,1775.61,19332.51,133267.89,25165.58,15052.76,2214.54,42432.88,175700.77 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,8930,110466.89,0.0,19288.47,129755.36,22326.35,11892.88,9844.48,44063.71,173819.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,41266,6920.0,0.0,0.0,6920.0,1287.82,955.72,544.85,2788.39,9708.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4485,4076.02,0.0,0.0,4076.02,0.0,1723.3,323.78,2047.08,6123.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29586,55178.19,921.8,4567.13,60667.12,11931.35,12128.41,4763.1,28822.86,89489.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,34705,25120.45,794.93,971.85,26887.23,6054.18,5794.11,2257.6,14105.89,40993.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,13210,2835.0,106.31,40.0,2981.31,644.86,477.86,232.33,1355.05,4336.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,2921,25720.0,713.81,0.0,26433.81,5655.83,5734.39,2115.36,13505.58,39939.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26716,69976.51,0.0,8278.09,78254.6,16852.16,12376.71,6291.2,35520.07,113774.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,20364,40265.79,1424.8,7170.25,48860.84,10181.97,6143.56,3975.83,20301.36,69162.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1880,68625.07,11456.29,4646.9,84728.26,20084.63,13521.92,6618.4,40224.95,124953.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18691,2011.5,0.0,167.63,2179.13,0.0,0.0,131.63,131.63,2310.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47920,5873.96,0.0,865.72,6739.68,1521.38,2547.14,550.9,4619.42,11359.1 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,48649,125815.08,0.0,0.0,125815.08,25320.92,12424.5,9876.69,47622.11,173437.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,1548,4094.5,0.0,0.0,4094.5,0.0,907.93,317.79,1225.72,5320.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8553,56163.3,0.0,0.0,56163.3,10885.46,8601.58,3975.77,23462.81,79626.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,10743,49574.97,1638.95,2837.43,54051.35,9659.66,7222.22,902.85,17784.73,71836.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2819,Assistant Health Educator,45724,81116.01,0.0,1320.0,82436.01,16989.42,12424.5,6705.32,36119.24,118555.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,50866,74165.0,0.0,624.0,74789.0,15414.44,12424.5,6201.07,34040.01,108829.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,34383,33365.44,1609.82,6416.82,41392.08,7408.04,6365.05,3373.26,17146.35,58538.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",19717,9844.63,0.0,0.0,9844.63,0.0,2036.9,753.81,2790.71,12635.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,6305,19550.01,0.0,0.0,19550.01,5043.9,4778.66,1588.05,11410.61,30960.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9585,56531.0,0.0,6501.85,63032.85,12616.55,12424.5,5057.69,30098.74,93131.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24383,20941.93,3038.62,452.61,24433.16,5180.44,6490.3,1868.06,13538.8,37971.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,4652,10209.0,0.0,0.0,10209.0,2289.87,1433.6,824.08,4547.55,14756.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,23336,45624.0,15279.94,5604.63,66508.57,11452.06,12424.5,5264.7,29141.26,95649.83 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,47134,41884.52,0.0,0.0,41884.52,9950.11,10751.97,3385.29,24087.37,65971.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,11554,62844.8,880.35,4384.58,68109.73,13317.68,11116.34,5553.94,29987.96,98097.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9181,"Manager VII, MTA",11694,169724.69,0.0,0.0,169724.69,34145.78,12379.7,25564.1,72089.58,241814.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50286,34566.3,0.0,0.0,34566.3,6939.88,5304.3,2548.27,14792.45,49358.75 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,2320,103643.5,0.0,0.0,103643.5,21328.58,12424.5,8267.9,42020.98,145664.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,5208,10220.57,0.0,125.96,10346.53,0.0,3538.12,831.84,4369.96,14716.49 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,32926,143188.0,0.0,0.0,143188.0,28816.76,12424.5,10181.19,51422.45,194610.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,14735,100554.0,0.0,0.0,100554.0,20724.83,12424.5,7790.14,40939.47,141493.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,52060,63887.06,4513.26,3252.59,71652.91,13830.6,12424.5,5661.11,31916.21,103569.12 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,49949,76392.26,0.0,0.0,76392.26,15737.83,12424.5,6150.41,34312.74,110705.0 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,24800,101770.04,0.0,0.0,101770.04,20975.25,12424.5,7790.1,41189.85,142959.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22331,57548.36,13838.04,4796.54,76182.94,17484.81,11404.2,5903.35,34792.36,110975.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",3076,118858.04,2088.09,4928.23,125874.36,24225.22,12424.5,9837.92,46487.64,172362.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2935,"Sr Marriage, Fam & Cld Cnslr",36389,97424.05,0.0,125.0,97549.05,20104.91,12424.5,8020.01,40549.42,138098.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,31221,140334.01,0.0,5440.12,145774.13,29285.41,12424.5,10156.23,51866.14,197640.27 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1814,Benefits Supervisor,747,109563.01,0.0,624.0,110187.01,22175.43,12424.5,8662.84,43262.77,153449.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9140,Transit Manager 1,51976,21790.3,0.0,5324.02,27114.32,4979.72,2341.54,2177.76,9499.02,36613.34 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,33555,29943.03,0.0,438.34,30381.37,6814.53,4300.79,5203.84,16319.16,46700.53 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",29845,198139.02,0.0,1562.5,199701.52,40190.3,12424.5,11235.76,63850.56,263552.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,20481,76675.0,0.0,0.0,76675.0,15747.45,11946.64,6245.75,33939.84,110614.84 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,39165,0.0,0.0,949.93,949.93,0.0,68.5,72.67,141.17,1091.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,31265,30321.0,0.0,0.0,30321.0,6801.03,4300.79,2463.13,13564.95,43885.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16291,7906.85,0.0,562.57,8469.42,0.0,3428.69,655.31,4084.0,12553.42 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,44494,75462.6,0.0,0.0,75462.6,15274.47,10461.91,6052.76,31789.14,107251.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,34499,92085.0,0.0,0.0,92085.0,18979.21,12424.5,7438.7,38842.41,130927.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,2441,97271.82,0.0,0.0,97271.82,20063.47,12339.98,7874.3,40277.75,137549.57 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,22247,31779.99,0.0,851.41,32631.4,6803.64,5154.98,2652.14,14610.76,47242.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,16869,60991.01,0.0,0.0,60991.01,11979.01,8123.71,4918.27,25020.99,86012.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,9636,63887.0,2098.55,4466.44,70451.99,15314.99,12424.51,5689.29,33428.79,103880.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35684,97765.11,4509.01,14485.61,116759.73,27284.48,12424.5,1987.74,41696.72,158456.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,21243,113623.06,0.0,0.0,113623.06,22860.58,12424.5,9300.18,44585.26,158208.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50564,8967.04,0.0,0.0,8967.04,1668.76,1911.46,707.04,4287.26,13254.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,6879,35922.01,0.0,0.0,35922.01,6845.81,6690.12,2915.86,16451.79,52373.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,43042,61856.27,537.0,8860.42,71253.69,13230.33,10943.12,5814.01,29987.46,101241.15 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,11680,67454.47,0.0,5670.07,73124.54,15067.55,12340.45,5336.0,32744.0,105868.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29495,72664.26,9677.15,6852.58,89193.99,15970.81,15052.76,1483.88,32507.45,121701.44 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,2610,133087.0,0.0,0.0,133087.0,26783.95,12424.5,9614.23,48822.68,181909.68 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12060,37210.0,0.0,3326.8,40536.8,9534.3,4778.65,686.04,14998.99,55535.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",23677,28900.8,0.0,2615.62,31516.42,7395.28,6881.25,2519.65,16796.18,48312.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49448,68208.94,18206.01,4278.13,90693.08,19851.66,13442.36,7090.05,40384.07,131077.15 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,1290,34698.88,0.0,1097.91,35796.79,8580.48,8568.72,2925.37,20074.57,55871.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,10321,138633.91,31210.34,8566.53,178410.78,27945.01,12424.5,3034.59,43404.1,221814.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8510,112685.5,20096.57,8525.77,141307.84,22330.92,12424.5,2404.3,37159.72,178467.56 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,27757,23556.23,298.09,0.0,23854.32,0.0,0.0,1886.26,1886.26,25740.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23024,605.54,227.08,0.0,832.62,171.37,0.0,65.77,237.14,1069.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,142,67708.51,17833.57,4931.09,90473.17,19920.79,13345.65,6856.29,40122.73,130595.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,10067,21193.82,0.0,177.31,21371.13,3977.17,3530.41,1751.78,9259.36,30630.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,29036,43498.02,0.0,560.0,44058.02,9882.23,6212.25,3488.29,19582.77,63640.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,25102,108370.0,0.0,3221.53,111591.53,27140.11,12424.51,504.25,40068.87,151660.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,7857,35540.51,2994.32,40.0,38574.83,7127.89,5495.46,2891.19,15514.54,54089.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19166,62018.35,3093.58,2485.0,67596.93,13252.88,12333.76,5491.01,31077.65,98674.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5508,Project Manager 4,43950,196584.01,0.0,0.0,196584.01,39562.78,12424.49,11178.52,63165.79,259749.8 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,45044,136466.02,10781.47,31565.62,178813.11,40872.87,12424.5,463.2,53760.57,232573.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,43925,57394.7,3404.86,1516.81,62316.37,11937.56,9945.58,5205.11,27088.25,89404.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26157,41752.51,383.8,2041.58,44177.89,10245.94,10995.69,3314.08,24555.71,68733.6 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,39279,30845.2,0.0,0.0,30845.2,4355.77,9252.67,2500.84,16109.28,46954.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,30566,78963.02,0.0,1228.14,80191.16,16527.57,12424.5,6647.12,35599.19,115790.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12494,151.38,0.0,0.0,151.38,42.84,47.79,11.72,102.35,253.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,16204,75605.01,24201.08,11076.85,110882.94,16926.23,12424.5,8996.83,38347.56,149230.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,34233,75927.09,10482.01,1616.21,88025.31,15894.88,12424.5,7114.67,35434.05,123459.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,2417,56276.01,161.32,0.0,56437.33,12591.79,12424.5,4427.68,29443.97,85881.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19764,16619.19,0.0,350.41,16969.6,4230.41,6978.68,1381.52,12590.61,29560.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,19241,160044.93,0.0,0.0,160044.93,32059.6,12424.5,17753.92,62238.02,222282.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,21179,143951.86,103245.82,21076.55,268274.23,29028.52,12424.5,4557.91,46010.93,314285.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41599,2702.75,0.0,0.0,2702.75,0.0,1134.93,209.78,1344.71,4047.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,27094,29386.51,0.0,3094.46,32480.97,7782.96,6546.76,2563.09,16892.81,49373.78 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,18569,22635.0,0.0,0.0,22635.0,4966.1,2389.33,4648.37,12003.8,34638.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,45443,90949.02,0.0,1873.55,92822.57,19144.02,12113.89,7693.03,38950.94,131773.51 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,8346,41108.4,362.72,0.0,41471.12,8915.8,8123.71,3406.05,20445.56,61916.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34709,56531.0,0.0,6042.07,62573.07,12670.15,12424.5,5057.88,30152.53,92725.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,19148,66102.01,348.25,3168.74,69619.0,14272.11,12424.5,5731.04,32427.65,102046.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,48556,63631.31,0.0,0.0,63631.31,13088.93,12424.5,5116.57,30630.0,94261.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13710,13817.54,1772.57,315.7,15905.81,3444.29,4299.42,1188.46,8932.17,24837.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39936,10579.2,0.0,0.0,10579.2,0.0,4587.51,848.92,5436.43,16015.63 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,48917,84552.64,0.0,1801.77,86354.41,17804.91,12418.53,7061.71,37285.15,123639.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,19414,42108.95,9022.47,5502.15,56633.57,8361.27,5160.95,950.83,14473.05,71106.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48398,106146.67,0.0,728.18,106874.85,20749.28,11032.72,1457.74,33239.74,140114.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,42264,75383.55,0.0,822.16,76205.71,15661.16,12387.88,6051.04,34100.08,110305.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9296,6650.24,0.0,124.37,6774.61,0.0,1739.7,525.82,2265.52,9040.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37112,18505.87,0.0,0.0,18505.87,794.53,7962.73,1510.13,10267.39,28773.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),46708,50131.88,18450.25,4719.24,73301.37,10375.19,7645.85,1227.69,19248.73,92550.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,27430,49083.13,2899.9,960.0,52943.03,10186.66,10990.9,4281.17,25458.73,78401.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29888,3120.6,0.0,2048.54,5169.14,684.66,286.72,398.32,1369.7,6538.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,24912,116976.02,0.0,2289.69,119265.71,23952.35,12424.48,9581.26,45958.09,165223.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2456,Asst Forensic Toxicologist 1,16933,43845.81,0.0,0.0,43845.81,0.0,4955.94,3398.03,8353.97,52199.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,30445,136938.39,0.0,0.0,136938.39,27528.59,12424.49,10144.06,50097.14,187035.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47732,139497.38,1409.93,20336.19,161243.5,0.0,10565.85,10040.49,20606.34,181849.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17539,7295.47,0.0,0.0,7295.47,0.0,3138.98,588.89,3727.87,11023.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,24174,56699.54,321.72,5695.98,62717.24,13493.69,12400.62,4984.32,30878.63,93595.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11156,11460.83,0.0,0.0,11460.83,2956.88,4969.8,901.07,8827.75,20288.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,44796,24128.4,186.58,2887.45,27202.43,6193.07,6212.25,2153.33,14558.65,41761.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26253,80949.88,2335.76,4304.77,87590.41,16584.79,12424.5,3331.7,32340.99,119931.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,48272,31717.71,0.0,0.0,31717.71,7114.25,6212.25,2504.75,15831.25,47548.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2406,Pharmacy Helper,5454,72319.02,0.0,1058.2,73377.22,15039.08,12424.5,6045.79,33509.37,106886.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,8643,41124.32,0.0,15620.2,56744.52,9297.13,6475.08,4624.55,20396.76,77141.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51791,63887.05,13266.9,8378.87,85532.82,14236.17,12424.54,6758.56,33419.27,118952.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,47528,62468.81,2042.98,972.04,65483.83,13003.92,12424.5,5144.13,30572.55,96056.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,6084,56531.01,40.82,2593.65,59165.48,11796.81,12424.5,4896.34,29117.65,88283.13 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,36286,63972.85,0.0,0.0,63972.85,13174.28,11970.52,5146.83,30291.63,94264.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34099,79121.21,0.0,0.0,79121.21,0.0,5925.54,6140.46,12066.0,91187.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,28590,39440.19,2203.08,76233.67,117876.94,8681.3,3398.82,111.35,12191.47,130068.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,33259,56007.79,15117.44,2983.06,74108.29,11832.52,10678.92,6099.99,28611.43,102719.72 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,34649,38618.0,14393.24,117.59,53128.83,7009.78,3822.92,4149.51,14982.21,68111.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,6548,117129.67,12516.48,5027.59,134673.74,23205.2,12424.5,2292.75,37922.45,172596.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,14467,78736.0,0.0,0.0,78736.0,17210.45,6690.13,10792.55,34693.13,113429.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7333,Apprentice Stationary Engineer,2382,82152.0,23602.72,17403.68,123158.4,16889.45,12424.51,9699.11,39013.07,162171.47 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,50932,67515.4,16797.62,8298.37,92611.39,14974.3,12352.82,7395.42,34722.54,127333.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,29354,110220.36,0.0,0.0,110220.36,21939.0,10097.87,9081.45,41118.32,151338.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,52261,13405.65,0.0,0.0,13405.65,0.0,1182.71,1039.54,2222.25,15627.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator,Taxi & Accesssvcs",11342,93037.04,0.0,0.0,93037.04,19175.76,12424.5,7495.75,39096.01,132133.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18351,59463.61,65.13,12226.73,71755.47,0.0,5562.35,4713.72,10276.07,82031.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,45733,68067.11,0.0,625.2,68692.31,14157.88,12424.5,5562.68,32145.06,100837.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,10379,63723.11,4949.63,616.33,69289.07,13256.66,12271.83,5683.5,31211.99,100501.06 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,19784,94755.07,0.0,0.0,94755.07,19500.94,12424.5,7732.08,39657.52,134412.59 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,25713,78963.09,0.0,624.0,79587.09,16403.15,12424.5,6397.03,35224.68,114811.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,19229,54630.0,0.0,0.0,54630.0,11754.96,8601.58,4372.94,24729.48,79359.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",3844,8354.6,0.0,0.0,8354.6,0.0,1768.06,648.46,2416.52,10771.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,21099,97934.01,1400.5,5166.3,104500.81,21253.54,12424.5,7955.53,41633.57,146134.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38391,140334.01,0.0,9347.73,149681.74,27539.36,12424.5,4088.76,44052.62,193734.36 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,9643,12838.0,0.0,0.0,12838.0,2879.56,1672.52,1043.13,5595.21,18433.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,42626,212577.54,0.0,0.0,212577.54,42709.77,12424.5,28775.22,83909.49,296487.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15937,119465.57,15633.84,28841.49,163940.9,23627.22,12424.5,2783.7,38835.42,202776.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,50279,7044.02,0.0,0.0,7044.02,0.0,2331.09,545.46,2876.55,9920.57 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,10792,67193.13,1851.77,7838.67,76883.57,14907.17,12294.65,6342.33,33544.15,110427.72 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4267,Pr Real Property Appraiser,17337,85164.07,0.0,2200.0,87364.07,17655.27,9443.1,7042.47,34140.84,121504.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,50935,72526.59,19475.18,3380.04,95381.81,15672.49,12284.08,7807.95,35764.52,131146.33 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,28461,113623.04,0.0,0.0,113623.04,23158.3,12424.51,9161.56,44744.37,158367.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,9732,9603.51,0.0,0.0,9603.51,0.0,3138.98,788.23,3927.21,13530.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,18737,98157.0,0.0,0.0,98157.0,20241.34,12424.5,7934.19,40600.03,138757.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),10162,8245.3,46.32,0.0,8291.62,0.0,2392.32,643.26,3035.58,11327.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,51925,158641.04,0.0,0.0,158641.04,31939.24,9903.76,10387.92,52230.92,210871.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,52088,74792.25,80.51,990.83,75863.59,15041.02,8300.22,6180.85,29522.09,105385.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,11324,89623.29,3509.06,7804.44,100936.79,19024.18,12104.15,8046.83,39175.16,140111.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,21669,70900.58,0.0,0.0,70900.58,14576.04,12376.73,5767.89,32720.66,103621.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,52403,12210.0,0.0,27136.75,39346.75,2772.95,2389.33,3099.31,8261.59,47608.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,2283,113369.05,2242.85,8149.14,123761.04,24385.31,12424.48,9828.21,46638.0,170399.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,41004,83289.3,15272.27,3144.0,101705.57,17797.67,12424.5,8116.35,38338.52,140044.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,39324,26609.29,4734.62,2649.25,33993.16,5063.64,4295.83,2660.31,12019.78,46012.94 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,40534,29397.0,0.0,0.0,29397.0,5470.79,4300.79,2329.69,12101.27,41498.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,10804,79397.01,0.0,0.0,79397.01,16022.73,10035.17,6166.15,32224.05,111621.06 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,15334,98157.0,0.0,0.0,98157.0,20230.58,12424.5,7741.93,40397.01,138554.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,30713,66102.04,11696.46,4932.98,82731.48,14319.69,12424.5,6784.79,33528.98,116260.46 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3881,2763.34,0.0,0.0,2763.34,0.0,689.92,213.94,903.86,3667.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,20876,118104.02,0.0,0.0,118104.02,23777.02,12424.5,9362.06,45563.58,163667.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6781,63720.18,849.87,3692.42,68262.47,18427.05,12554.36,5320.76,36302.17,104564.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26004,11293.46,0.0,0.0,11293.46,1842.18,4897.22,913.56,7652.96,18946.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,50690,5982.0,0.0,0.0,5982.0,0.0,1433.6,459.78,1893.38,7875.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33801,97765.87,4413.13,19226.7,121405.7,28452.29,12424.5,2059.9,42936.69,164342.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,31509,74165.04,0.0,624.0,74789.04,15414.46,12424.5,6170.04,34009.0,108798.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3165,84724.58,6239.77,9507.14,100471.49,17513.65,12364.77,1628.81,31507.23,131978.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,6505,75561.65,42878.14,11446.21,129886.0,16835.27,12417.34,9849.83,39102.44,168988.44 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,3287,15564.72,0.0,0.0,15564.72,2896.6,3144.96,1234.81,7276.37,22841.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,12734,57701.87,1917.68,2655.16,62274.71,12810.16,10847.07,4939.88,28597.11,90871.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,27444,2247.0,0.0,0.0,2247.0,504.0,477.86,173.97,1155.83,3402.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27221,56531.0,0.0,6562.61,63093.61,13340.0,12424.5,4893.18,30657.68,93751.29 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,13654,87220.1,0.0,0.0,87220.1,19903.74,12424.5,1482.97,33811.21,121031.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,1528,12712.0,3754.01,0.0,16466.01,2365.7,1911.45,1256.12,5533.27,21999.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,51926,22428.69,0.0,0.0,22428.69,3479.13,1654.61,2721.33,7855.07,30283.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25981,23108.65,0.0,840.01,23948.66,806.32,0.0,2377.94,3184.26,27132.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,42614,159707.02,0.0,0.0,159707.02,32249.11,12424.5,17747.09,62420.7,222127.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,12506,37983.01,11069.81,526.95,49579.77,7068.65,5256.52,4042.55,16367.72,65947.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,38707,109445.27,4470.94,4575.47,118491.68,22470.68,12009.95,1359.12,35839.75,154331.43 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,23209,93317.2,13575.7,7660.34,114553.24,20260.02,12376.71,9367.36,42004.09,156557.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,20818,5518.18,2378.5,839.03,8735.71,1261.16,1671.04,690.41,3622.61,12358.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1188,139731.26,940.34,13809.61,154481.21,25324.76,11639.01,5063.25,42027.02,196508.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1151,1694.64,0.0,54.08,1748.72,0.0,140.37,134.84,275.21,2023.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15434,108595.1,121.86,9263.25,117980.21,23106.22,9334.44,9584.27,42024.93,160005.14 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,20178,149312.08,0.0,0.0,149312.08,30049.19,12424.5,10287.98,52761.67,202073.75 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,24094,129895.04,0.0,0.0,129895.04,26141.5,12424.5,10125.59,48691.59,178586.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,52509,139467.42,49257.06,7896.2,196620.68,27611.9,12424.5,2893.15,42929.55,239550.23 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8603,Emergency Services Coord III,17480,94190.96,1207.17,1355.78,96753.91,19375.44,12409.57,8145.45,39930.46,136684.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,29584,27250.35,1486.36,4902.5,33639.21,5511.96,4772.68,2717.06,13001.7,46640.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,19007,49646.08,181.55,1620.59,51448.22,10861.84,8123.71,4219.13,23204.68,74652.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8920,118616.1,0.0,9364.96,127981.06,24748.13,11021.49,9858.45,45628.07,173609.13 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,50276,107842.01,27477.33,5086.6,140405.94,23167.28,12424.5,10081.65,45673.43,186079.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,6097,4641.25,0.0,0.0,4641.25,0.0,1403.73,359.32,1763.05,6404.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44810,43907.2,6298.44,3449.97,53655.61,13700.29,8731.74,4182.44,26614.47,80270.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,25571,28703.35,873.04,2906.06,32482.45,7015.1,5708.58,2599.21,15322.89,47805.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,22762,63887.0,11723.43,5480.42,81090.85,14306.41,12424.5,6408.02,33138.93,114229.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,24629,100641.68,44209.45,10170.03,155021.16,21734.44,12409.7,10333.62,44477.76,199498.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,14170,66907.0,0.0,486.94,67393.94,13502.27,10035.17,5325.01,28862.45,96256.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,8284,24104.97,1487.52,908.75,26501.24,2551.8,5253.53,2111.48,9916.81,36418.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,48869,22904.39,0.0,884.51,23788.9,5677.26,6690.11,1922.62,14289.99,38078.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,13198,75927.04,1904.99,244.86,78076.89,15648.74,12424.5,6216.19,34289.43,112366.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2406,Pharmacy Helper,6679,0.0,0.0,828.51,828.51,0.0,0.0,63.38,63.38,891.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,13470,5217.3,0.0,140.98,5358.28,0.0,0.0,423.31,423.31,5781.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16523,22424.93,0.0,807.06,23231.99,459.68,0.0,3562.88,4022.56,27254.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,4944,87664.8,134.02,12217.31,100016.13,19872.71,12424.5,8151.72,40448.93,140465.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52456,37618.13,13798.33,10636.0,62052.46,11645.81,7481.04,4800.55,23927.4,85979.86 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,46478,121755.48,0.0,0.0,121755.48,24503.47,12424.5,27271.74,64199.71,185955.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33130,40262.18,0.0,0.0,40262.18,0.0,5280.42,3121.12,8401.54,48663.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,992,1303.13,0.0,13.9,1317.03,0.0,448.0,102.22,550.22,1867.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29295,107801.46,3408.31,11159.97,122369.74,22348.66,12424.5,2030.98,36804.14,159173.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14895,10004.7,0.0,333.53,10338.23,217.84,0.0,494.61,712.45,11050.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,47079,10745.14,0.0,45.52,10790.66,2783.96,0.0,893.05,3677.01,14467.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,34311,75209.66,0.0,0.0,75209.66,15535.1,11940.67,5993.19,33468.96,108678.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23566,10536.0,0.0,0.0,10536.0,0.0,2867.19,815.77,3682.96,14218.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q061,Lieutenant 2,24673,156226.53,4242.51,14462.32,174931.36,30823.8,12424.5,2160.9,45409.2,220340.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,40197,17455.0,0.0,0.0,17455.0,3915.15,2389.33,1433.69,7738.17,25193.17 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,33868,27944.0,0.0,320.0,28264.0,6339.6,3822.92,2094.39,12256.91,40520.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23465,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,21726,7608.0,0.0,16369.56,23977.56,1669.2,477.86,1853.3,4000.36,27977.92 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,49035,136466.0,9128.36,26789.56,172383.92,38692.37,12424.5,2692.23,53809.1,226193.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,34439,138921.8,0.0,0.0,138921.8,27911.77,12411.54,17367.5,57690.81,196612.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18862,4326.75,0.0,721.15,5047.9,4348.72,358.88,77.01,4784.61,9832.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,47980,32419.95,19904.68,3900.42,56225.05,6758.65,6140.56,4551.33,17450.54,73675.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25738,21082.64,2133.54,644.38,23860.56,5258.3,6530.55,1815.93,13604.78,37465.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,22142,84599.03,12359.91,600.0,97558.94,17548.1,12424.49,8272.3,38244.89,135803.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,19918,83694.01,0.0,0.0,83694.01,17249.66,12424.5,6802.24,36476.4,120170.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,48152,64986.26,0.0,0.0,64986.26,13359.66,12295.3,5289.84,30944.8,95931.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,19957,88874.42,983.47,2586.37,92444.26,18347.23,9876.11,7532.91,35756.25,128200.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42598,112694.64,24725.03,14011.04,151430.71,22297.45,12424.5,2482.65,37204.6,188635.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,15769,83831.4,0.0,0.0,83831.4,17274.28,10820.66,6474.56,34569.5,118400.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,5170,97174.0,97811.72,6091.75,201077.47,20680.74,12424.5,11152.22,44257.46,245334.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,28162,117517.0,2228.1,2014.45,121759.55,23994.25,12424.5,9746.16,46164.91,167924.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,47022,46432.06,1142.66,540.0,48114.72,10280.58,7645.85,3571.3,21497.73,69612.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15063,119455.99,53778.65,6868.76,180103.4,23662.84,12424.5,3061.18,39148.52,219251.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,25881,175499.15,0.0,0.0,175499.15,35305.65,12370.74,10764.16,58440.55,233939.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4270,21098.77,0.0,2422.09,23520.86,1853.9,0.0,4757.6,6611.5,30132.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20587,66839.75,3261.67,1276.91,71378.33,18661.84,13168.54,5562.48,37392.86,108771.19 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,46782,98157.01,0.0,0.0,98157.01,20230.59,12424.5,8069.59,40724.68,138881.69 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,15204,3742.2,0.0,117.23,3859.43,0.0,1128.96,298.8,1427.76,5287.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,30120,111403.08,16326.68,10486.09,138215.85,23311.6,12223.09,2297.95,37832.64,176048.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2470,Diagnostic Imaging Tech IV,36559,124519.21,33579.04,29597.18,187695.43,25379.28,12322.95,10940.56,48642.79,236338.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,52603,71519.65,0.0,1610.8,73130.45,15076.68,11364.78,6081.04,32522.5,105652.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14573,20932.25,3678.62,295.58,24906.45,5139.13,6485.75,1781.08,13405.96,38312.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8589,0.0,0.0,882.43,882.43,0.0,68.5,67.51,136.01,1018.44 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",5698,20556.0,0.0,3000.0,23556.0,0.0,3440.63,1909.17,5349.8,28905.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10668,77071.01,7813.57,664.0,85548.58,16022.36,12424.5,6940.22,35387.08,120935.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,34379,91849.44,0.0,1273.86,93123.3,19109.15,11650.71,7692.51,38452.37,131575.67 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,4437,173176.05,0.0,0.0,173176.05,34851.82,12424.5,17896.4,65172.72,238348.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,6425,55565.89,0.0,0.0,55565.89,11269.8,10513.4,4405.68,26188.88,81754.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50943,11233.89,176.74,7596.96,19007.59,2545.4,1732.26,301.93,4579.59,23587.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,26082,108374.59,32776.96,14596.45,155748.0,29908.59,12424.5,2607.3,44940.39,200688.39 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,47917,34766.6,0.0,0.0,34766.6,6470.07,5113.16,2755.52,14338.75,49105.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6164,76481.84,1596.18,1792.8,79870.82,16113.69,12328.92,6264.68,34707.29,114578.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18767,67330.28,29789.29,6538.09,103657.66,20215.33,13267.1,8116.14,41598.57,145256.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,5758,90697.02,0.0,0.0,90697.02,18655.94,12424.5,7277.07,38357.51,129054.53 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),1551,155156.01,0.0,1500.0,156656.01,31456.18,12424.5,10353.34,54234.02,210890.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32785,4394.24,0.0,0.0,4394.24,0.0,1905.49,347.67,2253.16,6647.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,9395,"Property Manager, Port",522,105363.0,0.0,0.0,105363.0,21716.08,12424.5,8257.3,42397.88,147760.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,2029,96729.7,0.0,0.0,96729.7,19867.05,11949.12,7965.49,39781.66,136511.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",42582,150233.97,37557.06,19989.08,207780.11,33430.41,15196.12,3488.66,52115.19,259895.3 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,21148,2388.0,694.01,0.0,3082.01,0.0,477.86,238.61,716.47,3798.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39782,3359.4,0.0,0.0,3359.4,0.0,286.72,260.73,547.45,3906.85 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2555,Physical Therapist Assistant,8377,30587.6,0.0,100.0,30687.6,0.0,5638.81,2435.59,8074.4,38762.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23605,65140.4,18927.7,3276.86,87344.96,18749.73,12838.21,6785.84,38373.78,125718.74 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,47516,141173.3,0.0,0.0,141173.3,28548.7,11697.25,17112.13,57358.08,198531.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1378,Special Assistant 19,41935,93892.54,0.0,540.75,94433.29,20600.06,6451.18,16453.41,43504.65,137937.94 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,14355,80570.0,0.0,664.0,81234.0,16743.62,12424.5,6612.44,35780.56,117014.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,51129,75927.0,2338.35,595.17,78860.52,15648.74,12424.5,6464.27,34537.51,113398.03 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",2800,Public Health,2806,Disease Control Investigator,10543,72054.96,0.0,0.0,72054.96,14826.4,12194.41,5607.36,32628.17,104683.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,15261,72468.41,0.0,1060.0,73528.41,15151.5,12385.09,5931.82,33468.41,106996.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,38107,122065.69,0.0,0.0,122065.69,24433.92,12424.49,17116.26,53974.67,176040.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48803,5035.3,0.0,0.0,5035.3,0.0,2126.5,406.24,2532.74,7568.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,4380,97767.56,12799.34,12691.71,123258.61,26152.84,12424.5,2099.52,40676.86,163935.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",7400,Skilled Labor,7412,Auto Svc Wrk Asst Sprv,11428,70880.1,13045.74,13867.56,97793.4,16598.23,12424.5,7650.08,36672.81,134466.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,38529,29052.25,0.0,0.0,29052.25,5966.85,8786.75,2346.44,17100.04,46152.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2033,2989.0,0.0,1.47,2990.47,0.0,1457.49,231.88,1689.37,4679.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,24205,97193.14,7481.72,11157.27,115832.13,21798.45,12424.5,9373.91,43596.86,159428.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,6513,2665.2,0.0,60.0,2725.2,611.27,573.44,193.8,1378.51,4103.71 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,24465,48052.9,0.0,680.0,48732.9,10479.62,8601.58,3935.17,23016.37,71749.27 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,48958,1260.54,0.0,0.0,1260.54,325.22,353.92,112.01,791.15,2051.69 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,52200,140305.11,0.0,0.0,140305.11,28196.59,12424.5,18491.97,59113.06,199418.17 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17418,1450.54,0.0,147.0,1597.54,0.0,618.89,123.68,742.57,2340.11 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,50011,144098.02,0.0,0.0,144098.02,28999.87,12424.5,17425.53,58849.9,202947.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11474,113223.02,64390.01,17650.79,195263.82,25079.52,15196.11,3278.03,43553.66,238817.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46450,78215.6,10278.6,6590.0,95084.2,14729.59,8123.71,1587.51,24440.81,119525.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,48387,97719.93,10389.53,19640.66,127750.12,28556.39,12418.53,1929.3,42904.22,170654.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5407,96738.84,91054.9,16549.11,204342.85,27560.2,12292.97,3431.26,43284.43,247627.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,6226,50550.63,0.0,0.0,50550.63,10604.3,10513.04,3925.36,25042.7,75593.33 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",9037,73890.0,0.0,0.0,73890.0,15371.89,9453.56,5858.64,30684.09,104574.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23456,8208.32,0.0,292.9,8501.22,0.0,2722.34,658.91,3381.25,11882.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,22788,46721.37,0.0,1140.73,47862.1,9870.42,6863.34,3946.59,20680.35,68542.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15917,67285.92,23790.05,4715.21,95791.18,19842.74,13262.98,7443.55,40549.27,136340.45 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,14913,57310.18,3339.39,7137.01,67786.58,14040.73,12412.56,5474.22,31927.51,99714.09 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,51091,67907.27,0.0,0.0,67907.27,12311.6,5734.38,8287.84,26333.82,94241.09 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,50358,71355.43,3731.94,3346.43,78433.8,14849.06,12379.7,6479.71,33708.47,112142.27 +Calendar,2015,6,General Administration & Finance,REG,Elections,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0962,Dept Head II,44748,192523.11,0.0,0.0,192523.11,38725.52,12424.5,18343.45,69493.47,262016.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,8168,81506.01,10370.27,2941.44,94817.72,16558.01,10035.17,7576.51,34169.69,128987.41 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,31541,78963.02,0.0,0.0,78963.02,16274.48,12424.5,6425.06,35124.04,114087.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9366,3433.43,0.0,0.0,3433.43,0.0,1488.85,273.29,1762.14,5195.57 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,51471,57047.86,0.0,0.0,57047.86,11619.23,11194.0,4710.39,27523.62,84571.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,20412,19797.0,3132.32,1825.14,24754.46,4407.97,5495.46,1979.78,11883.21,36637.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47114,65670.91,3447.49,2407.21,71525.61,18588.88,12938.08,5203.87,36730.83,108256.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5320,Illustrator And Art Designer,13515,63422.5,0.0,0.0,63422.5,12971.25,11468.76,5104.65,29544.66,92967.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,5921,61281.0,0.0,0.0,61281.0,13348.09,7884.78,4921.13,26154.0,87435.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41051,4489.63,0.0,17.15,4506.78,0.0,2189.22,349.72,2538.94,7045.72 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,49648,77933.75,3153.52,6792.75,87880.02,16823.24,12412.56,7117.8,36353.6,124233.62 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,1444,56120.03,5912.16,1629.75,63661.94,12572.22,12424.5,5102.33,30099.05,93760.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,43993,2033.4,0.0,5.11,2038.51,0.0,950.77,158.22,1108.99,3147.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,52834,118069.57,0.0,3141.18,121210.75,23418.63,12281.14,2017.26,37717.03,158927.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,7174,51405.0,0.0,2795.27,54200.27,12501.52,12424.5,4431.84,29357.86,83558.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34435,97757.74,2923.06,7383.91,108064.71,25555.08,12424.5,1303.53,39283.11,147347.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3060,49126.45,609.12,2695.76,52431.33,788.23,3704.95,1894.36,6387.54,58818.87 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,25751,83856.67,4026.63,8486.89,96370.19,18011.96,12257.31,7722.87,37992.14,134362.33 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),31439,115614.2,0.0,1500.0,117114.2,23561.39,12424.5,9345.71,45331.6,162445.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,52524,62187.0,24.51,7314.16,69525.67,13919.36,12424.5,5686.26,32030.12,101555.79 +Calendar,2015,4,Community Health,DPH,Public Health,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,29862,95558.0,5399.6,265.0,101222.6,19752.51,12424.5,8316.37,40493.38,141715.98 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,30005,64559.32,1799.62,0.0,66358.94,13296.15,12424.5,5098.13,30818.78,97177.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,23485,58590.32,0.0,358.66,58948.98,12151.53,11849.56,4803.44,28804.53,87753.51 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,33340,107328.0,0.0,5903.04,113231.04,23059.13,12424.5,9375.84,44859.47,158090.51 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,46308,66851.26,3229.82,2313.92,72395.0,14221.25,12409.57,5643.4,32274.22,104669.22 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,36766,158893.03,0.0,0.0,158893.03,31977.37,12424.5,17768.26,62170.13,221063.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36248,67337.12,7111.07,1075.67,75523.86,18745.67,13272.36,5850.79,37868.82,113392.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28191,3619.38,0.0,0.0,3619.38,0.0,1569.49,287.68,1857.17,5476.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2523,44032.24,0.0,0.0,44032.24,0.0,0.0,3482.93,3482.93,47515.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",50466,5060.0,0.0,31.54,5091.54,898.66,477.86,84.99,1461.51,6553.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,40063,42554.0,0.0,0.0,42554.0,9508.58,6690.11,3527.89,19726.58,62280.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5663,119463.8,174.95,11022.16,130660.91,24911.53,12424.5,331.0,37667.03,168327.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",19499,130341.64,43132.72,17291.87,190766.23,28793.62,15052.76,3198.68,47045.06,237811.29 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6129,28703.71,74.03,1863.3,30641.04,7224.35,7296.41,2591.36,17112.12,47753.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23015,1982.1,0.0,118.11,2100.21,0.0,0.0,87.42,87.42,2187.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,20290,55338.8,562.47,311.58,56212.85,12378.1,12424.5,4293.21,29095.81,85308.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10906,1218.4,0.0,53.93,1272.33,0.0,660.05,98.51,758.56,2030.89 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",13989,198139.02,0.0,1500.0,199639.02,40176.58,12424.5,11208.86,63809.94,263448.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12891,117129.08,33183.25,8353.53,158665.86,23207.26,12424.5,2647.19,38278.95,196944.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,16589,81942.0,0.0,2981.24,84923.24,17525.7,12424.5,6945.85,36896.05,121819.29 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,4707,14016.0,0.0,0.0,14016.0,3075.12,1433.6,3010.25,7518.97,21534.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,23255,23067.0,0.0,0.0,23067.0,4182.03,2150.4,1822.09,8154.52,31221.52 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,49844,67261.0,7944.64,2636.45,77842.09,14378.72,12424.5,6405.89,33209.11,111051.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",9177,82535.0,16.05,7367.8,89918.85,18330.21,12424.5,7100.98,37855.69,127774.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,13415,61953.64,0.0,557.55,62511.19,12862.04,11304.51,4825.22,28991.77,91502.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,12143,24.21,0.0,0.0,24.21,4.51,2.99,2.04,9.54,33.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,42130,70954.01,1817.83,4534.88,77306.72,14148.57,9079.45,6102.89,29330.91,106637.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29227,97045.23,17159.6,12367.53,126572.36,26604.28,12335.92,2153.73,41093.93,167666.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,27869,60448.01,0.0,1560.0,62008.01,13354.16,11468.76,4630.01,29452.93,91460.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,2894,59602.4,12885.73,7432.04,79920.17,14310.27,12424.5,6362.56,33097.33,113017.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,46053,17071.42,0.0,0.0,17071.42,0.0,0.0,1349.84,1349.84,18421.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,17498,35538.0,1966.17,0.0,37504.17,6613.6,5256.53,2987.29,14857.42,52361.59 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,35809,3446.0,0.0,0.0,3446.0,889.06,955.72,281.3,2126.08,5572.08 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,20295,97056.01,3743.92,8712.98,109512.91,25718.04,12333.83,1860.95,39912.82,149425.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3765,68478.8,10932.03,2250.67,81661.5,19402.29,13498.51,6118.57,39019.37,120680.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48035,119465.07,24301.99,2654.63,146421.69,23629.34,12424.5,2439.34,38493.18,184914.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,48564,33695.0,0.0,0.0,33695.0,6270.65,4061.86,2254.88,12587.39,46282.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27252,119467.42,1725.51,11438.24,132631.17,23620.99,12424.5,2173.62,38219.11,170850.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,34876,9726.89,0.0,0.0,9726.89,0.0,2941.86,753.06,3694.92,13421.81 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,52819,74248.81,0.0,4431.0,78679.81,15309.33,12424.5,6529.69,34263.52,112943.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",1435,22058.73,0.0,0.0,22058.73,0.0,5232.63,1709.28,6941.91,29000.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30998,43039.11,4210.4,1412.3,48661.81,11538.19,13102.42,3728.8,28369.41,77031.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,4562,28725.0,0.0,0.0,28725.0,5345.71,3822.92,2275.15,11443.78,40168.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17191,72082.86,17748.2,4966.95,94798.01,21119.86,14208.56,7364.56,42692.98,137490.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,35517,145200.01,0.0,0.0,145200.01,29221.73,12424.5,10276.83,51923.06,197123.07 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,40534,3851.26,0.0,0.0,3851.26,0.0,1164.79,298.17,1462.96,5314.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24034,28790.03,0.0,0.0,28790.03,0.0,4157.43,2232.71,6390.14,35180.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",3871,93738.0,5337.0,5265.44,104340.44,19818.36,12424.5,8579.69,40822.55,145162.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33962,137844.13,7787.5,58589.58,204221.21,25149.57,11329.6,11057.16,47536.33,251757.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38118,5110.53,41.33,147.53,5299.39,0.0,2216.11,425.79,2641.9,7941.29 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8146,District Attry's Investigator,29959,88146.02,0.0,5288.75,93434.77,21115.77,10022.21,409.23,31547.21,124981.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,50453,30582.0,0.0,0.0,30582.0,6293.54,6212.25,2577.84,15083.63,45665.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27361,71.63,0.0,5.73,77.36,0.0,17.92,5.99,23.91,101.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41187,9774.22,0.0,170.7,9944.92,0.0,4176.54,794.53,4971.07,14915.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",41429,96993.42,14517.36,3719.94,115230.72,20296.0,12424.5,9389.27,42109.77,157340.49 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,3569,74412.03,0.0,5055.0,79467.03,15474.54,12424.5,7143.42,35042.46,114509.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25494,75550.31,0.0,80.0,75630.31,15561.51,12424.5,6014.64,34000.65,109630.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,37895,36650.08,0.0,0.0,36650.08,9047.44,9019.71,2962.96,21030.11,57680.19 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,47307,2099.5,711.61,242.25,3053.36,0.0,621.23,236.99,858.22,3911.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,25455,45402.3,0.0,6343.09,51745.39,11921.88,12424.5,4131.89,28478.27,80223.66 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,28381,133087.01,0.0,0.0,133087.01,26783.95,12424.5,10060.61,49269.06,182356.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,34377,23090.0,0.0,0.0,23090.0,5179.1,4778.67,1883.79,11841.56,34931.56 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,49407,6369.71,0.0,3680.14,10049.85,0.0,0.0,145.72,145.72,10195.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3594,11384.4,0.0,0.0,11384.4,0.0,4874.23,921.44,5795.67,17180.07 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4982,6699.0,0.0,136.5,6835.5,251.93,2858.24,548.16,3658.33,10493.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,25692,49083.71,0.0,0.0,49083.71,10121.19,9927.66,3696.52,23745.37,72829.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,31917,252.1,0.0,0.0,252.1,46.92,0.0,144.78,191.7,443.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,3135,32017.44,0.0,0.0,32017.44,0.0,4178.63,2481.91,6660.54,38677.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,26693,84290.68,0.0,949.98,85240.66,17588.7,12196.26,6779.7,36564.66,121805.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33890,72664.27,11005.79,6108.81,89778.87,15970.8,15052.75,1449.5,32473.05,122251.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,45782,85221.0,31726.89,6925.59,123873.48,18719.73,12424.49,9679.38,40823.6,164697.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26767,45950.42,0.0,1495.22,47445.64,0.0,0.0,3752.86,3752.86,51198.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,30847,130728.03,0.0,0.0,130728.03,26273.77,12424.51,9981.32,48679.6,179407.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,5398,80949.9,3628.22,2455.14,87033.26,16584.79,12424.5,3296.29,32305.58,119338.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,48451,14935.5,0.0,71.98,15007.48,0.0,4965.35,1163.22,6128.57,21136.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41571,42797.46,0.0,4844.37,47641.83,11121.77,11343.33,3600.17,26065.27,73707.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33120,138629.29,14867.95,4936.94,158434.18,27417.19,12424.5,2691.86,42533.55,200967.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,7620,6945.0,0.0,0.0,6945.0,0.0,2765.65,539.05,3304.7,10249.7 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23726,17486.05,0.0,131.85,17617.9,4545.41,4563.6,1437.42,10546.43,28164.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,42701,43594.0,2733.24,31.06,46358.3,8201.43,6212.25,3634.83,18048.51,64406.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31203,10490.2,333.38,0.0,10823.58,0.0,2819.41,840.08,3659.49,14483.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,22757,89028.05,0.0,0.0,89028.05,18349.05,12424.49,7134.61,37908.15,126936.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,39458,63887.02,6506.58,101.21,70494.81,13188.5,12424.5,5528.73,31141.73,101636.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,37160,112577.08,40846.36,18322.05,171745.49,24923.56,14766.03,2912.33,42601.92,214347.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,42615,21535.02,0.0,0.0,21535.02,4007.69,3822.92,1741.52,9572.13,31107.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,47497,106953.0,19779.54,1912.6,128645.14,22054.63,12424.5,9882.32,44361.45,173006.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,9567,41572.71,0.0,0.0,41572.71,9324.76,5399.88,3367.1,18091.74,59664.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,38165,136404.44,0.0,0.0,136404.44,27469.3,12424.5,10136.49,50030.29,186434.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,14863,49083.11,1865.31,1080.0,52028.42,10211.28,10990.9,4210.15,25412.33,77440.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,51095,102019.06,0.0,0.0,102019.06,21026.29,12424.5,8387.24,41838.03,143857.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,22.0,"Prof & Tech Engineers - Personnel, Local 21",1500,Administrative Secretarial,1543,"Secretary, Comm On The Environ",30194,9590.0,0.0,0.0,9590.0,1784.7,1194.67,740.66,3720.03,13310.03 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),50758,184289.0,0.0,1562.5,185851.5,37402.56,12424.5,10948.78,60775.84,246627.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1927,99317.0,456.31,24443.39,124216.7,23310.21,8525.3,9847.49,41683.0,165899.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,9381,8570.21,0.0,0.0,8570.21,1922.31,1744.21,710.35,4376.87,12947.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35393,119461.66,16383.54,6268.09,142113.29,23641.93,12424.5,2326.73,38393.16,180506.45 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,17683,52793.5,0.0,581.41,53374.91,11237.17,8798.71,4304.76,24340.64,77715.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,39040,48272.41,2635.8,4900.3,55808.51,12127.03,12424.5,4465.17,29016.7,84825.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14943,39033.52,0.0,7.65,39041.17,0.0,3021.79,655.25,3677.04,42718.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,41364,117135.29,32267.56,14651.16,164054.01,23184.68,12424.5,2777.39,38386.57,202440.58 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,25898,67911.04,14111.78,4863.57,86886.39,14412.24,12424.5,6881.84,33718.58,120604.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50356,13369.5,36.37,0.0,13405.87,2972.33,2867.19,1014.12,6853.64,20259.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6281,Fire Safety Inspector 2,28558,135109.0,34499.12,8106.54,177714.66,28837.04,12424.5,10822.44,52083.98,229798.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,1819,116937.28,0.0,250.0,117187.28,23487.98,12287.11,9797.64,45572.73,162760.01 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8228,Museum Sec Supv,10410,64676.05,2052.26,1973.98,68702.29,13551.22,12424.5,5467.01,31442.73,100145.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50898,51956.4,742.35,3903.82,56602.57,13036.45,12424.5,4576.97,30037.92,86640.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,27760,118104.03,0.0,0.0,118104.03,23768.42,12424.5,9646.33,45839.25,163943.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44182,30916.3,279.34,353.86,31549.5,7542.36,6136.33,2375.45,16054.14,47603.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,42459,81157.0,7451.11,6715.26,95323.37,17273.48,12424.5,7464.46,37162.44,132485.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14925,121201.19,22.25,273.74,121497.18,20146.02,11976.5,8181.94,40304.46,161801.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5013,97584.21,9573.23,11041.94,118199.38,26438.8,12400.61,2011.31,40850.72,159050.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",29428,131564.81,3968.0,23743.91,159276.72,29394.36,15196.12,2668.71,47259.19,206535.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10521,113233.59,8364.15,21044.37,142642.11,25481.14,15196.11,2375.28,43052.53,185694.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,47947,80988.72,0.0,1341.48,82330.2,16960.76,12398.58,7154.73,36514.07,118844.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,39573,57721.74,0.0,0.0,57721.74,12903.13,12424.5,4650.24,29977.87,87699.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48976,23793.41,0.0,3924.92,27718.33,0.0,2096.63,2145.96,4242.59,31960.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,40209,90719.6,0.0,0.0,90719.6,18668.98,12424.5,7524.98,38618.46,129338.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,14920,55240.25,170.86,1581.71,56992.82,11452.24,11697.31,4453.92,27603.47,84596.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,38746,73788.01,0.0,0.0,73788.01,14246.61,8123.71,5785.4,28155.72,101943.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,37299,64417.33,0.0,0.0,64417.33,13323.09,11898.85,4889.96,30111.9,94529.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17577,138635.32,18578.53,10145.89,167359.74,27395.36,12424.5,2709.5,42529.36,209889.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,31955,53407.55,0.0,5364.19,58771.74,11495.01,11733.81,4816.04,28044.86,86816.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",20005,33783.6,0.0,884.32,34667.92,0.0,5495.46,2686.3,8181.76,42849.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,6065,39756.02,0.0,16868.14,56624.16,8985.27,5734.39,4598.3,19317.96,75942.12 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",14655,69419.0,51288.52,6553.41,127260.93,17326.43,12424.5,2382.43,32133.36,159394.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,52841,15392.0,255.58,796.15,16443.73,2927.36,2484.9,1380.26,6792.52,23236.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,24333,44688.0,4468.8,0.0,49156.8,10023.48,5734.39,3977.45,19735.32,68892.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,3787,58294.1,0.0,0.0,58294.1,0.0,0.0,5019.74,5019.74,63313.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,31804,83699.04,4479.99,1244.61,89423.64,17250.56,12424.5,7343.98,37019.04,126442.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,30240,97934.03,0.0,624.0,98558.03,20324.34,12424.5,8173.79,40922.63,139480.66 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,42379,16705.66,0.0,0.0,16705.66,0.0,1968.21,1293.36,3261.57,19967.23 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,12231,119066.05,37475.43,22330.6,178872.08,34389.46,12424.5,3051.76,49865.72,228737.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,3476,63913.86,32667.35,6952.24,103533.45,13963.99,11896.64,8213.84,34074.47,137607.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9138,119320.9,5307.59,2489.82,127118.31,23602.59,0.0,2046.89,25649.48,152767.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,17202,56276.03,306.04,3484.45,60066.52,13370.48,12424.5,4935.71,30730.69,90797.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,17697,75748.01,0.0,2355.42,78103.43,16078.0,12424.5,6264.59,34767.09,112870.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,12923,32225.81,2807.72,437.85,35471.38,7228.23,5256.51,2730.23,15214.97,50686.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,32227,1994.0,0.0,0.0,1994.0,0.0,477.86,154.77,632.63,2626.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,40625,90606.9,13019.6,4008.25,107634.75,19240.24,12424.5,8571.8,40236.54,147871.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,32320,112209.01,0.0,0.0,112209.01,22582.31,12424.5,8823.21,43830.02,156039.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,37516,126427.43,19227.18,7585.65,153240.26,26803.5,10513.04,2548.86,39865.4,193105.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,4941,126769.07,0.0,0.0,126769.07,25214.45,10990.9,9897.29,46102.64,172871.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,42224,5780.0,0.0,0.0,5780.0,1075.66,955.74,446.78,2478.18,8258.18 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,14796,112209.1,0.0,0.0,112209.1,22582.32,12424.5,8908.51,43915.33,156124.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,22589,145200.05,0.0,0.0,145200.05,29221.74,12424.51,10210.74,51856.99,197057.04 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,29814,4674.0,0.0,0.0,4674.0,869.84,955.74,362.59,2188.17,6862.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,1983,145200.03,0.0,0.0,145200.03,29221.73,12424.51,10246.24,51892.48,197092.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49093,112108.33,3449.17,18686.95,134244.45,24764.36,15044.4,2240.67,42049.43,176293.88 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,26289,98300.55,0.0,0.0,98300.55,20237.43,12424.5,7859.36,40521.29,138821.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23780,80949.91,7642.3,4638.31,93230.52,16730.82,12424.5,1553.91,30709.23,123939.75 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,30490,56276.01,0.0,624.0,56900.01,12731.53,12424.5,4464.3,29620.33,86520.34 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,2488,36045.68,0.0,0.0,36045.68,7747.19,5548.86,2874.44,16170.49,52216.17 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,16560,74412.01,0.0,5055.0,79467.01,15474.52,12424.5,6592.17,34491.19,113958.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,42545,79722.0,4456.24,526.0,84704.24,16539.82,12424.49,6538.68,35502.99,120207.23 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,2884,16086.76,729.6,0.0,16816.36,0.0,3843.83,1303.83,5147.66,21964.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,47635,23342.06,0.0,325.08,23667.14,5719.09,5770.77,1896.12,13385.98,37053.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48951,5636.38,0.0,0.0,5636.38,0.0,1660.58,437.47,2098.05,7734.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,37869,97934.0,0.0,0.0,97934.0,20184.94,12424.5,8072.67,40682.11,138616.11 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,39414,67003.92,0.0,1420.0,68423.92,14106.72,12376.71,5563.74,32047.17,100471.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39322,10740.17,0.0,214.04,10954.21,0.0,3567.08,849.28,4416.36,15370.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,13352,12355.47,0.0,214.71,12570.18,0.0,4103.69,971.95,5075.64,17645.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2689,66739.97,4538.86,1301.29,72580.12,18631.11,13153.85,5653.98,37438.94,110019.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,5343,4480.8,0.0,114.82,4595.62,0.0,0.0,363.06,363.06,4958.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,48789,22326.2,0.0,560.0,22886.2,0.0,5973.32,1774.74,7748.06,30634.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,13079,53805.0,1283.31,4690.77,59779.08,13505.76,12424.5,4784.52,30714.78,90493.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,42220,73406.0,317.47,1400.8,75124.27,15278.2,12424.5,6019.31,33722.01,108846.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,39809,96254.01,0.0,0.0,96254.01,19838.22,12424.5,7586.12,39848.84,136102.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,32788,56531.0,0.0,1630.89,58161.89,11986.66,12424.5,4812.39,29223.55,87385.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,46081,129895.0,0.0,0.0,129895.0,26141.48,12424.5,9924.55,48490.53,178385.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,44770,138646.5,0.0,2720.16,141366.66,28427.75,12424.45,10183.5,51035.7,192402.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22550,2207.8,0.0,118.28,2326.08,1107.85,167.25,109.74,1384.84,3710.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16669,132115.28,0.0,13027.32,145142.6,27540.32,11010.02,10171.52,48721.86,193864.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",24233,91227.97,0.0,2905.19,94133.16,19367.78,12149.37,7756.25,39273.4,133406.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5130,Sewage Treatment Plant Supt,35751,136850.61,0.0,0.0,136850.61,27553.97,12370.71,10115.78,50040.46,186891.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38328,56531.0,0.0,0.0,56531.0,11651.3,12424.5,4642.99,28718.79,85249.79 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),11288,96999.03,0.0,5819.94,102818.97,20450.87,10990.9,1625.19,33066.96,135885.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,88,48238.6,1411.81,1426.15,51076.56,11535.06,12185.57,3875.84,27596.47,78673.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,30786,84261.4,0.0,2608.93,86870.33,17865.69,12424.5,6766.09,37056.28,123926.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14772,549.13,0.0,3.82,552.95,0.0,137.39,42.85,180.24,733.19 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,11459,95301.0,0.0,0.0,95301.0,18280.38,8123.71,6472.81,32876.9,128177.9 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,49053,110555.5,0.0,14085.7,124641.2,14857.53,10611.6,9677.86,35146.99,159788.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3260,Crafts Instructor,34201,2124.16,0.0,256.77,2380.93,0.0,0.0,187.51,187.51,2568.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,24333,61044.0,14338.94,0.0,75382.94,11382.37,6690.11,5834.45,23906.93,99289.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,51616,0.0,0.0,55.59,55.59,0.0,0.0,4.26,4.26,59.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45238,56531.0,0.0,4087.32,60618.32,13358.83,12424.5,4463.55,30246.88,90865.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,4514,66580.0,2884.66,2819.96,72284.62,13722.34,12424.5,5942.61,32089.45,104374.07 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,9857,7334.8,1860.89,127.71,9323.4,0.0,1815.89,756.63,2572.52,11895.92 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,51151,97767.36,6135.68,15899.01,119802.05,27546.77,12424.5,2038.22,42009.49,161811.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37435,69839.44,0.0,16599.07,86438.51,15494.66,6872.6,6834.51,29201.77,115640.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50389,11409.25,0.0,210.93,11620.18,0.0,4886.17,947.22,5833.39,17453.57 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,10468,82410.27,0.0,0.0,82410.27,16973.63,12158.7,6556.1,35688.43,118098.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19498,6887.5,0.0,209.6,7097.1,0.0,2986.66,564.4,3551.06,10648.16 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,39618,20399.2,0.0,0.0,20399.2,2607.0,4109.64,1615.41,8332.05,28731.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52871,8970.75,0.0,142.26,9113.01,0.0,3431.66,706.54,4138.2,13251.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,6360,112776.0,980.34,1632.0,115388.34,22709.46,12424.5,9287.74,44421.7,159810.04 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,51340,98157.0,0.0,0.0,98157.0,20230.58,12424.5,7729.78,40384.86,138541.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47895,63766.91,3590.91,718.47,68076.29,17621.8,12563.56,5193.99,35379.35,103455.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,43516,99208.6,0.0,0.0,99208.6,20474.46,12257.23,7902.0,40633.69,139842.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,3161,58452.0,4683.33,7197.16,70332.49,12792.83,8840.51,5601.93,27235.27,97567.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,30012,102019.02,0.0,0.0,102019.02,21026.28,12424.5,8029.83,41480.61,143499.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6249,Senior Electrical Inpsector,32006,67302.01,23432.64,1346.04,92080.69,12759.87,6690.11,5203.31,24653.29,116733.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,5437,101276.0,57369.22,5900.73,164545.95,21633.23,12424.5,10541.32,44599.05,209145.0 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28628,138240.31,0.0,1500.0,139740.31,28116.87,12424.5,10202.48,50743.85,190484.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2273,117124.06,6479.92,7535.23,131139.21,23225.7,12424.51,2223.13,37873.34,169012.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,10135,25751.35,0.0,55.0,25806.35,5788.39,4408.31,2123.49,12320.19,38126.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",44554,275.0,0.0,0.0,275.0,0.0,65.71,21.31,87.02,362.02 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,39716,146362.26,0.0,0.0,146362.26,29513.16,12376.71,10251.27,52141.14,198503.4 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,24401,75028.0,0.0,624.0,75652.0,15592.37,12424.5,6220.96,34237.83,109889.83 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,45864,20046.6,0.0,0.0,20046.6,3634.45,2054.82,1543.86,7233.13,27279.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,24059,101531.06,0.0,0.0,101531.06,20926.04,12424.51,8223.68,41574.23,143105.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,24315,0.0,0.0,21951.38,21951.38,0.0,68.5,1679.29,1747.79,23699.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11006,41893.21,2475.47,2837.61,47206.29,11612.13,13041.31,3570.52,28223.96,75430.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,50094,53156.95,3943.73,1511.94,58612.62,11919.82,10327.85,4740.43,26988.1,85600.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9300,Port Operation,9377,"Feasibility Analyst, Port",11656,108919.68,0.0,0.0,108919.68,22471.59,12424.5,8870.9,43766.99,152686.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,701,61735.0,14804.81,390.55,76930.36,12729.03,12424.5,6270.36,31423.89,108354.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42499,3359.4,0.0,559.9,3919.3,0.0,286.72,234.95,521.67,4440.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,29156,11553.0,0.0,0.0,11553.0,2150.01,1433.59,841.31,4424.91,15977.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,50130,3988.0,0.0,0.0,3988.0,0.0,955.73,307.37,1263.1,5251.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,48122,32849.4,4.84,406.74,33260.98,7207.15,5065.37,2472.27,14744.79,48005.77 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8602,Emergency Services Coord II,38551,59822.5,2989.91,8040.76,70853.17,12651.14,9796.24,5672.73,28120.11,98973.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,21640,82254.38,242.55,600.0,83096.93,17046.89,12078.07,6732.23,35857.19,118954.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10768,70245.0,18688.95,7419.64,96353.59,14915.03,12424.5,7871.99,35211.52,131565.11 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,19165,65774.0,0.0,0.0,65774.0,13556.27,12424.5,5080.62,31061.39,96835.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14357,1319.15,0.0,39.32,1358.47,0.0,561.49,105.43,666.92,2025.39 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,1281,64865.19,0.0,0.0,64865.19,13081.32,3906.55,5028.18,22016.05,86881.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5400,Community Development,5408,Coord Of Citizen Involvement,41171,112146.14,0.0,2629.11,114775.25,22569.26,12424.5,9308.42,44302.18,159077.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27277,73045.95,2271.68,17189.82,92507.45,0.0,5590.97,2605.45,8196.42,100703.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,50615,79936.21,7865.8,8551.62,96353.63,17428.59,12448.4,1607.0,31483.99,127837.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5944,18624.86,520.41,980.1,20125.37,0.0,0.0,909.16,909.16,21034.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,43031,91189.11,0.0,0.0,91189.11,18816.11,12281.15,7499.33,38596.59,129785.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,15900,12648.0,0.0,140.27,12788.27,2868.41,1911.46,1028.21,5808.08,18596.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44677,23515.74,2813.71,1252.49,27581.94,6690.85,7423.05,2249.47,16363.37,43945.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,31371,84092.92,25887.36,18099.24,128079.52,20319.0,12424.5,9845.88,42589.38,170668.9 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,43560,185448.14,0.0,0.0,185448.14,37321.67,12424.5,19251.39,68997.56,254445.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",37230,93281.04,0.0,624.0,93905.04,19354.57,12424.5,7431.62,39210.69,133115.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34255,94565.2,10172.84,4831.88,109569.92,19637.87,12424.5,1820.61,33882.98,143452.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46159,29377.92,3838.93,574.59,33791.44,7613.91,9154.22,2549.43,19317.56,53109.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,35257,71941.01,0.0,8316.42,80257.43,15933.85,11775.5,7222.53,34931.88,115189.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37615,48542.31,3175.72,2432.22,54150.25,13069.88,11316.33,4120.31,28506.52,82656.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",19627,84741.0,0.0,0.0,84741.0,15363.55,5734.39,10359.39,31457.33,116198.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45318,119644.44,1637.64,17941.2,139223.28,25532.69,10925.79,10040.57,46499.05,185722.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38135,123869.25,2007.35,30217.77,156094.37,30437.47,10969.41,10389.77,51796.65,207891.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7488,Power Generation Supervisor,24436,127731.91,12935.94,9698.3,150366.15,26755.69,12012.34,10288.63,49056.66,199422.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2738,Porter Assistant Supervisor,38686,61949.31,11714.0,7107.27,80770.58,13851.24,12376.71,6570.65,32798.6,113569.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,5097,80878.53,0.0,38184.37,119062.9,19550.29,6451.2,9517.2,35518.69,154581.59 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,48240,7171.3,0.0,131.0,7302.3,1605.77,2126.5,585.68,4317.95,11620.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,27613,61735.01,0.0,0.0,61735.01,12724.0,12424.5,5124.44,30272.94,92007.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1664,Patient Accounts Manager,28767,100341.0,0.0,0.0,100341.0,20680.94,12424.5,8745.95,41851.39,142192.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37387,15160.18,0.0,30.25,15190.43,0.0,5041.49,1177.65,6219.14,21409.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1440,Medical Transcriber Typist,37872,65592.01,0.0,624.0,66216.01,13647.34,12424.5,5437.67,31509.51,97725.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,13811,27507.62,3592.56,15101.32,46201.5,6183.98,3870.71,3678.16,13732.85,59934.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,26790,105363.01,0.0,0.0,105363.01,21727.62,12424.5,8441.9,42594.02,147957.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7200,Supervisory-Labor & Trade,7251,Track Maint Wrk Sprv 1,2489,63747.41,26095.83,377.02,90220.26,13048.67,10990.91,7099.35,31138.93,121359.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21860,18356.02,0.0,1068.25,19424.27,1801.59,7957.06,1571.86,11330.51,30754.78 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,29940,98157.0,0.0,0.0,98157.0,20230.58,12424.5,7955.69,40610.77,138767.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52772,1950.3,0.0,32.51,1982.81,0.0,0.0,-0.01,-0.01,1982.8 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,51050,68024.51,0.0,1858.62,69883.13,14179.19,11229.84,5542.06,30951.09,100834.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,4572,69800.17,0.0,0.0,69800.17,10889.92,11866.77,5648.83,28405.52,98205.69 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,35336,93322.91,8731.71,9334.88,111389.5,20450.13,12376.71,8880.14,41706.98,153096.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51160,9023.91,0.0,476.04,9499.95,108.94,0.0,368.09,477.03,9976.98 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,19187,40522.0,0.0,0.0,40522.0,7895.45,7645.84,3235.66,18776.95,59298.95 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,28119,61258.65,0.0,0.0,61258.65,12637.23,4907.5,13490.18,31034.91,92293.56 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1250,Recruiter,47713,36821.0,0.0,0.0,36821.0,6852.38,4922.02,2800.82,14575.22,51396.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,19526,92282.02,0.0,30.0,92312.02,19025.48,12424.5,7615.1,39065.08,131377.1 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,18854,7776.79,329.25,263.4,8369.44,0.0,2153.38,649.61,2802.99,11172.43 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39689,25882.5,0.0,0.0,25882.5,5839.5,6929.05,2099.05,14867.6,40750.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,45145,20026.52,0.0,0.0,20026.52,5166.85,6056.94,1588.18,12811.97,32838.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52355,112159.75,32592.35,17498.61,162250.71,24605.61,15052.77,2720.24,42378.62,204629.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,28196,92171.99,0.0,616.55,92788.54,19115.12,12276.12,7501.82,38893.06,131681.6 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,3062,52001.5,0.0,900.0,52901.5,10542.68,9019.71,4237.89,23800.28,76701.78 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,1967,67582.4,10329.31,10035.79,87947.5,15143.96,12364.77,7217.92,34726.65,122674.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,12632,58938.01,9371.73,10228.2,78537.94,14432.18,9079.45,6231.9,29743.53,108281.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",20336,132236.91,76544.84,7934.21,216715.96,27854.62,10990.91,3751.58,42597.11,259313.07 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0903,Mayoral Staff XV,7443,119698.31,0.0,0.0,119698.31,24089.41,12424.49,26629.17,63143.07,182841.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50862,8816.0,0.0,0.0,8816.0,2047.05,3822.92,698.56,6568.53,15384.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33298,97703.0,13629.13,5936.87,117269.0,25231.86,12417.1,1950.91,39599.87,156868.87 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,38462,129308.03,0.0,0.0,129308.03,26023.63,12424.5,10003.12,48451.25,177759.28 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,4630,75657.33,0.0,0.0,75657.33,17447.71,9413.95,880.85,27742.51,103399.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7748,28464.54,4318.22,306.71,33089.47,6908.93,12203.49,2638.2,21750.62,54840.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16059,65416.09,19858.95,2007.25,87282.29,18444.84,12887.67,6605.14,37937.65,125219.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,34218,3041.0,0.0,0.0,3041.0,565.93,477.86,236.02,1279.81,4320.81 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,9076,64511.07,22819.6,2893.35,90224.02,13424.79,12424.5,7132.84,32982.13,123206.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38678,950.3,0.0,12.37,962.67,0.0,513.71,74.53,588.24,1550.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,11560,50142.6,7229.19,3889.26,61261.05,12665.46,11420.99,4915.84,29002.29,90263.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13847,67194.47,2653.76,3375.36,73223.59,19345.67,13245.0,5698.83,38289.5,111513.09 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,15311,40528.28,1079.06,123.95,41731.29,7565.39,5394.26,3254.84,16214.49,57945.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,12056,57958.88,0.0,0.0,57958.88,11972.9,11968.14,4722.81,28663.85,86622.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,23135,70245.01,24652.01,8519.75,103416.77,15627.58,12424.5,8430.88,36482.96,139899.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,7062,63102.0,2888.28,7254.0,73244.28,13908.24,12424.5,5990.68,32323.42,105567.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,45705,76482.08,0.0,0.0,76482.08,15753.75,9967.97,6222.43,31944.15,108426.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,16090,65774.0,3170.53,0.0,68944.53,13556.27,12424.5,5630.67,31611.44,100555.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,27156,121542.6,83500.68,21630.94,226674.22,27772.98,14335.97,3827.37,45936.32,272610.54 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,47645,8670.19,275.15,0.0,8945.34,0.0,2063.79,694.3,2758.09,11703.43 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,18529,65770.81,14273.88,10748.24,90792.93,14627.84,12147.51,7177.46,33952.81,124745.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1305,52539.46,0.0,2535.23,55074.69,0.0,4114.78,4271.2,8385.98,63460.67 +Calendar,2015,1,Public Protection,POL,Police,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),44472,111341.23,0.0,1218.75,112559.98,22420.47,10333.84,9428.93,42183.24,154743.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,12703,83699.01,0.0,0.0,83699.01,17250.56,12424.5,6754.17,36429.23,120128.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,15544,27636.0,129.54,0.0,27765.54,6198.72,5734.39,2288.79,14221.9,41987.44 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,30338,39125.28,4124.73,0.0,43250.01,9543.23,9306.43,3299.93,22149.59,65399.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,6862,43559.51,135.55,180.46,43875.52,7784.18,12088.8,3510.02,23383.0,67258.52 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,38907,88009.0,0.0,0.0,88009.0,18017.97,10751.98,6896.75,35666.7,123675.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,25398,10496.17,0.0,761.54,11257.71,0.0,0.0,890.03,890.03,12147.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,7903,54124.04,2604.25,624.0,57352.29,12250.26,12424.5,4743.52,29418.28,86770.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,6139,82717.04,0.0,0.0,82717.04,17048.47,12424.5,6816.62,36289.59,119006.63 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,6307,104554.26,14773.82,7824.19,127152.27,21946.01,12328.92,9910.69,44185.62,171337.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,48284,99848.02,0.0,10492.01,110340.03,20268.43,9796.24,15889.59,45954.26,156294.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),30444,9717.3,46.32,0.0,9763.62,0.0,2819.4,757.64,3577.04,13340.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,19853,112776.03,0.0,5638.81,118414.84,23831.36,12424.5,9665.92,45921.78,164336.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,39015,76306.02,0.0,0.0,76306.02,15686.4,10259.95,6166.38,32112.73,108418.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,33205,71440.4,18230.08,1693.71,91364.19,14797.11,12424.5,7102.84,34324.45,125688.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16602,0.0,0.0,47511.99,47511.99,0.0,0.0,30.88,30.88,47542.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48669,77071.04,4750.96,2186.03,84008.03,16337.24,12424.5,6872.85,35634.59,119642.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35235,39190.27,8762.47,2929.32,50882.06,12332.43,7788.19,3930.65,24051.27,74933.33 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,36167,86685.03,0.0,0.0,86685.03,17139.42,9557.3,7119.93,33816.65,120501.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,19667,53228.32,1118.64,5630.25,59977.21,11632.4,9031.66,4838.21,25502.27,85479.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,50549,93681.0,0.0,1949.19,95630.19,19711.32,12424.5,7861.1,39996.92,135627.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",40419,0.0,0.0,1088.02,1088.02,0.0,0.0,83.24,83.24,1171.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,10395,67261.12,0.0,2124.0,69385.12,14300.47,12424.5,5494.79,32219.76,101604.88 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,51717,114720.0,0.0,0.0,114720.0,23087.61,12424.49,9283.31,44795.41,159515.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,31904,48325.0,0.0,0.0,48325.0,10839.28,6212.25,3811.78,20863.31,69188.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19553,119302.58,0.0,3874.66,123177.24,24178.38,12422.48,9681.28,46282.14,169459.38 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,41711,42946.36,0.0,666.64,43613.0,8997.46,6307.83,3610.47,18915.76,62528.76 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,29362,3208.44,0.0,0.0,3208.44,581.69,185.17,53.73,820.59,4029.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1453,66862.14,4003.11,7356.19,78221.44,20334.35,13177.5,6097.94,39609.79,117831.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,41346,21080.4,0.0,335.38,21415.78,505.07,3153.91,1658.01,5316.99,26732.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,32265,0.0,0.0,127.52,127.52,0.0,8.56,9.76,18.32,145.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21379,119455.85,1835.37,2595.22,123886.44,23501.44,12424.5,1285.44,37211.38,161097.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7360,Pipe Welder,9285,100761.02,15715.66,0.0,116476.68,20767.03,12424.51,9032.23,42223.77,158700.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,52187,2043.0,0.0,0.0,2043.0,527.09,477.86,156.65,1161.6,3204.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40057,7365.25,484.81,30.09,7880.15,1747.6,2219.99,604.59,4572.18,12452.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",50640,9709.4,0.0,0.0,9709.4,0.0,2054.82,751.7,2806.52,12515.92 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,8587,208032.0,0.0,1500.0,209532.0,42167.46,12424.5,11224.15,65816.11,275348.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,6582,58853.0,0.0,0.0,58853.0,11738.79,9079.44,4761.11,25579.34,84432.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,31294,29600.0,3498.41,3322.89,36421.3,5874.37,4778.65,2927.85,13580.87,50002.17 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,48341,101770.1,0.0,0.0,101770.1,20975.25,12424.5,8194.79,41594.54,143364.64 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,33469,244146.0,0.0,0.0,244146.0,49035.04,12424.5,26878.31,88337.85,332483.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,17663,66102.05,5693.17,2571.05,74366.27,14073.71,12424.5,6094.76,32592.97,106959.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,9207,53756.73,0.0,3234.7,56991.43,11443.25,9318.38,4522.82,25284.45,82275.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44947,63158.24,9335.64,2819.1,75312.98,18131.85,12460.7,5794.62,36387.17,111700.15 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,40325,100554.02,0.0,480.0,101034.02,20824.84,12424.5,8194.76,41444.1,142478.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,46448,117719.93,1243.73,2582.73,121546.39,23279.24,12424.5,2014.43,37718.17,159264.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1691,112690.83,1508.5,7746.84,121946.17,22311.19,12424.5,1915.61,36651.3,158597.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",21119,131577.11,55189.48,20458.85,207225.44,29642.8,15196.12,3535.76,48374.68,255600.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19398,29725.44,0.0,7.0,29732.44,0.0,2562.56,2307.71,4870.27,34602.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12327,96855.7,39493.9,8678.95,145028.55,25666.48,12309.04,2496.17,40471.69,185500.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20470,69882.54,35170.0,9391.48,114444.02,21770.29,13771.01,8846.7,44388.0,158832.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34519,137065.31,2184.98,9894.34,149144.63,27300.27,12241.0,5786.41,45327.68,194472.31 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,33735,101047.03,0.0,0.0,101047.03,20826.04,12424.5,8148.39,41398.93,142445.96 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,28046,13283.73,120.99,0.0,13404.72,0.0,3024.0,1039.11,4063.11,17467.83 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,19854,13653.0,995.96,306.45,14955.41,0.0,3249.49,1160.78,4410.27,19365.68 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,53099,473.51,0.0,0.0,473.51,0.0,0.0,37.51,37.51,511.02 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,51222,19875.74,1916.15,380.85,22172.74,3698.88,3828.9,1757.95,9285.73,31458.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,46092,18169.0,0.0,0.0,18169.0,0.0,2628.25,1427.47,4055.72,22224.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22920,126540.83,0.0,1154.04,127694.87,25616.67,12275.7,9817.8,47710.17,175405.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50108,97766.19,4783.53,9943.7,112493.42,26214.86,12424.5,1903.99,40543.35,153036.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,30116,6345.0,0.0,0.0,6345.0,1423.17,1433.6,521.93,3378.7,9723.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17237,54744.74,6156.51,1640.0,62541.25,12518.87,12214.78,5002.91,29736.56,92277.81 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,32210,84599.06,0.0,2178.89,86777.95,17900.18,12424.5,6953.65,37278.33,124056.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14199,8464.0,0.0,0.0,8464.0,0.0,2198.18,655.28,2853.46,11317.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41663,30652.98,0.0,0.0,30652.98,0.0,0.0,2423.05,2423.05,33076.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,47541,64896.01,18274.14,5562.45,88732.6,14332.58,12376.72,7016.71,33726.01,122458.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46618,112159.76,18772.43,18639.59,149571.78,24822.82,15052.76,2607.41,42482.99,192054.77 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,285C,Court Computer Sys Manager,5318,148382.07,0.0,5282.8,153664.87,29880.6,12424.5,32561.36,74866.46,228531.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18138,122651.56,0.0,33844.13,156495.69,26185.19,10860.68,4446.93,41492.8,197988.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,7872,68067.05,0.0,624.0,68691.05,14150.13,12424.5,5638.53,32213.16,100904.21 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8414,"Sprv Prob Ofc, Juv Court",40234,111091.02,0.0,0.0,111091.02,25340.73,12424.5,285.89,38051.12,149142.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,41840,0.0,0.0,2292.31,2292.31,0.0,68.5,175.9,244.4,2536.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,5417,14526.0,0.0,374.94,14900.94,3207.65,3345.06,1065.21,7617.92,22518.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35039,9197.51,0.0,120.48,9317.99,0.0,3527.25,722.7,4249.95,13567.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24341,107119.17,37946.43,19054.42,164120.02,23804.91,14372.47,2744.14,40921.52,205041.54 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,16376,5758.04,0.0,0.0,5758.04,1291.53,792.96,467.77,2552.26,8310.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,32774,7990.2,0.0,510.58,8500.78,0.0,1669.54,704.64,2374.18,10874.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,45763,84644.0,45427.83,9550.42,139622.25,18296.45,12424.51,10048.51,40769.47,180391.72 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,2398,162176.89,0.0,0.0,162176.89,32598.36,12424.51,17734.63,62757.5,224934.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49512,2944.56,0.0,42.23,2986.79,8012.16,195.92,95.88,8303.96,11290.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,36786,58101.03,0.0,624.0,58725.03,12103.58,12424.5,4574.83,29102.91,87827.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25243,41364.58,4374.71,3663.23,49402.52,13125.83,8226.1,3822.44,25174.37,74576.89 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2558,Senior Physical Therapist,33172,119310.06,0.0,0.0,119310.06,24136.26,11714.87,9596.8,45447.93,164757.99 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,736,9324.0,0.0,0.0,9324.0,1690.44,955.73,711.78,3357.95,12681.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7319,Electric Motor Repairer,19780,84644.07,15506.14,3751.0,103901.21,17593.71,12424.51,8252.1,38270.32,142171.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,50542,16780.3,0.0,0.0,16780.3,3763.83,3345.06,1348.07,8456.96,25237.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38307,56531.0,0.0,6542.9,63073.9,12539.33,12424.5,4912.82,29876.65,92950.55 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,37655,97764.2,2908.8,8769.96,109442.96,25911.39,12424.5,796.97,39132.86,148575.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18832,59641.63,10956.53,6014.49,76612.65,13457.7,10465.26,1275.59,25198.55,101811.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44747,119455.95,31021.34,16259.4,166736.69,23662.82,12424.5,2828.38,38915.7,205652.39 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,4978,25452.0,0.0,909.0,26361.0,6545.78,6690.11,2200.22,15436.11,41797.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,20236,45843.56,4200.76,2351.02,52395.34,9073.72,8583.66,4191.62,21849.0,74244.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3820,55934.0,0.0,7736.4,63670.4,13603.31,12328.92,5107.08,31039.31,94709.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,31309,77367.01,9471.76,0.0,86838.77,16779.72,8123.71,7095.84,31999.27,118838.04 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,20705,95968.01,0.0,0.0,95968.01,19779.21,12424.5,7850.1,40053.81,136021.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2354,6750.8,0.0,250.0,7000.8,1868.84,1330.08,373.05,3571.97,10572.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23267,64951.87,5835.41,584.6,71371.88,14909.42,12798.24,5446.2,33153.86,104525.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,49562,52798.72,1336.6,1260.0,55395.32,12954.53,12424.51,4367.66,29746.7,85142.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29121,55653.4,3918.36,0.0,59571.76,12410.02,12328.92,4753.53,29492.47,89064.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,37937,3964.9,0.0,61.31,4026.21,0.0,1448.53,311.7,1760.23,5786.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51060,3556.25,0.0,0.0,3556.25,0.0,1493.33,283.73,1777.06,5333.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,29094,47894.82,2173.82,1881.88,51950.52,11891.61,11980.55,4060.75,27932.91,79883.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,41359,145659.04,0.0,5236.64,150895.68,30369.53,12424.52,10393.96,53188.01,204083.69 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,44407,15884.8,0.0,0.0,15884.8,2879.9,1624.74,2303.28,6807.92,22692.72 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,27240,28707.67,283.94,2754.16,31745.77,6415.99,6439.24,2548.75,15403.98,47149.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,34040,47571.63,7537.57,3343.68,58452.88,11602.11,12040.71,4447.11,28089.93,86542.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51010,123129.1,1987.59,24318.68,149435.37,24143.42,10903.69,6222.24,41269.35,190704.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,27639,49142.4,0.0,436.31,49578.71,10181.01,9939.6,4093.27,24213.88,73792.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,11296,86268.09,0.0,0.0,86268.09,17822.23,11415.02,7098.81,36336.06,122604.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20187,14869.71,0.0,340.19,15209.9,0.0,4926.03,1179.2,6105.23,21315.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,48190,111563.84,9158.82,11590.31,132312.97,22046.68,12299.06,2207.72,36553.46,168866.43 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,20342,94620.0,15479.24,35637.4,145736.64,19624.03,9557.31,10111.78,39293.12,185029.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,36692,2817.75,0.0,0.0,2817.75,1318.32,0.0,1700.36,3018.68,5836.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33209,110.2,0.0,0.0,110.2,0.0,47.79,8.54,56.33,166.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40030,28889.46,0.0,0.0,28889.46,5815.81,5324.43,2243.29,13383.53,42272.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2469,Diagnostic Imaging Tech III,17388,121456.28,0.0,864.1,122320.38,24531.53,12227.39,9824.46,46583.38,168903.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,24889,3604.0,0.0,0.0,3604.0,670.7,477.86,60.75,1209.31,4813.31 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,39902,67261.0,4475.53,1948.28,73684.81,14237.56,12424.5,6058.16,32720.22,106405.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,11100,15643.56,0.0,0.0,15643.56,0.0,5137.05,1212.14,6349.19,21992.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,8739,51930.81,0.0,0.0,51930.81,10570.24,10494.17,4200.86,25265.27,77196.08 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,50689,49468.76,615.89,0.0,50084.65,11860.08,12376.71,3511.08,27747.87,77832.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,27611,18909.47,0.0,0.0,18909.47,3440.55,0.0,1497.63,4938.18,23847.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,34618,96902.3,0.0,0.0,96902.3,19942.2,12376.71,7853.97,40172.88,137075.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33158,80957.65,1006.95,4510.94,86475.54,16556.63,12424.5,3143.53,32124.66,118600.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30962,124475.15,587.71,14611.11,139673.97,25314.08,10369.57,8710.92,44394.57,184068.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,24112,100761.0,29278.93,3866.83,133906.76,21568.57,12424.51,9972.19,43965.27,177872.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18710,50089.8,7686.55,7068.82,64845.17,12909.26,12424.5,4946.66,30280.42,95125.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,42947,7578.5,1324.43,1556.89,10459.82,1594.32,1099.09,811.48,3504.89,13964.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,12597,64710.31,0.0,1244.98,65955.29,13574.74,12424.5,5465.36,31464.6,97419.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,17882,10011.0,0.0,0.0,10011.0,1863.06,1433.6,776.65,4073.31,14084.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),21816,11858.4,46.32,0.0,11904.72,0.0,3440.63,923.68,4364.31,16269.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5488,12834.0,0.0,272.8,13106.8,0.0,4945.91,1014.73,5960.64,19067.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,51423,6650.0,0.0,0.0,6650.0,1491.6,955.73,518.49,2965.82,9615.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,10079,69585.0,7921.88,4888.5,82395.38,14470.23,12424.5,6739.93,33634.66,116030.04 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,13836,77131.61,0.0,4400.0,81531.61,15206.64,8697.15,6634.9,30538.69,112070.3 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,51433,102019.02,0.0,0.0,102019.02,21026.27,12424.5,8382.66,41833.43,143852.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,9987,195929.08,0.0,0.0,195929.08,39391.8,12424.5,18327.28,70143.58,266072.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,22458,1617.0,0.0,220.99,1837.99,366.11,238.93,144.69,749.73,2587.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,43575,66102.02,236.91,50.0,66388.93,13633.38,12424.5,5107.24,31165.12,97554.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,49120,67261.06,0.0,624.0,67885.06,13991.51,12424.5,5576.19,31992.2,99877.26 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,42148,84973.01,0.0,624.0,85597.01,17641.99,12424.5,6967.37,37033.86,122630.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13039,55584.32,766.24,3213.32,59563.88,12040.34,12215.2,4676.15,28931.69,88495.57 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,9780,35568.2,1528.94,440.0,37537.14,8409.35,8936.08,3040.02,20385.45,57922.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20059,56531.0,0.0,5157.44,61688.44,13331.02,12424.5,4998.37,30753.89,92442.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,10199,0.0,0.0,250.0,250.0,0.0,68.5,19.32,87.82,337.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,25422,84599.0,38898.83,8602.05,132099.88,18493.7,12424.5,9916.62,40834.82,172934.7 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,37914,20141.0,106.36,0.0,20247.36,4428.99,4300.79,1573.83,10303.61,30550.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,45214,22436.09,0.0,5615.86,28051.95,4766.41,4276.6,2372.87,11415.88,39467.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1938,Stores & Equip Asst Sprv,4452,73764.78,19301.08,1305.66,94371.52,15209.51,12423.01,7553.72,35186.24,129557.76 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,7317,67121.41,0.0,6424.36,73545.77,14420.54,12424.5,5957.92,32802.96,106348.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17563,47419.49,0.0,251.97,47671.46,10636.18,5266.5,3931.07,19833.75,67505.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,28312,108038.0,17320.33,4531.02,129889.35,22389.02,12424.5,9949.26,44762.78,174652.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23252,0.0,0.0,70.59,70.59,0.0,0.0,5.4,5.4,75.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,39011,182811.73,0.0,17989.51,200801.24,37949.81,12424.5,513.36,50887.67,251688.91 +Calendar,2015,4,Community Health,DPH,Public Health,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",27366,1196.0,0.0,0.0,1196.0,0.0,0.0,94.6,94.6,1290.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1936,Senior Storekeeper,2919,63102.0,1188.04,4837.14,69127.18,13134.23,12424.5,5710.0,31268.73,100395.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,52067,40239.04,0.0,1158.55,41397.59,8828.46,4300.79,3412.51,16541.76,57939.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19519,61111.95,17492.15,8262.74,86866.84,18819.81,0.0,6830.86,25650.67,112517.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6967,127280.03,26014.09,20815.45,174109.57,28736.25,15196.12,2966.19,46898.56,221008.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,2332,98355.23,0.0,626.7,98981.93,20405.02,12478.26,8105.46,40988.74,139970.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,39118,2868.0,0.0,0.0,2868.0,0.0,955.74,221.22,1176.96,4044.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,29339,8087.97,0.0,61.31,8149.28,0.0,2929.91,631.67,3561.58,11710.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16122,4731.71,0.0,0.0,4731.71,0.0,2051.84,381.48,2433.32,7165.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,13325,54124.01,0.0,936.75,55060.76,12250.24,12424.5,4505.98,29180.72,84241.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,37920,56531.02,0.0,3035.84,59566.86,12205.93,12424.5,5227.61,29858.04,89424.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,50583,74995.58,12368.88,8622.63,95987.09,16392.55,12424.5,7734.17,36551.22,132538.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8604,119455.24,9059.51,4704.75,133219.5,23664.87,12424.5,2170.83,38260.2,171479.7 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28512,56627.0,0.0,375.0,57002.0,10334.46,5734.39,4571.15,20640.0,77642.0 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,23438,85004.0,2253.03,679.54,87936.57,17673.59,12424.5,6700.02,36798.11,124734.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,41800,62187.0,2576.09,4585.61,69348.7,13763.31,12424.5,5472.18,31659.99,101008.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41113,113988.75,2307.86,5424.84,121721.45,22691.28,11858.88,2046.82,36596.98,158318.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,39184,7419.77,0.0,80.0,7499.77,1934.93,1778.92,607.53,4321.38,11821.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27330,42851.02,8371.43,869.31,52091.76,11358.78,13183.47,3875.58,28417.83,80509.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,24728,60428.03,0.0,0.0,60428.03,11078.04,6212.25,4752.81,22043.1,82471.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,19382,10892.7,0.0,0.0,10892.7,0.0,2622.29,848.98,3471.27,14363.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,3240,81942.01,14168.21,17848.86,113959.08,19856.76,12424.5,9249.98,41531.24,155490.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,49654,11553.0,0.0,6505.67,18058.67,2593.58,1433.6,1433.53,5460.71,23519.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,17298,66580.01,2436.48,624.0,69640.49,13851.16,12424.5,5471.57,31747.23,101387.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,363,4921.76,0.0,136.17,5057.93,825.75,1636.68,435.42,2897.85,7955.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,39455,46662.0,143.4,328.72,47134.12,11267.82,12424.5,3831.86,27524.18,74658.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,18449,133087.02,0.0,0.0,133087.02,26783.95,12424.5,10009.77,49218.22,182305.24 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,31180,55763.0,9044.49,1055.59,65863.08,11081.58,8123.71,5230.83,24436.12,90299.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,22952,48541.02,4383.07,2214.24,55138.33,12095.89,11468.75,4430.12,27994.76,83133.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,26514,156746.04,0.0,0.0,156746.04,31545.23,12424.49,10482.82,54452.54,211198.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6815,2842.36,437.93,277.18,3557.47,855.4,565.26,258.78,1679.44,5236.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,35840,83699.0,0.0,624.0,84323.0,17379.24,12424.5,6992.42,36796.16,121119.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,257,1484.46,0.0,35.62,1520.08,0.0,0.0,842.16,842.16,2362.24 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,48577,25226.15,0.0,110.61,25336.76,6077.25,6230.17,2604.35,14911.77,40248.53 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,12841,207864.71,0.0,2700.0,210564.71,41893.07,12209.46,11309.96,65412.49,275977.2 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,37744,160115.01,0.0,31.6,160146.61,32240.74,12424.5,10437.53,55102.77,215249.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11299,20992.03,2934.01,533.57,24459.61,5211.67,6504.9,1851.72,13568.29,38027.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35462,31222.73,9857.3,13024.35,54104.38,9632.93,6209.21,4083.69,19925.83,74030.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,24255,151536.0,0.0,0.0,151536.0,30409.07,12424.5,18839.62,61673.19,213209.19 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,11976,67779.18,1702.94,2527.34,72009.46,14490.49,12400.61,5604.83,32495.93,104505.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",6347,93738.0,23603.64,3586.38,120928.02,19813.65,12424.5,9635.6,41873.75,162801.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7162,6684.71,0.0,14.9,6699.61,0.0,1662.09,519.51,2181.6,8881.21 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,10941,9944.0,0.0,0.0,9944.0,2230.44,1911.46,787.87,4929.77,14873.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,31383,95641.65,0.0,13896.07,109537.72,21669.41,12334.91,8784.71,42789.03,152326.75 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,317,11899.49,0.0,0.0,11899.49,3062.89,3015.03,954.37,7032.29,18931.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,29254,89823.39,0.0,0.0,89823.39,18490.54,12400.61,7123.57,38014.72,127838.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,17487,2124.5,0.0,5716.16,7840.66,503.45,334.51,605.42,1443.38,9284.04 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,45488,154413.38,0.0,0.0,154413.38,31005.91,12424.5,18714.7,62145.11,216558.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,12566,52474.38,123.42,740.0,53337.8,11065.95,11386.1,4302.13,26754.18,80091.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",34682,91332.5,3617.42,2564.49,97514.41,19341.82,12165.39,7918.78,39425.99,136940.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,10391,23408.2,9711.88,2694.92,35815.0,5881.28,6283.93,2809.84,14975.05,50790.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29075,43604.71,3407.87,2104.3,49116.88,11879.98,13287.7,3632.13,28799.81,77916.69 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,40543,48818.64,16230.74,1820.25,66869.63,10944.18,10638.97,5365.25,26948.4,93818.03 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,10170,403.76,370.95,0.0,774.71,0.0,119.47,60.13,179.6,954.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16987,77071.0,16720.07,2104.0,95895.07,16317.81,12424.5,7829.96,36572.27,132467.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,6456,57502.8,451.77,5496.47,63451.04,13789.94,12412.55,5138.75,31341.24,94792.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,40463,100761.06,0.0,1540.0,102301.06,21087.24,12424.5,8403.23,41914.97,144216.03 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,48229,7322.72,0.0,0.0,7322.72,0.0,0.0,579.21,579.21,7901.93 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,25672,56276.02,0.0,960.0,57236.02,12802.1,12424.5,4490.88,29717.48,86953.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,25532,62540.89,25.55,9614.36,72180.8,14218.84,12370.74,5950.28,32539.86,104720.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1198,108749.86,16593.52,11688.2,137031.58,23835.03,15052.76,2279.96,41167.75,178199.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,42326,166091.61,0.0,6789.01,172880.62,34796.63,12418.53,10681.13,57896.29,230776.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,40158,105390.49,0.0,0.0,105390.49,21639.9,11511.06,8111.86,41262.82,146653.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6860,21209.88,3173.87,1044.08,25427.83,5384.94,6570.94,1926.12,13882.0,39309.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37051,65937.73,6969.84,2226.75,75134.32,18655.14,12994.3,5602.36,37251.8,112386.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,50292,84248.4,0.0,0.0,84248.4,17357.45,12424.49,6481.24,36263.18,120511.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,10425,41044.86,2760.28,2202.87,46008.01,9284.17,5256.52,763.05,15303.74,61311.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27828,26714.41,2528.34,4993.21,34235.96,5885.23,2658.12,79.97,8623.32,42859.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,3701,5780.0,0.0,0.0,5780.0,1075.66,955.73,446.78,2478.17,8258.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,40407,56531.0,352.48,5910.12,62793.6,12302.13,12424.5,5183.29,29909.92,92703.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9181,"Manager VII, MTA",12545,150160.02,0.0,0.0,150160.02,30621.98,10990.9,16677.82,58290.7,208450.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2393,832.3,0.0,876.37,1708.67,204.76,360.91,139.12,704.79,2413.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,17343,8696.49,0.0,61.31,8757.8,0.0,0.0,692.61,692.61,9450.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36598,119581.81,1052.8,5197.36,125831.97,24846.13,12252.48,9605.56,46704.17,172536.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,38951,87531.1,0.0,624.0,88155.1,18166.1,12424.5,7265.6,37856.2,126011.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,33993,67650.0,420.0,0.0,68070.0,13841.1,11468.77,5475.06,30784.93,98854.93 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,37134,3657.0,0.0,0.0,3657.0,0.0,1335.04,295.03,1630.07,5287.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,45404,108038.0,30003.3,6019.09,144060.39,22314.82,12424.5,10163.5,44902.82,188963.21 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,4775,199264.75,0.0,0.0,199264.75,40088.79,10871.44,11021.74,61981.97,261246.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),33568,11034.9,92.64,0.0,11127.54,0.0,3201.71,863.67,4065.38,15192.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,26545,0.0,0.0,91.63,91.63,0.0,34.25,7.01,41.26,132.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14563,97741.72,10842.87,27797.24,136381.83,30539.02,12421.52,2322.28,45282.82,181664.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17441,119461.69,2423.06,5029.68,126914.43,23641.93,12424.5,2105.78,38172.21,165086.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,40343,79395.07,0.0,136.0,79531.07,16386.23,12424.51,6524.58,35335.32,114866.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",35834,169058.11,0.0,0.0,169058.11,34026.4,12413.87,17926.37,64366.64,233424.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31749,9832.29,437.24,54.27,10323.8,2361.52,3008.89,738.41,6108.82,16432.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,29848,68067.03,0.0,595.0,68662.03,14160.35,12424.5,5656.68,32241.53,100903.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,39673,178851.8,0.0,0.0,178851.8,35993.81,12424.5,17960.64,66378.95,245230.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H006,"Invstgtor,Fire Dept",10342,15446.74,85.28,1930.84,17462.86,3067.14,1720.32,292.61,5080.07,22542.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34896,113233.61,47518.57,20411.77,181163.95,25816.87,15196.12,3034.61,44047.6,225211.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43416,114607.32,0.0,5079.49,119686.81,24025.81,12344.93,9649.18,46019.92,165706.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3792,11040.88,0.0,88.68,11129.56,0.0,4242.56,862.98,5105.54,16235.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,30131,85368.04,0.0,624.0,85992.04,17723.29,12424.5,7079.18,37226.97,123219.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,42332,74992.2,0.0,623.7,75615.9,15580.12,12418.53,6224.9,34223.55,109839.45 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,20293,48964.05,0.0,0.0,48964.05,10559.71,10035.17,3880.88,24475.76,73439.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,23984,6345.0,0.0,0.0,6345.0,1423.17,1433.6,497.02,3353.79,9698.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,3468,78659.02,0.0,0.0,78659.02,16177.34,12424.5,6243.61,34845.45,113504.47 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,53111,63554.56,0.0,528.0,64082.56,13446.37,0.0,5334.32,18780.69,82863.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,10732,67261.02,0.0,1831.69,69092.71,14240.25,12424.5,5430.64,32095.39,101188.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20803,57878.21,9340.94,599.57,67818.72,13385.62,11386.46,4921.0,29693.08,97511.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,329,30152.0,453.86,452.0,31057.86,6368.09,3822.91,2570.24,12761.24,43819.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,46411,82883.0,0.0,1086.0,83969.0,17294.15,12424.5,6668.49,36387.14,120356.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,67,76770.55,0.0,0.0,76770.55,15799.51,12424.5,6023.57,34247.58,111018.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20227,144706.01,0.0,753.28,145459.29,29213.42,12424.5,10136.36,51774.28,197233.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10930,91750.96,5279.89,18298.48,115329.33,18704.38,9557.31,1891.57,30153.26,145482.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,19814,53484.4,17676.23,7090.5,78251.13,10887.88,6690.11,5162.77,22740.76,100991.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,20747,80957.66,3711.26,5400.34,90069.26,16693.34,12424.51,1697.89,30815.74,120885.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15060,0.0,0.0,15959.45,15959.45,0.0,0.0,-577.34,-577.34,15382.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15202,11697.5,0.0,222.48,11919.98,0.0,4474.01,924.31,5398.32,17318.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3232,Marina Assistant Manager,14201,25418.4,758.91,1195.95,27373.26,5634.03,6164.46,2205.91,14004.4,41377.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,28634,17300.0,0.0,0.0,17300.0,3219.55,2389.33,1366.14,6975.02,24275.02 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,377C,Principal Mgmt Analyst,23676,4428.0,0.0,0.0,4428.0,971.5,477.86,349.48,1798.84,6226.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,4136,89704.01,49576.54,4122.9,143403.45,18276.97,10990.9,9403.55,38671.42,182074.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O030,Mgmt Asst III (OCII),48262,74549.47,0.0,0.0,74549.47,15040.39,10011.28,6166.01,31217.68,105767.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,2795,88999.84,0.0,0.0,88999.84,18303.56,12424.51,7134.92,37862.99,126862.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,42869,9688.0,0.0,968.8,10656.8,2125.54,955.73,852.55,3933.82,14590.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,30818,11840.0,0.0,0.0,11840.0,2655.72,1911.46,926.4,5493.58,17333.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5823,18391.83,0.0,674.25,19066.08,1420.04,0.0,589.52,2009.56,21075.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,11692,59954.7,1473.14,1146.09,62573.93,12857.82,9318.37,4827.73,27003.92,89577.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,53131,243687.0,1968.53,8793.82,254449.35,50815.58,12288.25,12071.67,75175.5,329624.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,40809,95045.03,0.0,6082.0,101127.03,20810.81,12424.5,7736.45,40971.76,142098.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,4912,112668.25,2085.47,800.0,115553.72,22825.45,12412.52,9482.54,44720.51,160274.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1926,Sr Materials & Supplies Sprv,26315,10070.01,0.0,0.0,10070.01,2598.05,2389.33,820.99,5808.37,15878.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44179,119461.71,3314.07,4458.34,127234.12,23641.93,12424.5,2111.51,38177.94,165412.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50698,66102.06,5539.14,2939.05,74580.25,13967.72,12424.5,6013.09,32405.31,106985.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48863,440.8,0.0,19.9,460.7,0.0,191.14,35.76,226.9,687.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27363,125371.87,23857.29,11444.77,160673.93,25280.63,12424.5,2484.7,40189.83,200863.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,53043,97679.94,13872.66,9853.79,121406.39,20286.09,12424.5,2025.09,34735.68,156142.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,37688,103417.19,0.0,3779.1,107196.29,21303.79,11892.39,8830.49,42026.67,149222.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13689,38028.41,0.0,1401.66,39430.07,9654.45,3016.11,1434.92,14105.48,53535.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",5182,15600.96,0.0,0.0,15600.96,0.0,3681.06,1210.57,4891.63,20492.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",27438,74285.47,13024.5,4457.12,91767.09,14040.97,6212.25,1569.38,21822.6,113589.69 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,29481,103075.0,0.0,0.0,103075.0,21246.05,12424.5,7950.89,41621.44,144696.44 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",36125,250.0,0.0,0.0,250.0,0.0,59.73,19.37,79.1,329.1 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,21768,35902.6,0.0,0.0,35902.6,6681.47,4288.84,2814.2,13784.51,49687.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,2527,9494.02,0.0,67.44,9561.46,0.0,3442.13,741.02,4183.15,13744.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,23236,73957.07,0.0,0.0,73957.07,15610.08,12424.44,6070.18,34104.7,108061.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34221,24383.42,0.0,28.0,24411.42,0.0,2090.66,1959.88,4050.54,28461.96 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,18989,44177.8,0.0,0.0,44177.8,8088.44,5829.95,3541.06,17459.45,61637.25 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,1974,565.26,363.38,0.0,928.64,0.0,167.25,72.08,239.33,1167.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12172,113233.6,77269.27,23013.14,213516.01,25036.03,15196.12,3644.83,43876.98,257392.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8038,52998.37,7871.09,774.24,61643.7,15243.74,10539.68,4631.88,30415.3,92059.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17497,7339.5,0.0,2.48,7341.98,0.0,2825.38,569.6,3394.98,10736.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28852,1074.38,0.0,0.0,1074.38,0.0,268.8,83.39,352.19,1426.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,22280,100761.01,4583.66,15366.42,120711.09,21811.68,12424.56,9682.81,43919.05,164630.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,19758,200107.11,878.99,9609.68,210595.78,40264.74,12424.5,3503.32,56192.56,266788.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,30814,67911.04,54.19,8846.19,76811.42,15620.56,12424.5,6214.85,34259.91,111071.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,48334,59556.6,233.48,8731.73,68521.81,13361.94,12424.5,5299.92,31086.36,99608.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32883,10123.5,0.0,171.58,10295.08,0.0,3888.59,797.77,4686.36,14981.44 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,43402,0.0,0.0,2811.55,2811.55,0.0,68.5,215.09,283.59,3095.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2524,44728.1,4850.8,1234.91,50813.81,11913.59,13197.98,3639.33,28750.9,79564.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,15839,32439.7,0.0,360.0,32799.7,0.0,5208.74,2644.94,7853.68,40653.38 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,25162,74165.03,0.0,624.0,74789.03,15414.46,12424.5,6201.07,34040.03,108829.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1706,Telephone Operator,47218,53693.77,0.0,623.78,54317.55,13028.62,12420.02,4465.99,29914.63,84232.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17386,2884.88,0.0,0.0,2884.88,0.0,1406.71,223.8,1630.51,4515.39 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,27727,82566.2,3581.37,600.0,86747.57,17135.1,12376.71,6929.62,36441.43,123189.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,47536,77071.08,26966.74,316.8,104354.62,15944.51,12424.5,8125.28,36494.29,140848.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,7078,82883.02,6632.74,4079.38,93595.14,17473.04,12424.5,7635.79,37533.33,131128.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,39832,36569.01,0.0,0.0,36569.01,7530.85,6212.25,2941.67,16684.77,53253.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,22135,138635.93,71412.87,15539.68,225588.48,27392.94,12424.5,3838.34,43655.78,269244.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,4908,48192.0,1877.26,0.0,50069.26,8426.25,6690.12,4016.94,19133.31,69202.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28630,4081.19,0.0,397.01,4478.2,2279.2,0.0,5216.99,7496.19,11974.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46298,62870.79,20577.93,5690.47,89139.19,18789.58,12389.68,6750.85,37930.11,127069.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2656,Chef,4308,74165.01,5086.92,5666.61,84918.54,15555.71,12424.5,6950.36,34930.57,119849.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52975,30567.06,6812.74,2393.8,39773.6,9531.57,6078.81,3084.81,18695.19,58468.79 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9157,Claims Adjuster,37185,116384.0,250.26,0.0,116634.26,23422.64,12424.5,9576.86,45424.0,162058.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,46220,118724.03,0.0,0.0,118724.03,23893.95,12424.5,9179.97,45498.42,164222.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32405,109749.27,20914.08,8872.26,139535.61,22493.18,12424.5,2297.54,37215.22,176750.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,20640,47355.61,10005.91,2177.8,59539.32,11349.22,12376.71,4524.55,28250.48,87789.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,53051,112858.56,7816.2,414.17,121088.93,22192.84,12383.29,1929.2,36505.33,157594.26 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,13602,72699.07,0.0,810.48,73509.55,15148.12,12424.5,6084.98,33657.6,107167.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46037,7001.78,0.0,0.0,7001.78,0.0,3035.04,581.04,3616.08,10617.86 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3541,Curator 1,51093,64334.04,0.0,0.0,64334.04,13259.43,12424.5,5248.46,30932.39,95266.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35839,91747.6,23045.49,7897.98,122691.07,18716.96,9557.3,2068.97,30343.23,153034.3 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,38140,141226.97,0.0,0.0,141226.97,28392.76,12419.14,10145.18,50957.08,192184.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24414,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2412.83,12866.18,44166.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,51943,37048.14,27.02,1062.29,38137.45,5142.1,6167.44,3040.76,14350.3,52487.75 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,21862,65902.0,0.0,400.0,66302.0,14068.02,9485.63,5248.69,28802.34,95104.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,27211,93681.02,0.0,1109.35,94790.37,19535.76,12424.5,7809.94,39770.2,134560.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,38880,77782.83,928.78,3885.25,82596.86,16877.36,11946.64,6601.39,35425.39,118022.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22658,112690.83,74031.22,16215.38,202937.43,22311.18,12424.5,3455.85,38191.53,241128.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11489,66937.82,25202.22,5557.12,97697.16,19874.84,13190.41,7639.69,40704.94,138402.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,34553,44011.03,607.84,0.0,44618.87,8571.46,7692.5,3667.52,19931.48,64550.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,12352,89178.44,0.0,960.0,90138.44,18512.86,12186.22,7228.36,37927.44,128065.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34691,37455.32,1890.44,429.62,39775.38,7242.33,11061.63,3216.54,21520.5,61295.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38806,40581.46,3638.01,833.02,45052.49,10761.51,12633.76,3370.37,26765.64,71818.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,33875,66263.01,0.0,0.0,66263.01,13651.26,12371.64,5166.83,31189.73,97452.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,24439,61704.62,0.0,1422.45,63127.07,12972.45,12418.35,5234.57,30625.37,93752.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,47,56276.04,0.0,1974.0,58250.04,12982.26,12424.5,4688.83,30095.59,88345.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,12685,63102.0,0.0,621.29,63723.29,13131.97,12424.5,5084.73,30641.2,94364.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1685,67328.54,1254.01,2191.68,70774.23,19057.68,13269.55,5298.21,37625.44,108399.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3998,49593.69,320.25,3433.37,53347.31,11363.76,11032.72,4258.02,26654.5,80001.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,15179,62440.52,0.0,10621.25,73061.77,13247.48,10274.11,5975.49,29497.08,102558.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,36357,195250.8,0.0,0.0,195250.8,39639.11,12424.51,11081.76,63145.38,258396.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12744,68927.84,23591.83,923.82,93443.49,19105.34,13578.61,7298.84,39982.79,133426.28 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,43568,4123.81,0.0,0.0,4123.81,559.19,0.0,325.79,884.98,5008.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,24499,104943.48,0.0,2098.88,107042.36,21397.65,11556.28,8287.71,41241.64,148284.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26924,93602.64,5276.25,3728.07,102606.96,19421.99,12424.5,1452.73,33299.22,135906.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,49538,73572.51,9236.44,500.55,83309.5,15001.42,10799.76,6634.33,32435.51,115745.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21706,0.0,0.0,2087.04,2087.04,0.0,68.5,140.54,209.04,2296.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,44620,6508.76,0.0,2.0,6510.76,0.0,1553.06,504.06,2057.12,8567.88 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,52536,115541.0,0.0,1430.0,116971.0,23547.13,12424.5,9592.89,45564.52,162535.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,42636,14700.01,0.0,0.0,14700.01,3297.2,2389.33,1186.26,6872.79,21572.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,36218,41180.88,0.0,0.0,41180.88,0.0,5719.45,3311.18,9030.63,50211.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,31631,50171.01,0.0,120.0,50291.01,10152.53,10082.96,4136.82,24372.31,74663.32 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,44092,64261.57,0.0,0.0,64261.57,13533.69,7159.8,5024.34,25717.83,89979.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,4146,12816.0,0.0,0.0,12816.0,2323.54,955.73,836.81,4116.08,16932.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,25888,38431.79,0.0,0.0,38431.79,9172.01,11546.43,2978.75,23697.19,62128.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43784,11085.28,0.0,379.23,11464.51,2968.08,0.0,1771.27,4739.35,16203.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,13502,58782.0,0.0,624.0,59406.0,12243.99,12424.5,4924.18,29592.67,88998.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,18142,12258.1,0.0,0.0,12258.1,2281.23,1768.1,976.69,5026.02,17284.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20200,51430.97,5676.79,2200.48,59308.24,14284.86,10106.02,4608.47,28999.35,88307.59 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3624,0.0,141.92,0.0,141.92,0.0,0.0,10.84,10.84,152.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11171,5795.48,0.0,887.07,6682.55,3376.55,438.68,0.0,3815.23,10497.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51147,97359.38,553.1,4473.44,102385.92,18458.59,8343.65,8496.93,35299.17,137685.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,12836,119437.0,411.17,7166.22,127014.39,25217.59,10990.9,2155.22,38363.71,165378.1 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,22946,28896.0,0.0,0.0,28896.0,6481.37,3345.06,2301.89,12128.32,41024.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,43076,81157.0,447.86,8915.7,90520.56,18555.17,12424.5,7220.91,38200.58,128721.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34835,119467.41,26020.09,6049.21,151536.71,23621.0,12424.5,2626.11,38671.61,190208.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44652,126471.41,606.73,18896.16,145974.3,19100.96,12203.49,9907.43,41211.88,187186.18 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,37236,65774.02,0.0,722.5,66496.52,13705.62,12424.5,5137.76,31267.88,97764.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,28615,30069.03,10523.57,3129.08,43721.68,5636.93,3345.06,734.17,9716.16,53437.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,36312,3673.19,0.0,0.0,3673.19,0.0,1215.57,284.38,1499.95,5173.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1662,Patient Accounts Asst Sprv,16129,6159.28,230.97,0.0,6390.25,1381.52,955.73,508.41,2845.66,9235.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2770,Senior Laundry Worker,49274,54909.0,2119.09,3267.37,60295.46,12567.76,12424.5,4918.67,29910.93,90206.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,32172,45268.4,746.26,2986.0,49000.66,6878.6,12090.0,3946.18,22914.78,71915.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11830,112159.76,1707.41,17946.89,131814.06,24822.82,15052.76,2116.33,41991.91,173805.97 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,2856,25475.2,0.0,17.33,25492.53,0.0,0.0,2016.41,2016.41,27508.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26740,23214.06,1378.52,391.3,24983.88,5393.05,4497.73,1821.21,11711.99,36695.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3424,Integrated Pest Mgmt Specialst,37536,68644.36,0.0,844.8,69489.16,14307.95,12424.5,5637.61,32370.06,101859.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36870,55801.58,1228.89,6671.36,63701.83,689.48,0.0,7210.13,7899.61,71601.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,22555,62811.01,0.0,1130.0,63941.01,13126.29,12424.5,4732.16,30282.95,94223.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37630,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,806,113120.62,3504.81,14363.14,130988.57,24210.67,15180.89,2146.22,41537.78,172526.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,52595,79395.04,0.0,0.0,79395.04,16359.42,12424.5,6474.66,35258.58,114653.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,5246,79117.61,65.02,9706.35,88888.98,17895.79,12358.49,7287.93,37542.21,126431.19 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,16957,93681.02,0.0,233.33,93914.35,19352.39,12424.5,7499.97,39276.86,133191.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,183,52811.01,389.28,0.0,53200.29,9574.63,5256.52,2723.25,17554.4,70754.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,20142,3583.0,0.0,0.0,3583.0,803.67,477.86,277.39,1558.92,5141.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2383,29469.0,0.0,0.0,29469.0,0.0,2580.46,2284.23,4864.69,34333.69 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,37049,20847.5,260.79,0.0,21108.29,0.0,5017.58,1705.66,6723.24,27831.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,24840,82883.01,10852.16,9174.65,102909.82,18388.91,12424.49,9053.07,39866.47,142776.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,38420,2601.4,0.0,85.12,2686.52,0.0,861.65,208.4,1070.05,3756.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34230,3304.12,0.0,386.1,3690.22,2364.25,232.84,77.68,2674.77,6364.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,6529,105363.11,0.0,0.0,105363.11,21727.62,12424.5,8625.07,42777.19,148140.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,43036,147985.11,0.0,0.0,147985.11,29765.82,12376.72,17565.11,59707.65,207692.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,44457,7090.15,0.0,0.0,7090.15,1590.33,1452.9,616.81,3660.04,10750.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17320,8251.8,0.0,232.13,8483.93,0.0,2738.77,657.65,3396.42,11880.35 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1471,Elections Worker,39464,16765.0,0.0,11485.59,28250.59,3860.85,3345.06,2273.5,9479.41,37730.0 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,50291,227169.0,0.0,6480.0,233649.0,45813.44,12472.29,11681.31,69967.04,303616.04 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,48374,88296.0,0.0,3340.8,91636.8,18274.27,12424.5,7492.34,38191.11,129827.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,51994,116976.01,0.0,0.0,116976.01,23541.49,12424.5,9364.64,45330.63,162306.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,18800,62437.79,5564.79,1728.64,69731.22,12989.29,12418.53,5731.67,31139.49,100870.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48814,22414.11,0.0,561.28,22975.39,8061.01,1736.09,4560.34,14357.44,37332.83 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,19129,90650.02,258.83,0.0,90908.85,20681.13,12424.5,1319.98,34425.61,125334.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,50043,9867.04,32.32,0.0,9899.36,0.0,1367.89,768.34,2136.23,12035.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,20041,1063.89,0.0,0.0,1063.89,238.63,211.21,81.67,531.51,1595.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,17708,12936.01,0.0,0.0,12936.01,2407.4,1911.46,1038.66,5357.52,18293.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23154,63763.53,25221.23,5109.63,94094.39,18852.07,12552.64,7143.29,38548.0,132642.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,18211,14757.09,0.0,1425.84,16182.93,0.0,5350.6,1254.31,6604.91,22787.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,5651,94603.24,2294.82,3958.1,100856.16,20314.01,12376.71,7947.13,40637.85,141494.01 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,354C,Ct Comp App Programmer,21746,120900.01,0.0,5949.0,126849.01,24472.09,12424.5,9922.21,46818.8,173667.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,47013,11041.18,0.0,0.0,11041.18,0.0,1530.67,856.97,2387.64,13428.82 +Calendar,2015,6,General Administration & Finance,CON,Controller,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,9653,106605.05,0.0,0.0,106605.05,21971.81,12424.5,8710.57,43106.88,149711.93 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,12948,109530.63,0.0,0.0,109530.63,22090.86,12161.68,8940.25,43192.79,152723.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,23367,119463.81,649.67,820.04,120933.52,23633.47,12424.5,2059.37,38117.34,159050.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,46019,75605.0,8860.55,10348.02,94813.57,16979.96,12424.5,7718.94,37123.4,131936.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34736,0.0,0.0,118.08,118.08,0.0,0.0,9.03,9.03,127.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,4233,159321.15,28089.45,879.25,188289.85,31482.11,12424.5,3199.95,47106.56,235396.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25305,609.47,0.0,1157.99,1767.46,11.47,0.0,905.12,916.59,2684.05 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,8130,75089.25,6052.17,3364.79,84506.21,15814.57,10967.02,6731.5,33513.09,118019.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,4264,69573.0,1987.81,1088.92,72649.73,14834.52,10035.17,5957.74,30827.43,103477.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1760,Offset Machine Operator,8000,2472.0,0.0,0.0,2472.0,0.0,477.86,191.88,669.74,3141.74 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,26845,70350.5,1524.99,0.0,71875.49,14488.86,12424.51,5755.75,32669.12,104544.61 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8262,Criminalist III,42468,139440.41,3218.85,0.0,142659.26,28036.5,12424.51,10253.14,50714.15,193373.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",5300,Sub-Professional Engineering,5322,Graphic Artist,50103,64064.0,0.0,0.0,64064.0,13203.95,12424.5,5313.26,30941.71,95005.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,704,72316.01,92.76,720.0,73128.77,14801.07,10513.03,5988.45,31302.55,104431.32 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,3690,29233.8,1165.16,2999.34,33398.3,6913.36,4778.65,2453.88,14145.89,47544.19 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,35339,540.0,0.0,0.0,540.0,0.0,32.25,41.8,74.05,614.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20176,119467.37,39913.53,2664.4,162045.3,23620.98,12424.5,2763.04,38808.52,200853.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,44805,80246.86,0.0,1044.0,81290.86,16763.43,12424.51,6468.42,35656.36,116947.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,14272,69746.02,0.0,0.0,69746.02,14374.92,12424.5,5784.9,32584.32,102330.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,8233,65530.11,0.0,600.6,66130.71,13583.37,11958.58,5492.57,31034.52,97165.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,9722,13206.62,0.0,0.0,13206.62,3219.28,3287.84,1090.84,7597.96,20804.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48769,61931.08,2050.82,2688.94,66670.84,16074.81,12715.28,5046.5,33836.59,100507.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,43552,32506.43,0.0,0.0,32506.43,0.0,4730.87,2520.06,7250.93,39757.36 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",36052,36922.4,14053.08,2281.64,53257.12,8919.45,6574.42,1072.48,16566.35,69823.47 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),11603,147924.0,0.0,4458.48,152382.48,31405.79,10035.18,10302.87,51743.84,204126.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50244,76960.61,0.0,663.1,77623.71,15995.85,12406.58,6391.7,34794.13,112417.84 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,30760,175212.0,0.0,32687.55,207899.55,37602.72,12424.5,7235.75,57262.97,265162.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21510,113233.61,28341.07,20986.97,162561.65,25584.56,15196.12,2715.56,43496.24,206057.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42400,93945.04,0.0,11356.62,105301.66,20714.55,9910.93,8511.29,39136.77,144438.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2187,8475.9,0.0,119.67,8595.57,0.0,2242.98,667.15,2910.13,11505.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,35256,8307.12,0.0,61.31,8368.43,0.0,3010.55,648.62,3659.17,12027.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,15371,10532.56,0.0,0.0,10532.56,0.0,2335.58,817.5,3153.08,13685.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,28988,133087.03,0.0,0.0,133087.03,26783.95,12424.5,10055.53,49263.98,182351.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,15811,111366.06,0.0,0.0,111366.06,22423.63,12364.77,8946.35,43734.75,155100.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,15915,47527.41,12288.94,0.0,59816.35,11384.09,12424.5,4818.12,28626.71,88443.06 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,37224,40640.4,0.0,10149.84,50790.24,8868.42,6785.69,4177.07,19831.18,70621.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17540,7052.8,0.0,897.74,7950.54,1571.88,3058.34,631.82,5262.04,13212.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,45213,60242.6,0.0,1370.0,61612.6,12636.24,12376.71,4936.6,29949.55,91562.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26260,151.38,0.0,250.0,401.38,42.84,0.0,11.97,54.81,456.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",5300,Sub-Professional Engineering,5322,Graphic Artist,11805,34676.0,0.0,0.0,34676.0,6612.23,6690.12,2662.52,15964.87,50640.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",24949,845.0,0.0,0.0,845.0,0.0,100.95,100.19,201.14,1046.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27852,46554.18,10655.66,451.81,57661.65,13533.31,9249.81,4450.36,27233.48,84895.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,20070,89193.92,0.0,2459.56,91653.48,18888.21,12424.5,7156.0,38468.71,130122.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50803,64212.87,23153.28,887.31,88253.46,17763.7,12668.03,6238.66,36670.39,124923.85 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,19771,8586.0,0.0,140.0,8726.0,1957.24,1433.6,734.88,4125.72,12851.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6769,66739.2,0.0,2757.62,69496.82,548.4,0.0,6722.19,7270.59,76767.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,25722,113459.95,3686.98,14995.96,132142.89,24964.8,12448.4,2221.74,39634.94,171777.83 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,11058,86843.31,0.0,0.0,86843.31,17954.51,11876.45,6739.09,36570.05,123413.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,9403,55316.6,10566.89,7550.65,73434.14,11394.25,6690.11,5334.95,23419.31,96853.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22466,11771.09,1700.19,619.6,14090.88,3416.22,3715.7,1030.75,8162.67,22253.55 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,21034,67246.22,0.0,5642.44,72888.66,14770.36,12421.75,5771.93,32964.04,105852.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,36508,22200.0,0.0,0.0,22200.0,4131.4,2389.33,1772.08,8292.81,30492.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,1579,135421.01,0.0,0.0,135421.01,27253.5,12424.48,10116.95,49794.93,185215.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",9501,2959.2,0.0,0.0,2959.2,0.0,382.3,229.68,611.98,3571.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,7212,60672.32,845.78,3154.41,64672.51,12982.4,12063.35,5080.0,30125.75,94798.26 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,42071,102632.0,0.0,4922.0,107554.0,21124.02,12424.5,9086.23,42634.75,150188.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,29625,16064.52,83.4,787.35,16935.27,0.0,5316.25,1312.2,6628.45,23563.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,46406,15138.88,0.0,0.0,15138.88,0.0,2801.49,1173.92,3975.41,19114.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2518,7338.45,0.0,934.9,8273.35,257.87,0.0,329.79,587.66,8861.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22394,47531.2,26005.36,3546.44,77083.0,11394.53,12424.5,6025.85,29844.88,106927.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4609,146341.3,0.0,12294.31,158635.61,30092.1,12376.71,9542.29,52011.1,210646.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",30476,97989.0,36543.37,11492.37,146024.74,21818.61,12424.5,10187.91,44431.02,190455.76 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1803,Performance Analyst I,47976,13069.53,0.0,0.0,13069.53,2873.99,2711.88,1060.53,6646.4,19715.93 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,3645,17894.36,0.0,430.86,18325.22,3792.45,2902.61,1512.71,8207.77,26532.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,35328,4078.8,0.0,79.2,4158.0,0.0,0.0,328.49,328.49,4486.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,32499,78869.98,0.0,0.0,78869.98,15183.86,8362.64,11838.75,35385.25,114255.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,26949,93395.7,17122.33,5095.96,115613.99,19604.46,12615.64,9401.71,41621.81,157235.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30145,47611.0,0.0,2620.64,50231.64,10536.19,10513.04,3926.79,24976.02,75207.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,24864,69247.02,8562.07,1600.95,79410.04,14272.17,12424.5,6547.2,33243.87,112653.91 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,8254,105012.03,0.0,1220.0,106232.03,21368.03,11292.08,8542.18,41202.29,147434.32 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,14110,64606.8,0.0,3000.0,67606.8,13317.04,12424.5,5616.43,31357.97,98964.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33454,56531.0,0.0,6118.33,62649.33,12619.81,12424.5,5072.78,30117.09,92766.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,35241,7587.83,0.0,0.0,7587.83,0.0,2293.76,588.42,2882.18,10470.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6213,11789.25,0.0,392.98,12182.23,112.98,0.0,2407.73,2520.71,14702.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,26301,81942.01,58.73,1006.98,83007.72,17091.53,12424.5,6846.11,36362.14,119369.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5304,Materials Testing Aide,50790,64182.0,0.0,0.0,64182.0,13203.9,12424.48,5210.42,30838.8,95020.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32073,119467.41,3444.41,16303.42,139215.24,23621.0,12424.5,2371.85,38417.35,177632.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7997,49791.1,2817.87,641.0,53249.97,11146.55,9782.98,3876.32,24805.85,78055.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,2099,199095.0,0.0,250.0,199345.0,40068.02,12424.5,11127.17,63619.69,262964.69 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,37792,101770.02,0.0,0.0,101770.02,20975.25,12424.5,8362.08,41761.83,143531.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3771,10207.28,0.0,0.0,10207.28,1738.75,4426.23,820.13,6985.11,17192.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,45231,158643.31,0.0,0.0,158643.31,31921.35,12424.5,27949.68,72295.53,230938.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,2055,11735.19,28.59,1419.94,13183.72,900.85,2452.05,490.98,3843.88,17027.6 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,51089,63102.01,865.1,5650.48,69617.59,13832.8,12424.5,5634.4,31891.7,101509.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40861,64309.92,3510.7,3386.26,71206.88,18509.89,12669.89,5509.47,36689.25,107896.13 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,51345,129895.05,0.0,0.0,129895.05,26141.51,12424.5,9969.73,48535.74,178430.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,5956,85357.01,20237.28,10513.16,116107.45,17358.85,10513.09,8122.53,35994.47,152101.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20811,6646.08,0.0,0.0,6646.08,0.0,2189.7,515.85,2705.55,9351.63 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,49290,82293.1,0.0,1255.33,83548.43,17153.23,12037.97,6363.85,35555.05,119103.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51219,12520.0,0.0,0.0,12520.0,2269.88,1911.46,829.49,5010.83,17530.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28139,112159.76,20746.67,8960.5,141866.93,24028.57,15052.77,2359.78,41441.12,183308.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,2711,136221.79,210.28,410.02,136842.09,27739.2,8721.05,9978.22,46438.47,183280.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O695,Accountant III (OCII),41814,79423.01,0.0,0.0,79423.01,16027.91,10035.18,6481.87,32544.96,111967.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",25202,182293.01,0.0,0.0,182293.01,36686.83,12424.5,19226.82,68338.15,250631.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,30987,66985.62,16887.65,13970.37,97843.64,19216.04,8498.42,1264.18,28978.64,126822.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7216,Electrical Trnst Shop Sprv 1,8528,119111.01,30169.16,7809.33,157089.5,23970.34,12424.5,10404.31,46799.15,203888.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,22912,49719.03,1573.16,3098.3,54390.49,12201.48,12014.5,4453.85,28669.83,83060.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,2284,93191.91,0.0,0.0,93191.91,19195.59,12412.56,6982.47,38590.62,131782.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2306,Senior Psychiatric Orderly,20964,78963.11,0.0,1257.82,80220.93,16538.83,12424.5,516.99,29480.32,109701.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,28412,56077.2,0.0,569.3,56646.5,11576.79,11335.5,4716.73,27629.02,84275.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,15952,82883.0,0.0,1370.4,84253.4,17353.82,12424.5,6908.58,36686.9,120940.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",49668,106090.09,3080.86,0.0,109170.95,21865.57,12424.5,8930.11,43220.18,152391.13 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,34871,44953.3,1155.79,5225.17,51334.26,4900.28,10079.97,4170.71,19150.96,70485.22 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,41492,147844.06,0.0,0.0,147844.06,29724.94,12424.5,17443.41,59592.85,207436.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36916,49886.83,0.0,0.0,49886.83,11235.71,11013.91,4161.11,26410.73,76297.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10854,537.23,0.0,0.0,537.23,0.0,232.96,41.59,274.55,811.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8805,0.0,0.0,250.0,250.0,0.0,68.5,0.0,68.5,318.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,9459,141101.04,0.0,0.0,141101.04,28317.3,12424.5,17464.39,58206.19,199307.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,19644,96254.03,0.0,680.0,96934.03,19981.58,12424.5,7858.88,40264.96,137198.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,16382,63887.02,137.36,1145.7,65170.08,14541.73,12424.5,5045.18,32011.41,97181.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,52826,73001.61,45.48,1330.0,74377.09,15092.33,10704.18,5949.99,31746.5,106123.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5458,67321.45,0.0,4466.75,71788.2,0.0,5867.89,5570.45,11438.34,83226.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42797,19760.93,0.0,620.81,20381.74,103.2,0.0,699.92,803.12,21184.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3339,119467.47,9609.02,5124.49,134200.98,23621.02,12424.5,2176.77,38222.29,172423.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28638,95780.74,11850.67,9055.84,116687.25,20093.68,14619.04,1945.26,36657.98,153345.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,23752,52619.54,0.0,661.3,53280.84,10824.32,10578.75,4374.47,25777.54,79058.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,24574,80457.6,6300.86,0.0,86758.46,16564.69,12424.47,6962.8,35951.96,122710.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,49118,138621.84,0.0,819.97,139441.81,27398.06,12423.42,2329.08,42150.56,181592.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,10110,2835.0,132.89,0.0,2967.89,635.89,477.86,210.24,1323.99,4291.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,20217,63719.4,0.0,0.0,63719.4,13112.91,12254.98,5135.45,30503.34,94222.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,4343,156746.03,0.0,3274.89,160020.92,32188.7,12424.52,10414.71,55027.93,215048.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,7927,80223.38,12491.34,3526.05,96240.77,16733.79,11789.55,7861.72,36385.06,132625.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,30542,64066.82,0.0,9.96,64076.78,13245.48,12424.5,5100.37,30770.35,94847.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50954,67333.31,1005.64,3206.53,71545.48,19305.71,13266.62,5524.18,38096.51,109641.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46454,64188.28,9110.01,6060.83,79359.12,19248.8,12646.42,6188.03,38083.25,117442.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21134,82190.23,7633.61,4957.84,94781.68,16895.11,9079.44,1602.84,27577.39,122359.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40991,11170.25,0.0,0.0,11170.25,0.0,2932.9,896.19,3829.09,14999.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",3775,93738.01,15077.52,4753.91,113569.44,19816.06,12424.51,9269.21,41509.78,155079.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36800,62304.7,15946.16,3254.56,81505.42,17860.45,12268.78,6118.79,36248.02,117753.44 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,34940,3590.1,0.0,0.0,3590.1,668.11,430.07,281.04,1379.22,4969.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,17770,70196.82,552.09,9570.21,80319.12,16200.81,10315.93,6617.31,33134.05,113453.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,919,16672.98,0.0,1101.35,17774.33,0.0,1445.54,1379.57,2825.11,20599.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34684,75339.77,2620.2,0.0,77959.97,15498.12,12389.5,6333.72,34221.34,112181.31 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,52473,86860.06,0.0,0.0,86860.06,18014.64,9557.31,7128.93,34700.88,121560.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",28243,93738.04,0.0,2437.19,96175.23,19860.91,12424.5,7543.99,39829.4,136004.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20496,46259.0,2883.5,508.79,49651.29,12097.26,10350.87,3747.12,26195.25,75846.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12221,33480.58,2583.65,3153.39,39217.62,5948.3,3345.06,531.93,9825.29,49042.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,40363,14504.14,0.0,0.0,14504.14,0.0,3201.7,1125.33,4327.03,18831.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7364,Power House Operator,16416,77709.01,41875.3,3148.35,122732.66,16015.48,12424.5,9731.85,38171.83,160904.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,37195,89016.42,0.0,0.0,89016.42,18307.26,12424.51,7173.81,37905.58,126922.0 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,45362,21376.43,0.0,338.79,21715.22,5300.26,5304.3,1751.13,12355.69,34070.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,21656,82036.71,0.0,0.0,82036.71,17116.8,8647.69,14458.6,40223.09,122259.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8230,56531.0,0.0,6380.45,62911.45,12665.58,12424.5,4940.92,30031.0,92942.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,11556,0.0,0.0,104.89,104.89,0.0,68.5,1.52,70.02,174.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,18187,69065.32,8771.09,30.0,77866.41,14233.65,12424.56,6007.95,32666.16,110532.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,13015,52485.0,0.0,0.0,52485.0,10396.77,8601.58,4264.97,23263.32,75748.32 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,32475,72278.05,0.0,952.42,73230.47,15012.67,11809.26,6173.71,32995.64,106226.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,4550,111794.67,0.0,2259.0,114053.67,22967.64,12424.5,9357.55,44749.69,158803.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,28329,66682.03,1198.0,113091.3,180971.33,15243.03,5256.52,189.49,20689.04,201660.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,27761,54845.6,0.0,2874.23,57719.83,11778.75,10895.34,4763.36,27437.45,85157.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,6908,149312.02,0.0,0.0,149312.02,30049.2,12424.51,10320.0,52793.71,202105.73 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,26642,3672.24,0.0,0.0,3672.24,0.0,884.05,284.4,1168.45,4840.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,24287,81157.0,27166.08,26147.93,134471.01,21048.84,0.0,9964.33,31013.17,165484.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,44288,36018.74,11734.24,2453.77,50206.75,7138.8,4587.51,828.45,12554.76,62761.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,44929,40164.53,0.0,3726.36,43890.89,0.0,2906.08,3401.07,6307.15,50198.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,35575,24347.25,0.0,0.0,24347.25,0.0,0.0,1860.26,1860.26,26207.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,10905,97669.02,0.0,7932.84,105601.86,20130.42,12424.52,7970.97,40525.91,146127.77 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2819,Assistant Health Educator,32244,81116.02,0.0,0.0,81116.02,16718.53,12424.5,6609.9,35752.93,116868.95 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,441C,Court Paralegal,25079,21578.4,0.0,3460.0,25038.4,4101.36,3440.63,2033.82,9575.81,34614.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2597,54326.75,4593.88,8736.44,67657.07,11442.23,7645.85,1715.63,20803.71,88460.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46576,97764.2,9024.48,9339.27,116127.95,26045.3,12424.5,1034.96,39504.76,155632.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51190,136940.62,67.05,28361.72,165369.39,31306.9,12122.97,10562.41,53992.28,219361.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23788,98830.81,8337.69,8337.5,115506.0,20518.09,12424.5,1896.79,34839.38,150345.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,53219,89955.67,1008.9,6239.06,97203.63,18375.56,0.0,1659.05,20034.61,117238.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17404,60440.19,0.0,1085.0,61525.19,12823.8,10961.05,4968.0,28752.85,90278.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2114,Medical Records Tech Sprv,46067,83699.0,14642.59,1788.5,100130.09,17379.24,12424.5,8111.16,37914.9,138044.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,41307,64423.6,15673.46,2515.0,82612.06,13272.29,12420.56,6579.68,32272.53,114884.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45768,123773.33,536.4,13965.65,138275.38,25180.55,10987.32,5143.09,41310.96,179586.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",48504,25073.92,0.0,31342.4,56416.32,5501.2,1911.46,6501.17,13913.83,70330.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,46713,86663.03,1309.42,2917.5,90889.95,18484.59,12424.5,7230.46,38139.55,129029.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,23195,84645.43,0.0,0.0,84645.43,17411.01,12424.51,6887.94,36723.46,121368.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,48360,13858.96,34.48,356.52,14249.96,3155.66,2401.28,1129.44,6686.38,20936.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,41695,93755.4,38810.12,11958.27,144523.79,20864.57,12663.43,10161.2,43689.2,188212.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11419,2341.06,0.0,0.0,2341.06,0.0,1015.16,181.25,1196.41,3537.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32355,119450.14,1089.03,8884.16,129423.33,23683.74,12424.5,1832.31,37940.55,167363.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,36726,24395.4,101.63,1698.44,26195.47,6257.41,6212.25,1869.91,14339.57,40535.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49773,102901.41,0.0,1251.99,104153.4,20926.56,11084.99,8389.75,40401.3,144554.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,354,62453.77,641.65,563.52,63658.94,12922.42,12421.52,5201.85,30545.79,94204.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51721,11440.13,0.0,0.0,11440.13,0.0,4960.84,915.57,5876.41,17316.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7219,Maintenance Scheduler,37121,75927.04,2657.72,650.0,79234.76,15775.86,12424.5,6266.91,34467.27,113702.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7827,64640.19,5481.62,942.99,71064.8,14919.82,12737.39,5373.63,33030.84,104095.64 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,51581,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5103.43,30380.55,92739.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35605,38795.86,3692.65,1193.55,43682.06,11619.36,7715.26,3325.56,22660.18,66342.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26685,29054.74,54.93,7671.57,36781.24,7508.84,2236.41,2933.55,12678.8,49460.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,13647,102561.03,0.0,0.0,102561.03,21149.87,12424.5,8341.92,41916.29,144477.32 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,27418,93681.01,4152.23,10978.52,108811.76,20765.29,12424.5,8796.47,41986.26,150798.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,15649,33839.0,0.0,0.0,33839.0,6593.36,7645.81,2697.18,16936.35,50775.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5258,79955.6,11035.15,5756.3,96747.05,16895.77,12448.4,1605.48,30949.65,127696.7 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,44059,61350.8,7154.82,6064.26,74569.88,13414.9,12424.5,6015.15,31854.55,106424.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8902,8302.63,0.0,2.34,8304.97,0.0,3600.3,688.18,4288.48,12593.45 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,30823,89413.1,0.0,0.0,89413.1,18438.37,12424.5,7130.76,37993.63,127406.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,38651,31320.0,738.46,4281.35,36339.81,7853.67,4778.65,2896.58,15528.9,51868.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9508,Prpl Permit And Citation Clerk,31040,82013.13,3157.98,0.0,85171.11,16904.09,12411.06,6801.45,36116.6,121287.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",34359,118427.09,0.0,0.0,118427.09,23833.8,12424.5,17060.56,53318.86,171745.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22086,48894.65,0.0,8194.58,57089.23,861.96,0.0,6627.71,7489.67,64578.9 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,30565,79030.02,0.0,0.0,79030.02,16260.52,12185.56,6516.68,34962.76,113992.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,27136,71350.65,1092.86,10061.81,82505.32,17022.28,10859.49,6602.62,34484.39,116989.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52079,54728.5,0.0,8541.42,63269.92,14291.22,12424.5,4823.89,31539.61,94809.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,26515,9655.6,0.0,67.44,9723.04,0.0,0.0,768.96,768.96,10492.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,23025,43731.0,4197.38,546.68,48475.06,8627.27,7645.85,3835.1,20108.22,68583.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,51881,85942.2,0.0,0.0,85942.2,17767.85,11857.03,6949.23,36574.11,122516.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,40967,49133.95,258.96,7123.57,56516.48,12009.51,10931.17,4553.02,27493.7,84010.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3763,43047.23,0.0,0.0,43047.23,0.0,5644.78,3337.41,8982.19,52029.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",6146,130329.3,37563.21,8007.31,175899.82,27210.65,15052.76,2941.7,45205.11,221104.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42829,64808.8,8923.84,400.0,74132.64,13424.65,12424.5,5969.94,31819.09,105951.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2738,Porter Assistant Supervisor,43655,60241.63,6767.72,8741.77,75751.12,12839.52,11460.41,5989.53,30289.46,106040.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",36826,182293.0,0.0,0.0,182293.0,36691.72,12424.5,19210.17,68326.39,250619.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,9514,84644.01,25428.56,15722.91,125795.48,19345.96,12424.5,9812.04,41582.5,167377.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,39219,113369.02,46034.98,8771.1,168175.1,24204.45,12424.41,10551.72,47180.58,215355.68 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,1347,220899.08,0.0,11044.95,231944.03,46652.74,12424.5,11684.61,70761.85,302705.88 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,38474,106695.62,0.0,0.0,106695.62,21027.77,10023.22,7936.63,38987.62,145683.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,29308,76963.76,0.0,920.0,77883.76,16221.89,11193.7,6195.9,33611.49,111495.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44198,91.88,0.0,3.92,95.8,0.0,44.8,7.43,52.23,148.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26486,39221.6,0.0,1793.13,41014.73,0.0,3439.86,3570.55,7010.41,48025.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22351,1790.65,0.0,8.6,1799.25,0.0,448.0,139.3,587.3,2386.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,2604,14504.0,0.0,296.93,14800.93,2754.46,2341.53,1158.45,6254.44,21055.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",24916,1500.0,0.0,0.0,1500.0,0.0,0.0,118.65,118.65,1618.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10022,6135.5,0.0,175.0,6310.5,0.0,2344.51,489.22,2833.73,9144.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4231,Senior Estate Investigator,30142,91191.08,0.0,0.0,91191.08,9004.19,12424.5,7488.09,28916.78,120107.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,40570,0.0,0.0,11874.06,11874.06,0.0,13.7,908.36,922.06,12796.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50561,117129.69,10257.34,5181.39,132568.42,23205.21,12424.5,2126.8,37756.51,170324.93 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,46978,11922.98,0.0,62.46,11985.44,2674.32,2485.85,998.22,6158.39,18143.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48663,17525.34,0.0,0.0,17525.34,600.6,7538.45,1419.28,9558.33,27083.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43198,31906.63,301.72,6659.12,38867.47,364.07,0.0,5553.68,5917.75,44785.22 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,12852,46936.83,0.0,3393.6,50330.43,10318.54,7836.99,4067.15,22222.68,72553.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,13781,64139.3,0.0,1980.23,66119.53,13641.81,11848.31,5017.98,30508.1,96627.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,9093,61735.01,3051.98,624.0,65410.99,12852.62,12424.5,5401.34,30678.46,96089.45 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,36509,16566.01,0.0,0.0,16566.01,0.0,5445.28,1284.31,6729.59,23295.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3636,66834.99,23053.84,1652.35,91541.18,18750.12,13168.48,7157.56,39076.16,130617.34 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,52269,98157.01,0.0,0.0,98157.01,20230.58,12424.5,7812.17,40467.25,138624.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,33114,66102.0,805.49,244.41,67151.9,13624.06,12424.5,5542.38,31590.94,98742.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,23036,129377.97,14906.14,18909.41,163193.52,29196.32,15026.54,2726.78,46949.64,210143.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,34778,68186.15,10030.13,6112.04,84328.32,14994.64,12472.29,1396.9,28863.83,113192.15 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,3693,34090.0,0.0,0.0,34090.0,7618.48,6690.11,2781.68,17090.27,51180.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,19942,60806.86,1738.28,2871.55,65416.69,12608.75,11632.44,5092.45,29333.64,94750.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3244,44225.61,4595.4,1631.52,50452.53,12170.95,8680.36,3864.84,24716.15,75168.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,14687,86339.34,18505.08,12642.97,117487.39,19735.62,12411.73,9373.58,41520.93,159008.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19013,85532.37,0.0,11461.38,96993.75,4065.14,0.0,8010.76,12075.9,109069.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,43151,25467.45,0.0,0.0,25467.45,1255.31,7633.9,1975.37,10864.58,36332.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3822,119465.62,78229.7,3946.42,201641.74,23627.23,12424.51,3392.99,39444.73,241086.47 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0902,Mayoral Staff XIV,33862,92821.45,0.0,0.0,92821.45,19704.28,9061.53,12721.11,41486.92,134308.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4174,5750.69,0.0,312.5,6063.19,0.0,1893.54,470.6,2364.14,8427.33 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8602,Emergency Services Coord II,17318,56705.02,4359.79,2202.18,63266.99,11380.24,9557.3,4874.88,25812.42,89079.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",20213,111809.37,0.0,24006.15,135815.52,25072.78,12902.36,2253.97,40229.11,176044.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26204,3302.56,0.0,0.0,3302.56,624.61,1432.1,263.15,2319.86,5622.42 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,13313,79399.8,0.0,0.0,79399.8,16355.78,12424.5,6270.35,35050.63,114450.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",25610,178843.91,0.0,0.0,178843.91,36006.24,12364.77,19174.62,67545.63,246389.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,15784,41365.29,2759.06,700.0,44824.35,8919.47,0.0,3468.83,12388.3,57212.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,8607,97090.34,0.0,795.69,97886.03,20083.0,11893.1,7811.55,39787.65,137673.68 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,1090,0.0,0.0,9829.85,9829.85,0.0,68.5,751.98,820.48,10650.33 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,11964,118411.1,0.0,14405.63,132816.73,23830.33,12424.5,10026.51,46281.34,179098.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,17731,0.0,502.38,428.86,931.24,0.0,34.25,72.09,106.34,1037.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,2330,49770.51,125.1,0.0,49895.61,11896.18,11946.64,4065.27,27908.09,77803.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48514,41866.05,0.0,5711.84,47577.89,1713.83,0.0,1861.92,3575.75,51153.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29330,6030.47,0.0,261.54,6292.01,1804.92,1199.27,415.28,3419.47,9711.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,12485,49311.49,0.0,0.0,49311.49,11810.81,12424.5,4010.7,28246.01,77557.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8149,56531.0,0.0,6969.71,63500.71,12784.83,12424.5,5201.63,30410.96,93911.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,51118,10873.81,0.0,803.99,11677.8,2506.06,1198.66,320.72,4025.44,15703.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5272,Landscape Architect Assoc 2,9122,116976.05,0.0,0.0,116976.05,23541.49,12424.46,9231.63,45197.58,162173.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3744,44343.03,18480.99,5665.77,68489.79,14468.5,8818.41,5350.26,28637.17,97126.96 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,37756,78194.15,0.0,722.31,78916.46,0.0,0.0,6242.26,6242.26,85158.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,36555,25186.35,0.0,885.21,26071.56,5591.38,4143.69,2184.85,11919.92,37991.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41513,149099.0,142.33,38848.65,188089.98,36313.12,12424.5,7815.56,56553.18,244643.16 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,14710,6692.0,0.0,0.0,6692.0,0.0,955.73,112.45,1068.18,7760.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25143,38716.42,0.0,3811.99,42528.41,7929.12,3779.62,3061.39,14770.13,57298.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,14017,129604.94,61719.73,11687.02,203011.69,27717.14,15052.76,3409.51,46179.41,249191.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,44212,14800.0,0.0,1732.34,16532.34,2909.35,2389.32,1351.52,6650.19,23182.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,3802,60018.0,2262.38,9002.7,71283.08,13766.52,9079.44,5713.34,28559.3,99842.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38257,10953.0,0.0,550.5,11503.5,2408.58,2867.19,923.05,6198.82,17702.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,11264,61490.03,0.0,0.0,61490.03,12838.46,10990.9,4965.48,28794.84,90284.87 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,15706,46944.0,0.0,15436.75,62380.75,12654.52,4300.8,1035.87,17991.19,80371.94 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,6495,19731.66,3231.15,0.0,22962.81,0.0,4494.92,1780.22,6275.14,29237.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20853,113233.61,0.0,17399.46,130633.07,24624.85,15196.12,2082.97,41903.94,172537.01 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8234,Fire Alarm Dispatcher,14741,67531.52,2898.34,8588.56,79018.42,15163.74,0.0,6499.3,21663.04,100681.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22799,72315.51,0.0,0.0,72315.51,14870.92,12424.51,5694.35,32989.78,105305.29 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),26816,184289.07,0.0,5248.28,189537.35,38144.37,12424.5,11072.49,61641.36,251178.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,16010,33256.88,0.0,0.0,33256.88,7640.27,7636.17,2801.93,18078.37,51335.25 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,28063,87531.02,0.0,624.0,88155.02,18169.31,12424.5,7017.73,37611.54,125766.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,32638,111673.68,709.65,0.0,112383.33,23106.12,12424.51,9008.9,44539.53,156922.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3702,140902.95,21399.12,8165.66,170467.73,27828.57,12424.5,2859.49,43112.56,213580.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44889,135856.42,0.0,927.55,136783.97,22984.6,11659.92,7612.95,42257.47,179041.44 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,31366,110800.8,0.0,0.0,110800.8,22525.33,12424.52,9068.93,44018.78,154819.58 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,27956,88296.0,0.0,3624.0,91920.0,18337.86,12424.5,7638.64,38401.0,130321.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39316,26798.16,2371.64,968.53,30138.33,6960.9,8338.16,2160.94,17460.0,47598.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,6748,40356.0,31766.4,3583.53,75705.93,8721.27,4300.79,1269.37,14291.43,89997.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,25449,62758.86,727.3,3625.65,67111.81,13521.49,10311.74,5526.61,29359.84,96471.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,5892,59018.31,0.0,160.0,59178.31,12188.78,12366.98,4801.81,29357.57,88535.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,1077,82717.02,0.0,0.0,82717.02,17048.48,12424.5,6793.98,36266.96,118983.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,14353,65592.01,0.0,1740.0,67332.01,13835.1,12424.5,5561.87,31821.47,99153.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,11081,19314.75,0.0,0.0,19314.75,4332.3,2508.8,1534.0,8375.1,27689.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,48093,96332.07,25432.71,2797.5,124562.28,19854.28,12424.5,9835.78,42114.56,166676.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,32674,64069.67,9548.52,4164.51,77782.7,13061.13,8171.5,1298.74,22531.37,100314.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",25207,97169.01,7967.07,4301.73,109437.81,20763.33,11373.2,8925.74,41062.27,150500.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,5494,89728.85,164.13,8519.37,98412.35,19539.32,11940.64,7908.19,39388.15,137800.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,12935,100761.0,11791.07,9950.55,122502.62,20969.95,12424.52,9815.63,43210.1,165712.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,50138,62468.82,5274.75,2985.54,70729.11,13000.36,12424.5,5518.75,30943.61,101672.72 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,14212,45840.2,0.0,11181.82,57022.02,10161.07,6546.76,4460.36,21168.19,78190.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4973,1627.02,0.0,0.0,1627.02,0.0,0.0,100.41,100.41,1727.43 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,14562,78963.01,0.0,624.0,79587.01,16403.15,12424.5,6599.33,35426.98,115013.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,6224,14220.0,0.0,0.0,14220.0,2578.08,1433.6,1097.31,5108.99,19328.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32956,42875.89,1865.55,2062.78,46804.22,11666.31,13189.19,3504.97,28360.47,75164.69 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,30937,97765.6,6666.19,21152.63,125584.42,28928.27,12424.5,2121.23,43474.0,169058.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,4562,45396.5,0.0,720.0,46116.5,10306.53,6648.31,3704.11,20658.95,66775.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,29711,3239.5,0.0,249.59,3489.09,726.62,525.65,268.31,1520.58,5009.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",12663,15218.9,0.0,0.0,15218.9,0.0,3207.67,1121.04,4328.71,19547.61 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,26842,42082.16,0.0,0.0,42082.16,8853.73,7026.42,3558.58,19438.73,61520.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9391,228.88,0.0,0.0,228.88,0.0,29.87,17.77,47.64,276.52 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,16833,63109.43,0.0,0.0,63109.43,12978.83,12424.5,5234.19,30637.52,93746.95 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,49928,188718.04,0.0,0.0,188718.04,37880.41,12424.61,18269.93,68574.95,257292.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",17798,149529.41,32042.86,12651.35,194223.62,31712.38,12424.5,3257.08,47393.96,241617.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,39941,40904.0,6786.99,180.0,47870.99,7240.86,6212.24,3685.39,17138.49,65009.48 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,37469,113034.04,0.0,0.0,113034.04,23025.67,12424.5,9118.24,44568.41,157602.45 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,7556,81188.91,1573.92,0.0,82762.83,18525.99,12424.5,1406.88,32357.37,115120.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8301,Sheriff's Property Keeper,46566,9735.89,0.0,0.0,9735.89,0.0,2437.11,754.27,3191.38,12927.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,15114,2823.28,0.0,14.31,2837.59,0.0,1320.11,220.1,1540.21,4377.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25995,149099.02,0.0,18635.76,167734.78,32043.01,12424.5,6810.21,51277.72,219012.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,14676,20415.03,3415.18,1250.36,25080.57,4689.65,4778.63,1986.5,11454.78,36535.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,10260,6416.78,108.31,315.51,6840.6,0.0,2123.52,529.59,2653.11,9493.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,15956,11848.14,0.0,0.0,11848.14,2629.45,3882.66,926.98,7439.09,19287.23 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,50727,187140.78,0.0,10657.07,197797.85,39687.5,12202.3,11036.14,62925.94,260723.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0490,Commander 3,3823,67176.0,0.0,252.32,67428.32,14470.08,3822.92,1128.39,19421.39,86849.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3620,76338.06,26194.94,6830.55,109363.55,16749.4,15339.48,1824.25,33913.13,143276.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32984,124528.6,1211.04,21956.42,147696.06,28367.82,10388.92,5274.49,44031.23,191727.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,2414,4599.02,38.33,142.56,4779.91,0.0,2150.39,370.69,2521.08,7300.99 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,14507,9463.59,0.0,4558.32,14021.91,0.0,0.0,203.32,203.32,14225.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,30577,65592.02,2348.75,3866.92,71807.69,13539.48,12424.5,5638.99,31602.97,103410.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25404,56191.1,0.0,6732.95,62924.05,13576.27,12424.5,5092.48,31093.25,94017.3 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,18023,0.0,0.0,15471.63,15471.63,0.0,22.84,1183.58,1206.42,16678.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,23633,87531.11,0.0,624.0,88155.11,18169.31,12424.5,7310.56,37904.37,126059.48 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,43219,59515.2,6557.14,2605.09,68677.43,12335.59,7867.94,5793.33,25996.86,94674.29 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,28943,2566.8,0.0,0.0,2566.8,0.0,0.0,203.12,203.12,2769.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44885,38471.21,2370.33,516.84,41358.38,10959.18,7636.29,3165.97,21761.44,63119.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,42819,135421.01,0.0,5193.12,140614.13,28301.72,12424.51,10154.81,50881.04,191495.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50621,16741.4,0.0,0.0,16741.4,0.0,1122.99,1296.94,2419.93,19161.33 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,31821,32742.54,0.0,0.0,32742.54,0.0,4079.78,2538.26,6618.04,39360.58 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31297,97514.5,2635.06,9915.78,110065.34,26127.6,12392.66,1862.45,40382.71,150448.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,20068,78496.3,369.35,545.49,79411.14,14284.94,5208.74,2128.85,21622.53,101033.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,50393,47436.76,0.0,1080.0,48516.76,11627.41,12250.68,3899.39,27777.48,76294.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,14677,85368.02,0.0,0.0,85368.02,17594.6,12424.5,7036.63,37055.73,122423.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19817,4207.52,0.0,261.54,4469.06,1213.4,836.74,301.98,2352.12,6821.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,7396,119066.04,2907.66,14308.37,136282.07,31562.16,12424.5,2266.21,46252.87,182534.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31812,111076.6,605.72,19449.92,131132.24,24953.32,11373.2,9567.72,45894.24,177026.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21995,1580.46,0.0,0.0,1580.46,373.89,476.37,122.67,972.93,2553.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,43023,6345.0,0.0,0.0,6345.0,1423.17,1433.6,526.52,3383.29,9728.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,7457,3337.0,0.0,60.0,3397.0,632.18,477.86,261.9,1371.94,4768.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39473,65452.83,8389.13,1692.41,75534.37,18329.88,12891.85,5675.17,36896.9,112431.27 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,1615,11676.01,0.0,0.0,11676.01,3012.41,2867.19,922.61,6802.21,18478.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,33025,16195.1,0.0,0.0,16195.1,3632.57,3392.84,1311.92,8337.33,24532.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52027,70245.0,0.0,6597.7,76842.7,16741.17,12424.5,6312.46,35478.13,112320.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",3343,148809.27,39522.6,19918.45,208250.32,33051.59,15052.75,3497.06,51601.4,259851.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45716,592.33,0.0,17.56,609.89,0.0,256.85,47.22,304.07,913.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25279,100714.4,0.0,1426.32,102140.72,14439.63,9461.74,7211.52,31112.89,133253.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),12892,6093.9,0.0,0.0,6093.9,0.0,1768.1,472.98,2241.08,8334.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26007,7511.5,0.0,94.76,7606.26,0.0,2879.14,589.64,3468.78,11075.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,4519,79722.02,114.26,190.0,80026.28,16469.82,12424.5,6632.41,35526.73,115553.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,48214,63887.01,9907.09,1089.95,74884.05,13382.34,12424.51,6053.94,31860.79,106744.84 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,36213,97943.41,0.0,0.0,97943.41,20182.68,12424.5,7870.48,40477.66,138421.07 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,5227,56531.03,224.5,624.0,57379.53,11780.12,12424.5,4750.52,28955.14,86334.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,7905,36486.0,0.0,0.0,36486.0,6864.18,6212.26,2942.56,16019.0,52505.0 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,49225,25997.32,0.0,423.54,26420.86,6343.13,6421.32,2183.63,14948.08,41368.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6513,18656.0,371.66,480.0,19507.66,4263.22,3822.92,1401.82,9487.96,28995.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9104,Transit Car Cleaner Asst Sprv,4862,35967.01,17706.25,6162.25,59835.51,7413.84,6451.18,4846.79,18711.81,78547.32 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),5283,107634.8,0.0,1500.0,109134.8,22443.0,12424.5,8797.4,43664.9,152799.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,43504,94371.04,0.0,0.0,94371.04,18885.53,10513.06,7758.17,37156.76,131527.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17993,65540.66,16766.29,2420.42,84727.37,18606.68,12916.29,6360.99,37883.96,122611.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27829,43650.76,1726.55,799.64,46176.95,9150.33,11110.37,3760.3,24021.0,70197.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,35403,80946.01,3600.03,3281.43,87827.47,16598.87,12424.5,3332.52,32355.89,120183.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,41024,63887.0,0.0,1544.0,65431.0,13485.68,12424.5,5368.93,31279.11,96710.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47988,69376.79,25846.91,4053.47,99277.17,20125.64,13665.88,7553.32,41344.84,140622.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,33653,63314.88,0.0,1101.31,64416.19,13097.93,10835.6,5263.43,29196.96,93613.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20706,1584.13,0.0,0.0,1584.13,0.0,686.93,122.64,809.57,2393.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,5605,56531.0,15240.27,6607.15,78378.42,12316.37,12424.5,6163.84,30904.71,109283.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9559,56531.0,754.12,400.16,57685.28,11750.45,12424.5,4779.33,28954.28,86639.56 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,36054,16864.79,0.0,0.0,16864.79,3138.53,2804.48,1321.9,7264.91,24129.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5453,60726.65,486.07,1098.56,62311.28,11539.67,6217.03,4309.8,22066.5,84377.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3260,Crafts Instructor,4315,54413.84,0.0,712.08,55125.92,11384.03,11035.71,4423.72,26843.46,81969.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,6951,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,48304,118104.01,0.0,0.0,118104.01,23768.42,12424.5,9503.71,45696.63,163800.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39792,46909.44,12658.77,1779.35,61347.56,11235.62,12423.01,4914.66,28573.29,89920.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8319,0.0,0.0,838.62,838.62,0.0,68.5,64.15,132.65,971.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33360,10808.88,2148.0,37.98,12994.86,0.0,3586.99,1007.96,4594.95,17589.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,20585,75757.09,0.0,1440.0,77197.09,15858.52,11988.37,6585.88,34432.77,111629.86 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,10261,91393.02,0.0,0.0,91393.02,18836.3,12424.5,7329.91,38590.71,129983.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,406,62811.02,7664.75,2016.32,72492.09,12957.14,12424.5,5923.1,31304.74,103796.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,41416,102431.0,230.49,250.0,102911.49,21093.51,12424.5,8344.27,41862.28,144773.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3064,66789.28,3843.63,7699.25,78332.16,20401.81,13162.62,6103.63,39668.06,118000.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33057,62215.08,16263.48,6121.65,84600.21,13760.28,12374.08,6863.61,32997.97,117598.18 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,272C,Fiscal Services Supervisor,16294,99864.41,0.0,4970.0,104834.41,20548.25,12424.5,31310.82,64283.57,169117.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50082,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2396.32,12849.67,44149.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18123,36548.47,3482.7,1185.81,41216.98,9746.03,11412.74,3177.3,24336.07,65553.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,53053,136610.25,16835.16,12695.68,166141.09,27006.85,12424.5,2776.73,42208.08,208349.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,13418,91746.36,58621.91,11069.81,161438.08,19093.03,9557.31,2707.29,31357.63,192795.71 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,48582,74165.01,956.82,0.0,75121.83,15285.75,12424.5,6227.3,33937.55,109059.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7421,Sewer Maintenance Worker,16340,31334.46,409.8,289.48,32033.74,6620.97,5453.66,2749.72,14824.35,46858.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,28858,7677.69,0.0,0.0,7677.69,0.0,2517.76,579.67,3097.43,10775.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,45624,26792.99,0.0,0.0,26792.99,1945.44,8679.23,2124.81,12749.48,39542.47 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,13045,1707.39,0.0,0.0,1707.39,374.6,113.49,132.18,620.27,2327.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36386,67747.79,12702.36,1783.21,82233.36,13984.27,11984.15,6754.43,32722.85,114956.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,34312,99098.03,0.0,0.0,99098.03,20424.58,12424.5,8147.29,40996.37,140094.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,52743,54883.0,3339.18,3189.78,61411.96,13477.35,12424.5,4676.72,30578.57,91990.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52695,149099.0,0.0,39019.04,188118.04,41886.93,12424.5,4749.03,59060.46,247178.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,10920,45948.9,0.0,0.0,45948.9,9494.63,7610.0,3829.28,20933.91,66882.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35287,1062.9,0.0,0.0,1062.9,0.0,262.83,82.49,345.32,1408.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4817,2652.14,0.0,30.38,2682.52,0.0,1293.22,208.08,1501.3,4183.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38032,113233.61,20521.55,18719.67,152474.83,25036.03,15196.12,2550.88,42783.03,195257.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26614,67401.64,1854.16,250.0,69505.8,13948.68,11934.34,5628.14,31511.16,101016.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,18633,70245.0,16920.32,11569.55,98734.87,15832.44,12424.5,8060.01,36316.95,135051.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,43098,93236.97,6663.76,18.17,99918.9,19187.38,12185.63,8235.13,39608.14,139527.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,27826,17676.0,0.0,504.0,18180.0,4077.78,2867.19,1485.51,8430.48,26610.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,30773,63887.0,13268.28,2197.49,79352.77,13332.0,12424.5,6503.7,32260.2,111612.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44934,112598.54,0.0,1805.1,114403.64,22282.88,12414.05,1900.94,36597.87,151001.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20458,95335.0,0.0,20409.67,115744.67,17121.07,9796.24,7056.19,33973.5,149718.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36107,97762.63,761.4,17283.09,115807.12,27255.78,12424.5,1925.09,41605.37,157412.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23625,4352.9,0.0,134.65,4487.55,0.0,1887.57,354.89,2242.46,6730.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,35301,27557.09,0.0,249.49,27806.58,5756.99,6059.33,2300.72,14117.04,41923.62 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,21289,67911.02,523.46,10403.07,78837.55,15459.05,12424.5,6372.28,34255.83,113093.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,41399,51405.02,0.0,4175.0,55580.02,12605.86,12424.5,4540.94,29571.3,85151.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,50693,74326.0,11268.61,7382.88,92977.49,16841.47,12424.51,7598.83,36864.81,129842.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,53014,113254.02,14259.27,13528.57,141041.86,24130.34,15148.33,2254.81,41533.48,182575.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11242,119461.63,4929.71,7854.08,132245.42,23641.9,12424.5,2197.41,38263.81,170509.23 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,23990,2405.75,0.0,3.25,2409.0,448.31,352.3,210.45,1011.06,3420.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,18427,70194.7,0.0,0.0,70194.7,15060.06,7502.48,5669.45,28231.99,98426.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,44701,101531.05,0.0,3951.22,105482.27,21742.3,12424.5,8049.86,42216.66,147698.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,43559,142060.68,0.0,2603.36,144664.04,29095.76,10022.03,10136.51,49254.3,193918.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4801,11576.82,0.0,0.0,11576.82,0.0,4957.85,943.85,5901.7,17478.52 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,13111,135090.13,0.0,0.0,135090.13,27167.13,12424.5,27535.41,67127.04,202217.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3424,Integrated Pest Mgmt Specialst,39631,78501.18,0.0,0.0,78501.18,16216.77,12144.47,6506.05,34867.29,113368.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43708,40060.1,4913.7,749.54,45723.34,10643.24,12107.62,3259.76,26010.62,71733.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,34018,27537.83,54.77,1276.49,28869.09,1874.15,9000.24,2328.29,13202.68,42071.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44116,16847.54,0.0,906.61,17754.15,0.0,1466.45,1193.65,2660.1,20414.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,12173,38083.0,0.0,0.0,38083.0,1075.66,6427.29,3039.51,10542.46,48625.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8121,Investigator/Transit Fare Supv,39787,59462.4,0.0,60.0,59522.4,11946.42,9757.42,4771.91,26475.75,85998.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51384,119455.95,31275.27,6338.0,157069.22,23662.82,12424.5,2621.38,38708.7,195777.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,13536,51657.34,0.0,0.0,51657.34,11238.33,10513.04,4125.01,25876.38,77533.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12297,76876.04,0.0,0.0,76876.04,15848.41,12393.85,6187.74,34430.0,111306.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,46507,12765.25,0.0,2218.83,14984.08,3043.78,3404.79,1168.38,7616.95,22601.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,46869,10160.93,0.0,0.0,10160.93,0.0,3321.17,811.85,4133.02,14293.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11047,112159.76,5776.69,18530.97,136467.42,24822.82,15052.76,2323.79,42199.37,178666.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,22145,129698.75,14394.41,16212.33,160305.49,28663.69,15062.55,2732.05,46458.29,206763.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,3618,106605.0,0.0,0.0,106605.0,21971.81,12424.5,8715.76,43112.07,149717.07 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,19319,103283.02,0.0,0.0,103283.02,21287.16,12424.5,7997.73,41709.39,144992.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,45965,25090.0,0.0,0.0,25090.0,4548.8,2389.33,3270.84,10208.97,35298.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,29516,118104.01,0.0,0.0,118104.01,23768.42,12424.49,9460.13,45653.04,163757.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",9509,19500.8,0.0,0.0,19500.8,0.0,4611.4,1513.38,6124.78,25625.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator, Taxi And Accessible Servic",36192,4527.0,0.0,272.77,4799.77,842.46,716.79,367.92,1927.17,6726.94 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,8594,42489.01,1740.58,800.0,45029.59,9789.88,10178.53,3623.32,23591.73,68621.32 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,20770,51405.0,0.0,4305.49,55710.49,12706.2,12424.5,4602.99,29733.69,85444.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2843,55861.5,0.0,5547.66,61409.16,13559.83,12424.5,4965.09,30949.42,92358.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,35638,11733.03,4477.79,1593.35,17804.17,2652.93,1433.6,295.82,4382.35,22186.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,14554,38799.4,306.38,500.0,39605.78,9494.8,11064.5,3240.24,23799.54,63405.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,32703,39295.13,0.0,397.8,39692.93,8371.52,7920.62,3020.65,19312.79,59005.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2488,Supv Chemist,36475,119321.02,0.0,9261.05,128582.07,24013.58,12424.5,9945.75,46383.83,174965.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,7118,64463.7,11687.1,13161.21,89312.01,15156.39,12424.5,7234.86,34815.75,124127.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44113,14711.74,0.0,0.0,14711.74,777.68,6379.5,1166.69,8323.87,23035.61 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,6077,55348.98,0.0,5376.74,60725.72,14804.28,6331.77,155.8,21291.85,82017.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,17069,90984.01,0.0,0.0,90984.01,18103.69,10035.18,7318.75,35457.62,126441.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16995,67409.78,11507.06,778.0,79694.84,15544.5,13284.24,6094.62,34923.36,114618.2 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",47263,800.0,0.0,0.0,800.0,0.0,47.79,62.0,109.79,909.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4569,747.26,0.0,25.48,772.74,0.0,364.37,59.97,424.34,1197.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,8472,77512.01,0.0,9587.25,87099.26,14407.42,6690.12,4798.37,25895.91,112995.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50360,1111.59,0.0,0.0,1111.59,0.0,83.62,85.41,169.03,1280.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,37165,20048.9,3900.44,2309.48,26258.82,3786.26,3745.75,2125.0,9657.01,35915.83 +Calendar,2015,4,Community Health,DPH,Public Health,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",10911,1196.0,0.0,0.0,1196.0,0.0,0.0,94.6,94.6,1290.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41652,536.95,0.0,807.08,1344.03,126.47,232.85,110.89,470.21,1814.24 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",35492,5558.1,0.0,302.54,5860.64,0.0,0.0,462.99,462.99,6323.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,49467,67470.14,0.0,0.0,67470.14,13911.07,12376.72,5318.79,31606.58,99076.72 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,4029,92522.15,24071.64,12717.76,129311.55,20753.73,12269.85,9869.63,42893.21,172204.76 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,23071,191926.01,0.0,19997.6,211923.61,42648.51,12424.51,11177.93,66250.95,278174.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6200,Public Safety Inspection,6220,"Inspector, Weights & Measures",29255,61782.24,0.0,0.0,61782.24,12757.26,11387.83,5100.71,29245.8,91028.04 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,33929,130937.77,0.0,0.0,130937.77,26312.4,12222.6,9963.59,48498.59,179436.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,21944,44137.57,0.0,0.0,44137.57,10714.34,10676.05,3263.66,24654.05,68791.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",198,91688.71,0.0,0.0,91688.71,18812.13,11720.66,7584.55,38117.34,129806.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,16902,67216.63,2754.27,1451.98,71422.88,13853.32,12416.32,5794.21,32063.85,103486.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28441,63543.15,19003.39,1052.18,83598.72,17720.19,12526.65,6317.56,36564.4,120163.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7200,Supervisory-Labor & Trade,7208,Heavy Equipment Ops Sprv,10540,109563.0,0.0,0.0,109563.0,22049.79,12424.5,8801.08,43275.37,152838.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8470,56531.0,0.0,8246.72,64777.72,12688.94,12424.5,5088.44,30201.88,94979.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,52422,136193.03,0.0,4952.5,141145.53,28374.23,11349.32,10111.18,49834.73,190980.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,1383,156746.03,0.0,6215.99,162962.02,32798.37,12424.51,10504.71,55727.59,218689.61 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,34677,85345.6,134.89,2204.19,87684.68,17693.05,11315.07,7297.44,36305.56,123990.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,20700,64151.73,5565.63,4093.36,73810.72,13751.78,12133.37,5973.94,31859.09,105669.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11620,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,3953,47117.39,0.0,733.99,47851.38,9813.21,6917.09,3946.04,20676.34,68527.72 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,51754,19872.0,0.0,0.0,19872.0,3698.19,2150.39,1552.67,7401.25,27273.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,1823,12229.63,0.0,0.0,12229.63,0.0,2711.88,948.49,3660.37,15890.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,5988,65758.01,986.65,2655.52,69400.18,15135.8,12424.5,5604.08,33164.38,102564.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",44095,129030.52,11299.61,16568.3,156898.43,28507.35,14903.55,2627.42,46038.32,202936.75 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,8304,59516.12,8139.64,14410.61,82066.37,5294.06,4305.86,6365.86,15965.78,98032.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2846,5055.43,0.0,0.0,5055.43,0.0,2192.21,406.34,2598.55,7653.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51534,14027.01,698.8,586.21,15312.02,4127.92,2775.68,1125.32,8028.92,23340.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20018,61590.6,1768.4,615.29,63974.29,17016.3,12136.52,4662.1,33814.92,97789.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21854,66646.85,4912.82,4890.92,76450.59,19632.41,13134.43,5812.08,38578.92,115029.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,42450,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23595,24138.51,2426.24,1137.3,27702.05,6230.44,7496.18,2118.68,15845.3,43547.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50306,97749.45,9364.01,12515.8,119629.26,26681.16,12422.58,754.34,39858.08,159487.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27552,112696.21,16803.0,10594.93,140094.14,22291.44,12424.5,2314.16,37030.1,177124.24 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,404,143188.05,0.0,0.0,143188.05,28816.78,12424.5,10241.56,51482.84,194670.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50065,56531.0,0.0,6006.85,62537.85,12393.5,12424.5,4890.78,29708.78,92246.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",9886,81697.08,36512.13,9175.55,127384.76,17850.32,12297.57,9776.55,39924.44,167309.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,316,138631.33,39830.45,12242.24,190704.02,27409.92,12424.51,3196.38,43030.81,233734.83 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,44450,208032.0,0.0,5723.14,213755.14,43018.44,12424.5,11453.36,66896.3,280651.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",9667,121162.5,12973.91,12116.25,146252.66,26504.12,10990.9,368.27,37863.29,184115.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,39537,74268.26,0.0,1816.8,76085.06,15673.59,9891.82,5640.77,31206.18,107291.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,6633,80470.96,0.0,613.99,81084.95,16738.54,12225.0,6476.82,35440.36,116525.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1071,IS Manager,18688,170237.11,0.0,0.0,170237.11,34260.51,12424.5,28179.06,74864.07,245101.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,50462,45166.01,0.0,0.0,45166.01,8188.62,4300.78,3637.55,16126.95,61292.96 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,21109,212702.61,0.0,11760.0,224462.61,42763.95,12376.72,11394.13,66534.8,290997.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19278,97764.21,0.0,9025.39,106789.6,25975.25,12424.5,1814.5,40214.25,147003.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26386,45654.3,0.0,9166.73,54821.03,3700.02,3655.43,2582.21,9937.66,64758.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,41936,49391.2,0.0,910.0,50301.2,9804.22,8314.85,3858.45,21977.52,72278.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,18043,3318.4,128.33,331.84,3778.57,0.0,764.58,293.28,1057.86,4836.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,14340,45616.92,0.0,0.0,45616.92,9023.27,8601.57,3705.33,21330.17,66947.09 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0962,Dept Head II,38952,145230.3,0.0,0.0,145230.3,28517.17,9814.17,22036.87,60368.21,205598.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50158,4731.0,0.0,94.62,4825.62,205.56,0.0,-0.01,205.55,5031.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,38886,84982.81,0.0,0.0,84982.81,17668.71,10404.93,6853.17,34926.81,119909.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46205,67327.13,45267.67,3079.79,115674.59,19273.32,13265.2,8850.52,41389.04,157063.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10715,36481.81,0.0,10554.79,47036.6,7460.09,0.0,8131.76,15591.85,62628.45 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,49688,2245.6,0.0,1441.8,3687.4,586.59,558.03,299.57,1444.19,5131.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2469,Diagnostic Imaging Tech III,40123,85880.29,0.0,4194.27,90074.56,18872.16,8681.03,7206.75,34759.94,124834.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24096,9532.31,0.0,0.0,9532.31,0.0,4133.54,767.86,4901.4,14433.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7246,Sewer Repair Supervisor,52824,106116.08,1926.61,13786.68,121829.37,22174.63,12424.5,9824.32,44423.45,166252.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,49030,173265.01,0.0,250.0,173515.01,34825.09,12424.5,10172.0,57421.59,230936.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,34978,123357.01,0.0,0.0,123357.01,24796.84,12424.51,9836.37,47057.72,170414.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40603,33434.58,5451.96,402.17,39288.71,8121.12,12299.48,3535.18,23955.78,63244.49 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,40009,49533.59,1430.39,4176.97,55140.95,4831.59,11114.86,4335.71,20282.16,75423.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,45469,57299.0,3343.73,2200.45,62843.18,13287.96,12424.48,5078.15,30790.59,93633.77 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,5705,85106.25,0.0,0.0,85106.25,17497.88,12053.5,6960.88,36512.26,121618.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,36553,3246.1,0.0,0.0,3246.1,0.0,652.58,251.31,903.89,4149.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,34494,81432.54,54267.81,10914.35,146614.7,18814.64,10943.12,10076.13,39833.89,186448.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,44018,63102.0,0.0,547.11,63649.11,13114.69,12424.5,5211.1,30750.29,94399.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,15619,1229.2,0.0,94.83,1324.03,0.0,334.51,102.58,437.09,1761.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46424,24492.53,186.24,1874.4,26553.17,6327.91,6230.18,2222.34,14780.43,41333.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22439,66028.64,8802.94,896.0,75727.58,15214.79,13011.26,5570.41,33796.46,109524.04 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,2730,185263.01,0.0,33435.61,218698.62,41156.37,12424.5,11465.03,65045.9,283744.52 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,47647,82914.06,0.0,0.0,82914.06,17088.82,12424.52,6877.95,36391.29,119305.35 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,21980,45995.0,0.0,0.0,45995.0,8338.85,4778.65,3530.53,16648.03,62643.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,14647,18853.47,9562.98,648.99,29065.44,0.0,3790.25,2251.53,6041.78,35107.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,1323,111811.06,11942.07,2048.54,125801.67,22701.19,12412.54,9804.2,44917.93,170719.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7365,67260.33,8693.11,4170.35,80123.79,19518.92,13252.11,6038.25,38809.28,118933.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,37413,7111.7,0.0,0.0,7111.7,0.0,2353.49,551.71,2905.2,10016.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40330,67124.55,10593.14,4967.66,82685.35,19818.31,13235.73,6405.08,39459.12,122144.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",16155,7827.3,0.0,0.0,7827.3,0.0,1863.67,607.53,2471.2,10298.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1390,119465.56,10055.34,13357.84,142878.74,23627.23,12424.5,1838.47,37890.2,180768.94 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27584,44652.0,5804.34,6845.71,57302.05,12112.23,5734.39,970.36,18816.98,76119.03 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,36173,111918.02,0.0,100.0,112018.02,22523.67,12424.5,8996.53,43944.7,155962.72 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,42299,49846.67,6071.16,3432.92,59350.75,11166.58,6651.77,4930.82,22749.17,82099.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,10846,21616.38,0.0,0.0,21616.38,5577.03,6537.8,1705.74,13820.57,35436.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,50784,151578.3,0.0,0.0,151578.3,30289.03,12163.59,27808.37,70260.99,221839.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,2093,63887.01,14060.02,798.21,78745.24,13331.91,12424.5,6444.39,32200.8,110946.04 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,40153,35516.05,0.0,0.0,35516.05,8282.0,9055.56,2848.01,20185.57,55701.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40033,3658.29,0.0,640.85,4299.14,26.81,1574.63,370.59,1972.03,6271.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3655,44401.57,6449.23,541.8,51392.6,10218.14,8708.56,3872.31,22799.01,74191.61 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,32848,88764.32,0.0,0.0,88764.32,18289.93,12424.5,7149.3,37863.73,126628.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,1382,63855.06,17041.72,8939.57,89836.35,14409.67,12297.39,7309.07,34016.13,123852.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7576,5498.22,0.0,250.0,5748.22,1544.16,1082.78,394.96,3021.9,8770.12 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",7751,50118.18,5743.24,4313.71,60175.13,12216.83,9002.75,1296.76,22516.34,82691.47 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0884,Mayoral Staff IV,38959,24248.2,0.0,0.0,24248.2,5048.37,6206.28,6464.98,17719.63,41967.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18628,61929.0,12494.12,3811.14,78234.26,13045.43,10990.91,6212.5,30248.84,108483.1 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",11383,907.32,0.0,0.0,907.32,0.0,198.61,70.24,268.85,1176.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",46830,8855.9,0.0,0.0,8855.9,0.0,2108.58,685.62,2794.2,11650.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46064,105516.19,107.21,23446.34,129069.74,17538.46,11125.6,9233.25,37897.31,166967.05 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,7132,156.3,0.0,0.0,156.3,0.0,35.84,12.1,47.94,204.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,36656,55887.91,6195.73,1120.0,63203.64,11983.68,10091.93,4842.84,26918.45,90122.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24283,1250.71,273.4,266.04,1790.15,296.35,237.49,117.39,651.23,2441.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35632,119467.34,4713.6,14398.96,138579.9,23620.96,12424.5,2360.73,38406.19,176986.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,3426,Forester,19070,84008.42,0.0,0.0,84008.42,17586.51,10035.18,14003.57,41625.26,125633.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,4170,97793.02,9512.45,13692.34,120997.81,22273.38,12424.5,9778.33,44476.21,165474.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,22370,105736.84,6384.27,9590.17,121711.28,21064.9,10990.9,2802.47,34858.27,156569.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52548,70210.35,0.0,3095.35,73305.7,14491.9,12418.53,5796.87,32707.3,106013.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,9368,100554.0,0.0,0.0,100554.0,20739.51,12424.49,8215.86,41379.86,141933.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),21276,23112.0,0.0,1241.14,24353.14,4101.52,1911.46,417.48,6430.46,30783.6 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",29663,63675.7,11098.2,5500.47,80274.37,13768.44,12376.42,1689.59,27834.45,108108.82 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,21571,81542.03,0.0,0.0,81542.03,16806.16,12424.5,6310.39,35541.05,117083.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,28002,59689.72,24305.64,12831.71,96827.07,14156.54,11803.27,7855.12,33814.93,130642.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",12998,11398.78,0.0,0.0,11398.78,0.0,2705.91,883.77,3589.68,14988.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,32873,27336.04,0.0,1181.87,28517.91,6815.3,6749.85,2282.77,15847.92,44365.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30717,1382.8,0.0,0.0,1382.8,0.0,0.0,91.18,91.18,1473.98 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,34633,67065.83,0.0,1265.0,68330.83,14051.81,12424.5,5540.67,32016.98,100347.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",3322,94388.0,21466.73,2879.85,118734.58,19930.95,12424.5,9316.03,41671.48,160406.06 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9155,Claims Investigator,49224,105576.0,26869.32,11246.5,143691.82,22245.32,12424.5,10170.52,44840.34,188532.16 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",48233,198139.04,0.0,5525.28,203664.32,40987.79,12424.5,11243.17,64655.46,268319.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29786,54862.4,0.0,5230.01,60092.41,13905.25,12424.5,4927.33,31257.08,91349.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,5745,24431.01,0.0,0.0,24431.01,5479.87,5256.52,1794.1,12530.49,36961.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32390,73707.77,0.0,0.0,73707.77,0.0,6045.12,5716.18,11761.3,85469.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,9056,54793.5,7568.61,4439.34,66801.45,12652.0,12376.71,5366.41,30395.12,97196.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,10623,23109.0,217.86,3077.76,26404.62,4359.82,2867.19,2093.63,9320.64,35725.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,32905,26481.0,2307.61,337.05,29125.66,4928.16,5734.39,2309.3,12971.85,42097.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,33544,133087.02,0.0,8071.86,141158.88,26783.95,12424.49,10195.04,49403.48,190562.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,6511,52757.8,0.0,2072.87,54830.67,11575.09,5638.8,4291.22,21505.11,76335.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,46831,143.7,0.0,0.0,143.7,0.0,47.79,11.15,58.94,202.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,10564,58989.25,0.0,1416.8,60406.05,12309.5,9891.81,4747.06,26948.37,87354.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27083,97778.67,43190.06,7384.29,148353.02,25573.54,12424.5,2473.14,40471.18,188824.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,46970,4452.09,0.0,6.13,4458.22,0.0,2081.7,345.84,2427.54,6885.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,47189,100761.01,0.0,4592.19,105353.2,21714.52,12424.5,8260.4,42399.42,147752.62 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,9112,1500.0,0.0,0.0,1500.0,0.0,89.6,116.35,205.95,1705.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,5886,81157.02,16247.4,15952.35,113356.77,18750.56,12424.5,8922.86,40097.92,153454.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator,Taxi & Accesssvcs",26457,93037.0,0.0,0.0,93037.0,19175.76,12424.5,7876.06,39476.32,132513.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,28587,94906.12,13600.36,2229.0,110735.48,19968.5,12101.41,8915.49,40985.4,151720.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2996,"Rep, Human Rights Comm",8434,20134.28,0.0,0.0,20134.28,4516.12,2765.59,1679.03,8960.74,29095.02 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,10706,75859.83,0.0,2223.46,78083.29,15952.88,12228.04,6411.51,34592.43,112675.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",315,178604.34,76135.81,25592.65,280332.8,40143.35,15052.76,4684.17,59880.28,340213.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,40082,30508.58,0.0,257.75,30766.33,7386.44,7535.35,2527.39,17449.18,48215.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,34558,138719.1,47672.52,9152.41,195544.03,27454.43,12424.5,3287.88,43166.81,238710.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,21206,138624.71,45831.44,27293.42,211749.57,27434.17,12424.5,3577.4,43436.07,255185.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,37481,69976.51,151.93,15455.6,85584.04,14566.24,12376.69,5860.04,32802.97,118387.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33314,76952.87,38099.67,7487.35,122539.89,16855.26,15196.12,2045.63,34097.01,156636.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,21285,63887.0,22.89,1530.61,65440.5,13484.88,12424.52,5379.91,31289.31,96729.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32445,75607.44,35370.59,7284.97,118263.0,16604.58,15196.11,1927.39,33728.08,151991.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39613,104883.28,0.0,6009.2,110892.48,0.0,0.0,1897.98,1897.98,112790.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,32766,112776.05,27601.21,2255.52,142632.78,23150.49,12424.5,10111.5,45686.49,188319.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36423,146673.97,935.34,42679.92,190289.23,39896.98,12223.79,3428.05,55548.82,245838.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,41740,59802.31,0.0,1631.55,61433.86,13486.83,12424.5,4647.87,30559.2,91993.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25606,12520.0,0.0,0.0,12520.0,2269.88,1911.46,936.02,5117.36,17637.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,24752,101323.0,6746.55,0.0,108069.55,20883.1,12424.49,8654.06,41961.65,150031.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,9687,62187.01,4692.86,4082.35,70962.22,13574.8,12424.5,5600.03,31599.33,102561.55 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,3605,1432.4,0.0,1047.77,2480.17,348.86,191.14,249.81,789.81,3269.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,51053,65452.01,1821.84,624.0,67897.85,13618.71,12424.5,5576.97,31620.18,99518.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,30269,81942.02,49.85,10269.07,92260.94,19007.64,12424.5,7392.24,38824.38,131085.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",36644,106090.0,5354.19,3812.86,115257.05,22379.18,12424.5,9467.91,44271.59,159528.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,7191,70255.82,0.0,0.0,70255.82,14563.18,8197.18,5830.66,28591.02,98846.84 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,31324,9154.0,0.0,414.0,9568.0,2468.54,2198.18,773.5,5440.22,15008.22 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,37815,5213.25,0.0,0.0,5213.25,1143.79,477.86,406.71,2028.36,7241.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,38894,28281.02,0.0,0.0,28281.02,7296.52,5256.53,2217.79,14770.84,43051.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,49971,17859.78,0.0,0.0,17859.78,0.0,2475.94,1386.21,3862.15,21721.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,35592,56406.0,0.0,5575.92,61981.92,12773.46,12424.5,5026.87,30224.83,92206.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,35155,5307.0,0.0,99569.13,104876.13,1213.98,477.86,14.19,1706.03,106582.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,32663,22651.82,2994.29,378.27,26024.38,5794.31,6929.05,2040.77,14764.13,40788.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,36082,58780.64,5759.52,9354.24,73894.4,12980.32,9649.18,6113.12,28742.62,102637.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,3467,116976.02,0.0,3161.63,120137.65,24176.17,12424.49,9632.6,46233.26,166370.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",32819,144809.02,38294.94,25504.42,208608.38,33253.99,14646.22,3704.42,51604.63,260213.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,32089,60055.0,616.31,5842.01,66513.32,13009.63,10172.56,5323.7,28505.89,95019.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27417,66478.91,3263.42,933.06,70675.39,18473.4,13102.35,5492.99,37068.74,107744.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21823,84454.15,0.0,3897.98,88352.13,0.0,7382.78,6851.61,14234.39,102586.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47417,17528.44,3140.92,640.74,21310.1,4352.37,5411.59,1630.69,11394.65,32704.75 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,24373,101840.14,0.0,0.0,101840.14,20986.14,12402.58,8322.76,41711.48,143551.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,36334,63102.0,546.3,1056.49,64704.79,13143.54,12424.51,5315.09,30883.14,95587.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30967,1343.7,0.0,0.0,1343.7,243.61,143.35,104.29,491.25,1834.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,34546,56276.03,0.0,1984.0,58260.03,13033.51,12424.5,4448.48,29906.49,88166.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11664,113233.6,73546.49,19547.39,206327.48,25036.03,15196.12,3474.3,43706.45,250033.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,2754,27253.66,3332.01,2165.21,32750.88,5362.56,5322.23,2567.58,13252.37,46003.25 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",2800,Public Health,2806,Disease Control Investigator,27171,73406.04,0.0,672.26,74078.3,15270.02,12424.5,6106.42,33800.94,107879.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5479,142116.09,553.1,14441.75,157110.94,28334.53,12202.3,9873.32,50410.15,207521.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,34508,117129.08,8075.51,9635.89,134840.48,23207.25,12424.5,2287.69,37919.44,172759.92 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,5449,90588.69,0.0,731.04,91319.73,18002.92,10043.06,7395.4,35441.38,126761.11 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,26674,101497.2,0.0,11343.19,112840.39,22672.67,11749.51,9338.81,43760.99,156601.38 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6124,Pr Environmental Hlth Insp,10510,124094.69,0.0,0.0,124094.69,24970.25,12400.67,9844.76,47215.68,171310.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,283,75027.01,10607.87,4834.15,90469.03,15591.66,12328.92,7175.46,35096.04,125565.07 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",18472,13900.65,0.0,1274.4,15175.05,0.0,0.0,1200.09,1200.09,16375.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,43906,170956.13,0.0,250.0,171206.13,34404.93,12423.48,10673.55,57501.96,228708.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,18436,44928.0,3577.95,2534.4,51040.35,10645.8,5734.39,4109.86,20490.05,71530.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,46225,60635.06,0.0,1586.49,62221.55,12790.35,11677.71,5048.26,29516.32,91737.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52005,110.2,0.0,3.51,113.71,0.0,47.79,8.83,56.62,170.33 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,33687,93269.62,40427.45,10439.9,144136.97,20747.51,12370.74,10122.93,43241.18,187378.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12026,2555.27,0.0,0.0,2555.27,0.0,1108.05,205.8,1313.85,3869.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6842,2364.25,0.0,0.0,2364.25,0.0,1152.85,183.42,1336.27,3700.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,46514,2224.3,0.0,18.81,2243.11,0.0,740.69,173.87,914.56,3157.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,9288,62468.83,210.85,912.5,63592.18,12994.98,12424.5,4954.21,30373.69,93965.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,43703,158707.0,0.0,0.0,158707.0,31940.4,12424.5,17667.73,62032.63,220739.63 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,20882,39480.05,0.0,972.12,40452.17,8959.94,4778.65,3300.41,17039.0,57491.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46839,97764.21,8695.29,8819.88,115279.38,25923.97,12424.51,1915.19,40263.67,155543.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,36967,79746.05,0.0,1528.01,81274.06,16670.44,11708.3,6755.21,35133.95,116408.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,20909,62730.68,2191.76,6273.07,71195.51,14247.32,12199.95,5847.06,32294.33,103489.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45290,14861.48,0.0,1027.86,15889.34,107.15,0.0,3561.38,3668.53,19557.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16269,27011.41,2674.46,746.16,30432.03,6951.21,8405.12,2318.57,17674.9,48106.93 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,19989,45363.83,0.0,0.0,45363.83,9357.25,9711.48,3775.94,22844.67,68208.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,10481,150710.0,0.0,1799.76,152509.76,30655.14,12424.5,10278.24,53357.88,205867.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,21002,12320.0,0.0,0.0,12320.0,2763.36,1911.46,994.74,5669.56,17989.56 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,26308,53973.03,0.0,624.0,54597.03,13095.26,12424.5,4480.02,29999.78,84596.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,29310,6528.6,0.0,0.0,6528.6,1214.97,1290.24,506.54,3011.75,9540.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47951,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3376.05,18201.9,61969.2 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9157,Claims Adjuster,30930,98020.0,0.0,14656.19,112676.19,20093.24,10513.04,9015.88,39622.16,152298.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9257,65552.23,3362.99,1132.4,70047.62,15182.43,12918.02,5307.68,33408.13,103455.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,33097,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5119.72,30396.84,92755.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,23729,108371.7,335.28,11408.54,120115.52,28335.96,12424.5,377.61,41138.07,161253.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,37171,58270.41,7058.84,4372.92,69702.17,13931.48,11325.4,5624.15,30881.03,100583.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,50735,100988.03,0.0,7835.28,108823.31,21829.85,12424.51,8787.13,43041.49,151864.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,37553,80563.68,0.0,0.0,80563.68,16613.6,12423.55,6682.81,35719.96,116283.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,29829,140334.03,0.0,5390.94,145724.97,29276.4,12424.49,10194.87,51895.76,197620.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,47480,81942.0,23646.93,17153.19,122742.12,19533.34,12424.5,9710.77,41668.61,164410.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46033,54288.53,9378.48,3064.24,66731.25,16207.51,10766.25,4983.2,31956.96,98688.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",2731,30887.03,0.0,48699.04,79586.07,7670.7,3583.99,1230.58,12485.27,92071.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,801,25369.51,0.0,0.0,25369.51,5206.65,5322.23,2136.53,12665.41,38034.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,35946,36989.89,2402.83,906.39,40299.11,8787.66,8834.54,3155.61,20777.81,61076.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,6827,5804.0,0.0,0.0,5804.0,1080.12,955.74,446.8,2482.66,8286.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,6898,93738.1,14270.4,4019.83,112028.33,19486.29,12424.51,9173.04,41083.84,153112.17 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,39124,10104.87,0.0,109.24,10214.11,0.0,1806.92,791.64,2598.56,12812.67 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,8529,Probation Assistant,50362,28600.1,0.0,0.0,28600.1,6477.26,7120.19,2314.12,15911.57,44511.67 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,8268,75028.01,0.0,0.0,75028.01,15463.6,12424.5,6171.59,34059.69,109087.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,3450,60248.04,2005.68,3537.1,65790.82,12707.61,12424.5,5390.3,30522.41,96313.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,46484,44222.59,1958.48,4879.39,51060.46,11412.24,11593.73,3826.17,26832.14,77892.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",24654,9982.42,3705.46,1647.1,15334.98,2052.62,1146.88,259.3,3458.8,18793.78 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,52035,93048.61,22324.07,3499.95,118872.63,19214.37,12340.88,9744.77,41300.02,160172.65 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,23452,82201.88,0.0,9512.3,91714.18,961.11,7002.22,7240.94,15204.27,106918.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27911,175.6,0.0,14.05,189.65,0.0,47.79,14.67,62.46,252.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12917,102907.44,177.17,18721.45,121806.06,24404.44,11175.3,9775.08,45354.82,167160.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,12458,76888.0,0.0,0.0,76888.0,15516.24,10035.18,5827.83,31379.25,108267.25 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,34646,81116.01,0.0,0.0,81116.01,16718.52,12424.5,6657.09,35800.11,116916.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30784,6311.05,0.0,250.0,6561.05,1750.92,1242.63,468.46,3462.01,10023.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,42270,83699.02,5853.45,1204.92,90757.39,17424.49,12424.51,7218.16,37067.16,127824.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",26783,77705.0,6738.69,9322.31,93766.0,15498.78,9079.43,7253.1,31831.31,125597.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23163,49220.1,529.95,1951.53,51701.58,9261.04,5304.32,4078.1,18643.46,70345.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8210,Head Park Patrol Officer,35177,78204.12,93979.55,9493.49,181677.16,16575.6,12424.5,10749.86,39749.96,221427.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12866,119467.37,16772.09,4313.16,140552.62,23620.99,12424.5,1757.38,37802.87,178355.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,39718,12541.25,0.0,0.0,12541.25,101.91,3034.45,970.95,4107.31,16648.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,10777,8109.49,0.0,0.0,8109.49,0.0,2652.15,676.91,3329.06,11438.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,52150,81942.0,19296.12,5421.49,106659.61,17010.79,12424.5,8677.33,38112.62,144772.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,36.0,"Hod Carriers, Local 166",7400,Skilled Labor,7428,Hodcarrier,18473,76408.16,110.48,1070.0,77588.64,15965.39,12316.99,6398.47,34680.85,112269.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,53124,48776.0,0.0,18760.0,67536.0,10940.42,6212.25,5334.8,22487.47,90023.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,6748,11920.0,4488.53,2002.59,18411.12,2115.02,955.73,312.22,3382.97,21794.09 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,15031,121472.0,0.0,3467.2,124939.2,24461.52,12424.5,32171.13,69057.15,193996.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,300,56531.0,2153.97,6171.71,64856.68,12213.72,12424.5,5198.75,29836.97,94693.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,27803,41894.31,0.0,0.0,41894.31,9191.61,4378.8,8149.97,21720.38,63614.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,24168,7325.16,0.0,0.0,7325.16,1607.14,477.86,578.68,2663.68,9988.84 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,2741,105728.04,0.0,0.0,105728.04,21783.83,12424.5,8312.73,42521.06,148249.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,48486,46395.0,0.0,360.0,46755.0,9350.23,9318.38,3877.47,22546.08,69301.08 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,1061,100402.54,0.0,0.0,100402.54,20672.88,12424.51,7997.49,41094.88,141497.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30351,118878.54,7651.56,7032.78,133562.88,23560.23,12364.77,2274.2,38199.2,171762.08 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,48636,17936.0,0.0,8301.35,26237.35,4171.22,3631.78,2121.28,9924.28,36161.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47754,47707.2,4219.36,3309.6,55236.16,11543.7,12424.5,4191.82,28160.02,83396.18 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,46367,85004.01,18554.5,166.3,103724.81,17552.7,12424.5,8280.27,38257.47,141982.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",46249,94388.0,31233.02,2664.93,128285.95,19889.7,12424.55,9845.68,42159.93,170445.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1944,Materials Coordinator,37110,118104.0,0.0,0.0,118104.0,23768.42,12424.5,9665.81,45858.73,163962.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51416,19451.68,0.0,543.04,19994.72,343.12,0.0,406.41,749.53,20744.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",32595,93214.0,9815.76,3524.21,106553.97,19629.37,12354.63,8538.33,40522.33,147076.3 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,31479,12468.5,0.0,0.0,12468.5,2741.83,3297.27,997.54,7036.64,19505.14 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8228,Museum Sec Supv,22790,69493.69,16210.28,4505.08,90209.05,14435.31,12291.42,7397.13,34123.86,124332.91 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,47746,154300.5,0.0,4725.0,159025.5,31063.38,8786.75,10404.04,50254.17,209279.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,25934,84020.15,24293.81,4002.0,112315.96,17767.24,11268.3,9191.1,38226.64,150542.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,221,77708.79,0.0,4945.81,82654.6,15790.89,9270.59,1362.81,26424.29,109078.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,26783,25317.0,3534.76,1794.38,30646.14,5678.61,3345.07,2625.5,11649.18,42295.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,677,66247.11,3522.53,1602.63,71372.27,18611.63,13056.12,5558.79,37226.54,108598.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28168,72671.42,11329.33,6554.69,90555.44,15944.21,15052.75,1500.42,32497.38,123052.82 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,41197,93045.79,1929.85,7559.64,102535.28,19740.47,12340.88,8420.51,40501.86,143037.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,6883,88345.61,0.0,0.0,88345.61,18487.16,10035.18,7032.97,35555.31,123900.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1752,Sr Microphoto/Imaging Tech,42176,63102.02,0.0,0.0,63102.02,13005.55,12424.5,5233.31,30663.36,93765.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34891,15896.35,0.0,1345.07,17241.42,2025.99,6893.21,1387.28,10306.48,27547.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,16021,90561.01,16971.74,1581.66,109114.41,18625.77,12424.5,8760.29,39810.56,148924.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12175,0.0,0.0,5718.46,5718.46,0.0,68.5,418.33,486.83,6205.29 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,22717,30814.03,2234.69,1097.83,34146.55,3940.65,6943.98,2617.84,13502.47,47649.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5218,Structural Engineer,38388,149312.0,0.0,0.0,149312.0,30049.2,12424.5,10270.1,52743.8,202055.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,39294,90816.01,11870.43,3329.67,106016.11,19297.98,11229.77,8078.65,38606.4,144622.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,49159,2945.28,0.0,0.0,2945.28,0.0,1377.15,228.59,1605.74,4551.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,47506,86663.04,13039.92,3743.75,103446.71,18639.9,12424.5,8223.13,39287.53,142734.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8665,0.0,0.0,250.0,250.0,0.0,34.25,0.0,34.25,284.25 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,26673,67261.01,0.0,0.0,67261.01,13862.81,12424.5,5396.24,31683.55,98944.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,31007,13964.01,0.0,0.0,13964.01,3132.12,1911.46,1145.4,6188.98,20152.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17738,126415.34,0.0,30054.01,156469.35,33523.96,10535.02,3568.25,47627.23,204096.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,45102,98157.06,0.0,2330.0,100487.06,20711.97,12424.48,8081.91,41218.36,141705.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,18409,19749.02,25.87,4161.72,23936.61,3587.85,1433.6,405.03,5426.48,29363.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,30505,64680.02,15215.17,3052.95,82948.14,13901.7,9557.31,6480.28,29939.29,112887.43 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,20912,51988.02,0.0,1496.16,53484.18,12133.23,11471.88,4394.05,27999.16,81483.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3967,1548.04,0.0,7.11,1555.15,0.0,754.85,120.7,875.55,2430.7 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,48321,75028.01,0.0,0.0,75028.01,15463.61,12424.5,5535.05,33423.16,108451.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,29367,80602.87,10277.7,6065.47,96946.04,17352.23,11921.55,7546.45,36820.23,133766.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,24788,135421.03,0.0,0.0,135421.03,27248.58,12424.51,10029.73,49702.82,185123.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26134,27896.59,3423.74,842.72,32163.05,7350.97,8692.97,2455.31,18499.25,50662.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8844,37060.37,0.0,447.36,37507.73,4769.02,3063.71,2674.06,10506.79,48014.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22293,113222.99,1743.71,18417.93,133384.63,24946.03,15196.12,2216.62,42358.77,175743.4 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,50219,45453.0,0.0,0.0,45453.0,9065.91,9079.45,3594.71,21740.07,67193.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,8122,130845.83,7892.12,16355.69,155093.64,28930.03,15196.12,2597.52,46723.67,201817.31 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,44022,74540.56,0.0,51.72,74592.28,15345.74,12242.32,6139.21,33727.27,108319.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42734,119450.11,49477.1,7993.74,176920.95,23683.74,12424.51,2961.21,39069.46,215990.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,45855,84063.27,6867.9,3743.1,94674.27,17740.29,12340.33,7413.74,37494.36,132168.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,7577,66102.0,2046.4,0.0,68148.4,13624.06,12424.5,5631.76,31680.32,99828.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15305,13259.0,0.0,77.96,13336.96,0.0,5077.32,1034.12,6111.44,19448.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,13555,68590.71,0.0,0.0,68590.71,14134.57,12400.61,5410.96,31946.14,100536.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,19567,119455.88,4251.71,9704.38,133411.97,24240.15,12424.5,2227.1,38891.75,172303.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5915,113233.6,6678.47,21277.83,141189.9,25481.14,15196.12,2394.24,43071.5,184261.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,17743,73406.02,546.97,4300.9,78253.89,15258.02,12424.5,6452.4,34134.92,112388.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,42300,86175.08,1336.5,0.0,87511.58,17702.55,11946.63,6973.8,36622.98,124134.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,13341,43218.22,327.3,48318.32,91863.84,9886.19,3891.55,115.05,13892.79,105756.63 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,47728,92737.51,40711.25,5636.35,139085.11,19629.43,12298.58,10081.37,42009.38,181094.49 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,52373,97971.2,0.0,813.27,98784.47,20351.19,12424.5,7781.47,40557.16,139341.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,10255,129604.92,52671.77,15569.12,197845.81,28572.18,15052.76,3341.4,46966.34,244812.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,34207,3324.21,0.0,99.28,3423.49,0.0,979.62,265.66,1245.28,4668.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,34365,82717.0,2182.65,8766.99,93666.64,18214.61,12424.5,7727.72,38366.83,132033.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18572,80953.82,10878.05,7668.42,99500.29,16716.74,12424.5,1658.06,30799.3,130299.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,11491,79115.61,0.0,0.0,79115.61,16276.04,12424.47,6370.43,35070.94,114186.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12386,8857.61,0.0,97.53,8955.14,214.96,0.0,2838.09,3053.05,12008.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,51949,42680.65,0.0,0.0,42680.65,10215.25,11960.97,3476.76,25652.98,68333.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25942,7049.5,0.0,510.02,7559.52,0.0,2699.93,585.98,3285.91,10845.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40906,67390.17,21640.24,8703.98,97734.39,20860.96,13277.32,7648.15,41786.43,139520.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,13735,20092.5,0.0,0.0,20092.5,3739.21,2389.33,1582.88,7711.42,27803.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,34888,137952.97,31074.35,10581.77,179609.09,27226.89,12305.04,3063.83,42595.76,222204.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14397,3915.0,0.0,34.6,3949.6,734.45,477.86,66.26,1278.57,5228.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15433,56163.3,275.09,1277.68,57716.07,10885.46,8601.58,3980.08,23467.12,81183.19 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,22587,3089.27,0.0,0.0,3089.27,0.0,259.84,141.41,401.25,3490.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,19124,82887.8,0.0,0.0,82887.8,17045.6,12117.71,6832.39,35995.7,118883.5 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2453,Supervising Pharmacist,36364,171974.0,0.0,1200.0,173174.0,34610.4,12424.5,10645.31,57680.21,230854.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,2738,70791.0,1186.55,1818.56,73796.11,14982.09,12424.5,6079.69,33486.28,107282.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51354,10253.71,0.0,2031.75,12285.46,10281.42,793.25,5070.71,16145.38,28430.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17037,72694.54,17830.45,3505.95,94030.94,15600.35,15060.46,1565.82,32226.63,126257.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1975,113498.49,1825.53,15232.21,130556.23,24366.79,15148.33,2168.81,41683.93,172240.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49857,67378.72,23465.18,1003.23,91847.13,18712.13,13276.65,6965.25,38954.03,130801.16 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,11378,72699.17,0.0,624.0,73323.17,15112.38,12424.5,5749.28,33286.16,106609.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,32671,31176.6,7310.9,2011.19,40498.69,5942.59,4348.59,3307.02,13598.2,54096.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,20474,68571.02,5475.42,10069.22,84115.66,15490.25,12424.5,6880.77,34795.52,118911.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,29319,76225.0,5710.14,0.0,81935.14,15708.35,12424.5,6573.18,34706.03,116641.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,51258,113369.07,37086.02,9860.47,160315.56,24436.48,12424.46,10424.39,47285.33,207600.89 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,46707,60123.05,0.0,8160.54,68283.59,13690.46,10990.9,5511.29,30192.65,98476.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",25645,180314.36,29453.26,18341.93,228109.55,37897.57,15196.12,3809.74,56903.43,285012.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21354,56531.0,0.0,3920.55,60451.55,11788.47,12424.5,4829.72,29042.69,89494.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50592,117140.96,1911.62,10745.99,129798.57,23164.19,12424.5,2211.34,37800.03,167598.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,47407,70428.0,0.0,0.0,70428.0,14349.66,10990.9,5670.57,31011.13,101439.13 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,36043,11628.74,1622.84,623.4,13874.98,0.0,3228.58,1076.91,4305.49,18180.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,46704,25154.08,0.0,775.46,25929.54,6225.08,6212.25,2099.84,14537.17,40466.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,30461,117140.96,16283.4,13677.03,147101.39,23164.17,12424.5,2461.19,38049.86,185151.25 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50547,4466.65,0.0,0.0,4466.65,0.0,1875.63,343.57,2219.2,6685.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,23124,63887.05,1604.16,2288.99,67780.2,13641.79,12424.5,5593.76,31660.05,99440.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,19964,18296.62,0.0,67.1,18363.72,4336.48,5477.53,1480.88,11294.89,29658.61 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,6041,108371.62,22875.66,18957.66,150204.94,30990.7,12424.5,2560.0,45975.2,196180.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29419,49613.43,0.0,3431.78,53045.21,11391.71,11037.14,4275.0,26703.85,79749.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35669,17108.9,41.33,517.04,17667.27,598.04,7406.92,1369.41,9374.37,27041.64 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,24306,95968.0,0.0,0.0,95968.0,19779.2,12424.5,8439.98,40643.68,136611.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49606,56036.6,0.0,8017.71,64054.31,13714.43,12424.5,5135.07,31274.0,95328.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6990,68026.9,14902.56,5041.89,87971.35,19980.21,13400.42,6659.99,40040.62,128011.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,52236,96254.06,1276.15,0.0,97530.21,19838.21,12424.51,7698.8,39961.52,137491.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36590,3902.6,0.0,102.5,4005.1,741.37,1692.3,325.8,2759.47,6764.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",35450,18780.0,0.0,0.0,18780.0,3404.82,1433.6,1372.47,6210.89,24990.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19592,908.31,283.85,0.0,1192.16,257.05,286.72,92.3,636.07,1828.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,32238,5485.23,40.33,149.62,5675.18,0.0,1230.5,440.48,1670.98,7346.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15259,91749.82,13700.67,659.38,106109.87,18708.57,9557.31,1796.15,30062.03,136171.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11197,0.0,0.0,250.0,250.0,0.0,17.12,0.0,17.12,267.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,12013,13311.03,0.0,0.0,13311.03,0.0,3954.34,1072.71,5027.05,18338.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",8275,30585.4,0.0,9124.36,39709.76,7235.58,2914.98,97.02,10247.58,49957.34 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),20698,152287.81,0.0,17699.07,169986.88,32210.67,10321.9,10646.52,53179.09,223165.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,45143,72081.4,0.0,0.0,72081.4,14846.15,12424.5,5801.65,33072.3,105153.7 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,12961,104874.5,0.0,3915.83,108790.33,21070.78,12114.07,31898.14,65082.99,173873.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",17174,6974.33,0.0,0.0,6974.33,0.0,1660.6,539.96,2200.56,9174.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,4012,4392.11,0.0,0.0,4392.11,0.0,1453.49,340.04,1793.53,6185.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,40498,112776.04,0.0,0.0,112776.04,22696.45,12424.5,9237.52,44358.47,157134.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,9699,84644.0,69348.72,12586.41,166579.13,19039.11,12424.5,10462.08,41925.69,208504.82 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,14847,28684.91,739.63,1269.55,30694.09,3230.33,7293.43,2510.96,13034.72,43728.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16016,33151.7,1494.23,1236.24,35882.17,10089.75,6592.82,2784.98,19467.55,55349.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,1573,100554.01,0.0,0.0,100554.01,20724.83,12424.48,7950.06,41099.37,141653.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14197,14688.9,0.0,316.41,15005.31,0.0,4879.6,1163.36,6042.96,21048.27 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,4814,88296.02,350.21,4698.0,93344.23,18209.18,12424.5,7746.76,38380.44,131724.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,25864,15320.0,0.0,125619.58,140939.58,3498.46,955.73,40.69,4494.88,145434.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,5301,80381.51,9017.9,19148.92,108548.33,19802.12,12305.03,8651.85,40759.0,149307.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,24982,97934.03,0.0,624.0,98558.03,20324.33,12424.5,8173.79,40922.62,139480.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45153,21233.86,3058.6,550.54,24843.0,5272.81,6578.41,1919.08,13770.3,38613.3 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,34034,108373.57,21506.15,28357.51,158237.23,33257.79,12424.5,2688.86,48371.15,206608.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,13019,97763.98,13684.21,9326.73,120774.92,26053.23,12424.51,1709.79,40187.53,160962.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43263,64869.58,4951.83,1080.0,70901.41,13573.89,12412.55,5693.65,31680.09,102581.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,45786,127129.04,0.0,0.0,127129.04,25707.85,12424.5,27422.66,65555.01,192684.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16000,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",5300,Sub-Professional Engineering,5322,Graphic Artist,30778,64064.13,0.0,0.0,64064.13,13203.99,12424.51,5211.91,30840.41,94904.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15989,121630.05,1764.62,24112.0,147506.67,27900.83,10770.25,10240.76,48911.84,196418.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,47780,127951.18,9845.58,15867.46,153664.22,28260.79,14828.71,2615.3,45704.8,199369.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38492,40046.79,0.0,1122.99,41169.78,8413.12,8798.75,3411.67,20623.54,61793.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,8858,56714.6,0.0,1595.84,58310.44,11971.53,11465.42,4847.94,28284.89,86595.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,16174,64455.8,22417.59,14014.22,100887.61,15116.32,12424.49,8069.42,35610.23,136497.84 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,13060,67261.02,0.0,1849.0,69110.02,14217.56,12424.5,5705.83,32347.89,101457.91 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,8032,77071.02,0.0,566.9,77637.92,15884.7,12424.5,6391.08,34700.28,112338.2 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,26820,57610.91,2048.67,0.0,59659.58,12860.93,12424.5,4801.81,30087.24,89746.82 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,43179,67647.27,12111.17,3879.98,83638.42,14333.98,12376.71,6492.7,33203.39,116841.81 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,441C,Court Paralegal,9807,41611.62,0.0,920.0,42531.62,543.28,6964.89,3521.38,11029.55,53561.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,23567,7563.0,1228.98,615.83,9407.81,1416.52,1433.6,735.27,3585.39,12993.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14670,13525.0,0.0,0.0,13525.0,0.0,4039.46,1049.27,5088.73,18613.73 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,45204,181.69,363.38,0.0,545.07,0.0,53.76,42.31,96.07,641.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,14317,91331.05,0.0,0.0,91331.05,18818.7,12424.5,6952.24,38195.44,129526.49 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,19206,16132.02,0.0,0.0,16132.02,3342.71,4061.86,1301.94,8706.51,24838.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,12785,4804.5,0.0,178.15,4982.65,927.27,716.79,377.01,2021.07,7003.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,23155,52710.0,7862.81,6395.37,66968.18,11789.51,9557.31,5262.05,26608.87,93577.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,10020,135421.02,0.0,0.0,135421.02,27248.57,12424.49,10043.4,49716.46,185137.48 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,22038,75475.05,0.0,0.0,75475.05,15526.74,12424.5,5885.64,33836.88,109311.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,25693,28434.72,975.68,513.4,29923.8,6308.2,7713.4,2647.84,16669.44,46593.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,6057,108371.46,3345.76,10407.06,122124.28,28893.17,12424.5,2080.29,43397.96,165522.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,44210,48460.86,1478.63,8176.93,58116.42,11569.11,9353.25,4798.52,25720.88,83837.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,39719,36486.8,9725.6,5090.02,51302.42,1439.36,8028.15,4087.03,13554.54,64856.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9855,218.66,0.0,35.85,254.51,232.46,16.42,-0.03,248.85,503.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,2006,68274.2,0.0,0.0,68274.2,14040.86,12424.5,5492.38,31957.74,100231.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",42982,94388.0,3527.14,2126.89,100042.03,19892.55,12424.5,8103.66,40420.71,140462.74 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,50925,22524.54,0.0,1430.71,23955.25,6036.74,0.0,6240.49,12277.23,36232.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11932,42050.9,2697.15,1442.53,46190.58,11587.23,12774.22,3445.5,27806.95,73997.53 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,6600,56220.53,0.0,2136.08,58356.61,13083.07,12412.56,4831.29,30326.92,88683.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,5242,84599.01,2366.41,600.0,87565.42,17548.1,12424.52,7165.43,37138.05,124703.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,13240,62811.02,3930.1,1730.0,68471.12,13253.15,12424.5,5385.51,31063.16,99534.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47096,55827.48,2008.23,3147.6,60983.31,12507.86,12418.53,4876.28,29802.67,90785.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,30384,112776.04,496.28,3947.29,117219.61,23490.94,12424.5,9571.33,45486.77,162706.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14360,98478.67,12401.26,16447.91,127327.84,21736.76,13214.24,2123.66,37074.66,164402.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,50141,61211.55,0.0,1111.34,62322.89,12853.51,12412.56,5155.43,30421.5,92744.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,5907,77525.9,9823.87,5907.62,93257.39,16835.43,11750.72,7441.05,36027.2,129284.59 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,51533,67911.03,506.86,3093.92,71511.81,14426.07,12424.5,5511.33,32361.9,103873.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21049,103424.08,0.0,6133.06,109557.14,21422.15,8931.36,8929.99,39283.5,148840.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,23900,80570.0,0.0,0.0,80570.0,16605.95,12424.5,6448.44,35478.89,116048.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31881,118691.14,16750.74,7714.92,143156.8,24843.18,15196.12,2427.21,42466.51,185623.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17740,112690.82,6627.48,4973.73,124292.03,22311.2,12424.5,2074.27,36809.97,161102.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,4354,81116.06,0.0,0.0,81116.06,16718.56,12424.5,6214.42,35357.48,116473.54 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,4728,208032.0,0.0,1562.5,209594.5,42181.17,12424.5,11400.25,66005.92,275600.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18424,102149.1,0.0,13909.31,116058.41,21320.48,9038.83,9663.61,40022.92,156081.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39363,5794.31,0.0,604.72,6399.03,248.77,2512.61,515.24,3276.62,9675.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23411,65896.29,8625.9,968.32,75490.51,15196.61,12982.95,5728.78,33908.34,109398.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",42524,490.0,0.0,0.0,490.0,0.0,0.0,38.77,38.77,528.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38960,76369.02,279.75,20476.33,97125.1,17096.86,8085.49,6926.69,32109.04,129234.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,5511,147718.26,1864.16,15041.59,164624.01,29857.67,12424.5,2759.48,45041.65,209665.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,31332,46758.1,7331.48,1569.47,55659.05,11536.88,12424.49,4497.48,28458.85,84117.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,30816,3677.45,0.0,29.56,3707.01,0.0,1221.54,287.53,1509.07,5216.08 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),10847,110689.6,0.0,1500.0,112189.6,22840.9,12424.5,9095.98,44361.38,156550.98 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,46192,207709.91,0.0,6592.5,214302.41,40870.11,12119.86,2966.28,55956.25,270258.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,51261,87313.65,1578.55,6391.94,95284.14,18347.05,11795.21,7595.53,37737.79,133021.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,5715,135421.01,0.0,10800.45,146221.46,27253.5,12424.5,10304.06,49982.06,196203.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41822,97771.12,39702.22,18760.24,156233.58,28353.59,12424.51,2607.83,43385.93,199619.51 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0649,Probate Examiner,741,103948.02,0.0,3624.0,107572.02,21565.63,12424.5,8837.16,42827.29,150399.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33021,65421.84,20169.14,4334.72,89925.7,19069.84,12890.0,7029.92,38989.76,128915.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,38291,84644.0,36056.95,6474.11,127175.06,17815.41,12424.52,9812.2,40052.13,167227.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,6439,11259.56,0.0,91.97,11351.53,0.0,4090.23,879.74,4969.97,16321.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42436,24009.45,2748.31,660.43,27418.19,6092.04,7458.23,2116.46,15666.73,43084.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3378,Field Svcs Asst Supv,17537,10428.61,61.11,1731.47,12221.19,2347.9,1911.46,1007.05,5266.41,17487.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,20355,63414.01,0.0,0.0,63414.01,13069.89,12424.5,5045.1,30539.49,93953.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0402,Deputy Chief 3,30602,128350.51,0.0,2266.24,130616.75,23053.85,5877.74,6418.19,35349.78,165966.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,1046,62461.1,9691.17,1420.0,73572.27,13138.5,12424.5,5897.21,31460.21,105032.48 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",1400,"Clerical, Secretarial & Steno",1434,Shelter Service Rep,46235,7477.61,0.0,38.11,7515.72,0.0,1578.44,582.53,2160.97,9676.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,50719,12464.2,0.0,33.75,12497.95,2748.28,4109.64,998.89,7856.81,20354.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20037,60087.13,1893.86,1445.72,63426.71,11525.28,6152.52,5084.37,22762.17,86188.88 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,43998,26651.01,15.96,0.0,26666.97,772.28,7406.92,2153.65,10332.85,36999.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40939,75094.57,9732.48,1440.0,86267.05,15741.49,12347.68,6603.17,34692.34,120959.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53176,39245.08,5802.13,762.65,45809.86,10359.46,12268.29,3233.72,25861.47,71671.33 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,34571,9309.95,766.65,483.4,10560.0,0.0,2580.47,819.62,3400.09,13960.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,15446,66222.0,2378.02,13987.26,82587.28,14787.69,9318.38,6628.29,30734.36,113321.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,33594,14048.05,0.0,1383.1,15431.15,0.0,5092.26,1196.04,6288.3,21719.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,40366,41118.5,32.7,2761.0,43912.2,9913.17,11194.47,3306.26,24413.9,68326.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7994,119455.91,82008.07,15621.43,217085.41,23662.83,12424.5,3648.06,39735.39,256820.8 +Calendar,2015,1,Public Protection,POL,Police,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),43980,184289.02,0.0,1500.0,185789.02,37388.85,12424.5,10942.2,60755.55,246544.57 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,8893,16863.68,0.0,518.88,17382.56,6426.41,0.0,115.66,6542.07,23924.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,10745,81067.7,22038.84,9166.81,112273.35,16877.32,12424.5,1874.18,31176.0,143449.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28706,12922.8,1236.0,3695.74,17854.54,3364.19,1261.56,1447.45,6073.2,23927.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24222,77071.1,0.0,1488.0,78559.1,16197.35,12424.5,6465.69,35087.54,113646.64 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",10784,4142.2,268.14,196.65,4606.99,0.0,854.66,357.25,1211.91,5818.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,25750,52383.76,366.59,0.0,52750.35,12544.86,12087.0,4164.48,28796.34,81546.69 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,52554,80762.06,0.0,0.0,80762.06,16645.31,12424.5,6504.62,35574.43,116336.49 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",7642,76558.81,0.0,3000.0,79558.81,15763.99,12424.5,6581.21,34769.7,114328.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39080,30538.67,3857.66,900.89,35297.22,7998.99,9518.3,2624.12,20141.41,55438.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,51828,117135.34,65378.11,10989.89,193503.34,23184.69,12424.51,3299.11,38908.31,232411.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43209,9314.13,0.0,78.12,9392.25,0.0,3588.48,727.71,4316.19,13708.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23665,0.0,0.0,856.25,856.25,0.0,68.5,65.51,134.01,990.26 +Calendar,2015,4,Community Health,DPH,Public Health,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,12540,86663.01,12434.85,406.0,99503.86,17951.38,12424.5,8157.64,38533.52,138037.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,8488,61735.01,0.0,824.0,62559.01,12892.89,12424.5,5124.29,30441.68,93000.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,15906,91335.03,0.0,0.0,91335.03,18821.78,12424.52,7360.96,38607.26,129942.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,14695,19431.88,0.0,71.81,19503.69,4650.13,5823.98,1530.06,12004.17,31507.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,51734,85368.04,0.0,1136.0,86504.04,17828.99,12424.5,7119.68,37373.17,123877.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,46050,93681.04,0.0,1589.79,95270.83,19651.82,12424.5,7645.61,39721.93,134992.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,40564,143101.05,0.0,0.0,143101.05,28679.91,12424.5,24695.8,65800.21,208901.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,34909,12089.0,0.0,0.0,12089.0,0.0,2676.06,938.29,3614.35,15703.35 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,18708,97101.8,0.0,0.0,97101.8,12681.21,12233.36,7648.79,32563.36,129665.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51532,56531.0,0.0,5616.93,62147.93,12374.33,12424.5,5087.32,29886.15,92034.08 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,45237,214255.0,0.0,1595.0,215850.0,43533.43,12424.5,11330.51,67288.44,283138.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,43034,4113.57,38.33,104.49,4256.39,0.0,1923.4,330.29,2253.69,6510.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,9584,175.0,0.0,0.0,175.0,0.0,41.82,13.57,55.39,230.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,9758,2991.0,0.0,0.0,2991.0,0.0,716.79,232.14,948.93,3939.93 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8259,Criminalist I,52031,84381.04,302.45,0.0,84683.49,17391.57,12424.51,6821.35,36637.43,121320.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42666,37361.04,3416.72,1085.41,41863.17,9995.74,11689.67,2938.54,24623.95,66487.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,18173,35534.0,0.0,0.0,35534.0,1266.78,7645.85,2815.45,11728.08,47262.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9086,17719.48,3561.42,651.45,21932.35,4400.34,5469.42,1663.03,11532.79,33465.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,12673,73749.0,278.27,9717.55,83744.82,16539.46,12424.5,6862.84,35826.8,119571.62 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",17628,180314.38,15310.91,22539.38,218164.67,39867.59,15196.12,3666.19,58729.9,276894.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,22646,10640.0,0.0,0.0,10640.0,2745.12,1911.46,847.72,5504.3,16144.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",47041,27406.1,0.0,0.0,27406.1,0.0,3584.0,2127.16,5711.16,33117.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,49756,49593.9,2109.07,2148.94,53851.91,12412.99,12424.49,4366.99,29204.47,83056.38 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,11632,87531.02,0.0,0.0,87531.02,18040.63,12424.5,7122.71,37587.84,125118.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34786,147058.79,137.67,37748.59,184945.05,37301.51,12255.75,4997.21,54554.47,239499.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,32723,121672.53,7361.35,6342.36,135376.24,24050.49,12424.5,1646.96,38121.95,173498.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49176,65896.98,8681.35,1210.29,75788.62,15302.08,12987.25,5791.47,34080.8,109869.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,25720,67261.01,0.0,624.0,67885.01,13991.51,12424.49,5632.5,32048.5,99933.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,48143,61499.0,14645.82,425.25,76570.07,12684.51,12376.71,6041.65,31102.87,107672.94 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,26328,71416.75,0.0,5842.07,77258.82,14856.84,7544.89,6253.9,28655.63,105914.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,15110,110041.02,9035.13,3799.32,122875.47,22145.92,12424.5,9808.41,44378.83,167254.3 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",6469,0.0,0.0,3447.17,3447.17,0.0,68.5,49.98,118.48,3565.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,32219,59017.9,0.0,0.0,59017.9,11882.94,6209.86,4189.19,22281.99,81299.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24023,6213.6,0.0,124.27,6337.87,1490.67,797.98,107.05,2395.7,8733.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,1521,131301.39,0.0,0.0,131301.39,26424.57,12424.49,17281.7,56130.76,187432.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,35728,78204.0,0.0,1963.2,80167.2,16511.95,12424.5,6277.98,35214.43,115381.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,12048,66580.0,22980.08,7328.76,96888.84,14878.42,12424.5,7739.52,35042.44,131931.28 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,31882,99654.03,1606.92,0.0,101260.95,22731.78,12424.5,1676.35,36832.63,138093.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43224,7934.4,0.0,140.5,8074.9,1855.88,3440.63,647.56,5944.07,14018.97 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,42167,62878.82,0.0,0.0,62878.82,13017.47,11874.18,5190.48,30082.13,92960.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46560,49731.65,1295.34,1354.94,52381.93,12006.86,12400.61,3975.19,28382.66,80764.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,27178,108371.47,59653.11,10254.92,178279.5,28857.04,12424.5,2994.0,44275.54,222555.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,27707,116457.09,2920.51,5220.06,124597.66,23059.84,12352.82,2046.15,37458.81,162056.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,44671,80762.0,0.0,0.0,80762.0,16645.3,12424.5,6504.6,35574.4,116336.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,16029,135421.01,0.0,0.0,135421.01,27253.5,12424.5,10111.86,49789.86,185210.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9122,Transit Information Clerk,38657,42518.54,0.0,389.34,42907.88,9369.35,7752.06,3535.17,20656.58,63564.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,8632,53496.6,68898.21,8810.83,131205.64,11067.02,6642.33,4799.19,22508.54,153714.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,50326,57224.77,30744.76,12020.77,99990.3,13592.91,11312.68,8084.95,32990.54,132980.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24028,20171.51,0.0,0.0,20171.51,1185.47,8685.2,1563.94,11434.61,31606.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12735,10379.48,0.0,0.0,10379.48,0.0,4500.89,833.46,5334.35,15713.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6888,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2602.36,13055.71,44355.71 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3549,Arts Program Assistant,32027,70931.01,0.0,0.0,70931.01,14619.09,12424.5,5565.67,32609.26,103540.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4093,80946.0,3555.88,5299.84,89801.72,16598.87,12424.5,3368.65,32392.02,122193.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,42439,82674.14,528.41,9977.75,93180.3,18038.72,12084.2,7647.66,37770.58,130950.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,44161,17423.0,0.0,153.98,17576.98,2366.0,4327.65,633.63,7327.28,24904.26 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,8619,85004.0,5156.59,990.6,91151.19,17519.6,12424.5,7495.85,37439.95,128591.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49945,130979.0,13354.39,8547.74,152881.13,27278.95,12424.5,2541.72,42245.17,195126.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,30462,67097.18,0.0,622.52,67719.7,13970.65,12299.42,5569.9,31839.97,99559.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53161,3330.47,879.93,0.0,4210.4,942.52,1051.3,303.12,2296.94,6507.34 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,27103,0.0,0.0,3657.26,3657.26,0.0,68.5,279.78,348.28,4005.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,1830,112209.01,332.1,0.0,112541.11,22870.16,12424.5,9036.69,44331.35,156872.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1381,Special Assistant 22,37326,0.0,0.0,503.94,503.94,0.0,68.5,38.55,107.05,610.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,21355,108371.48,11442.35,10275.58,130089.41,28862.24,12424.5,2204.28,43491.02,173580.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8197,14229.55,2325.93,1172.33,17727.81,0.0,2829.8,1361.55,4191.35,21919.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7220,Asphalt Finisher Supervisor 1,22384,91653.0,11206.72,433.75,103293.47,18982.71,12424.46,8108.33,39515.5,142808.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51063,42288.06,4966.67,1619.49,48874.22,11391.66,12871.31,3709.78,27972.75,76846.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33050,140334.0,0.0,250.0,140584.0,28242.36,12424.5,10124.98,50791.84,191375.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,28421,52521.43,2613.94,2632.25,57767.62,12985.08,12424.5,4655.43,30065.01,87832.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14550,149063.42,4001.93,12982.92,166048.27,34457.03,12421.52,4310.42,51188.97,217237.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2068,68533.74,36492.38,6096.15,111122.27,20444.76,13500.61,8369.16,42314.53,153436.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,16188,100660.57,478.73,3124.82,104264.12,21391.06,12412.43,8592.33,42395.82,146659.94 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",3438,12541.15,0.0,113.41,12654.56,2786.55,2258.09,327.21,5371.85,18026.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,29824,110041.07,3548.82,0.0,113589.89,22145.92,12424.49,9296.21,43866.62,157456.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26533,36586.4,0.0,0.0,36586.4,0.0,2771.62,2834.62,5606.24,42192.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51519,5824.77,0.0,0.0,5824.77,0.0,1441.06,452.09,1893.15,7717.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,13588,123913.0,0.0,0.0,123913.0,25401.03,10513.04,24556.2,60470.27,184383.27 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,21029,52165.47,0.0,0.0,52165.47,10377.85,8706.17,3805.2,22889.22,75054.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,52746,95053.0,0.0,200.0,95253.0,19630.51,12424.5,7865.99,39921.0,135174.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9203,Sr Airport Communications Disp,28830,89224.98,2416.97,6066.7,97708.65,18765.58,12352.82,7902.84,39021.24,136729.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,26052,66563.68,0.0,3714.27,70277.95,14149.59,7416.29,5459.58,27025.46,97303.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7001,89051.8,911.83,10368.13,100331.76,19677.64,8152.92,5307.73,33138.29,133470.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36678,69453.35,33313.26,7849.2,110615.81,21179.31,13687.26,8449.55,43316.12,153931.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,40139,72581.3,1309.5,3860.25,77751.05,14974.6,12230.13,6181.98,33386.71,111137.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,35426,59292.13,3944.79,1839.16,65076.08,12334.45,12424.49,5201.97,29960.91,95036.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,3800,6806.01,0.0,786.52,7592.53,1526.59,955.73,646.08,3128.4,10720.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,10767,73222.8,0.0,1202.87,74425.67,15216.48,12265.67,6000.05,33482.2,107907.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52329,30329.13,934.31,349.39,31612.83,7240.52,5958.75,1712.12,14911.39,46524.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25943,74884.24,0.0,6999.25,81883.49,16431.82,15052.76,1363.76,32848.34,114731.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,3830,75316.03,0.0,1718.11,77034.14,15645.89,12376.71,6315.45,34338.05,111372.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7585,73185.18,2224.95,14906.6,90316.73,15885.99,7076.29,6903.22,29865.5,120182.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2491,24699.58,0.0,1801.3,26500.88,5830.13,6283.94,2263.35,14377.42,40878.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29424,1845.86,0.0,49.18,1895.04,488.92,800.43,158.11,1447.46,3342.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2366,54975.71,300.49,3565.89,58842.09,13730.58,12424.5,4519.86,30674.94,89517.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,28952,81867.7,713.78,10.0,82591.48,16880.02,12388.66,6840.03,36108.71,118700.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,11018,62545.0,19512.38,10792.78,92850.16,14183.6,9557.3,7217.87,30958.77,123808.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40584,0.0,0.0,250.0,250.0,0.0,22.84,0.0,22.84,272.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,2079,7759.94,0.0,180.86,7940.8,0.0,2567.04,615.37,3182.41,11123.21 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,45806,85632.4,0.0,0.0,85632.4,17614.99,12424.5,6899.72,36939.21,122571.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,3257,64690.03,0.0,600.0,65290.03,13409.45,11946.64,5422.78,30778.87,96068.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,25356,138629.95,29351.15,6156.49,174137.59,27585.04,12424.5,2922.47,42932.01,217069.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19031,6369.58,0.0,0.0,6369.58,0.0,2762.06,508.08,3270.14,9639.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,23031,119467.42,9991.1,12348.25,141806.77,23621.04,12424.5,2415.02,38460.56,180267.33 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,15814,24431.0,0.0,0.0,24431.0,5479.87,5256.52,1974.74,12711.13,37142.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,30671,4226.5,0.0,0.0,4226.5,1090.46,1278.29,373.6,2742.35,6968.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",42248,5060.0,0.0,287.91,5347.91,898.66,477.86,89.39,1465.91,6813.82 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,14470,11885.03,178.28,0.0,12063.31,2211.8,2389.33,953.63,5554.76,17618.07 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24040,97747.61,52537.92,19334.31,169619.84,28491.07,12420.86,2895.12,43807.05,213426.89 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",22935,198139.01,0.0,5462.78,203601.79,40974.08,12424.5,11245.11,64643.69,268245.48 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,5789,87531.03,0.0,624.0,88155.03,18169.31,12424.5,7301.44,37895.25,126050.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1326,Customer Service Agent Supv,7367,81363.7,1174.68,2981.02,85519.4,17309.85,12100.62,6834.64,36245.11,121764.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,14989,101323.0,0.0,2813.0,104136.0,21464.25,12424.51,8371.83,42260.59,146396.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26372,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,13436,45754.15,4030.07,4746.81,54531.03,9555.32,8482.12,1475.39,19512.83,74043.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,52577,54660.0,0.0,1929.6,56589.6,13093.88,12376.71,4551.21,30021.8,86611.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29331,67281.89,9348.79,1436.14,78066.82,15652.95,13255.75,5928.27,34836.97,112903.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",18317,14081.5,0.0,0.0,14081.5,0.0,3345.06,1092.95,4438.01,18519.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,24262,61915.5,0.0,1728.76,63644.26,13113.57,12424.51,5170.41,30708.49,94352.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,50872,121361.59,19745.59,10615.87,151723.05,25780.92,14095.54,2528.83,42405.29,194128.34 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,52132,97793.04,0.0,15373.26,113166.3,23313.94,12424.5,9253.63,44992.07,158158.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10277,21500.93,0.0,373.67,21874.6,0.0,5961.38,1695.54,7656.92,29531.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,1825,112776.02,0.0,6175.96,118951.98,23928.77,12424.5,9661.78,46015.05,164967.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,37641,22420.0,1028.18,2907.66,26355.84,4845.15,2389.33,437.83,7672.31,34028.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,42556,7712.66,0.0,0.0,7712.66,0.0,1069.23,598.63,1667.86,9380.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,32256,231.45,77.15,10.8,319.4,62.5,71.68,24.73,158.91,478.31 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,19629,93884.08,0.0,0.0,93884.08,19350.03,12424.5,7428.73,39203.26,133087.34 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36884,51373.0,0.0,2880.95,54253.95,13014.35,12424.5,4486.49,29925.34,84179.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,33284,10988.64,0.0,864.49,11853.13,0.0,2195.19,918.79,3113.98,14967.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,22183,119467.39,15061.07,1707.71,136236.17,23620.99,12424.5,2312.55,38358.04,174594.21 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2770,Senior Laundry Worker,16686,54909.01,799.43,3434.84,59143.28,12510.45,12424.5,4577.92,29512.87,88656.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,10798,11496.48,0.0,0.0,11496.48,2564.99,1484.97,992.42,5042.38,16538.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25613,43364.48,4652.2,832.16,48848.84,11464.02,13053.07,3316.61,27833.7,76682.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",27000,139349.2,18805.42,25097.66,183252.28,32340.56,15196.12,3113.27,50649.95,233902.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28153,57737.16,5436.85,4922.14,68096.15,17202.93,11358.51,5202.95,33764.39,101860.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,37817,67377.81,0.0,0.0,67377.81,13874.05,12424.5,4899.06,31197.61,98575.42 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,8662,1629.25,0.0,3616.6,5245.85,367.22,292.69,490.74,1150.65,6396.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34811,42600.29,3688.08,724.13,47012.5,11245.25,13101.88,3303.46,27650.59,74663.09 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1750,Microphoto/Imaging Technician,16720,48951.03,0.0,0.0,48951.03,11740.98,12424.5,4013.77,28179.25,77130.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,48652,19279.28,0.0,16720.6,35999.88,4756.48,2642.83,2965.46,10364.77,46364.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49892,13512.55,0.0,2651.82,16164.37,650.94,0.0,248.72,899.66,17064.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,52769,46979.01,0.0,0.0,46979.01,8742.79,5734.37,3776.3,18253.46,65232.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,11770,143145.39,650.7,13120.02,156916.11,28891.33,12364.77,406.45,41662.55,198578.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,373,2261.0,0.0,0.0,2261.0,0.0,669.02,175.32,844.34,3105.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,5977,18927.8,2576.22,3564.23,25068.25,4947.11,5782.17,2012.66,12741.94,37810.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12084,65584.38,2524.74,1023.04,69132.16,18251.88,12925.01,5379.79,36556.68,105688.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21414,3248.49,0.0,15.82,3264.31,0.0,1684.47,253.0,1937.47,5201.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6644,30149.92,4251.42,501.55,34902.89,7789.58,9395.62,2692.25,19877.45,54780.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,32139,75316.01,0.0,3065.05,78381.06,15645.89,12376.71,6977.41,35000.01,113381.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,7110,93738.0,2846.51,10324.05,106908.56,21466.22,12424.5,8742.92,42633.64,149542.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27640,67761.94,7300.86,2877.62,77940.42,19286.91,13350.61,5919.22,38556.74,116497.16 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,9966,65471.4,0.0,6188.95,71660.35,11869.96,5638.81,5669.7,23178.47,94838.82 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,4181,10430.3,0.0,0.0,10430.3,0.0,1529.17,834.58,2363.75,12794.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,13648,31848.7,770.53,1646.85,34266.08,6222.72,6212.25,1727.52,14162.49,48428.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47676,7210.28,645.34,19.1,7874.72,1708.34,2173.27,602.7,4484.31,12359.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q061,Lieutenant 2,44916,155442.53,57094.63,17147.25,229684.41,30685.42,12424.5,3876.74,46986.66,276671.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41043,80953.79,11413.34,5450.94,97818.07,16678.07,12424.5,1819.47,30922.04,128740.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,33272,135421.02,0.0,0.0,135421.02,27253.51,12424.5,10029.73,49707.74,185128.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,6100,44587.41,8853.15,1927.38,55367.94,8996.5,8255.12,1468.91,18720.53,74088.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,16273,45965.04,0.0,3635.23,49600.27,11523.14,11489.92,4068.51,27081.57,76681.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16244,101920.14,17125.27,13293.33,132338.74,23041.39,15004.97,2149.08,40195.44,172534.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,43873,129656.05,0.0,758.91,130414.96,26209.4,12424.5,17209.2,55843.1,186258.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,35907,25210.5,0.0,0.0,25210.5,5544.62,5017.58,2089.49,12651.69,37862.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,45277,112919.7,5057.66,4419.87,122397.23,22872.92,12424.5,2042.88,37340.3,159737.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2536,Respiratory Care Practitioner,29298,37414.32,0.0,542.11,37956.43,7617.32,6027.02,3092.3,16736.64,54693.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36387,65994.77,12234.92,566.92,78796.61,15132.41,13002.83,6025.15,34160.39,112957.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8813,975.15,0.0,162.53,1137.68,0.0,0.0,72.81,72.81,1210.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3424,Integrated Pest Mgmt Specialst,50527,80357.0,86.4,1004.45,81447.85,16769.14,12424.5,6739.32,35932.96,117380.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21486,50486.6,13561.18,2569.89,66617.67,14456.75,9946.47,5188.77,29591.99,96209.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,27864,36836.36,0.0,487.17,37323.53,8826.34,9234.75,2920.76,20981.85,58305.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,51869,40623.58,10104.68,1401.55,52129.81,7642.19,6212.25,4191.42,18045.86,70175.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47848,58131.51,12932.2,714.44,71778.15,15258.32,13294.64,5265.09,33818.05,105596.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36915,33529.98,4808.69,1140.4,39479.07,8904.26,10465.32,2980.88,22350.46,61829.53 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,44324,56039.59,0.0,0.0,56039.59,12536.04,12406.58,4212.02,29154.64,85194.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,247,159703.59,0.0,2317.39,162020.98,32846.82,11272.84,10477.38,54597.04,216618.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,32190,63562.39,0.0,3279.0,66841.39,13221.38,9927.66,5238.44,28387.48,95228.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,37147,69902.03,0.0,0.0,69902.03,14407.15,12424.5,5546.03,32377.68,102279.71 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,44344,185918.05,0.0,0.0,185918.05,37416.24,12424.5,18125.05,67965.79,253883.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49396,56531.0,393.86,2801.21,59726.07,12166.34,12424.5,4841.66,29432.5,89158.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,7893,66382.62,5875.93,783.75,73042.3,13665.75,12424.5,5916.2,32006.45,105048.75 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,33896,55817.67,0.0,1604.58,57422.25,11704.44,8362.64,4556.8,24623.88,82046.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,34225,75913.26,1615.43,3555.0,81083.69,16327.19,11827.17,6716.28,34870.64,115954.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11183,6144.13,0.0,128.89,6273.02,0.0,2042.91,486.27,2529.18,8802.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,931,1053.77,0.0,24.79,1078.56,0.0,0.0,85.32,85.32,1163.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,30892,32285.55,0.0,900.0,33185.55,2685.14,10474.52,2432.71,15592.37,48777.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,7230,45624.0,435.56,3955.05,50014.61,11493.52,12424.5,3986.03,27904.05,77918.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,20014,13066.34,0.0,33.75,13100.09,2880.69,4296.31,1047.77,8224.77,21324.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41298,11432.18,149.66,1039.79,12621.63,1153.02,3064.31,978.51,5195.84,17817.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,33232,22445.23,0.0,0.0,22445.23,5376.47,6260.04,1857.94,13494.45,35939.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43892,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2397.42,12850.77,44150.77 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,46870,89864.01,0.0,450.0,90314.01,18593.28,12424.5,7245.69,38263.47,128577.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19935,122129.33,536.4,11902.54,134568.27,25359.51,10812.3,7714.85,43886.66,178454.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2996,"Rep, Human Rights Comm",7108,78873.52,0.0,0.0,78873.52,16250.99,12424.5,6319.32,34994.81,113868.33 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,36890,90775.05,0.0,0.0,90775.05,18709.21,12424.5,7319.13,38452.84,129227.89 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,37129,54077.3,7895.84,1767.21,63740.35,11189.75,10653.23,5216.97,27059.95,90800.3 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28015,97334.14,7961.33,7372.32,112667.79,25453.01,12424.5,1878.27,39755.78,152423.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,28521,47242.24,0.0,0.0,47242.24,11309.83,12424.5,3745.5,27479.83,74722.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,13153,83910.72,6507.46,9521.1,99939.28,18753.42,12388.66,8229.52,39371.6,139310.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,52195,107212.4,11835.12,5619.18,124666.7,22199.43,12328.94,9823.98,44352.35,169019.05 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,51453,61752.08,2783.58,11305.4,75841.06,14626.26,11325.53,5966.58,31918.37,107759.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,43641,98344.0,0.0,3388.81,101732.81,21236.8,9079.43,8184.64,38500.87,140233.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35822,4213.37,0.0,0.0,4213.37,0.0,1623.73,326.74,1950.47,6163.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28789,7866.25,0.0,121.52,7987.77,0.0,3031.46,619.06,3650.52,11638.29 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,6061,107562.01,0.0,5068.5,112630.51,21660.43,12424.5,31834.2,65919.13,178549.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,46890,20811.33,0.0,0.0,20811.33,0.0,2671.56,1613.58,4285.14,25096.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8301,Sheriff's Property Keeper,47685,24629.71,0.0,0.0,24629.71,0.0,5835.69,2128.03,7963.72,32593.43 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,44712,8556.0,0.0,0.0,8556.0,1919.12,955.73,704.89,3579.74,12135.74 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,14356,35641.75,0.0,0.0,35641.75,0.0,4824.06,2807.82,7631.88,43273.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,47331,17366.12,40.61,0.0,17406.73,0.0,5705.47,1349.54,7055.01,24461.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,47590,2022.0,0.0,0.0,2022.0,521.68,477.86,156.54,1156.08,3178.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,9192,96670.41,0.0,615.9,97286.31,20022.87,12263.22,8073.07,40359.16,137645.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5565,96578.45,30355.37,7516.22,134450.04,25326.71,12272.84,2243.34,39842.89,174292.93 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,29679,30704.29,0.0,498.05,31202.34,1076.1,5465.57,2430.07,8971.74,40174.08 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,2697,139311.75,0.0,22779.8,162091.55,31207.05,10817.32,10496.8,52521.17,214612.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,7834,61735.01,801.91,624.0,63160.92,12852.62,12424.5,5232.75,30509.87,93670.79 +Calendar,2015,4,Community Health,DPH,Public Health,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,13348,66102.01,368.25,0.0,66470.26,12993.01,8123.71,5220.0,26336.72,92806.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,33345,17712.0,0.0,0.0,17712.0,3296.2,1911.47,1383.97,6591.64,24303.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,29880,124354.68,0.0,4646.39,129001.07,25914.74,12164.66,9771.78,47851.18,176852.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15690,116948.15,12066.87,9771.76,138786.78,24284.49,14813.82,2353.05,41451.36,180238.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,24172,80762.01,0.0,0.0,80762.01,16645.3,12424.5,6383.39,35453.19,116215.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39880,132334.45,372.22,14302.1,147008.77,28601.95,11028.24,9590.36,49220.55,196229.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,10197,168331.99,0.0,11121.96,179453.95,33963.48,12418.52,27632.19,74014.19,253468.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,40841,50516.32,146.64,50.0,50712.96,10304.1,9484.37,4187.75,23976.22,74689.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",20242,93738.0,16267.45,3393.52,113398.97,19778.67,12424.5,9292.44,41495.61,154894.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,4752,81640.27,0.0,980.0,82620.27,17000.69,12424.51,6691.53,36116.73,118737.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,30871,54659.28,384.23,1410.0,56453.51,12368.34,11700.59,4581.08,28650.01,85103.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,8835,42443.82,0.0,0.0,42443.82,10171.16,12424.5,3442.4,26038.06,68481.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19451,65963.1,5168.22,773.72,71905.04,15635.53,12995.43,5273.93,33904.89,105809.93 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4267,Pr Real Property Appraiser,14046,116384.11,0.0,2200.0,118584.11,23844.38,12424.5,9492.11,45760.99,164345.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25682,82777.63,8545.22,8853.38,100176.23,22275.92,10520.63,1704.43,34500.98,134677.21 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,24431,35222.7,0.0,12596.99,47819.69,7974.22,6546.76,3894.8,18415.78,66235.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18334,124131.72,536.4,22259.31,146927.43,27933.46,11067.36,8223.17,47223.99,194151.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,41349,61428.03,0.0,1100.0,62528.03,12886.69,12424.5,4830.69,30141.88,92669.91 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,52689,50033.8,3720.84,0.0,53754.64,11980.37,12376.71,4358.7,28715.78,82470.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37698,71094.46,0.0,17408.28,88502.74,994.11,0.0,2323.48,3317.59,91820.33 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,47495,28130.0,0.0,0.0,28130.0,6309.6,4778.65,2270.7,13358.95,41488.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,8063,18404.38,9228.18,1673.06,29305.62,3729.08,5661.21,2322.11,11712.4,41018.02 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,4821,97282.02,47460.14,12610.97,157353.13,21061.29,11361.26,9580.0,42002.55,199355.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,43458,219119.57,9300.81,13452.1,241872.48,46276.43,11051.36,11833.86,69161.65,311034.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,2125,10242.38,0.0,0.0,10242.38,0.0,803.41,793.95,1597.36,11839.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,49877,2886.86,0.0,0.0,2886.86,0.0,400.21,224.07,624.28,3511.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,28934,81158.71,5709.84,1158.0,88026.55,16972.23,12424.48,7168.43,36565.14,124591.69 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,23647,67911.02,9085.66,2903.43,79900.11,14413.48,12424.5,6329.55,33167.53,113067.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,47556,4835.28,0.0,0.0,4835.28,0.0,1072.21,374.35,1446.56,6281.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,7105,3643.0,0.0,0.0,3643.0,677.96,477.86,282.57,1438.39,5081.39 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,51605,4132.7,0.0,0.0,4132.7,1066.24,621.23,345.21,2032.68,6165.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,53214,73940.3,0.0,2612.85,76553.15,15632.09,12307.9,6309.74,34249.73,110802.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,38945,137101.03,0.0,0.0,137101.03,27592.11,12424.5,25090.03,65106.64,202207.67 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,4803,23553.08,0.0,1567.37,25120.45,0.0,5265.48,1949.0,7214.48,32334.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,1166,20965.0,0.0,440.0,21405.0,4662.96,4778.65,1680.81,11122.42,32527.42 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,3433,66253.86,0.0,0.0,66253.86,13424.8,7359.13,4724.11,25508.04,91761.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator, Taxi And Accessible Servic",14280,76092.1,3316.02,0.0,79408.12,15856.08,10990.9,6548.45,33395.43,112803.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,14408,79304.13,0.0,614.14,79918.27,16448.5,12228.11,6586.93,35263.54,115181.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,38830,14428.92,0.0,13390.19,27819.11,3000.6,1670.32,2247.25,6918.17,34737.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,11162,116976.01,0.0,0.0,116976.01,23541.49,12424.49,9624.33,45590.31,162566.32 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,4922,101531.01,0.0,0.0,101531.01,20926.03,12424.5,8337.76,41688.29,143219.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,7657,7976.0,308.45,0.0,8284.45,0.0,1911.46,653.4,2564.86,10849.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",24532,28700.1,150.53,0.0,28850.63,6089.59,6833.49,2305.41,15228.49,44079.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,32573,109243.03,0.0,1560.0,110803.03,21627.38,10513.05,8377.41,40517.84,151320.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,37124,82717.02,0.0,624.0,83341.02,17177.09,12424.5,6659.13,36260.72,119601.74 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,21901,143101.06,0.0,0.0,143101.06,28679.91,12424.5,27240.41,68344.82,211445.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,44488,57273.13,0.0,430.17,57703.3,11970.76,10984.81,4591.84,27547.41,85250.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7234,62461.12,2305.24,600.0,65366.36,12960.71,12376.72,5306.1,30643.53,96009.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2484,Biologist III,19504,118182.0,0.0,0.0,118182.0,23776.71,12424.52,9683.29,45884.52,164066.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,15502,79395.03,0.0,0.0,79395.03,16360.85,12424.51,6585.79,35371.15,114766.18 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,29984,67777.09,0.0,5457.41,73234.5,14460.86,12400.61,6008.76,32870.23,106104.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25081,66626.47,29171.02,4033.39,99830.88,19338.14,13128.39,7775.17,40241.7,140072.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,42975,3263.01,0.0,14683.5,17946.51,731.89,477.86,1396.2,2605.95,20552.46 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,27543,48654.01,0.0,0.0,48654.01,10552.36,8123.71,4058.56,22734.63,71388.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,5203,90943.92,5581.05,1156.07,97681.04,19122.12,11629.27,7808.1,38559.49,136240.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",49685,20500.97,0.0,0.0,20500.97,0.0,4856.31,1589.77,6446.08,26947.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,19087,25082.4,0.0,500.0,25582.4,6127.52,6789.63,1875.03,14792.18,40374.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27341,5686.08,0.0,1.43,5687.51,0.0,1887.57,440.94,2328.51,8016.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4629,63850.89,22365.4,1590.88,87807.17,17878.18,12577.36,6645.86,37101.4,124908.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7237,3823.01,0.0,0.0,3823.01,0.0,1266.34,296.3,1562.64,5385.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,29061,24662.5,0.0,680.0,25342.5,4716.24,5495.45,1926.87,12138.56,37481.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,12853,2835.0,0.0,40.0,2875.0,644.86,477.86,227.13,1349.85,4224.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9989,35140.0,2223.36,2195.18,39558.54,8730.92,9318.38,3192.5,21241.8,60800.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,51327,68067.01,0.0,624.0,68691.01,14157.65,12424.5,5645.34,32227.49,100918.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,44607,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4128,77065.69,58226.71,12551.67,147844.07,17875.17,15196.12,2446.33,35517.62,183361.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14165,4573.34,0.0,883.8,5457.14,1179.94,1983.14,444.08,3607.16,9064.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1533,124837.14,59065.35,30275.72,214178.21,25210.2,12424.5,3561.35,41196.05,255374.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24477,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.23,5147.57,17667.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19645,1422.4,0.0,266.7,1689.1,0.0,382.3,130.77,513.07,2202.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,8398,51405.0,260.01,4338.55,56003.56,12637.48,12424.5,4581.28,29643.26,85646.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,352.0,Municipal Executive Association - Fire,0900,Management,0150,Dep Chf Of Dept (Fire Dept),48521,261958.01,0.0,21645.64,283603.65,55587.51,12424.5,13739.27,81751.28,365354.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",15460,135109.0,34767.03,8106.54,177982.57,28259.16,12424.5,455.5,41139.16,219121.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,43149,130254.75,0.0,40854.49,171109.24,27113.07,12424.5,436.57,39974.14,211083.38 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17079,12832.0,0.0,0.0,12832.0,2878.2,1911.46,1036.88,5826.54,18658.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,28987,186799.69,4155.46,13273.94,204229.09,39740.92,12394.64,11192.44,63328.0,267557.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,33998,51405.0,457.52,4224.83,56087.35,12909.29,12424.5,4632.8,29966.59,86053.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19119,149099.01,0.0,1115.54,150214.55,30192.59,12424.5,10238.24,52855.33,203069.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10259,6281.4,0.0,0.0,6281.4,1405.4,2723.83,516.0,4645.23,10926.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23648,5415.16,0.0,89.0,5504.16,0.0,2305.46,434.56,2740.02,8244.18 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,5828,53215.0,0.0,0.0,53215.0,10929.34,11946.64,4301.32,27177.3,80392.3 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,1239,58555.03,0.0,0.0,58555.03,11591.01,8601.57,4542.61,24735.19,83290.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48842,854.05,0.0,856.39,1710.44,212.99,370.34,139.27,722.6,2433.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35559,56531.01,0.0,3267.45,59798.46,11788.47,12424.5,4694.59,28907.56,88706.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,48516,32525.0,0.0,600.0,33125.0,6586.76,7167.99,2690.3,16445.05,49570.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,46852,193055.68,0.0,0.0,193055.68,38889.43,12424.51,11045.52,62359.46,255415.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12614,82205.95,9718.45,6801.71,98726.11,17110.37,12424.5,1645.75,31180.62,129906.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38564,10169.5,0.0,313.35,10482.85,0.0,4348.58,844.0,5192.58,15675.43 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,23046,56276.01,0.0,0.0,56276.01,12591.79,12424.51,4577.71,29594.01,85870.02 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,16331,2261.0,696.47,242.25,3199.72,0.0,669.02,248.35,917.37,4117.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,37877,63102.0,0.0,169.79,63271.79,13042.51,12424.5,5122.93,30589.94,93861.73 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,24416,111436.0,0.0,13243.74,124679.74,24675.15,12424.5,9852.86,46952.51,171632.25 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,40124,74412.0,0.0,5055.0,79467.0,15474.51,12424.5,6592.17,34491.18,113958.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,447,74165.0,5665.29,960.0,80790.29,15481.21,12424.5,6630.89,34536.6,115326.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21333,3234.0,0.0,0.0,3234.0,0.0,1576.95,250.87,1827.82,5061.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",27173,13145.85,0.0,0.0,13145.85,0.0,3130.04,1019.26,4149.3,17295.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",18578,107961.19,0.0,0.0,107961.19,21264.51,10035.18,14072.58,45372.27,153333.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,25615,146187.94,0.0,0.0,146187.94,29360.68,12424.5,10284.76,52069.94,198257.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,7075,13564.9,301.35,0.0,13866.25,2982.92,3153.91,1107.27,7244.1,21110.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,33337,55936.91,0.0,0.0,55936.91,11474.07,9175.02,4555.91,25205.0,81141.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,6315,2868.0,0.0,0.0,2868.0,0.0,955.74,198.78,1154.52,4022.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,35785,70245.0,1364.69,3928.15,75537.84,14611.19,12424.5,6245.01,33280.7,108818.54 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,40227,101919.96,0.0,0.0,101919.96,21019.0,12412.56,8380.79,41812.35,143732.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35139,116899.29,444.48,21522.83,138866.6,21763.9,10673.3,10246.45,42683.65,181550.25 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,45394,7862.55,63.51,0.0,7926.06,0.0,1948.8,614.4,2563.2,10489.26 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,36045,74867.03,0.0,624.0,75491.03,15559.21,12424.5,6085.8,34069.51,109560.54 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,32078,87531.07,0.0,0.0,87531.07,18040.63,12424.5,6968.37,37433.5,124964.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",11294,79450.0,0.0,0.0,79450.0,14943.41,7167.99,9847.24,31958.64,111408.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9181,"Manager VII, MTA",45896,91358.62,0.0,0.0,91358.62,17322.97,6929.04,15762.87,40014.88,131373.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23064,20431.18,236.95,1694.96,22363.09,1523.79,5497.3,1727.93,8749.02,31112.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,42187,133674.84,20537.97,11912.05,166124.86,28310.87,8897.26,10549.57,47757.7,213882.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,23902,566.55,0.0,0.0,566.55,0.0,185.17,88.46,273.63,840.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20704,56531.0,0.0,3930.9,60461.9,11780.12,12424.5,4706.06,28910.68,89372.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,52666,92698.5,4858.59,4374.51,101931.6,19293.93,12520.08,8331.5,40145.51,142077.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,7280,11468.55,0.0,524.35,11992.9,0.0,2516.26,928.49,3444.75,15437.65 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,49067,113623.12,0.0,0.0,113623.12,22866.82,12424.5,9266.31,44557.63,158180.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45079,11732.16,0.0,0.0,11732.16,0.0,5087.48,945.77,6033.25,17765.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,29237,90975.93,3266.43,14254.62,108496.98,20983.5,12398.64,1755.02,35137.16,143634.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41641,38899.4,198.28,5118.86,44216.54,10103.32,10530.96,3312.87,23947.15,68163.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34551,112696.27,18585.85,17836.39,149118.51,22291.45,12424.5,2495.14,37211.09,186329.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,44614,9283.5,0.0,130.37,9413.87,0.0,3097.16,729.73,3826.89,13240.76 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17620,102019.03,0.0,0.0,102019.03,21037.43,12424.5,8348.82,41810.75,143829.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39776,100169.2,4935.74,10609.98,115714.92,20769.62,12424.5,1931.07,35125.19,150840.11 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0885,Mayoral Staff V,44420,32045.1,0.0,0.0,32045.1,6597.11,6307.83,10608.66,23513.6,55558.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,11828,19306.0,620.55,0.0,19926.55,4330.34,3345.07,1604.84,9280.25,29206.8 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26273,97764.2,4283.6,9211.08,111258.88,26020.83,12424.5,312.07,38757.4,150016.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,1463,40488.62,0.0,0.0,40488.62,9738.64,11319.45,3185.7,24243.79,64732.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1938,Stores & Equip Asst Sprv,31283,70091.9,2641.47,216.15,72949.52,14436.24,12424.5,5566.28,32427.02,105376.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,35482,83148.01,0.0,0.0,83148.01,17137.11,12424.53,6818.62,36380.26,119528.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,33417,97934.01,0.0,4534.14,102468.15,21135.41,12424.5,8438.03,41997.94,144466.09 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,13182,80758.25,0.0,0.0,80758.25,16892.55,10698.21,6119.87,33710.63,114468.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,7210,113852.0,0.0,0.0,113852.0,22913.02,12424.51,9374.33,44711.86,158563.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,2772,136301.16,9832.83,13035.94,159169.93,26931.3,12424.5,2713.91,42069.71,201239.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1140,38162.78,0.0,5927.4,44090.18,0.0,0.0,3487.8,3487.8,47577.98 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42244,138240.31,0.0,1500.0,139740.31,28116.86,12424.5,10197.35,50738.71,190479.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21743,2507.4,0.0,0.0,2507.4,0.0,1075.2,212.34,1287.54,3794.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,30575,33965.53,0.0,238.87,34204.4,7306.29,3618.82,553.26,11478.37,45682.77 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,13610,209309.64,0.0,0.0,209309.64,42114.77,12137.78,11300.07,65552.62,274862.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",2149,131577.09,25245.52,8082.18,164904.79,27444.09,15196.12,2671.67,45311.88,210216.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,5460,39356.55,0.0,2548.75,41905.3,5121.77,10501.1,3322.97,18945.84,60851.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,36931,26411.0,0.0,5021.34,31432.34,6771.59,5256.52,2510.2,14538.31,45970.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",50654,13505.4,0.0,0.0,13505.4,0.0,3201.72,1047.92,4249.64,17755.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31105,39093.02,5059.35,1984.28,46136.65,10639.1,12227.26,3199.95,26066.31,72202.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18113,16103.6,0.0,182.98,16286.58,0.0,1407.55,1262.63,2670.18,18956.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,53082,91749.81,7357.31,3488.93,102596.05,18708.56,9557.31,1702.27,29968.14,132564.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,6367,107010.6,8235.27,5947.74,121193.61,23378.36,3727.35,9481.06,36586.77,157780.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24065,14692.25,0.0,0.0,14692.25,306.7,0.0,2448.37,2755.07,17447.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,21226,115411.18,0.0,0.0,115411.18,23280.2,12148.48,9310.79,44739.47,160150.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,7115,75942.06,11101.07,6639.06,93682.19,13845.32,6690.11,1598.77,22134.2,115816.39 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,48353,1631.0,0.0,0.0,1631.0,358.66,477.86,126.6,963.12,2594.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,2378,54598.0,5550.99,1808.03,61957.02,12522.76,12424.5,4980.77,29928.03,91885.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,53216,12544.22,0.0,65.57,12609.79,0.0,4145.49,978.39,5123.88,17733.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10735,1341.0,0.0,33.52,1374.52,1176.86,95.58,515.16,1787.6,3162.12 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,51544,53057.01,0.0,0.0,53057.01,676.1,7126.17,4276.57,12078.84,65135.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,42380,1132.65,131.59,84.84,1349.08,0.0,374.83,104.45,479.28,1828.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12851,126080.76,9997.43,3504.89,139583.08,21810.01,11268.07,4912.71,37990.79,177573.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26254,41709.04,4805.62,3322.44,49837.1,11673.43,12833.69,3780.16,28287.28,78124.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",10800,6823.8,0.0,0.0,6823.8,0.0,1624.74,529.65,2154.39,8978.19 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8318,Counselor 2,51290,43552.34,0.0,3096.35,46648.69,10712.75,6441.86,983.84,18138.45,64787.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50660,55961.57,5606.58,897.1,62465.25,14738.33,12805.3,4719.45,32263.08,94728.33 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),15890,40865.0,0.0,375.0,41240.0,7674.79,4778.65,3282.75,15736.19,56976.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,32336,73529.48,0.0,1554.01,75083.49,15341.48,11015.17,5966.02,32322.67,107406.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12134,65242.93,0.0,1380.0,66622.93,13698.97,12357.72,5411.11,31467.8,98090.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",37828,121046.73,0.0,0.0,121046.73,24306.41,12388.66,27214.59,63909.66,184956.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,11196,105014.2,0.0,6107.74,111121.94,21615.03,12424.5,8943.22,42982.75,154104.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,46018,129271.03,0.0,0.0,129271.03,26015.9,12424.5,9928.75,48369.15,177640.18 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,2848,101047.01,0.0,598.35,101645.36,20941.07,12424.5,8188.85,41554.42,143199.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,47877,12391.25,0.0,0.0,12391.25,0.0,2747.73,961.76,3709.49,16100.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,47581,55861.98,0.0,459.9,56321.88,11192.47,6301.32,4553.5,22047.29,78369.17 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,16739,89128.04,0.0,0.0,89128.04,18223.08,11468.77,7081.44,36773.29,125901.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36862,63617.94,31890.78,4088.92,99597.64,18538.15,12519.6,7579.62,38637.37,138235.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,40738,89489.96,0.0,0.0,89489.96,10221.78,12358.79,7122.5,29703.07,119193.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,22047,108038.01,1259.7,2519.4,111817.11,22266.23,12424.5,8979.64,43670.37,155487.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,41943,44582.39,0.0,459.11,45041.5,9249.78,6728.95,3647.9,19626.63,64668.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9534,44564.33,0.0,0.0,44564.33,0.0,5844.9,3454.67,9299.57,53863.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48550,53295.59,12900.43,1151.73,67347.75,15070.64,10535.32,5238.2,30844.16,98191.91 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,48101,67911.02,0.0,7162.52,75073.54,14855.27,12424.5,5906.28,33186.05,108259.59 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,2539,18887.53,814.2,0.0,19701.73,0.0,4302.28,1527.44,5829.72,25531.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,968,89125.18,6348.87,9710.22,105184.27,19385.12,12143.7,1707.55,33236.37,138420.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36759,12858.71,892.87,64.55,13816.13,3098.37,3962.17,1056.35,8116.89,21933.02 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,768,91817.32,9150.82,17675.39,118643.53,26514.18,11681.72,2007.99,40203.89,158847.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21598,18965.23,0.0,846.07,19811.3,0.0,5071.35,1535.76,6607.11,26418.41 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2785,Asst General Services Manager,17639,75483.2,0.0,0.0,75483.2,15493.94,12424.5,20952.78,48871.22,124354.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,46758,147905.8,0.0,0.0,147905.8,29281.71,10513.04,15074.02,54868.77,202774.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19968,6288.29,0.0,193.2,6481.49,0.0,2726.82,516.74,3243.56,9725.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,22132,81141.78,7436.75,3381.51,91960.04,17353.93,12383.65,7513.47,37251.05,129211.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3544,Curator 3,1425,82914.01,0.0,1560.0,84474.01,17088.82,12424.5,7424.61,36937.93,121411.94 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),23179,184289.09,0.0,5248.28,189537.37,38144.37,12424.5,11047.82,61616.69,251154.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,14615,12829.98,0.0,384.86,13214.84,2796.45,1588.91,1158.99,5544.35,18759.19 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,8095,99602.0,28810.83,1713.15,130125.98,20528.27,12424.5,9950.04,42902.81,173028.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28077,97187.83,3406.62,8300.04,108894.49,20207.98,12424.5,1805.33,34437.81,143332.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22625,12999.08,0.0,0.0,12999.08,118.14,5636.84,1051.63,6806.61,19805.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37309,10953.0,0.0,1017.05,11970.05,2499.06,2867.19,959.25,6325.5,18295.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,18286,130845.86,43508.7,13760.09,188114.65,28501.3,15196.12,3197.47,46894.89,235009.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,51672,66246.67,0.0,0.0,66246.67,13635.26,12360.47,5345.61,31341.34,97588.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27692,35981.8,4743.71,561.08,41286.59,9456.81,11238.45,2920.93,23616.19,64902.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,23880,57030.67,1446.52,666.2,59143.39,12093.8,9282.66,4885.48,26261.94,85405.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38030,2557.19,0.0,2.94,2560.13,0.0,1246.93,198.57,1445.5,4005.63 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,3685,73260.93,0.0,718.1,73979.03,15206.79,11808.83,6093.6,33109.22,107088.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,10134,37977.8,1296.41,0.0,39274.21,9337.89,9557.31,3089.01,21984.21,61258.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,751,120687.62,0.0,0.0,120687.62,24288.51,12424.5,17114.92,53827.93,174515.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48539,119465.62,9774.0,8373.52,137613.14,23627.26,12424.5,2299.05,38350.81,175963.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,437,48974.6,254.1,850.0,50078.7,10236.44,9688.19,3791.23,23715.86,73794.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,44254,35.93,0.0,1.44,37.37,0.0,0.0,0.0,0.0,37.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,12405,100761.05,652.24,870.0,102283.29,20947.62,12424.5,8184.28,41556.4,143839.69 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4131,19889.19,0.0,0.0,19889.19,5131.38,5047.46,1607.0,11785.84,31675.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9187,"Deputy Dir II, MTA",13984,251103.0,0.0,0.0,251103.0,50564.76,12424.5,29478.37,92467.63,343570.63 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,30343,96332.0,7524.8,1610.0,105466.8,20187.19,12424.5,8462.35,41074.04,146540.84 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0903,Mayoral Staff XV,17313,113663.74,0.0,0.0,113663.74,22874.92,12424.5,23969.13,59268.55,172932.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,27068,46616.83,0.0,0.0,46616.83,11172.31,12424.5,3781.95,27378.76,73995.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,38587,82986.94,0.0,0.0,82986.94,17066.91,12154.5,6759.21,35980.62,118967.56 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",37086,63930.0,1521.79,4642.02,70093.81,13794.43,12424.5,1393.5,27612.43,97706.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,7100,73382.51,568.82,9603.73,83555.06,16297.47,12420.5,6830.73,35548.7,119103.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,27298,56273.33,0.0,2229.24,58502.57,12135.17,11347.21,4677.56,28159.94,86662.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26096,64740.87,3835.19,646.31,69222.37,14900.85,12754.35,5282.46,32937.66,102160.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,45943,49476.84,0.0,1952.72,51429.56,12108.68,11955.6,4215.03,28279.31,79708.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,49119,51110.55,0.0,0.0,51110.55,9636.49,6277.96,4023.41,19937.86,71048.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,28647,160421.49,8835.12,6141.21,175397.82,31788.57,12424.5,2934.54,47147.61,222545.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,16138,128129.01,0.0,0.0,128129.01,25765.99,0.0,17243.26,43009.25,171138.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,18825,3172.5,0.0,0.0,3172.5,711.59,716.79,263.36,1691.74,4864.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,33171,47165.1,4302.93,544.8,52012.83,11318.35,10847.55,4312.5,26478.4,78491.23 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1281,Senior Emp Relations Repres,46410,26425.4,0.0,0.0,26425.4,4790.93,2723.83,2107.0,9621.76,36047.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,7266,1115.0,0.0,0.0,1115.0,250.09,238.93,86.13,575.15,1690.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20423,29238.22,5966.72,364.18,35569.12,7096.92,11735.42,2786.45,21618.79,57187.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,31307,112905.28,0.0,0.0,112905.28,22719.72,11196.99,9030.03,42946.74,155852.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11970,10076.7,0.0,219.72,10296.42,163.75,0.0,2572.51,2736.26,13032.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,33593,63102.0,0.0,384.23,63486.23,13084.35,12424.5,5218.75,30727.6,94213.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2448,137141.32,3235.59,11158.9,151535.81,28363.91,12140.59,10012.25,50516.75,202052.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46141,119459.86,267.04,820.04,120546.94,23648.14,12424.5,2006.01,38078.65,158625.59 +Calendar,2015,1,Public Protection,POL,Police,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14684,402.1,0.0,0.0,402.1,0.0,47.79,31.2,78.99,481.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,32975,28041.0,0.0,0.0,28041.0,5379.16,5256.51,2265.69,12901.36,40942.36 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8143,Sr Public Defenders Invstgtor,17429,101531.0,0.0,0.0,101531.0,20926.02,12424.5,8361.25,41711.77,143242.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4110,140143.28,9153.87,13613.22,162910.37,27680.94,12424.51,2769.31,42874.76,205785.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41750,1365.88,0.0,7.35,1373.23,0.0,666.03,106.58,772.61,2145.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,41226,65343.91,0.0,379.05,65722.96,13454.02,12281.13,5200.74,30935.89,96658.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,11605,31305.04,932.81,17006.1,49243.95,5884.69,2389.33,91.14,8365.16,57609.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11902,9614.9,0.0,170.7,9785.6,0.0,4109.64,789.87,4899.51,14685.11 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,7136,61600.0,0.0,1404.48,63004.48,13305.97,8362.64,5097.22,26765.83,89770.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15284,95033.49,2359.88,17880.12,115273.49,21450.87,8417.01,8710.55,38578.43,153851.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,34505,79923.91,0.0,0.0,79923.91,16365.3,11367.22,6379.63,34112.15,114036.06 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,792,12867.4,0.0,0.0,12867.4,2394.63,2341.53,1011.39,5747.55,18614.95 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,42339,2372.03,832.73,0.0,3204.76,0.0,701.86,248.74,950.6,4155.36 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,35553,111918.01,0.0,150.0,112068.01,22549.03,12424.5,9139.13,44112.66,156180.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4430,138568.92,58688.56,13695.41,210952.89,27381.03,12418.53,3552.28,43351.84,254304.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,38449,73749.02,1523.13,283.3,75555.45,15262.35,12424.5,6101.3,33788.15,109343.6 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,7088,7253.02,0.0,93.37,7346.39,1615.47,2150.39,589.28,4355.14,11701.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",9810,23574.48,0.0,0.0,23574.48,0.0,4969.8,1736.95,6706.75,30281.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,29782,80147.65,3467.67,2265.31,85880.63,16987.32,12424.5,7096.73,36508.55,122389.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21221,18536.85,0.0,0.0,18536.85,3360.74,2007.04,1495.83,6863.61,25400.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10663,56103.61,0.0,0.0,56103.61,12503.31,12358.8,4919.01,29781.12,85884.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,3526,51058.15,0.0,15993.02,67051.17,11202.17,4491.93,8174.83,23868.93,90920.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",9015,93876.45,65880.87,11734.61,171491.93,20070.22,10823.65,2865.54,33759.41,205251.34 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,42369,133087.02,0.0,0.0,133087.02,26783.95,12424.5,10060.68,49269.13,182356.15 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,48029,71558.48,0.0,1895.16,73453.64,14982.27,12056.01,5841.97,32880.25,106333.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7286,64011.33,6326.22,3133.39,73470.94,15267.44,12610.03,5395.44,33272.91,106743.85 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4267,Pr Real Property Appraiser,40160,4164.0,0.0,0.0,4164.0,774.92,477.86,344.87,1597.65,5761.65 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,4350,63102.05,0.0,624.0,63726.05,13134.27,12424.5,5180.77,30739.54,94465.59 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13809,196.0,0.0,0.0,196.0,0.0,83.62,15.18,98.8,294.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34475,63528.59,2743.18,3236.6,69508.37,16236.26,13440.62,5088.6,34765.48,104273.85 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,14921,73095.4,0.0,0.0,73095.4,15105.66,11638.0,5694.23,32437.89,105533.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",4811,180297.4,85447.89,32806.19,298551.48,41668.84,15196.12,5010.97,61875.93,360427.41 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4267,Pr Real Property Appraiser,42291,116384.03,0.0,2200.0,118584.03,23838.01,12424.5,9500.03,45762.54,164346.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28872,113233.58,5088.52,13166.33,131488.43,24241.71,15196.11,2268.0,41705.82,173194.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,42135,85368.09,0.0,360.0,85728.09,17660.98,12424.5,7110.09,37195.57,122923.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7551,1037.1,0.0,34.57,1071.67,1278.13,0.0,540.15,1818.28,2889.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,51927,112209.0,0.0,0.0,112209.0,22870.16,12424.5,9216.25,44510.91,156719.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,30488,50291.0,24285.12,3343.36,77919.48,11352.96,10513.03,6219.49,28085.48,106004.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,24710,199043.0,0.0,1365.45,200408.45,40296.87,12424.5,11081.88,63803.25,264211.7 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,37349,2386.63,0.0,0.0,2386.63,0.0,728.75,184.77,913.52,3300.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9038,14690.76,0.0,0.0,14690.76,5.19,6337.45,1199.45,7542.09,22232.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41474,29871.3,0.0,0.0,29871.3,6088.67,4587.51,2301.06,12977.24,42848.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,38822,0.0,0.0,88.11,88.11,0.0,0.0,6.74,6.74,94.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,27652,36601.48,2415.62,461.79,39478.89,9102.73,8706.12,3195.98,21004.83,60483.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24615,68867.73,0.0,50.0,68917.73,14173.05,12424.51,5544.58,32142.14,101059.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52386,113694.58,504.6,10638.91,124838.09,23359.08,10701.43,9161.61,43222.12,168060.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,11968,89615.53,0.0,0.0,89615.53,18428.6,12424.49,6705.12,37558.21,127173.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,2873,2772.0,0.0,0.0,2772.0,515.87,477.86,215.15,1208.88,3980.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,18796,97776.54,38965.92,13990.97,150733.43,27175.21,12424.51,2560.05,42159.77,192893.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15289,7537.06,472.59,27.42,8037.07,1787.61,2271.77,623.16,4682.54,12719.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29607,39689.94,0.0,661.42,40351.36,5240.87,10590.69,3038.2,18869.76,59221.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,22690,110455.63,1738.24,6996.38,119190.25,23480.7,12119.51,1387.15,36987.36,156177.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,38721,2700.0,0.0,0.0,2700.0,502.47,477.86,209.56,1189.89,3889.89 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,7287,56043.01,8599.91,312.0,64954.92,12364.3,6212.25,5204.02,23780.57,88735.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,16869,30627.01,0.0,0.0,30627.01,6869.62,4300.79,2474.71,13645.12,44272.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45429,95826.7,14592.05,19587.58,130006.33,28027.67,12185.57,1946.97,42160.21,172166.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,2048,128329.02,0.0,0.0,128329.02,25802.26,12424.5,17238.87,55465.63,183794.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25018,56531.0,0.0,5429.47,61960.47,12332.48,12424.5,5065.72,29822.7,91783.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,41479,25061.01,0.0,0.0,25061.01,4663.85,3822.92,1942.72,10429.49,35490.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37,94689.97,6397.65,7637.22,108724.84,19629.61,12424.5,1814.25,33868.36,142593.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,27580,57934.47,0.0,622.2,58556.67,12065.83,12388.65,4561.53,29016.01,87572.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17858,113504.54,302.87,26082.95,139890.36,24426.7,11038.69,9361.59,44826.98,184717.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,23840,64447.9,5753.18,11995.89,82196.97,15279.33,12424.51,6280.99,33984.83,116181.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,13185,129895.02,0.0,0.0,129895.02,26141.49,12424.52,9954.97,48520.98,178416.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,30088,2772.0,0.0,0.0,2772.0,515.87,477.86,215.15,1208.88,3980.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,12858,4198.67,0.0,209.94,4408.61,898.02,334.5,327.92,1560.44,5969.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,47075,120111.04,0.0,0.0,120111.04,24172.55,12424.52,9144.96,45742.03,165853.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,40.0,"Roofers and Waterproofers, Local 40",7200,Supervisory-Labor & Trade,9343,Roofer,21649,80598.71,0.0,70.0,80668.71,16633.83,12376.73,6477.67,35488.23,116156.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,21902,8973.0,0.0,0.0,8973.0,1973.16,2150.4,712.61,4836.17,13809.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15880,78018.41,0.0,503.12,78521.53,14545.47,6903.96,6283.13,27732.56,106254.09 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,24652,180240.29,0.0,6607.5,186847.79,35650.73,9832.08,6732.28,52215.09,239062.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,30517,112209.0,0.0,0.0,112209.0,22870.16,12424.5,9175.04,44469.7,156678.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24096,7412.18,0.0,0.0,7412.18,378.5,3156.9,605.68,4141.08,11553.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8066,119461.64,18020.35,6977.42,144459.41,24111.54,12424.5,2461.39,38997.43,183456.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,26592,92709.6,3783.83,8959.76,105453.19,19929.49,12520.08,8661.99,41111.56,146564.75 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,2243,10254.0,0.0,0.0,10254.0,2299.98,1433.6,809.68,4543.26,14797.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,46589,50836.85,140.18,18690.0,69667.03,11402.69,6498.96,5628.67,23530.32,93197.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18826,54626.15,8382.3,1440.67,64449.12,15684.59,10784.04,4966.74,31435.37,95884.49 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),52547,184289.0,0.0,5248.28,189537.28,38144.35,12424.5,10988.62,61557.47,251094.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,42370,50652.32,0.0,1360.0,52012.32,10591.87,10990.91,4215.03,25797.81,77810.13 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,11975,87975.7,0.0,0.0,87975.7,18115.51,12424.5,7032.61,37572.62,125548.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,1314,140770.89,1014.96,8975.83,150761.68,28353.04,12424.5,2561.06,43338.6,194100.28 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2462,Microbiologist,40329,83089.55,0.0,0.0,83089.55,17089.46,12424.5,6659.85,36173.81,119263.36 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,36763,43303.03,10478.58,500.0,54281.61,10475.46,12298.4,4373.83,27147.69,81429.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35331,241.07,0.0,14.84,255.91,978.98,19.35,16.5,1014.83,1270.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,34651,139002.23,8018.9,9650.23,156671.36,27515.18,12424.5,2669.08,42608.76,199280.12 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,36918,75927.05,1434.11,2002.5,79363.66,15777.43,12424.5,6115.38,34317.31,113680.97 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,21191,77375.2,0.0,3000.0,80375.2,15934.47,12424.5,6679.07,35038.04,115413.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",13645,140299.03,0.0,0.0,140299.03,28235.44,12424.5,17432.73,58092.67,198391.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,19461,0.0,0.0,5172.99,5172.99,0.0,68.5,441.68,510.18,5683.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51049,7593.35,0.0,0.0,7593.35,0.0,3285.32,626.96,3912.28,11505.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29962,66704.55,11294.29,561.65,78560.49,18428.93,13146.62,6046.5,37622.05,116182.54 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,18631,25703.02,0.0,264.0,25967.02,4832.46,5256.52,2153.39,12242.37,38209.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11921,1903.72,0.0,8.68,1912.4,0.0,607.8,101.05,708.85,2621.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7732,9916.42,0.0,714.6,10631.02,4048.48,0.0,582.57,4631.05,15262.07 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,42088,86850.0,0.0,480.0,87330.0,17998.82,12424.5,7160.06,37583.38,124913.38 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,6580,45024.0,0.0,900.0,45924.0,10300.73,5734.39,3746.0,19781.12,65705.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24983,109804.69,1490.49,18215.66,129510.84,24105.91,9724.57,9471.73,43302.21,172813.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,8861,92325.31,14298.17,14684.94,121308.42,25966.62,11753.65,2011.81,39732.08,161040.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3445,140334.01,0.0,2019.61,142353.62,28603.84,12424.5,10155.23,51183.57,193537.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,14481,111908.91,6387.59,11408.46,129704.96,24343.35,12423.49,9950.86,46717.7,176422.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),2583,11556.01,3024.42,528.03,15108.46,2050.77,955.73,254.69,3261.19,18369.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,17236,112776.06,0.0,0.0,112776.06,22696.47,12424.5,9019.93,44140.9,156916.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37097,16410.47,2113.45,859.56,19383.48,4790.55,5180.17,1441.74,11412.46,30795.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37883,10129.5,0.0,362.46,10491.96,0.0,3876.68,813.46,4690.14,15182.1 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,41707,154204.03,0.0,0.0,154204.03,31033.61,12424.5,10439.36,53897.47,208101.5 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",48778,18945.15,14648.89,308.59,33902.63,0.0,4114.06,2627.15,6741.21,40643.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48220,43175.08,2852.45,2904.98,48932.51,11946.87,12867.9,3493.45,28308.22,77240.73 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,49524,18540.2,233.7,0.0,18773.9,4783.33,5686.6,1530.67,12000.6,30774.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,38280,88181.19,0.0,0.0,88181.19,18201.75,11741.09,7289.99,37232.83,125414.02 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1430,Transcriber Typist,47449,29473.15,0.0,298.07,29771.22,5939.43,5922.85,2565.37,14427.65,44198.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,31644,130210.72,0.0,0.0,130210.72,26537.91,10995.38,20204.4,57737.69,187948.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,5382,158362.42,21456.65,5604.33,185423.4,31276.4,12424.5,3106.85,46807.75,232231.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,48873,138637.94,30378.75,11147.57,180164.26,27385.65,12424.5,3015.93,42826.08,222990.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12151,128366.22,3240.91,12874.49,144481.62,22895.33,11019.93,9536.41,43451.67,187933.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,18251,62811.0,1838.71,4195.59,68845.3,13491.77,12424.5,5686.72,31602.99,100448.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28827,564.0,0.0,2.86,566.86,0.0,179.19,43.94,223.13,789.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48656,63621.89,13094.23,557.25,77273.37,17571.82,12541.58,6610.99,36724.39,113997.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,34103,22528.2,55.03,1805.2,24388.43,4925.46,4584.94,2021.69,11532.09,35920.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50831,77071.06,2994.8,1744.0,81809.86,16248.54,12424.5,6722.68,35395.72,117205.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44771,111352.77,421.59,27908.83,139683.19,24005.28,10163.96,5110.83,39280.07,178963.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1740,12417.18,0.0,1090.08,13507.26,3297.24,0.0,5264.35,8561.59,22068.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32416,6997.7,0.0,861.21,7858.91,1805.38,3034.45,637.53,5477.36,13336.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28283,7101.57,0.0,0.0,7101.57,0.0,3017.13,566.61,3583.74,10685.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13096,1583.04,0.0,0.0,1583.04,374.5,477.14,122.88,974.52,2557.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,38812,140285.02,0.0,0.0,140285.02,28266.55,12018.91,17401.9,57687.36,197972.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,22500,139088.95,56864.28,22205.37,218158.6,27475.75,12424.5,3623.21,43523.46,261682.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27592,149099.0,0.0,14006.1,163105.1,25875.59,12424.5,10148.45,48448.54,211553.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5250,129617.29,42271.71,12410.58,184299.58,27966.82,15052.76,3097.5,46117.08,230416.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,45055,52470.0,0.0,0.0,52470.0,11290.13,8601.58,4186.51,24078.22,76548.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24216,21096.09,2393.14,941.09,24430.32,5333.36,6536.96,1867.83,13738.15,38168.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19927,12664.56,644.25,168.54,13477.35,3077.16,3903.86,1041.39,8022.41,21499.76 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,51681,72546.96,0.0,622.6,73169.56,15077.67,12396.61,6067.3,33541.58,106711.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",28712,82485.76,46692.14,11767.46,140945.36,18107.71,12417.04,10070.97,40595.72,181541.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,9290,67261.01,0.0,2010.5,69271.51,14112.1,12424.5,5574.45,32111.05,101382.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",569,130329.28,30246.2,19658.39,180233.87,29505.54,15052.76,3018.3,47576.6,227810.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35526,135615.91,0.0,10709.64,146325.55,27832.51,12382.69,9773.46,49988.66,196314.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,14725,27339.81,0.0,0.0,27339.81,4121.9,3121.06,2145.51,9388.47,36728.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,39744,110041.01,10784.88,5315.43,126141.32,22559.03,12424.5,9716.57,44700.1,170841.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6758,56531.0,526.76,5.4,57063.16,11669.03,12424.5,4685.05,28778.58,85841.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29647,147775.42,0.0,44364.36,192139.78,35012.14,12313.52,4770.69,52096.35,244236.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,34311,3126.84,0.0,0.0,3126.84,581.9,483.83,262.83,1328.56,4455.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47483,95778.18,35340.19,6596.68,137715.05,19569.72,9557.3,2270.08,31397.1,169112.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,39301,96296.97,0.0,4819.04,101116.01,19809.84,12424.5,8290.93,40525.27,141641.28 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,10270,139741.42,0.0,11935.05,151676.47,28123.14,12424.5,10370.84,50918.48,202594.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42569,68867.71,0.0,1040.0,69907.71,14375.19,12424.51,5432.3,32232.0,102139.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,3400,69881.02,0.0,0.0,69881.02,14367.37,12424.49,5684.75,32476.61,102357.63 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,13261,50308.02,0.0,663.1,50971.12,12233.04,12424.5,4119.76,28777.3,79748.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,46823,103351.57,0.0,1091.65,104443.22,20983.09,10972.98,8479.71,40435.78,144879.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,35390,43928.94,5225.51,1854.37,51008.82,9836.86,6432.42,845.39,17114.67,68123.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,29309,62811.0,3557.58,986.55,67355.13,13074.36,12424.5,5316.71,30815.57,98170.7 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37870,5754.0,0.0,147.0,5901.0,0.0,0.0,466.17,466.17,6367.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,30783,24107.91,0.0,0.0,24107.91,1990.83,7242.65,1789.56,11023.04,35130.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25991,67197.3,4451.05,3106.4,74754.75,16514.61,13239.08,5671.59,35425.28,110180.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50239,3647.99,0.0,72.79,3720.78,0.0,1197.65,288.78,1486.43,5207.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22682,4485.38,0.0,1.43,4486.81,0.0,1496.8,348.15,1844.95,6331.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6538,149099.0,0.0,28825.44,177924.44,33214.6,12424.5,5738.14,51377.24,229301.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,26281,31305.03,0.0,11226.36,42531.39,5553.18,2389.33,691.43,8633.94,51165.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,28594,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,38148,19313.63,0.0,485.92,19799.55,4640.03,4760.92,1652.73,11053.68,30853.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,48495,62468.82,41719.15,3230.5,107418.47,12995.12,12424.51,8713.73,34133.36,141551.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38602,67090.44,3636.62,2452.17,73179.23,19061.08,13222.84,5660.64,37944.56,111123.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,20571,105803.4,0.0,0.0,105803.4,21211.59,11122.31,8705.23,41039.13,146842.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17069,18662.5,0.0,0.0,18662.5,4186.0,2389.33,1527.91,8103.24,26765.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17295,72671.41,13697.3,3566.56,89935.27,15531.75,15052.75,1493.41,32077.91,122013.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,37258,82550.06,0.0,0.0,82550.06,17026.04,10530.78,6093.93,33650.75,116200.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7287,Sprv Electronic Main Tech,37664,43831.0,17005.56,2928.91,63765.47,7946.57,4300.79,1887.41,14134.77,77900.24 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45433,40112.24,666.75,2515.36,43294.35,10110.67,10704.18,3503.67,24318.52,67612.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,13150,1473.82,0.0,0.0,1473.82,0.0,430.07,114.38,544.45,2018.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,34968,125283.61,0.0,2583.0,127866.61,25743.98,12424.5,17127.83,55296.31,183162.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,33997,10031.78,0.0,193.77,10225.55,0.0,1995.09,793.67,2788.76,13014.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11191,140334.0,0.0,4480.82,144814.82,29071.42,12424.5,10210.15,51706.07,196520.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,52408,91331.04,0.0,0.0,91331.04,18823.71,12424.5,7499.58,38747.79,130078.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,7434,79722.02,0.0,2022.0,81744.02,16851.43,12424.5,6695.63,35971.56,117715.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,30402,22434.0,1067.22,3444.03,26945.25,4592.45,3345.06,2086.76,10024.27,36969.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,46544,62811.01,299.63,624.0,63734.64,13074.36,12424.5,5282.29,30781.15,94515.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,19737,116976.04,0.0,4425.06,121401.1,24433.89,12424.49,9716.92,46575.3,167976.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,5486,13358.72,0.0,1498.1,14856.82,3559.92,4842.87,1151.49,9554.28,24411.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36975,7705.63,0.0,0.0,7705.63,0.0,0.0,321.17,321.17,8026.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15182,630.8,0.0,0.0,630.8,0.0,0.0,0.0,0.0,630.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52145,2345.88,0.0,1.96,2347.84,0.0,1143.89,182.06,1325.95,3673.79 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,39735,3980.97,0.0,0.0,3980.97,0.0,1215.57,308.47,1524.04,5505.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33858,64720.06,4355.38,1105.71,70181.15,18012.4,12753.04,5317.09,36082.53,106263.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8570,77065.7,33778.37,8124.63,118968.7,16921.7,15196.13,1983.37,34101.2,153069.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15200,2083.34,0.0,853.64,2936.98,479.84,903.4,241.94,1625.18,4562.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51248,112690.81,1792.86,9346.81,123830.48,22311.18,12424.5,2053.2,36788.88,160619.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16497,62432.12,19764.58,1556.04,83752.74,17454.66,12293.81,6297.46,36045.93,119798.67 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,18495,55420.02,0.0,0.0,55420.02,10047.62,5256.52,4397.71,19701.85,75121.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31597,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2414.98,12868.33,44168.33 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,51440,94458.43,24524.49,2788.2,121771.12,19765.61,12274.28,9708.15,41748.04,163519.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,3230,24685.01,0.0,0.0,24685.01,3689.41,4778.65,1956.71,10424.77,35109.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,10145,39017.0,0.0,0.0,39017.0,7261.04,4300.79,3207.73,14769.56,53786.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,16235,73749.0,412.12,4789.97,78951.09,15588.34,12424.5,6476.92,34489.76,113440.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,24362,118137.0,0.0,0.0,118137.0,23355.17,10513.04,14868.41,48736.62,166873.62 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,13051,57608.79,0.0,6324.4,63933.19,13618.99,12424.5,5176.11,31219.6,95152.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31236,97764.48,3100.02,9269.75,110134.25,26038.56,12424.5,1875.23,40338.29,150472.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26124,7238.77,0.0,397.72,7636.49,0.0,3138.98,622.3,3761.28,11397.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,30671,29651.02,0.0,0.0,29651.02,5773.99,6690.17,2383.03,14847.19,44498.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,1894,112181.03,0.0,0.0,112181.03,22834.88,12424.5,9195.83,44455.21,156636.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,50815,112776.0,813.5,2888.38,116477.88,22696.41,12424.5,9164.15,44285.06,160762.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50708,5268.0,0.0,1290.66,6558.66,1467.87,1433.6,555.23,3456.7,10015.36 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,33231,49343.64,0.0,0.0,49343.64,9947.18,10035.18,3956.54,23938.9,73282.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,45005,84791.04,0.0,0.0,84791.04,17475.8,12424.5,6767.56,36667.86,121458.9 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,27227,7386.5,0.0,0.0,7386.5,1905.72,2234.02,618.54,4758.28,12144.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29087,3101.05,0.0,0.0,3101.05,0.0,1302.19,248.41,1550.6,4651.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,29052,101531.0,9584.22,5179.19,116294.41,20926.02,12424.5,9497.18,42847.7,159142.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,38826,135421.0,0.0,5935.02,141356.02,28450.89,12424.5,10173.96,51049.35,192405.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,36791,14119.3,0.0,191.11,14310.41,2663.17,2293.76,1151.33,6108.26,20418.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28776,3285.98,0.0,0.0,3285.98,0.0,1379.84,262.8,1642.64,4928.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52970,11534.58,0.0,0.0,11534.58,394.14,4939.93,940.56,6274.63,17809.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18416,118951.18,16783.12,7819.43,143553.73,23516.1,12370.74,2400.3,38287.14,181840.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45319,121196.0,0.0,17466.76,138662.76,15445.3,12281.15,9515.94,37242.39,175905.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33263,0.0,0.0,1257.58,1257.58,0.0,68.5,18.23,86.73,1344.31 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,25988,82240.6,0.0,0.0,82240.6,16949.88,12322.95,6458.59,35731.42,117972.02 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,20068,91800.0,0.0,17442.0,109242.0,21821.56,7167.99,8813.51,37803.06,147045.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35777,40236.49,4652.85,1834.21,46723.55,10968.12,12491.77,3500.31,26960.2,73683.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41071,112630.49,249.98,5314.03,118194.5,22766.49,12418.53,297.51,35482.53,153677.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,3010,189.19,0.0,0.0,189.19,38.95,0.0,14.94,53.89,243.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,9934,57852.4,0.0,4359.1,62211.5,13831.34,12424.5,4983.34,31239.18,93450.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,30919,114621.25,0.0,3212.17,117833.42,23957.29,11341.53,9447.75,44746.57,162579.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2114,Medical Records Tech Sprv,19007,29153.41,964.36,1212.0,31329.77,5465.64,4300.79,2569.56,12335.99,43665.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,42899,58973.13,0.0,953.32,59926.45,12283.83,10088.94,4918.16,27290.93,87217.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,8592,47526.6,0.0,800.0,48326.6,10512.6,10510.05,3846.81,24869.46,73196.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10476,20513.19,4445.15,515.25,25473.59,6184.46,4079.42,1963.36,12227.24,37700.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,49761,144010.82,0.0,1404.25,145415.07,29351.25,11871.98,10210.95,51434.18,196849.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7300,Journeyman Trade,7324,Beautician,47406,66263.02,0.0,874.0,67137.02,13785.92,12424.5,5545.11,31755.53,98892.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28357,3628.27,0.0,299.33,3927.6,778.0,0.0,310.28,1088.28,5015.88 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,31783,101531.0,0.0,0.0,101531.0,20926.02,12424.5,8131.89,41482.41,143013.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,27292,1994.0,0.0,80.0,2074.0,456.08,477.86,160.79,1094.73,3168.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,50697,111918.02,0.0,100.0,112018.02,22523.68,12424.5,9111.58,44059.76,156077.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,30508,87713.06,0.0,3904.91,91617.97,18475.51,12424.5,7258.06,38158.07,129776.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,44692,74364.0,1382.61,40.0,75786.61,14844.78,9079.42,6176.69,30100.89,105887.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",11232,135111.6,27304.44,8106.69,170522.73,28139.71,12424.5,2896.38,43460.59,213983.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,32077,96930.08,0.0,0.0,96930.08,19988.23,12424.5,7763.1,40175.83,137105.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44098,902.33,0.0,5.88,908.21,0.0,440.0,70.49,510.49,1418.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,11178,89736.42,0.0,0.0,89736.42,18463.13,12424.5,7231.63,38119.26,127855.68 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,14944,29233.81,1376.55,2767.74,33378.1,6966.93,4778.65,2558.51,14304.09,47682.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35276,52998.52,81.04,993.15,54072.71,10882.63,11646.06,4399.06,26927.75,81000.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,20429,47510.44,430.22,5432.15,53372.81,12197.36,12419.19,4046.84,28663.39,82036.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,29414,99266.7,35577.02,13454.91,148298.63,22729.84,11600.19,10246.86,44576.89,192875.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,36070,110041.02,0.0,624.0,110665.02,22271.49,12424.5,8847.24,43543.23,154208.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,9992,30540.0,5378.11,14285.45,50203.56,6914.76,5734.39,4036.58,16685.73,66889.29 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,27823,52258.26,1078.51,552.39,53889.16,10832.4,10805.73,4378.3,26016.43,79905.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",17821,68177.01,562.14,5454.16,74193.31,12995.88,4778.65,1250.27,19024.8,93218.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27306,136071.0,0.0,289.01,136360.01,27392.99,12424.5,9974.92,49792.41,186152.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39145,66609.43,4528.33,5221.11,76358.87,19694.69,13128.88,5699.13,38522.7,114881.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,32361,56531.01,2034.93,3985.98,62551.92,11758.21,12424.5,5098.9,29281.61,91833.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37575,66529.28,7568.02,717.24,74814.54,18408.23,13106.54,5500.76,37015.53,111830.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,36641,82717.01,1415.08,3714.5,87846.59,17177.08,12424.5,7246.79,36848.37,124694.96 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,14229,93681.04,0.0,1370.48,95051.52,19604.31,12424.5,7851.76,39880.57,134932.09 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,11619,613.7,0.0,0.0,613.7,122.95,0.0,47.31,170.26,783.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,50095,83127.04,25451.35,7646.4,116224.79,17132.57,12424.55,9294.43,38851.55,155076.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,4153,84644.01,36093.99,9560.21,130298.21,19074.91,12424.5,9840.94,41340.35,171638.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,9210,91733.39,0.0,0.0,91733.39,19226.18,10513.03,7492.99,37232.2,128965.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16959,83.81,0.0,0.0,83.81,0.0,0.0,6.39,6.39,90.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,7745,27479.5,100.52,0.0,27580.02,6165.8,6690.11,2213.94,15069.85,42649.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28895,54615.2,0.0,7166.11,61781.31,14227.69,12424.5,4993.17,31645.36,93426.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9561,1837.88,0.0,49.02,1886.9,342.1,179.2,130.75,652.05,2538.95 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,17739,93681.06,0.0,3266.61,96947.67,19992.54,12424.5,7910.15,40327.19,137274.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,33448,108038.01,4182.7,8266.68,120487.39,23515.74,12424.5,9651.8,45592.04,166079.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15930,10949.8,0.0,300.15,11249.95,776.01,4688.63,911.02,6375.66,17625.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29446,40991.57,0.0,9266.74,50258.31,0.0,3598.68,3894.52,7493.2,57751.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,43759,101323.04,0.0,1176.0,102499.04,21115.33,12424.53,9040.84,42580.7,145079.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,479,13985.18,0.0,0.0,13985.18,0.0,6003.18,1137.65,7140.83,21126.01 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,20085,67844.06,18286.84,8581.02,94711.92,15193.42,12412.56,7500.87,35106.85,129818.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50176,65735.78,20589.46,2033.7,88358.94,18577.02,12955.17,6896.32,38428.51,126787.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,21810,10672.65,0.0,520.0,11192.65,0.0,3488.42,866.54,4354.96,15547.61 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,6502,52849.35,0.0,0.0,52849.35,9581.55,4754.77,7276.57,21612.89,74462.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,2408,21180.0,16.55,0.0,21196.55,5464.44,5734.39,1728.73,12927.56,34124.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,49100,67654.63,0.0,250.0,67904.63,13916.15,12424.5,5503.97,31844.62,99749.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,48031,135421.01,0.0,5265.03,140686.04,28309.93,12424.5,10171.38,50905.81,191591.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,17506,68569.03,24.57,0.0,68593.6,14132.32,12424.14,5689.06,32245.52,100839.12 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,3893,194539.8,0.0,0.0,194539.8,39130.69,12424.5,18318.49,69873.68,264413.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,52516,83166.8,0.0,598.03,83764.83,17249.0,12424.5,6719.29,36392.79,120157.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,23574,213831.72,0.0,0.0,213831.72,42934.08,12424.5,19691.8,75050.38,288882.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,5057,0.0,0.0,7905.08,7905.08,0.0,0.0,604.73,604.73,8509.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,11297,62811.0,8821.4,3513.73,75146.13,13083.62,12424.5,5933.54,31441.66,106587.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,23459,29540.77,64.94,314.31,29920.02,6626.01,6113.69,2431.28,15170.98,45091.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,33668,50515.0,0.0,0.0,50515.0,9400.85,5734.39,4062.01,19197.25,69712.25 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,40168,37389.99,0.0,0.0,37389.99,6958.25,4778.65,2997.73,14734.63,52124.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29890,114568.91,0.0,7681.2,122250.11,23343.52,11937.27,9524.32,44805.11,167055.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,6329,27017.28,0.0,358.87,27376.15,5714.97,3660.51,2206.98,11582.46,38958.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11863,11865.33,0.0,89.01,11954.34,0.0,2944.83,869.62,3814.45,15768.79 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,25906,58114.46,10233.29,8755.4,77103.15,13320.78,11467.27,6071.31,30859.36,107962.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35823,64901.61,1499.88,1498.14,67899.63,18183.84,12789.23,5188.1,36161.17,104060.8 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,40630,93499.0,0.0,0.0,93499.0,19270.58,12424.5,7756.56,39451.64,132950.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,14607,61388.82,0.0,5279.76,66668.58,13651.64,12206.83,5196.73,31055.2,97723.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12292,15612.59,0.0,165.3,15777.89,797.86,6770.16,1278.97,8846.99,24624.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,11567,118104.01,0.0,0.0,118104.01,23768.42,12424.51,9542.41,45735.34,163839.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39061,74461.09,0.0,14213.98,88675.07,16336.74,6433.26,7197.85,29967.85,118642.92 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,8864,85004.0,16100.4,9458.77,110563.17,18900.25,12424.5,8811.18,40135.93,150699.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",27564,850.0,0.0,0.0,850.0,0.0,101.55,65.85,167.4,1017.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33357,17104.13,0.0,330.26,17434.39,0.0,4533.75,1351.61,5885.36,23319.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1654,54004.18,0.0,10900.34,64904.52,346.69,0.0,4236.39,4583.08,69487.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,1130,62811.01,14899.68,11671.8,89382.49,14879.06,12424.5,7058.75,34362.31,123744.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,50101,52136.7,0.0,0.0,52136.7,11404.38,5519.35,4189.18,21112.91,73249.61 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),22381,94955.68,85.92,5697.34,100738.94,20045.5,10757.94,2254.33,33057.77,133796.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,803,611.91,0.0,107.09,719.0,1129.72,47.84,40.95,1218.51,1937.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,44176,81157.0,29466.89,30395.22,141019.11,21977.72,12424.52,10065.71,44467.95,185487.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,16806,14535.63,0.0,0.0,14535.63,0.0,994.56,1127.27,2121.83,16657.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,22436,91652.71,33704.68,8088.57,133445.96,19522.7,12376.71,9969.96,41869.37,175315.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,17641,84644.0,5046.65,3057.35,92748.0,17647.04,12424.5,6848.0,36919.54,129667.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,48945,67261.07,0.0,624.0,67885.07,13989.03,12424.5,5618.83,32032.36,99917.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24003,85308.75,0.0,3000.13,88308.88,754.61,0.0,7335.68,8090.29,96399.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,10223,2292.1,0.0,11.24,2303.34,0.0,1071.74,178.58,1250.32,3553.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7847,18958.85,41.33,768.44,19768.62,861.53,8159.55,1600.56,10621.64,30390.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,22721,97761.25,4272.51,18090.64,120124.4,28188.6,12424.51,1827.38,42440.49,162564.89 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,14491,220899.03,0.0,33134.86,254033.89,51107.46,12424.5,12072.26,75604.22,329638.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,22070,19803.0,0.0,0.0,19803.0,3685.36,3345.06,1607.56,8637.98,28440.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27518,63070.51,2274.63,4381.64,69726.78,13882.84,12424.49,5628.02,31935.35,101662.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,42687,26538.7,0.0,0.0,26538.7,4938.85,3225.57,2088.48,10252.9,36791.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43544,39761.98,923.84,4360.82,45046.64,0.0,3452.58,3496.34,6948.92,51995.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,33759,63887.0,9177.92,4746.53,77811.45,14141.34,12424.5,6107.61,32673.45,110484.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24682,56531.01,0.0,7087.81,63618.82,12684.32,12424.5,5143.46,30252.28,93871.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",28975,90941.55,1505.7,0.0,92447.25,18719.38,11970.55,7489.34,38179.27,130626.52 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),51961,109563.02,3690.62,7483.78,120737.42,23855.32,12424.5,1992.13,38271.95,159009.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,34280,85940.01,28729.09,17496.68,132165.78,19981.92,12424.5,9918.15,42324.57,174490.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,6729,73406.0,3124.85,9104.81,85635.66,16289.99,12424.5,6842.46,35556.95,121192.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46872,56531.0,0.0,8182.84,64713.84,13765.64,12424.5,5187.87,31378.01,96091.85 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2802,Epidemiologist 1,1690,30800.0,0.0,440.0,31240.0,7007.11,5256.52,2534.1,14797.73,46037.73 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,2672,113852.0,0.0,0.0,113852.0,22913.02,12424.51,9310.08,44647.61,158499.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9026,0.0,0.0,21058.09,21058.09,0.0,68.5,305.34,373.84,21431.93 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,52343,53883.5,0.0,2041.64,55925.14,13407.14,12424.5,4541.32,30372.96,86298.1 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8135,Asst Chf Victim/Wit Invstgtor,37085,85292.94,0.0,0.0,85292.94,17556.56,12424.5,7030.25,37011.31,122304.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,31257,19243.86,76.26,0.0,19320.12,3831.28,3428.98,1619.31,8879.57,28199.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,12783,0.0,0.0,20.0,20.0,0.0,34.25,1.53,35.78,55.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,5141,7497.0,78.09,0.0,7575.09,1395.18,1433.59,582.43,3411.2,10986.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",8135,100670.8,13402.92,4295.62,118369.34,21052.32,12424.5,9638.06,43114.88,161484.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46707,6875.9,1128.47,70.19,8074.56,1550.25,1385.81,662.21,3598.27,11672.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,23877,1507.43,10.75,350.24,1868.42,352.31,452.48,144.84,949.63,2818.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43266,68362.43,9601.29,6820.8,84784.52,20611.5,13470.85,6406.87,40489.22,125273.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32031,3857.0,0.0,0.0,3857.0,0.0,1672.53,306.08,1978.61,5835.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,31664,71612.06,593.62,824.0,73029.68,14888.01,12424.5,5514.56,32827.07,105856.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,10096,75605.01,14316.93,3531.25,93453.19,15722.38,12424.5,7606.04,35752.92,129206.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,22825,186920.35,0.0,0.0,186920.35,37586.21,12424.5,19254.2,69264.91,256185.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45794,650.1,0.0,0.0,650.1,0.0,0.0,0.0,0.0,650.1 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,8240,143188.03,0.0,0.0,143188.03,28816.77,12424.5,10192.37,51433.64,194621.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,1590,8670.02,0.0,0.0,8670.02,1944.69,1433.6,705.87,4084.16,12754.18 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,4623,73352.93,0.0,0.0,73352.93,5168.75,10223.34,5884.2,21276.29,94629.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0402,Deputy Chief 3,8737,176910.92,0.0,19547.85,196458.77,35159.7,8105.79,6437.29,49702.78,246161.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,25705,73406.0,1252.09,4305.2,78963.29,15268.13,12424.5,6219.71,33912.34,112875.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25569,39621.49,0.0,4619.39,44240.88,0.0,0.0,3001.37,3001.37,47242.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1149,131980.63,2308.52,18627.08,152916.23,27907.31,11001.66,7564.08,46473.05,199389.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20977,41910.52,3998.38,1103.09,47011.99,11171.58,12889.34,3554.83,27615.75,74627.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26435,60357.07,0.0,6905.36,67262.43,13419.3,10682.38,5250.26,29351.94,96614.37 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,7754,77071.0,0.0,749.0,77820.0,16013.39,12424.5,6397.32,34835.21,112655.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48581,59336.41,0.0,1400.0,60736.41,13531.34,12424.5,4935.6,30891.44,91627.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45141,56531.05,81.04,521.83,57133.92,11758.69,12424.5,4593.51,28776.7,85910.62 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,52333,72817.8,0.0,0.0,72817.8,15012.8,12424.5,5806.8,33244.1,106061.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29168,36865.76,5404.79,1542.07,43812.62,9931.31,11513.32,3338.18,24782.81,68595.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10122,42468.93,5399.1,835.45,48703.48,11243.52,12815.4,3475.55,27534.47,76237.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,32038,87713.04,0.0,9695.61,97408.65,18229.52,12424.5,7716.25,38370.27,135778.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,51809,25154.08,0.0,676.5,25830.58,6187.81,6212.25,2059.16,14459.22,40289.8 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,4602,63958.87,0.0,1121.62,65080.49,13512.74,11158.16,5318.51,29989.41,95069.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,17403,8799.22,0.0,61.31,8860.53,0.0,0.0,700.75,700.75,9561.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,12240,138633.92,4801.7,4145.3,147580.92,27400.21,12424.5,2459.05,42283.76,189864.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,38305,6137.0,0.0,0.0,6137.0,0.0,2030.93,475.13,2506.06,8643.06 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",32844,130329.28,65684.58,17593.45,213607.31,28952.33,15052.76,3588.69,47593.78,261201.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,190,65817.7,22516.47,1139.4,89473.57,13551.36,12424.5,6913.17,32889.03,122362.6 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,22288,10271.88,0.0,0.0,10271.88,1911.6,1418.67,791.91,4122.18,14394.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,43018,127129.01,0.0,0.0,127129.01,25584.7,12424.5,24874.62,62883.82,190012.83 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8240,Pub Safety Communication Coord,1159,67564.77,0.0,2702.65,70267.42,15403.9,7633.9,5764.0,28801.8,99069.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,28103,70245.0,0.0,3344.05,73589.05,14606.45,12424.5,5819.33,32850.28,106439.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,1379,84644.05,36334.05,11903.58,132881.68,19316.66,12424.5,9885.58,41626.74,174508.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,17259,20414.8,0.0,0.0,20414.8,4579.04,2867.19,1682.12,9128.35,29543.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,35627,89028.04,0.0,0.0,89028.04,18349.02,12424.5,7315.28,38088.8,127116.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6922,67388.87,5157.04,2044.73,74590.64,19034.24,13280.3,5602.15,37916.69,112507.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",42160,137033.4,0.0,0.0,137033.4,27579.82,12418.53,17405.73,57404.08,194437.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21475,111914.7,126.22,19981.52,132022.44,0.0,8780.53,4697.81,13478.34,145500.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,30036,3167.48,0.0,0.0,3167.48,0.0,1027.41,245.85,1273.26,4440.74 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,10697,23028.0,0.0,0.0,23028.0,5063.85,5256.52,1815.97,12136.34,35164.34 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,1297,16387.2,0.0,0.0,16387.2,3559.55,2293.76,1306.26,7159.57,23546.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",42254,23205.04,0.0,0.0,23205.04,0.0,4868.26,1800.64,6668.9,29873.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,37130,53915.1,0.0,29.71,53944.81,12048.48,12424.5,4387.68,28860.66,82805.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,38786,75927.0,4355.7,2456.26,82738.96,15983.32,12424.5,6759.91,35167.73,117906.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6051,58077.66,8824.79,929.49,67831.94,15310.49,13108.21,5175.12,33593.82,101425.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,45549,35704.8,1568.34,8476.61,45749.75,8855.69,5447.67,3721.35,18024.71,63774.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7292,72592.05,0.0,840.0,73432.05,15066.16,11925.85,5982.63,32974.64,106406.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48943,10377.35,0.0,806.91,11184.26,3213.83,2063.73,765.15,6042.71,17226.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2982,Rent Board Supervisor,5322,95767.77,0.0,0.0,95767.77,19767.63,12127.63,7521.65,39416.91,135184.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,49601,43493.87,0.0,1922.17,45416.04,9293.07,8803.66,3812.16,21908.89,67324.93 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47346,97761.57,15914.71,8962.17,122638.45,25939.21,12424.51,2088.04,40451.76,163090.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,7885,97424.0,1734.72,2203.0,101361.72,20509.41,12424.51,8136.62,41070.54,142432.26 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8414,"Sprv Prob Ofc, Juv Court",49530,112077.68,0.0,0.0,112077.68,25574.39,12424.5,1861.26,39860.15,151937.83 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,52186,13791.74,875.06,683.4,15350.2,0.0,3815.45,1191.43,5006.88,20357.08 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,45719,143188.03,0.0,0.0,143188.03,28816.77,12424.5,10320.01,51561.28,194749.31 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,51756,10028.2,1174.54,240.0,11442.74,0.0,2771.62,888.14,3659.76,15102.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,24134,107521.61,46669.94,16605.96,170797.51,30204.92,12325.7,443.59,42974.21,213771.72 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,35596,78424.87,0.0,0.0,78424.87,16473.14,8204.9,13601.27,38279.31,116704.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,556.0,Elected Officials,8300,Correction & Detention,8520,Sheriff (SFERS),622,221317.17,0.0,13279.06,234596.23,47182.67,12424.5,19410.41,79017.58,313613.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40568,18473.09,0.0,5273.36,23746.45,10404.64,0.0,4867.06,15271.7,39018.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15521,323.71,0.0,0.0,323.71,0.0,140.37,25.06,165.43,489.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,19424,21775.69,0.0,0.0,21775.69,0.0,5895.67,1686.87,7582.54,29358.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,29975,8376.01,0.0,0.0,8376.01,2161.0,1911.46,667.31,4739.77,13115.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,26850,21020.0,2686.25,2203.1,25909.35,4068.53,4778.65,2103.9,10951.08,36860.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21310,74422.72,9310.34,5983.87,89716.93,14226.83,7645.85,1087.49,22960.17,112677.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,18004,3017.7,0.0,2292.38,5310.08,695.19,334.51,414.14,1443.84,6753.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,1494,66746.8,0.0,0.0,66746.8,13747.49,12328.92,5486.1,31562.51,98309.31 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,51933,119505.02,0.0,17925.76,137430.78,27320.45,6498.96,9813.45,43632.86,181063.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32280,20675.19,0.0,630.44,21305.63,0.0,1821.86,1652.44,3474.3,24779.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,40776,41648.42,0.0,0.0,41648.42,8025.15,7167.99,3358.13,18551.27,60199.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7228,Automotive Trnst Shop Sprv 1,43258,118936.07,20312.82,14480.91,153729.8,26438.32,12424.5,10347.34,49210.16,202939.96 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,48255,27070.02,0.0,3289.15,30359.17,6027.31,3333.11,2431.89,11792.31,42151.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,11012,35107.81,59.87,0.0,35167.68,7874.68,5256.52,2799.89,15931.09,51098.77 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,16413,164131.35,0.0,4230.0,168361.35,32932.87,10889.35,10546.47,54368.69,222730.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35634,1754.2,0.0,38.66,1792.86,0.0,585.33,138.8,724.13,2516.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,34095,41937.01,0.0,0.0,41937.01,9201.01,3345.05,3383.13,15929.19,57866.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,3564,43122.32,0.0,0.0,43122.32,1177.97,6731.39,2218.76,10128.12,53250.44 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,419,23326.0,0.0,0.0,23326.0,435.4,5734.39,1868.97,8038.76,31364.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7243,Parking Meter Repairer Sprv 1,42094,84263.81,2540.23,0.0,86804.04,17389.1,12267.88,6939.79,36596.77,123400.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,848,59229.01,0.0,0.0,59229.01,12207.44,12424.5,4860.13,29492.07,88721.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,8264,40884.4,0.0,0.0,40884.4,7985.37,7263.55,3239.93,18488.85,59373.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,18964,14702.0,0.0,46.74,14748.74,0.0,5631.34,1143.26,6774.6,21523.34 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,5411,87537.0,0.0,16632.03,104169.03,17457.48,5256.52,1937.33,24651.33,128820.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,30714,131691.75,6910.9,15438.56,154041.21,28917.46,15148.33,2360.88,46426.67,200467.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52015,56531.0,221.8,2863.98,59616.78,11977.98,12424.5,4932.07,29334.55,88951.33 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,11703,52748.99,87.97,0.0,52836.96,10748.25,10841.58,4220.96,25810.79,78647.75 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,50105,60005.7,7098.97,8.7,67113.37,11923.06,8840.51,5339.58,26103.15,93216.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,51021,126994.02,0.0,0.0,126994.02,25557.71,12424.5,9955.38,47937.59,174931.61 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1867,Auditor I,27644,43391.6,0.0,0.0,43391.6,9403.97,8123.71,3405.68,20933.36,64324.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22265,49137.97,1.8,1952.89,51092.66,10550.48,10789.65,4194.03,25534.16,76626.82 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,15058,64511.03,2334.55,369.9,67215.48,13305.41,12424.5,5512.49,31242.4,98457.88 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,37139,8992.22,120.96,0.0,9113.18,0.0,2162.35,706.18,2868.53,11981.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4847,62345.3,0.0,3639.86,65985.16,11711.62,6800.49,5306.55,23818.66,89803.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,28266,54124.0,293.21,664.0,55081.21,12257.68,12424.5,4312.03,28994.21,84075.42 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,39940,68617.11,4732.04,61.35,73410.5,14121.48,12424.5,1213.36,27759.34,101169.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,15781,66374.78,1499.51,537.41,68411.7,13748.3,10700.24,5712.86,30161.4,98573.1 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,32933,34844.05,0.0,0.0,34844.05,6484.49,5113.16,2787.92,14385.57,49229.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,10720,72522.06,0.0,0.0,72522.06,14944.42,12424.5,5928.11,33297.03,105819.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,26750,56111.97,0.0,289.02,56400.99,11821.45,10592.07,4695.54,27109.06,83510.05 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,14917,13741.44,0.0,2052.7,15794.14,3161.13,2915.88,1322.23,7399.24,23193.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,19786,133817.23,0.0,0.0,133817.23,26907.46,12328.93,10025.48,49261.87,183079.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47043,118071.28,2229.33,3654.56,123955.17,24355.32,9839.13,7963.03,42157.48,166112.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17409,54348.26,14912.42,7068.43,76329.11,12994.85,12031.75,6231.89,31258.49,107587.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,23650,19125.0,0.0,0.0,19125.0,3559.15,2389.33,1519.69,7468.17,26593.17 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,9895,42129.46,284.88,480.47,42894.81,9837.88,9561.25,3484.86,22883.99,65778.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,47336,96160.04,0.0,0.0,96160.04,19790.7,12424.5,7977.15,40192.35,136352.39 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,19301,40554.34,1951.45,2875.18,45380.97,8727.9,7491.44,3803.76,20023.1,65404.07 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,755,403.75,355.8,0.0,759.55,0.0,119.47,58.95,178.42,937.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47891,70081.22,3175.46,10056.16,83312.84,15928.66,12395.35,6547.1,34871.11,118183.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,18295,83270.84,11200.18,560.0,95031.02,17712.56,9869.66,7608.29,35190.51,130221.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,44751,62811.03,0.0,1690.0,64501.03,13241.12,12424.5,5176.12,30841.74,95342.77 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,37138,67716.36,214.06,7377.75,75308.17,15179.04,12388.66,5965.9,33533.6,108841.77 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,52092,9593.0,346.51,46.74,9986.25,2119.78,2867.19,801.22,5788.19,15774.44 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46207,6170.92,0.0,0.0,6170.92,0.0,0.0,487.51,487.51,6658.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13612,59423.8,10169.25,3829.59,73422.64,17131.78,11695.34,5781.55,34608.67,108031.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,42602,65592.0,1846.34,1620.0,69058.34,13807.41,12424.5,5646.73,31878.64,100936.98 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,5085,43237.89,0.0,747.49,43985.38,9128.79,8709.13,3595.04,21432.96,65418.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24060,17198.71,0.0,1637.71,18836.42,0.0,1478.4,1462.01,2940.41,21776.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41767,65980.92,21051.25,2027.01,89059.18,18647.35,13003.86,6921.93,38573.14,127632.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,3338,20295.01,2067.42,1379.76,23742.19,3903.88,4300.79,1912.86,10117.53,33859.72 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,32283,45903.21,20228.79,5364.22,71496.22,11749.51,12424.52,5830.33,30004.36,101500.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,17249,61426.89,0.0,200.0,61626.89,12660.34,12424.26,4945.07,30029.67,91656.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1378,3478.01,0.0,0.0,3478.01,0.0,1460.47,277.65,1738.12,5216.13 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2453,Supervising Pharmacist,46921,155816.68,0.0,900.0,156716.68,31755.74,11186.11,10232.35,53174.2,209890.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10869,4224.4,0.0,2.15,4226.55,0.0,1409.69,327.77,1737.46,5964.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,45105,125476.0,0.0,0.0,125476.0,25252.11,12424.43,9900.41,47576.95,173052.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52021,67377.47,4581.62,7408.47,79367.56,20519.89,13278.2,5979.88,39777.97,119145.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,9845,85219.24,731.03,2526.75,88477.02,17579.08,12424.5,7325.8,37329.38,125806.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43885,19555.04,2916.21,3604.3,26075.55,4421.55,2389.33,421.38,7232.26,33307.81 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,52562,75927.0,2296.01,382.16,78605.17,15657.12,12424.5,6272.61,34354.23,112959.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,29745,49181.02,0.0,20810.86,69991.88,11081.55,5256.52,5661.52,21999.59,91991.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,11802,20048.12,0.0,0.0,20048.12,0.0,4414.3,1555.62,5969.92,26018.04 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,47302,65834.2,0.0,603.41,66437.61,13738.3,12014.43,5471.41,31224.14,97661.75 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,35087,93230.63,13055.01,13163.92,119449.56,21062.16,12364.77,9612.62,43039.55,162489.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22099,1446.25,0.0,0.0,1446.25,0.0,664.54,112.13,776.67,2222.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,40923,12936.01,2425.5,485.1,15846.61,2901.56,1911.46,1264.76,6077.78,21924.39 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,30958,114381.03,0.0,242.78,114623.81,23031.17,11997.41,16900.42,51929.0,166552.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,39197,86663.06,8149.39,3890.0,98702.45,18667.5,12424.5,8105.39,39197.39,137899.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,6009,31063.45,0.0,618.81,31682.26,6232.19,5532.79,2572.03,14337.01,46019.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,49641,62468.8,39650.54,4301.94,106421.28,12996.47,12424.5,8633.99,34054.96,140476.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15554,117156.48,65.01,31015.28,148236.77,26557.96,10919.23,9370.85,46848.04,195084.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,17677,54124.01,4646.39,6742.49,65512.89,13117.71,12424.5,5343.87,30886.08,96398.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36354,124019.38,0.0,15356.71,139376.09,24705.72,10982.54,9434.69,45122.95,184499.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,40461,51405.0,0.0,3678.22,55083.22,12697.63,12424.5,4301.57,29423.7,84506.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,21774,15879.48,33.1,0.0,15912.58,4096.91,4299.3,1305.24,9701.45,25614.03 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,24455,111918.06,0.0,0.0,111918.06,22527.78,12424.5,9200.5,44152.78,156070.84 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,11900,73459.05,0.0,0.0,73459.05,6630.82,12209.46,5916.92,24757.2,98216.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17389,133421.56,4168.43,1088.9,138678.89,0.0,10480.96,2325.23,12806.19,151485.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,34468,155321.02,0.0,0.0,155321.02,31232.58,12424.5,10386.2,54043.28,209364.3 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,162,29035.5,0.0,0.0,29035.5,5403.51,4061.86,2193.4,11658.77,40694.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",47107,3010.5,0.0,0.0,3010.5,0.0,716.79,233.08,949.87,3960.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22373,113233.59,31645.66,18839.63,163718.88,25053.95,15196.12,2698.62,42948.69,206667.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48742,1411.95,0.0,779.53,2191.48,330.69,612.27,176.69,1119.65,3311.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37858,8030.2,0.0,65.87,8096.07,0.0,2950.35,627.7,3578.05,11674.12 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,20105,5264.87,0.0,0.0,5264.87,0.0,1941.33,408.63,2349.96,7614.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36886,37585.8,0.0,5967.6,43553.4,0.0,3009.9,3375.61,6385.51,49938.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,25410,85368.0,14820.82,1480.0,101668.82,17896.83,12424.5,8326.0,38647.33,140316.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,18265,27835.02,0.0,0.0,27835.02,5236.66,6212.25,2215.33,13664.24,41499.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11658,54812.51,12399.27,5742.83,72954.61,16511.82,10776.7,5699.44,32987.96,105942.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28450,123934.74,0.0,7254.76,131189.5,25975.13,11153.38,8280.28,45408.79,176598.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52842,65028.23,19651.89,1637.16,86317.28,18239.93,12814.56,6692.62,37747.11,124064.39 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,15947,75927.04,0.0,0.0,75927.04,15648.74,12424.5,6288.77,34362.01,110289.05 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,2512,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8490.22,42886.53,149491.54 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,34627,97051.62,0.0,621.6,97673.22,20124.14,12376.71,7611.56,40112.41,137785.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,27315,32380.0,1155.75,2630.55,36166.3,5748.48,2867.19,607.25,9222.92,45389.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,39012,7579.81,0.0,64.62,7644.43,1681.0,2245.97,597.98,4524.95,12169.38 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,8099,92230.61,0.0,0.0,92230.61,19006.31,12424.5,7377.25,38808.06,131038.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,12225,67261.04,0.0,251.92,67512.96,13925.01,12424.5,5546.75,31896.26,99409.22 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,1297,759.8,0.0,0.0,759.8,141.4,95.58,58.24,295.22,1055.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,43119,127390.74,0.0,0.0,127390.74,25225.31,10626.54,27448.62,63300.47,190691.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,31145,117135.33,11396.14,12098.4,140629.87,23184.68,12424.5,2349.87,37959.05,178588.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,22737,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8727.69,43124.0,149729.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,24795,40495.0,0.0,0.0,40495.0,8333.65,8123.71,3268.34,19725.7,60220.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,36558,42696.65,0.0,0.0,42696.65,9915.52,10035.18,3425.07,23375.77,66072.42 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,117,23425.56,110.91,0.0,23536.47,0.0,0.0,1861.95,1861.95,25398.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,35229,4898.0,0.0,0.0,4898.0,1098.62,955.73,399.77,2454.12,7352.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,42006,56727.9,8170.48,3199.52,68097.9,13329.76,12424.51,5444.26,31198.53,99296.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5038,97559.42,18913.25,11772.71,128245.38,26594.69,12398.51,2008.23,41001.43,169246.81 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,35338,54534.28,6025.98,4809.75,65370.01,12000.53,10739.55,5382.38,28122.46,93492.47 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,17899,93634.82,21270.01,5544.15,120448.98,19805.64,12418.53,9637.71,41861.88,162310.86 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,32992,10736.04,0.0,0.0,10736.04,0.0,3975.24,832.95,4808.19,15544.23 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35318,97774.36,30289.3,18007.82,146071.48,28183.22,12424.5,2245.17,42852.89,188924.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,8400,82883.02,10433.23,5763.4,99079.65,17684.81,12424.5,7863.45,37972.76,137052.41 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,4094,58751.4,0.0,6001.99,64753.39,12829.72,11755.49,5254.88,29840.09,94593.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,26346,72448.23,0.0,250.0,72698.23,14925.91,11731.6,5653.12,32310.63,105008.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,49640,89535.87,0.0,0.0,89535.87,18402.76,12424.5,7350.48,38177.74,127713.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,20083,61735.05,0.0,1024.0,62759.05,12930.12,12424.5,4991.96,30346.58,93105.63 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,9806,75347.0,0.0,0.0,75347.0,15500.75,12424.5,5764.04,33689.29,109036.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,16574,22477.12,0.0,472.16,22949.28,5419.48,6731.92,1780.07,13931.47,36880.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34003,1706.51,0.0,56.89,1763.4,1226.55,0.0,492.5,1719.05,3482.45 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,36350,10107.01,0.0,0.0,10107.01,2267.01,1433.6,831.96,4532.57,14639.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9530,7756.3,0.0,974.92,8731.22,2027.41,3363.4,712.51,6103.32,14834.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8602,Emergency Services Coord II,14865,1215.0,0.0,0.0,1215.0,226.1,238.93,90.95,555.98,1770.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,26813,4170.0,86.01,347.5,4603.51,0.0,1433.6,355.92,1789.52,6393.03 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,42258,119066.01,2807.87,23310.08,145183.96,33724.47,12424.5,2472.67,48621.64,193805.6 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,15812,59779.71,2825.55,0.0,62605.26,12324.55,12388.66,5083.02,29796.23,92401.49 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,7495,59337.44,0.0,7338.64,66676.08,12082.36,7263.55,4996.97,24342.88,91018.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,50458,76807.02,0.0,612.89,77419.91,15957.99,12202.95,5608.78,33769.72,111189.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,50524,111970.57,957.43,8769.27,121697.27,29381.36,11680.59,2072.92,43134.87,164832.14 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,3808,2383.0,0.0,0.0,2383.0,443.48,477.86,40.17,961.51,3344.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11120,85269.75,25652.57,5671.72,116594.04,17493.25,9061.53,1949.81,28504.59,145098.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5644,Principal Environ Specialist,50546,1310.97,0.0,0.0,1310.97,0.0,137.38,101.75,239.13,1550.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21105,118691.14,21585.75,7121.49,147398.38,24726.52,15196.12,2509.92,42432.56,189830.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",13690,140786.27,7858.24,27266.7,175911.21,32819.87,15339.49,2953.45,51112.81,227024.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,3732,55797.53,0.0,564.0,56361.53,11611.36,11229.84,4574.3,27415.5,83777.03 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0951,Dep Dir I,37942,122663.35,0.0,0.0,122663.35,24601.81,12424.5,27145.48,64171.79,186835.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,23385,15335.41,0.0,365.4,15700.81,4426.65,2914.98,1389.83,8731.46,24432.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,15149,23408.72,0.0,0.0,23408.72,6039.44,5190.81,1887.08,13117.33,36526.05 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46479,184289.04,0.0,5248.28,189537.32,38144.36,12424.5,10960.26,61529.12,251066.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,17552,56275.24,8429.94,503.29,65208.47,11430.51,6904.32,5391.83,23726.66,88935.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",1400,"Clerical, Secretarial & Steno",1434,Shelter Service Rep,5996,58292.5,245.5,2510.43,61048.43,12192.31,12347.86,5018.18,29558.35,90606.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,26108,74667.74,0.0,0.0,74667.74,5715.52,10565.31,6002.64,22283.47,96951.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2654,113233.6,32487.4,24035.3,169756.3,25036.03,15196.12,2848.54,43080.69,212836.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,38533,95627.64,7999.07,29142.46,132769.17,20019.38,12424.53,9973.85,42417.76,175186.93 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,6136,14446.4,2306.73,4510.81,21263.94,3301.12,2338.56,1671.82,7311.5,28575.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18624,11818.0,0.0,0.0,11818.0,2598.77,2867.19,940.89,6406.85,18224.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,47637,47257.68,0.0,960.0,48217.68,11562.4,12424.5,3728.03,27714.93,75932.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,718.0,"Glaziers, Metal, and Glass Workers, Local 718",7200,Supervisory-Labor & Trade,7233,Glazier Supervisor 1,35628,61230.03,0.0,72.0,61302.03,12766.28,7167.92,5052.66,24986.86,86288.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38311,22578.42,3243.58,938.46,26760.46,6123.56,7104.01,1897.23,15124.8,41885.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",9858,131086.45,7916.41,19612.1,158614.96,29571.91,15141.15,2648.29,47361.35,205976.31 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3604,95628.67,38688.22,13453.82,147770.71,26359.35,12424.51,2467.21,41251.07,189021.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40433,67553.67,19104.63,2007.31,88665.61,19048.7,13309.63,6890.33,39248.66,127914.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27859,97762.03,3234.83,13443.23,114440.09,27036.42,12424.5,1892.8,41353.72,155793.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,12021,138624.68,4502.53,15006.71,158133.92,27979.65,12424.5,2804.74,43208.89,201342.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10849,7936.0,0.0,48.36,7984.36,0.0,3058.33,618.64,3676.97,11661.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44162,2772.28,0.0,168.84,2941.12,721.97,1133.26,249.93,2105.16,5046.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,26350,1696.12,0.0,20.28,1716.4,0.0,919.89,132.89,1052.78,2769.18 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,16441,246789.18,0.0,0.0,246789.18,49654.4,12424.5,16693.94,78772.84,325562.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16034,7006.35,0.0,0.0,7006.35,0.0,2982.24,559.23,3541.47,10547.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,29332,43885.63,0.0,0.0,43885.63,0.0,5680.64,3400.87,9081.51,52967.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28372,43813.31,633.43,697.06,45143.8,11236.82,9202.2,3384.53,23823.55,68967.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,11674,64242.0,4227.27,80.0,68549.27,12830.03,9079.44,5435.95,27345.42,95894.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16195,56531.0,0.0,5487.51,62018.51,12289.32,12424.5,4978.81,29692.63,91711.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,26002,41483.4,8811.82,20829.27,71124.49,9548.2,5686.64,5705.52,20940.36,92064.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,1474,43493.6,20052.39,12690.69,76236.68,10924.5,11803.27,5897.66,28625.43,104862.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,4259,49969.96,709.39,7098.49,57777.84,11208.31,10479.12,4729.13,26416.56,84194.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20010,6130.84,0.0,0.0,6130.84,0.0,2658.54,505.73,3164.27,9295.11 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,41551,25919.1,1164.03,180.5,27263.63,1973.3,5361.47,2192.79,9527.56,36791.19 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,48269,77071.04,432.69,2490.7,79994.43,16098.06,12424.5,6355.12,34877.68,114872.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26895,46146.3,848.29,6029.23,53023.82,10079.11,12325.94,4242.43,26647.48,79671.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45155,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2390.83,12844.18,44144.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,41353,1395.0,0.0,0.0,1395.0,0.0,537.61,108.0,645.61,2040.61 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,9513,44326.2,0.0,500.0,44826.2,10725.78,11994.43,3720.25,26440.46,71266.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,32622,27835.0,0.0,0.0,27835.0,5236.66,6212.25,2216.13,13665.04,41500.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,37699,9561.0,478.05,0.0,10039.05,1779.3,1433.59,798.7,4011.59,14050.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,2437,82296.8,5907.29,12196.91,100401.0,18002.46,10513.04,8214.11,36729.61,137130.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,448,40312.0,0.0,0.0,40312.0,7308.58,3643.72,2700.31,13652.61,53964.61 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,17297,71037.51,266.92,362.16,71666.59,14556.68,11619.36,5514.37,31690.41,103357.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,39245,18547.2,0.0,0.0,18547.2,149.54,4503.88,1435.93,6089.35,24636.55 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0904,Mayoral Staff XVI,10565,148242.01,0.0,0.0,148242.01,29834.3,12424.51,25229.84,67488.65,215730.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,40902,71612.0,0.0,624.0,72236.0,14888.01,12424.5,5932.83,33245.34,105481.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50348,54124.06,0.0,3430.43,57554.49,12809.24,12424.5,4759.52,29993.26,87547.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21976,56531.01,0.0,1306.74,57837.75,11651.3,12424.5,4782.26,28858.06,86695.81 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,50713,9463.6,0.0,0.0,9463.6,0.0,12424.5,137.22,12561.72,22025.32 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4334,"Investigator, Tax Collector",40200,90151.03,0.0,624.0,90775.03,18709.2,12424.5,7527.95,38661.65,129436.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37666,140334.0,0.0,11276.6,151610.6,22818.86,12424.5,7630.96,42874.32,194484.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31495,67178.6,30218.14,1906.03,99302.77,18836.8,13229.58,7567.0,39633.38,138936.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,25466,53385.01,4665.04,4058.07,62108.12,13014.11,12424.5,4973.79,30412.4,92520.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1246,Principal Personnel Analyst,46569,64074.65,0.0,0.0,64074.65,14017.13,6332.79,4841.34,25191.26,89265.91 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,42836,44522.97,0.0,998.1,45521.07,9395.04,6540.79,4202.16,20137.99,65659.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,50166,70094.16,0.0,0.0,70094.16,14667.41,10767.57,5649.09,31084.07,101178.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2924,Medical Social Work Supervisor,16069,104354.02,0.0,0.0,104354.02,21507.81,12424.5,8479.57,42411.88,146765.9 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,32523,25452.0,0.0,0.0,25452.0,6545.78,6690.11,2130.68,15366.57,40818.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33850,119262.95,4578.66,24593.56,148435.17,0.0,8971.38,9834.35,18805.73,167240.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29203,64072.36,29921.24,7201.06,101194.66,19601.62,12630.52,7704.08,39936.22,141130.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,49088,38460.0,0.0,0.0,38460.0,7590.11,8362.65,3110.41,19063.17,57523.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,2978,6123.49,29.25,265.34,6418.08,0.0,2026.44,496.88,2523.32,8941.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,51682,107978.0,0.0,624.0,108602.0,22383.72,12424.5,8818.57,43626.79,152228.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,47886,61537.95,0.0,0.0,61537.95,12679.81,12384.6,4811.48,29875.89,91413.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,657,52147.68,404.46,360.0,52912.14,10625.71,10403.78,4098.7,25128.19,78040.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52484,4652.52,0.0,0.0,4652.52,0.0,2017.49,375.14,2392.63,7045.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,1537,109639.49,0.0,0.0,109639.49,22353.2,12225.59,8755.27,43334.06,152973.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36720,15759.88,0.0,336.8,16096.68,0.0,6034.54,1248.16,7282.7,23379.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29925,70203.05,22854.38,9394.05,102451.48,15648.51,12417.04,8304.69,36370.24,138821.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,49920,111692.95,3647.16,14423.33,129763.44,24732.97,0.0,2218.75,26951.72,156715.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,49590,180536.48,0.0,0.0,180536.48,36407.46,12424.5,18146.12,66978.08,247514.56 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,14790,64089.32,0.0,0.0,64089.32,13724.12,8840.51,5093.09,27657.72,91747.04 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,18726,93499.0,0.0,0.0,93499.0,19270.58,12424.5,7551.69,39246.77,132745.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,11529,1635.49,0.0,94.34,1729.83,0.0,0.0,136.42,136.42,1866.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5644,Principal Environ Specialist,52153,116976.0,0.0,0.0,116976.0,23541.49,12424.5,9428.11,45394.1,162370.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,27348,80357.01,0.0,0.0,80357.01,16562.14,12424.5,6216.07,35202.71,115559.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30334,132032.93,1323.68,14839.24,148195.85,28355.79,11004.05,9298.04,48657.88,196853.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38297,120464.81,9291.44,7042.27,136798.52,23840.88,12424.5,2316.99,38582.37,175380.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22329,44197.35,4121.9,2474.95,50794.2,12096.4,13446.24,3854.12,29396.76,80190.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,25623,74165.05,0.0,624.0,74789.05,15414.46,12424.45,6120.38,33959.29,108748.34 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,31416,114109.2,0.0,11410.92,125520.12,25267.1,12472.29,9872.29,47611.68,173131.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26838,56531.0,0.0,324.15,56855.15,12664.6,12424.5,4607.03,29696.13,86551.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,11490,91287.19,685.43,667.11,92639.73,18949.1,12157.32,7687.72,38794.14,131433.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9657,93058.2,1967.93,8124.17,103150.3,20043.86,12567.87,8415.92,41027.65,144177.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,36780,50429.43,0.0,216.0,50645.43,9865.04,7454.7,3997.07,21316.81,71962.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,13511,70245.0,29847.03,11934.77,112026.8,15865.46,12424.5,9066.55,37356.51,149383.31 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,35910,62583.02,0.0,960.0,63543.02,13091.55,12424.5,5115.1,30631.15,94174.17 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,20545,0.0,0.0,343.24,343.24,0.0,68.5,26.26,94.76,438.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",52024,1517.79,0.0,0.0,1517.79,0.0,361.38,117.51,478.89,1996.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,13507,75695.74,1135.02,8096.42,84927.18,16818.11,11515.36,6724.33,35057.8,119984.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,8949,112709.27,0.0,3381.28,116090.55,23364.94,12417.34,9527.85,45310.13,161400.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,50662,3027.0,0.0,0.0,3027.0,563.32,477.86,234.94,1276.12,4303.12 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,3018,25592.0,0.0,0.0,25592.0,5740.32,3822.92,2019.24,11582.48,37174.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,50087,1390.0,0.0,0.0,1390.0,305.66,477.87,106.51,890.04,2280.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3622,56531.0,0.0,2593.65,59124.65,11796.81,12424.5,4848.16,29069.47,88194.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,29104,81942.01,3449.55,11756.2,97147.76,19311.53,12424.5,7771.03,39507.06,136654.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,5590,63887.1,0.0,2861.63,66748.73,13756.41,12424.5,5512.34,31693.25,98441.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,5995,41774.01,0.0,0.0,41774.01,9228.51,7167.99,3402.72,19799.22,61573.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,48540,75605.01,22766.37,4207.3,102578.68,15593.65,12424.5,8214.88,36233.03,138811.71 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,36865,10091.44,0.0,0.0,10091.44,377.09,2639.49,796.76,3813.34,13904.78 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,30702,93502.02,29409.14,4288.65,127199.81,19640.72,12400.61,9876.0,41917.33,169117.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,50725,92001.3,58560.09,1173.36,151734.75,19156.76,12424.5,10214.93,41796.19,193530.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47038,771.41,0.0,884.57,1655.98,206.57,334.51,127.42,668.5,2324.48 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,21300,205211.03,0.0,12840.0,218051.03,41285.04,12424.5,11345.44,65054.98,283106.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,7673,60975.42,7558.65,1439.6,69973.67,12833.49,12137.78,5705.75,30677.02,100650.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9140,Transit Manager 1,3207,107256.72,0.0,0.0,107256.72,22062.62,12424.5,8826.19,43313.31,150570.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,30457,138795.89,14814.42,13416.42,167026.73,27413.31,12406.53,2847.09,42666.93,209693.66 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41772,15775.63,0.0,6304.96,22080.59,4007.32,2025.97,359.21,6392.5,28473.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,13326,90081.2,1020.31,0.0,91101.51,18525.77,12424.5,7518.39,38468.66,129570.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,10769,75283.49,2579.18,6857.33,84720.0,16704.12,12371.34,6724.4,35799.86,120519.86 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,49715,92173.19,0.0,495.0,92668.19,19222.89,11625.75,7299.44,38148.08,130816.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45405,36341.56,6325.67,595.49,43262.72,9851.63,11348.35,3110.35,24310.33,67573.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,49330,78610.01,0.0,1664.0,80274.01,16544.1,12424.5,6359.47,35328.07,115602.08 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1071,IS Manager,6301,170237.06,0.0,0.0,170237.06,34260.49,12424.5,17918.51,64603.5,234840.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16054,771.4,0.0,21.08,792.48,204.46,334.51,61.35,600.32,1392.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25931,113233.6,61832.75,18642.27,193708.62,25036.03,15196.12,3257.55,43489.7,237198.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2402,49702.22,12527.29,3515.72,65745.23,14076.6,9760.58,5038.79,28875.97,94621.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,10779,55227.7,15268.96,2765.76,73262.42,12715.15,12424.53,5822.16,30961.84,104224.26 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,10997,15538.47,0.0,0.0,15538.47,2817.12,955.73,1556.32,5329.17,20867.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,10375,38786.63,6876.32,2284.97,47947.92,6884.82,3345.06,821.91,11051.79,58999.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,41752,82407.5,1748.26,0.0,84155.76,16962.52,12424.5,6732.46,36119.48,120275.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24274,3812.3,0.0,116.07,3928.37,0.0,1600.85,312.61,1913.46,5841.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,14385,53674.95,2299.07,3481.23,59455.25,13685.03,12424.5,4801.59,30911.12,90366.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,999,66420.18,17538.02,860.4,84818.6,18456.21,13088.68,6625.37,38170.26,122988.86 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,29302,12827.11,0.0,0.0,12827.11,0.0,2925.43,994.28,3919.71,16746.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51017,56531.0,0.0,1183.02,57714.02,11776.85,12424.5,4756.31,28957.66,86671.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,11616,19495.01,0.0,0.0,19495.01,4372.75,2389.33,1561.12,8323.2,27818.21 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8204,Institutional Police Officer,47238,73583.01,21891.51,8638.27,104112.79,18764.98,12424.5,2013.13,33202.61,137315.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25127,12428.91,0.0,839.04,13267.95,1833.19,5389.61,1064.03,8286.83,21554.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,6986,87531.0,0.0,0.0,87531.0,18040.63,12424.5,7147.74,37612.87,125143.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,847,71311.06,0.0,0.0,71311.06,14697.59,12424.5,5435.08,32557.17,103868.23 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,12299,19746.03,0.0,308.63,20054.66,5174.1,4300.79,1565.54,11040.43,31095.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,21076,97934.01,0.0,1204.0,99138.01,20431.35,12424.5,7967.85,40823.7,139961.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16316,294.6,0.0,961.71,1256.31,66.62,47.79,96.85,211.26,1467.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47316,69265.31,930.36,6239.39,76435.06,10944.52,6509.42,6604.02,24057.96,100493.02 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,34794,3940.35,0.0,0.0,3940.35,2631.64,0.0,29.17,2660.81,6601.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,51600,47968.24,0.0,2520.19,50488.43,10060.25,10549.23,4157.89,24767.37,75255.8 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8165,Worker's Comp Supervisor 1,27948,45716.4,0.0,0.0,45716.4,8507.8,5877.75,3582.93,17968.48,63684.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35073,59824.73,801.67,1512.08,62138.48,16938.63,11832.48,4830.71,33601.82,95740.3 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2555,Physical Therapist Assistant,25860,89631.04,0.0,960.0,90591.04,18668.71,12424.5,7269.77,38362.98,128954.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2618,Food Service Supervisor,22882,28044.1,89.1,1810.59,29943.79,6496.37,6646.81,2413.37,15556.55,45500.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21223,2921.63,0.0,0.0,2921.63,0.0,1424.64,226.54,1651.18,4572.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,5153,119321.01,0.0,0.0,119321.01,24013.57,12424.5,9612.9,46050.97,165371.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,25429,13793.07,0.0,240.0,14033.07,0.0,3803.51,1111.31,4914.82,18947.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,6601,23927.14,0.0,0.0,23927.14,6064.84,7236.67,1957.65,15259.16,39186.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,10838,106953.0,38.33,2000.0,108991.33,22453.82,12424.46,8932.45,43810.73,152802.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6869,440.8,0.0,0.0,440.8,0.0,191.14,34.12,225.26,666.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1662,Patient Accounts Asst Sprv,34506,36977.2,0.0,0.0,36977.2,8294.0,5734.39,3075.73,17104.12,54081.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30335,6067.91,0.0,0.0,6067.91,1357.94,2631.25,500.84,4490.03,10557.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5006,24781.6,0.0,274.86,25056.46,7148.39,6164.45,1238.2,14551.04,39607.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,52564,50188.46,0.0,0.0,50188.46,12024.69,12344.88,3964.58,28334.15,78522.61 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,47903,110782.35,125.13,0.0,110907.48,22335.0,12210.36,9128.51,43673.87,154581.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,20502,83.88,0.0,0.0,83.88,15.61,0.0,6.65,22.26,106.14 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),18715,198139.05,0.0,5462.78,203601.83,40974.08,12424.5,11246.81,64645.39,268247.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4426,52041.01,626.94,2587.53,55255.48,11203.7,11431.62,4587.44,27222.76,82478.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12728,110869.9,1847.18,11396.81,124113.89,21791.54,9816.55,7950.25,39558.34,163672.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5152,7133.03,0.0,1089.94,8222.97,2112.79,567.29,320.73,3000.81,11223.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,703,81942.0,17141.5,2358.75,101442.25,17374.27,12424.54,8087.85,37886.66,139328.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,7619,19039.8,0.0,130.0,19169.8,3451.93,1863.67,1510.23,6825.83,25995.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,47162,43980.41,178.9,5848.76,50008.07,11406.16,9934.28,4040.65,25381.09,75389.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2204,Dental Hygienist,26525,77203.28,0.0,499.2,77702.48,16024.15,9939.6,6398.39,32362.14,110064.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,13311,43973.09,0.0,0.0,43973.09,10545.0,12133.43,3484.25,26162.68,70135.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30375,68421.37,15940.37,1952.57,86314.31,19200.73,13471.32,6705.78,39377.83,125692.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,46082,84599.04,0.0,600.0,85199.04,17548.1,12424.48,6855.31,36827.89,122026.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,37946,89533.6,0.0,623.88,90157.48,18588.53,12469.84,7475.53,38533.9,128691.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,44049,108038.01,35082.34,18743.98,161864.33,24727.53,12424.5,10486.1,47638.13,209502.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,44180,45671.72,0.0,1320.0,46991.72,11492.91,10751.97,3821.4,26066.28,73058.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,4401,125578.6,0.0,1350.0,126928.6,25465.58,12424.5,9835.45,47725.53,174654.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23610,976.94,0.0,9.8,986.74,0.0,476.37,76.58,552.95,1539.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,48176,56534.65,10359.75,5636.9,72531.3,11163.4,8237.21,5815.0,25215.61,97746.91 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,19026,60884.85,0.0,0.0,60884.85,0.0,0.0,4816.12,4816.12,65700.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,19214,23456.77,0.0,470.17,23926.94,831.8,1690.56,1868.23,4390.59,28317.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,22985,69902.0,727.6,0.0,70629.6,14407.12,12424.5,5703.5,32535.12,103164.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",26316,7607.78,0.0,0.0,7607.78,0.0,1811.41,590.31,2401.72,10009.5 +Calendar,2015,4,Community Health,DPH,Public Health,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,21127,73549.13,1806.61,2891.99,78247.73,15721.72,11995.74,6390.81,34108.27,112356.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,22501,107978.0,1477.91,860.0,110315.91,22443.75,12424.5,8686.18,43554.43,153870.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32913,108253.8,45449.85,10643.6,164347.25,23801.19,15031.08,2672.39,41504.66,205851.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,12804,99098.01,0.0,0.0,99098.01,20424.58,12424.5,8141.31,40990.39,140088.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26373,11426.37,0.0,0.0,11426.37,902.7,4954.87,914.51,6772.08,18198.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35092,97762.62,5333.33,16777.59,119873.54,27858.2,12424.5,1712.53,41995.23,161868.77 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11896,97764.22,14090.49,8769.96,120624.67,25911.41,12424.5,1103.74,39439.65,160064.32 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,28801,105079.76,2888.23,10538.62,118506.61,22684.73,12391.65,9760.33,44836.71,163343.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,24808,84320.61,0.0,8212.01,92532.62,18969.72,12376.71,7599.64,38946.07,131478.69 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,50688,93681.0,9542.05,5646.33,108869.38,19859.5,12424.5,8972.99,41256.99,150126.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,36189,83214.2,4478.26,5616.13,93308.59,17812.03,12615.65,7649.55,38077.23,131385.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9122,Transit Information Clerk,22815,50761.34,0.0,0.0,50761.34,10818.38,9219.99,4231.8,24270.17,75031.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,32158,45774.8,6119.77,962.4,52856.97,9270.54,10369.68,4003.29,23643.51,76500.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37703,78997.52,3477.09,3410.27,85884.88,16205.19,12125.84,3302.72,31633.75,117518.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49704,71968.2,0.0,0.0,71968.2,14323.01,11038.69,5543.58,30905.28,102873.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,33600,69746.0,0.0,0.0,69746.0,14374.9,12424.5,5764.34,32563.74,102309.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,865,12618.01,0.0,0.0,12618.01,2348.22,1433.6,1005.91,4787.73,17405.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14529,22725.2,0.0,0.0,22725.2,4120.1,2291.06,1828.71,8239.87,30965.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19099,56463.47,0.0,6907.3,63370.77,12406.36,12409.57,5233.54,30049.47,93420.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,24879,79722.0,457.05,252.5,80431.55,16478.79,12424.5,6537.2,35440.49,115872.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12611,66850.74,23654.42,4315.15,94820.31,19503.11,13173.61,7443.9,40120.62,134940.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50268,9263.93,0.0,316.96,9580.89,1279.89,0.0,136.99,1416.88,10997.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,18962,72699.04,0.0,624.0,73323.04,15112.32,12424.5,5820.02,33356.84,106679.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,11885,66835.13,14611.67,2459.13,83905.93,14300.21,12320.0,7194.66,33814.87,117720.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48099,66836.88,3375.44,804.31,71016.63,18532.65,13171.88,5421.37,37125.9,108142.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,21899,156745.99,0.0,0.0,156745.99,31545.23,12424.5,10494.01,54463.74,211209.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2890,56163.3,498.84,939.0,57601.14,10885.46,8601.58,3953.55,23440.59,81041.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,2150,25206.0,0.0,0.0,25206.0,4690.82,3822.92,2006.19,10519.93,35725.93 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,2513,22095.32,0.0,0.0,22095.32,0.0,1302.19,1713.17,3015.36,25110.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,21643,145200.02,0.0,0.0,145200.02,29221.73,12424.51,10151.09,51797.33,196997.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,22262,116976.0,0.0,0.0,116976.0,23541.49,12424.5,9624.33,45590.32,162566.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",21229,130329.36,66873.27,22567.4,219770.03,30126.38,15052.77,3695.37,48874.52,268644.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7750,118997.92,2203.26,12801.13,134002.31,24970.52,12376.71,326.22,37673.45,171675.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,42831,70843.8,0.0,0.0,70843.8,14588.64,11869.16,5781.52,32239.32,103083.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2488,Supv Chemist,30549,117040.54,0.0,0.0,117040.54,23600.12,12185.57,9194.92,44980.61,162021.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,23650,68558.67,0.0,0.0,68558.67,14492.43,9817.75,5471.75,29781.93,98340.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23466,66492.31,16099.59,737.02,83328.92,15316.23,13104.32,6377.13,34797.68,118126.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,51647,62187.0,0.0,1794.3,63981.3,12826.05,12424.5,5290.21,30540.76,94522.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33342,77578.4,1292.1,8271.44,87141.94,0.0,6603.56,6755.28,13358.84,100500.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,17135,2481.54,0.0,72.06,2553.6,0.0,1160.32,198.05,1358.37,3911.97 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1830,Perf Analyst III Project Mgr,6161,106896.14,0.0,0.0,106896.14,21566.45,10399.55,8211.56,40177.56,147073.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2900,Human Services,2966,Welfare Fraud Investigator,14984,18331.8,0.0,0.0,18331.8,3411.56,2723.83,1220.09,7355.48,25687.28 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,41542,28862.09,0.0,46.03,28908.12,6332.35,1674.32,2342.26,10348.93,39257.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,23538,44915.1,135.55,167.57,45218.22,8389.33,12424.5,3594.78,24408.61,69626.83 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,53,115541.02,0.0,0.0,115541.02,23246.29,12424.5,9434.06,45104.85,160645.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41512,8995.11,0.0,0.0,8995.11,2093.28,3900.58,726.28,6720.14,15715.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,12676,1940.4,0.0,260.34,2200.74,435.23,0.0,173.21,608.44,2809.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,19508,78023.73,719.06,0.0,78742.79,16070.47,12424.5,6433.82,34928.79,113671.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,28839,35469.0,18640.1,1954.4,56063.5,6852.9,4300.79,4434.45,15588.14,71651.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,11534,76179.85,0.0,95.0,76274.85,15571.86,11238.14,6045.62,32855.62,109130.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46923,17288.88,0.0,1013.48,18302.36,0.0,1401.22,1417.86,2819.08,21121.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12554,54292.66,6575.58,653.87,61522.11,12245.26,10677.24,4474.83,27397.33,88919.44 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,15984,74588.05,0.0,10712.28,85300.33,15794.72,10990.9,6739.38,33525.0,118825.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,42679,36590.4,810.81,0.0,37401.21,8213.27,5256.52,3011.43,16481.22,53882.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,52277,108376.51,61745.47,14594.2,184716.18,29903.98,12424.5,3149.16,45477.64,230193.82 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,29114,51162.6,0.0,464.04,51626.64,12333.5,11803.29,4294.25,28431.04,80057.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,11577,74028.98,0.0,608.4,74637.38,15383.62,12113.89,6103.68,33601.19,108238.57 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,46568,567.88,0.0,0.0,567.88,65.53,0.0,512.43,577.96,1145.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48770,25686.1,0.0,185.49,25871.59,938.08,0.0,4795.37,5733.45,31605.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27457,89620.69,62298.37,8341.36,160260.42,18804.45,11468.77,2661.44,32934.66,193195.08 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28375,184289.06,0.0,5248.28,189537.34,38144.36,12424.5,11032.08,61600.94,251138.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,42271,65786.71,0.0,68.85,65855.56,13575.43,12365.18,5444.37,31384.98,97240.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38167,735.5,0.0,0.0,735.5,0.0,0.0,53.63,53.63,789.13 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,40656,42080.8,5360.72,6555.11,53996.63,9114.19,7669.74,4886.96,21670.89,75667.52 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,52311,11364.0,0.0,0.0,11364.0,2114.84,1911.46,906.1,4932.4,16296.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,12570,55076.44,352.28,8931.31,64360.03,13497.09,12255.7,5304.57,31057.36,95417.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8034,107289.91,0.0,250.0,107539.91,21561.98,11182.06,8707.66,41451.7,148991.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,46692,46017.07,0.0,1312.2,47329.27,10848.1,10320.41,3815.48,24983.99,72313.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,26639,137129.3,472.57,5305.28,142907.15,27096.58,12478.26,2396.12,41970.96,184878.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,16467,82407.51,2812.05,0.0,85219.56,16962.53,12424.5,6923.19,36310.22,121529.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,43839,37575.27,0.0,0.0,37575.27,3496.4,11397.09,3046.55,17940.04,55515.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,12.0,"Carpet, Linoleum and Soft Tile Workers, Local 12",7300,Journeyman Trade,7393,Soft Floor Coverer,27364,85731.26,372.71,403.64,86507.61,17743.37,12290.13,6537.49,36570.99,123078.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33694,139858.25,22020.31,19414.65,181293.21,27648.02,12424.5,3091.4,43163.92,224457.13 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,16706,102019.05,0.0,0.0,102019.05,21022.54,12424.5,8026.18,41473.22,143492.27 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51109,1422.4,0.0,74.67,1497.07,0.0,382.3,115.9,498.2,1995.27 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,9893,133087.06,0.0,6370.24,139457.3,26783.95,12424.5,10173.86,49382.31,188839.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32534,41182.86,0.0,5007.82,46190.68,10672.5,10842.16,3670.25,25184.91,71375.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23825,501.2,0.0,2.86,504.06,0.0,0.0,39.83,39.83,543.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25437,19056.72,80.15,3704.51,22841.38,670.75,0.0,7212.56,7883.31,30724.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,18594,170656.73,2103.31,17985.67,190745.71,36162.44,10984.34,10994.95,58141.73,248887.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49189,0.0,0.0,250.0,250.0,0.0,68.5,0.0,68.5,318.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11732,66722.25,9397.32,1545.25,77664.82,15556.76,13148.36,5927.86,34632.98,112297.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",43916,11640.6,0.0,0.0,11640.6,0.0,2771.62,902.74,3674.36,15314.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,4439,88506.6,0.0,0.0,88506.6,18313.27,11946.63,7107.88,37367.78,125874.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1004,13963.42,0.0,1814.96,15778.38,6215.3,1102.38,144.65,7462.33,23240.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,32971,80357.0,5727.86,0.0,86084.86,16562.14,12424.5,6875.49,35862.13,121946.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,14251,44755.25,2000.54,6799.19,53554.98,9575.82,8434.33,4140.55,22150.7,75705.68 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,4852,67911.0,1655.53,3395.55,72962.08,14696.7,12424.5,6032.18,33153.38,106115.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,41990,86049.0,0.0,0.0,86049.0,17734.95,12424.5,6983.73,37143.18,123192.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,1633,15261.0,0.0,0.0,15261.0,3348.27,1433.6,1259.45,6041.32,21302.32 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,346,140316.01,0.0,0.0,140316.01,28174.98,12424.5,27543.53,68143.01,208459.02 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,38283,112209.05,0.0,0.0,112209.05,22582.31,12424.5,8770.55,43777.36,155986.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,23789,108372.53,27119.74,20498.46,155990.73,31345.01,12424.5,2603.18,46372.69,202363.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43548,78887.72,111.85,4021.8,83021.37,0.0,6944.04,6430.56,13374.6,96395.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35333,117421.99,17.87,1288.28,118728.14,23192.3,12211.13,358.58,35762.01,154490.15 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,31308,110923.14,0.0,1594.92,112518.06,23418.85,8362.64,14219.41,46000.9,158518.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31975,6144.45,0.0,8.91,6153.36,2639.6,0.0,2094.41,4734.01,10887.37 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,11693,49183.75,16245.52,3909.53,69338.8,11356.78,10636.28,5570.65,27563.71,96902.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,51508,75199.89,4165.15,1008.67,80373.71,15613.35,11622.29,6429.34,33664.98,114038.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,13432,14220.0,0.0,0.0,14220.0,2853.48,4300.79,1069.2,8223.47,22443.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,16992,13018.88,0.0,0.0,13018.88,0.0,2879.14,1010.48,3889.62,16908.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,15082,63887.02,45.79,876.94,64809.75,13348.1,12424.5,5354.41,31127.01,95936.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,12345,32175.0,0.0,645.0,32820.0,8262.4,7167.99,2637.46,18067.85,50887.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,4784,89210.08,0.0,624.0,89834.08,18511.23,12424.5,7198.09,38133.82,127967.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,17599,156746.08,0.0,0.0,156746.08,31528.11,12424.49,10418.35,54370.95,211117.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1440,Medical Transcriber Typist,40992,65592.0,4706.67,4446.53,74745.2,14432.48,12424.5,6112.79,32969.77,107714.97 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,51808,19218.62,478.68,0.0,19697.3,0.0,4379.93,1526.81,5906.74,25604.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51133,7637.25,84.17,217.0,7938.42,0.0,2941.86,615.69,3557.55,11495.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",32618,0.0,0.0,30868.61,30868.61,0.0,68.5,447.59,516.09,31384.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,45062,35728.06,430.35,1684.47,37842.88,7247.67,7317.61,3186.12,17751.4,55594.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49556,771.4,0.0,31.0,802.4,0.0,334.51,74.51,409.02,1211.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,978,78906.01,0.0,0.0,78906.01,16262.85,12424.5,6274.73,34962.08,113868.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18502,66.12,0.0,0.0,66.12,0.0,28.67,12.59,41.26,107.38 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,16572,103307.04,0.0,0.0,103307.04,21256.56,12424.5,8388.9,42069.96,145377.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24161,454.15,170.31,0.0,624.46,111.22,0.0,49.46,160.68,785.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30768,16671.86,0.0,403.76,17075.62,3069.54,4321.7,1403.59,8794.83,25870.45 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,51696,78022.1,2565.92,6989.44,87577.46,17008.93,12424.5,7094.38,36527.81,124105.27 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,32608,14906.76,884.5,0.0,15791.26,0.0,0.0,1249.38,1249.38,17040.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,35672,117135.32,3013.97,11713.62,131862.91,23184.68,12424.5,2173.42,37782.6,169645.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26069,108082.13,0.0,1393.7,109475.83,22064.72,9009.26,8346.65,39420.63,148896.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,22761,116976.08,0.0,0.0,116976.08,23541.49,12424.5,9572.58,45538.57,162514.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36468,3214.85,0.0,0.0,3214.85,0.0,1349.97,250.88,1600.85,4815.7 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),37821,172526.6,0.0,1500.0,174026.6,35082.47,12042.21,10789.6,57914.28,231940.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35720,1763.2,0.0,0.0,1763.2,412.92,764.58,144.31,1321.81,3085.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,34659,70245.0,23403.95,4977.7,98626.65,14606.45,12424.5,7760.67,34791.62,133418.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,33439,66580.0,28069.5,8530.08,103179.58,14619.57,12424.5,8399.1,35443.17,138622.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3264,149099.01,0.0,2114.08,151213.09,30383.18,12424.5,10319.5,53127.18,204340.27 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,39910,131129.06,0.0,0.0,131129.06,26309.93,12424.5,27337.95,66072.38,197201.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,42281,74664.7,32729.7,4436.15,111830.55,15790.71,12424.5,9067.0,37282.21,149112.76 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),8119,138885.02,0.0,1500.0,140385.02,28225.4,12424.5,10216.87,50866.77,191251.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,44350,83656.79,21489.34,3745.11,108891.24,17538.43,12351.33,8472.03,38361.79,147253.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42833,110.2,0.0,880.36,990.56,28.43,47.79,75.88,152.1,1142.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",7700,90806.2,48282.52,11350.82,150439.54,19248.75,10465.25,2572.92,32286.92,182726.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,46550,55322.67,1237.86,0.0,56560.53,12333.4,12290.1,4598.33,29221.83,85782.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,29070,2516.68,0.0,1423.2,3939.88,0.0,567.47,305.15,872.62,4812.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,34033,135421.0,0.0,0.0,135421.0,27253.5,12424.49,10072.48,49750.47,185171.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22513,66635.84,1445.52,3361.43,71442.79,15991.14,13129.78,5411.76,34532.68,105975.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28517,46046.66,0.0,790.48,46837.14,9716.85,10121.48,3798.19,23636.52,70473.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44434,149099.0,0.0,0.0,149099.0,30006.36,12424.5,10251.56,52682.42,201781.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,4489,168364.8,0.0,250.0,168614.8,33886.86,12233.36,10617.1,56737.32,225352.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27953,10960.62,0.0,97.48,11058.1,0.0,3628.79,858.01,4486.8,15544.9 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,2074,102019.02,0.0,0.0,102019.02,21026.26,12424.5,8362.1,41812.86,143831.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19052,53815.0,5396.89,5900.95,65112.84,13873.0,12424.5,5197.54,31495.04,96607.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,50699,61735.0,0.0,622.05,62357.05,12852.18,12424.5,5119.58,30396.26,92753.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40446,15335.74,0.0,0.0,15335.74,4947.5,1196.99,946.69,7091.18,22426.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27315,91512.6,20324.42,5568.06,117405.08,18690.58,9533.41,1958.74,30182.73,147587.81 +Calendar,2015,1,Public Protection,SHF,Sheriff,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,529,130594.54,0.0,0.0,130594.54,26282.01,12424.51,18325.72,57032.24,187626.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36363,53598.37,60.78,360.59,54019.74,11153.44,11782.61,4444.27,27380.32,81400.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11272,90889.48,15341.15,6646.31,112876.94,18915.0,11946.64,1882.66,32744.3,145621.24 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,17199,36360.0,0.0,0.0,36360.0,8944.46,9557.31,3040.8,21542.57,57902.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14176,41175.89,0.0,6760.48,47936.37,1897.34,0.0,6095.67,7993.01,55929.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6272,Senior Housing Inspector,31015,124338.02,0.0,2557.49,126895.51,25523.79,12424.5,9891.54,47839.83,174735.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23986,21505.85,0.0,44.66,21550.51,5167.35,5305.67,1575.47,12048.49,33599.0 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,3481,23315.13,0.0,0.0,23315.13,3889.06,0.0,1910.85,5799.91,29115.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36033,13377.63,0.0,1793.98,15171.61,2842.35,4061.86,1224.45,8128.66,23300.27 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,32413,85004.01,2019.06,8954.11,95977.18,18511.18,12424.5,7626.47,38562.15,134539.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,39727,61735.0,0.0,1160.75,62895.75,12963.24,12424.5,5166.73,30554.47,93450.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,23201,93681.04,0.0,2458.07,96139.11,19813.78,12424.5,7619.38,39857.66,135996.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,49128,19789.95,0.0,194.14,19984.09,4751.63,5928.52,1233.42,11913.57,31897.66 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39838,97762.79,10094.81,19794.26,127651.86,28593.65,12424.5,2033.38,43051.53,170703.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,824,63102.0,0.0,1786.39,64888.39,13371.03,12424.5,5081.82,30877.35,95765.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,28179,84277.08,0.0,0.0,84277.08,17339.89,12185.57,6795.46,36320.92,120598.0 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,41725,5957.0,0.0,0.0,5957.0,0.0,1672.53,537.0,2209.53,8166.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2447,123479.95,0.0,2504.62,125984.57,15912.42,12352.82,9791.24,38056.48,164041.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3554,Associate Museum Registrar,31722,59229.0,0.0,0.0,59229.0,12216.09,12424.51,4911.88,29552.48,88781.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3472,62922.3,10503.13,5598.13,79023.56,13853.67,13035.93,1314.55,28204.15,107227.71 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,6525,57560.4,458.08,0.0,58018.48,12860.89,12424.5,4717.36,30002.75,88021.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,21101,67046.91,0.0,0.0,67046.91,13769.51,9844.27,5584.82,29198.6,96245.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25971,119467.49,3318.77,9224.04,132010.3,23621.03,12424.51,2175.65,38221.19,170231.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,38275,93281.03,0.0,1544.0,94825.03,19542.52,12424.5,7860.6,39827.62,134652.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2924,Medical Social Work Supervisor,6911,104354.0,0.0,0.0,104354.0,21507.81,12424.5,8324.07,42256.38,146610.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,9633,79573.34,0.0,0.0,79573.34,16388.08,12382.09,6476.35,35246.52,114819.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,42803,15586.99,0.0,0.0,15586.99,0.0,3436.33,1208.99,4645.32,20232.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5130,Sewage Treatment Plant Supt,51954,147862.04,0.0,0.0,147862.04,29811.88,12424.5,10237.99,52474.37,200336.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,41559,29621.01,0.0,263.46,29884.47,5561.49,4300.79,2355.82,12218.1,42102.57 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,47416,67911.03,186.09,6487.92,74585.04,14793.74,12424.5,6042.53,33260.77,107845.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9140,Transit Manager 1,25908,71575.7,0.0,1472.89,73048.59,14124.21,8123.7,5618.16,27866.07,100914.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7245,"Chf Statnry Eng,Wtrtreat Plnt",23941,118858.03,7884.27,10491.75,137234.05,23960.48,12424.51,10006.72,46391.71,183625.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43326,1386.3,0.0,0.0,1386.3,251.34,143.35,107.6,502.29,1888.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6215,66959.76,6664.58,792.24,74416.58,16640.4,13282.74,5679.47,35602.61,110019.19 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,316C,Sr Court Staff Attorney,15939,150228.0,0.0,8363.0,158591.0,30746.64,12424.5,10583.94,53755.08,212346.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26647,7510.91,469.24,32.49,8012.64,1782.63,2263.88,608.48,4654.99,12667.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,43528,114337.8,24206.34,14311.58,152855.72,24881.57,12515.3,10332.04,47728.91,200584.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6978,11323.05,0.0,0.0,11323.05,0.0,4910.06,906.51,5816.57,17139.62 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16374,184289.07,0.0,3980.36,188269.43,37866.16,12424.5,10827.18,61117.84,249387.27 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),33279,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11048.71,61603.85,251078.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36177,113233.61,83511.71,18683.4,215428.72,25036.05,15196.12,3631.25,43863.42,259292.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32997,58474.54,1907.57,2720.62,63102.73,15883.9,13387.76,4808.5,34080.16,97182.89 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,1635,61711.19,1649.67,6726.57,70087.43,13620.24,12148.95,5734.2,31503.39,101590.82 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,33361,81268.06,0.0,998.03,82266.09,17192.38,10812.3,6659.51,34664.19,116930.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,19769,88474.6,0.0,0.0,88474.6,18228.29,12424.51,7224.05,37876.85,126351.45 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,14028,87531.01,0.0,0.0,87531.01,18040.63,12424.5,7205.04,37670.17,125201.18 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,5938,100657.06,0.0,0.0,100657.06,20772.84,12262.93,8205.64,41241.41,141898.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7254,Automotive Machinist Sprv 1,19969,107816.0,6353.64,600.0,114769.64,22332.94,12424.5,9171.61,43929.05,158698.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,8609,50600.0,0.0,0.0,50600.0,9760.86,7167.98,3779.68,20708.52,71308.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2656,Chef,42451,36909.94,7209.58,6059.67,50179.19,8551.53,6221.51,3963.48,18736.52,68915.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,39710,74200.19,0.0,1120.0,75320.19,15589.27,11822.81,5856.52,33268.6,108588.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44927,5419.38,0.0,0.0,5419.38,0.0,2287.78,436.05,2723.83,8143.21 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8240,Pub Safety Communication Coord,44642,109567.27,3338.4,12042.65,124948.32,26396.94,12305.04,9864.4,48566.38,173514.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7284,Utility Plumber Supervisor 2,12463,125004.05,18174.51,17372.17,160550.73,26549.36,12424.5,10237.84,49211.7,209762.43 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),47843,168504.03,0.0,1500.0,170004.03,34320.41,12424.51,9961.01,56705.93,226709.96 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,1531,137641.8,0.0,0.0,137641.8,27690.14,12472.29,17357.82,57520.25,195162.05 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),34823,184289.02,0.0,4058.74,188347.76,37883.36,12424.5,11035.75,61343.61,249691.37 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,23168,95968.08,0.0,0.0,95968.08,19779.23,12424.62,7771.52,39975.37,135943.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,37535,0.0,94.65,0.0,94.65,0.0,0.0,7.34,7.34,101.99 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,7233,41118.02,140.18,0.0,41258.2,9179.91,5256.52,3319.14,17755.57,59013.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,10542,79439.56,11644.06,3432.81,94516.43,17061.58,12418.53,7530.89,37011.0,131527.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34720,3209.5,0.0,0.0,3209.5,0.0,1565.01,248.96,1813.97,5023.47 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,45088,30669.08,5011.68,3828.88,39509.64,929.21,6876.78,3009.39,10815.38,50325.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6111,32034.91,4078.62,1245.3,37358.83,8550.32,9999.21,2848.3,21397.83,58756.66 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,48899,59150.56,0.0,0.0,59150.56,12161.51,12088.5,4750.69,29000.7,88151.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,25754,117723.74,0.0,0.0,117723.74,23746.58,12424.5,9635.24,45806.32,163530.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7200,Supervisory-Labor & Trade,7251,Track Maint Wrk Sprv 1,3084,89092.5,58247.01,5453.42,152792.93,18898.05,12424.5,10277.84,41600.39,194393.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8970,25432.89,0.0,2575.84,28008.73,5413.8,2336.76,2469.92,10220.48,38229.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36670,21035.81,7808.04,73806.7,102650.55,4816.29,2198.18,75.35,7089.82,109740.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,10915,105067.65,624.7,440.0,106132.35,21256.24,8222.04,8200.88,37679.16,143811.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12401,66679.78,5111.91,2854.65,74646.34,19023.84,13136.52,5660.71,37821.07,112467.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1014,111429.62,358.19,10049.56,121837.37,16438.4,10492.55,9179.43,36110.38,157947.75 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28010,95736.09,29537.95,15711.09,140985.13,27087.65,12167.95,2316.91,41572.51,182557.64 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,16739,4956.0,0.0,0.0,4956.0,1111.64,955.73,397.58,2464.95,7420.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12219,52033.0,204.66,680.0,52917.66,8215.66,11946.62,4227.1,24389.38,77307.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,45537,133087.04,0.0,23438.13,156525.17,26783.95,12424.5,10435.67,49644.12,206169.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,47129,79698.53,0.0,1516.0,81214.53,16747.88,12424.51,6592.79,35765.18,116979.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,30157,57209.89,17697.48,1894.08,76801.45,12031.93,11405.22,6227.18,29664.33,106465.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,39425,5014.07,0.0,48.4,5062.47,0.0,895.99,392.34,1288.33,6350.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8548,2982.88,0.0,0.0,2982.88,0.0,1454.5,231.31,1685.81,4668.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34292,15975.48,0.0,0.0,15975.48,0.0,2084.69,1239.95,3324.64,19300.12 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,1433,97344.7,3497.03,15963.64,116805.37,27546.82,12370.74,1980.22,41897.78,158703.15 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34730,43824.93,33.34,2384.24,46242.51,11027.32,11605.2,3636.07,26268.59,72511.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34904,97763.52,20870.34,10909.88,129543.74,25678.17,12424.52,2073.32,40176.01,169719.75 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23707,6721.95,0.0,0.0,6721.95,1478.16,1995.09,540.82,4014.07,10736.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,47512,81501.0,0.0,0.0,81501.0,17198.42,10035.18,6575.15,33808.75,115309.75 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,11840,10698.1,0.0,0.0,10698.1,1990.91,1385.81,829.97,4206.69,14904.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19789,4645.95,0.0,154.87,4800.82,1963.78,358.34,111.1,2433.22,7234.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30090,117434.89,11704.55,8982.15,138121.59,23221.52,12424.5,2353.15,37999.17,176120.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,50934,93766.5,48187.01,5381.55,147335.06,19620.0,12663.44,10213.53,42496.97,189832.03 +Calendar,2015,4,Community Health,DPH,Public Health,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,24639,59416.53,1371.15,3958.42,64746.1,12844.24,9318.38,5010.11,27172.73,91918.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14336,43429.79,3278.51,378.48,47086.78,10514.32,12424.5,3798.18,26737.0,73823.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22214,66988.52,2849.22,5406.46,75244.2,19835.48,13200.38,5828.46,38864.32,114108.52 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,39618,21459.2,0.0,0.0,21459.2,4582.75,3058.34,1714.04,9355.13,30814.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49468,53473.21,6676.75,1647.33,61797.29,11302.49,11748.33,5104.85,28155.67,89952.96 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),51946,114947.98,0.0,1500.0,116447.98,23763.47,12424.5,9347.61,45535.58,161983.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2667,4380.45,0.0,0.0,4380.45,0.0,1899.51,346.61,2246.12,6626.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,7134,10240.05,0.0,0.0,10240.05,0.0,2313.65,792.42,3106.07,13346.12 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,52273,97676.13,11263.98,11986.33,120926.44,26695.27,12413.33,2060.73,41169.33,162095.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,43613,50308.11,0.0,1608.67,51916.78,12452.26,12424.5,4232.97,29109.73,81026.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,42701,43069.0,1871.59,100.0,45040.59,9684.62,6212.22,3532.56,19429.4,64469.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,46374,67529.01,0.0,0.0,67529.01,14166.47,10513.04,5340.76,30020.27,97549.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51201,54460.09,14503.08,2723.39,71686.56,13611.8,10719.29,5577.48,29908.57,101595.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,47545,70245.0,0.0,2520.7,72765.7,14606.45,12424.5,5954.25,32985.2,105750.9 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,13372,64229.61,0.0,0.0,64229.61,13163.24,11878.96,5216.16,30258.36,94487.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,38997,63102.0,0.0,907.23,64009.23,13193.04,12424.5,5269.26,30886.8,94896.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,7341,56503.98,1367.43,6492.97,64364.38,12339.39,12418.53,5262.53,30020.45,94384.83 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,20715,50249.01,0.0,0.0,50249.01,9743.51,7406.92,4069.62,21220.05,71469.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,29282,60046.0,0.0,0.0,60046.0,13125.11,6690.11,4836.54,24651.76,84697.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8221,66876.37,2914.87,3318.05,73109.29,19226.85,13180.12,5759.29,38166.26,111275.55 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,42014,75028.0,0.0,144.0,75172.0,15490.37,12424.5,6534.32,34449.19,109621.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,39475,102019.01,0.0,0.0,102019.01,21026.26,12424.5,8019.28,41470.04,143489.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,37597,42023.0,0.0,0.0,42023.0,8648.05,8123.72,3403.19,20174.96,62197.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,24290,61756.86,4026.42,13747.09,79530.37,15043.16,11902.08,6308.58,33253.82,112784.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,45359,83085.5,0.0,264.0,83349.5,16773.2,6212.25,6856.71,29842.16,113191.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",43097,94837.56,3529.21,2475.9,100842.67,19543.35,12424.5,8258.29,40226.14,141068.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,25771,80203.0,0.0,0.0,80203.0,16567.65,12424.51,6854.72,35846.88,116049.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,23312,34669.47,319.82,708.8,35698.09,6823.25,6800.62,2699.18,16323.05,52021.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10097,70245.0,9363.47,9884.34,89492.81,15935.14,12424.5,7077.27,35436.91,124929.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12334,119467.41,7038.46,14002.55,140508.42,23621.01,12424.5,2337.72,38383.23,178891.65 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,9683,140877.63,0.0,8143.88,149021.51,29963.46,7454.7,10276.44,47694.6,196716.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,6342,83699.04,28228.89,624.0,112551.93,17379.24,12424.5,9196.84,39000.58,151552.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,34377,44477.01,0.0,0.0,44477.01,8666.14,7645.85,3612.27,19924.26,64401.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,444,19350.64,5391.07,500.0,25241.71,4704.73,5394.99,2081.98,12181.7,37423.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,47279,85085.0,0.0,0.0,85085.0,18994.23,12424.5,6794.22,38212.95,123297.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,25778,49010.0,8005.25,554.68,57569.93,9345.47,6690.13,4600.59,20636.19,78206.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,40771,90993.63,0.0,1586.71,92580.34,19082.86,12119.86,7086.81,38289.53,130869.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,34190,38125.35,755.89,1124.18,40005.42,9135.34,9109.31,3166.68,21411.33,61416.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,40175,84644.01,37749.83,7482.86,129876.7,18133.19,12424.5,9773.22,40330.91,170207.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47010,2866.5,0.0,0.0,2866.5,0.0,1397.75,222.39,1620.14,4486.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8941,21276.92,0.0,2432.78,23709.7,2680.53,0.0,5193.88,7874.41,31584.11 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,19387,0.0,0.0,0.0,0.0,0.0,0.0,-9.51,-9.51,-9.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,51323,3752.0,0.0,0.0,3752.0,841.57,477.86,296.4,1615.83,5367.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14133,97769.93,20292.02,17443.26,135505.21,28030.56,12424.5,2203.75,42658.81,178164.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22777,123281.1,0.0,20739.16,144020.26,31556.11,10278.88,3549.64,45384.63,189404.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",30329,132527.85,0.0,0.0,132527.85,26762.97,12020.4,27507.39,66290.76,198818.61 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,32809,19017.6,0.0,0.0,19017.6,4744.78,5352.09,1545.31,11642.18,30659.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,19484,118261.26,23710.5,6810.89,148782.65,23382.53,12299.06,2487.98,38169.57,186952.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,20043,50231.83,0.0,507.01,50738.84,10246.23,10095.27,4180.99,24522.49,75261.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2935,"Sr Marriage, Fam & Cld Cnslr",50535,12289.2,0.0,9248.55,21537.75,2756.46,1576.95,1739.82,6073.23,27610.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,49471,160707.03,0.0,0.0,160707.03,32303.0,12424.5,28016.29,72743.79,233450.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,6369,79833.8,11649.7,5713.83,97197.33,17532.04,12424.5,8051.13,38007.67,135205.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",47688,119764.71,0.0,2718.78,122483.49,24114.14,12424.5,9768.24,46306.88,168790.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,47880,122828.05,17350.66,15340.57,155519.28,24195.91,12424.5,2488.14,39108.55,194627.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,35811,99769.08,11463.33,4752.53,115984.94,20698.89,12424.49,1935.92,35059.3,151044.24 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,14934,97424.01,1970.64,3447.4,102842.05,20558.7,12424.5,8469.55,41452.75,144294.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,24638,3267.51,12381.09,15156.44,30805.04,0.0,239.06,2387.78,2626.84,33431.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,25107,62836.02,0.0,0.0,62836.02,13247.79,10035.18,5067.6,28350.57,91186.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,43632,7219.77,0.0,0.0,7219.77,0.0,1950.29,559.21,2509.5,9729.27 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,29928,143188.02,0.0,0.0,143188.02,28816.76,12424.5,10250.97,51492.23,194680.25 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,37972,635.91,348.23,0.0,984.14,0.0,188.16,76.38,264.54,1248.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,46362,79855.43,4859.34,7798.12,92512.89,17238.05,12424.5,1542.5,31205.05,123717.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,22943,12714.17,0.0,173.23,12887.4,0.0,4217.16,873.37,5090.53,17977.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,9398,15504.25,0.0,621.99,16126.24,1285.39,0.0,890.09,2175.48,18301.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13367,83228.17,476.5,2982.94,86687.61,16772.69,8541.85,6858.91,32173.45,118861.06 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,38696,49597.07,0.0,71798.22,121395.29,8991.97,5734.38,5935.51,20661.86,142057.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44076,4497.99,0.0,28.42,4526.41,0.0,2293.76,350.82,2644.58,7170.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,15117,21550.0,505.09,3205.29,25260.38,4893.65,4778.64,2025.86,11698.15,36958.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,16208,74165.08,0.0,0.0,74165.08,15285.76,12424.5,5858.89,33569.15,107734.23 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,20810,5940.2,1554.31,1263.93,8758.44,1402.28,955.73,676.48,3034.49,11792.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,46013,4020.3,0.0,103.19,4123.49,0.0,1336.53,319.7,1656.23,5779.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",30938,94388.0,3982.58,2077.99,100448.57,19882.54,12424.5,8017.09,40324.13,140772.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,5559,42194.0,0.0,440.0,42634.0,3648.59,10035.17,3406.04,17089.8,59723.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,23645,71612.02,0.0,1463.4,73075.42,14888.01,12424.51,5935.8,33248.32,106323.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30376,149661.12,0.0,31870.1,181531.22,34927.44,12301.99,10812.58,58042.01,239573.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7339,"Aprntcstatnry Eng,Wtrtreatplnt",35230,75601.41,3178.19,2628.15,81407.75,16300.82,10082.96,6676.68,33060.46,114468.21 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,39764,37165.32,649.8,0.0,37815.12,7147.36,12221.42,3050.26,22419.04,60234.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,51070,150440.29,0.0,0.0,150440.29,30168.65,12424.5,17608.55,60201.7,210641.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,39646,118724.0,0.0,0.0,118724.0,23893.95,12424.5,9717.02,46035.47,164759.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,8565,4484.0,1233.11,1227.51,6944.62,969.03,477.86,118.06,1564.95,8509.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,50201,48705.82,0.0,1018.79,49724.61,10385.24,8075.92,3963.91,22425.07,72149.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,14518,108038.0,28839.36,1991.39,138868.75,22289.86,12424.5,10091.87,44806.23,183674.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,35069,119066.04,3889.26,16900.47,139855.77,31527.04,12424.5,2336.42,46287.96,186143.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,38087,5461.5,0.0,0.0,5461.5,0.0,1146.88,423.9,1570.78,7032.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30776,66003.75,7035.18,551.17,73590.1,16296.59,13089.93,5581.27,34967.79,108557.89 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,22704,31013.02,0.0,0.0,31013.02,5771.53,4300.79,2449.71,12522.03,43535.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,7243,84275.72,0.0,3290.41,87566.13,18038.03,12376.71,7225.62,37640.36,125206.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6194,148006.55,71205.22,8014.4,227226.17,0.0,10930.09,11150.61,22080.7,249306.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,39120,68571.01,2369.15,4104.19,75044.35,14464.21,12424.5,6154.12,33042.83,108087.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17493,25998.01,0.0,0.0,25998.01,5831.35,3345.06,2205.58,11381.99,37380.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,24775,73749.0,3920.79,4593.43,82263.22,15253.67,12424.5,6768.62,34446.79,116710.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4615,51909.29,4913.05,760.0,57582.34,10536.25,8945.46,4532.28,24013.99,81596.33 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,44155,99654.04,0.0,0.0,99654.04,22734.15,12424.5,1694.21,36852.86,136506.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17052,28611.98,6650.59,318.13,35580.7,6943.05,12288.9,2779.34,22011.29,57591.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,52868,79541.02,0.0,1180.0,80721.02,16618.41,12424.5,6510.94,35553.85,116274.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31447,56531.0,0.0,927.42,57458.42,11823.91,12424.5,4517.04,28765.45,86223.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,18073,166171.0,0.0,1729.4,167900.4,33794.13,12424.5,10533.62,56752.25,224652.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,9027,62046.34,0.0,0.0,62046.34,11374.7,6212.25,8623.44,26210.39,88256.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,21661,68664.5,0.0,0.0,68664.5,14173.65,12236.7,5381.94,31792.29,100456.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49776,113233.59,53899.25,20258.61,187391.45,25591.93,15196.12,3151.97,43940.02,231331.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,11880,89028.04,0.0,0.0,89028.04,18349.03,12424.49,7098.88,37872.4,126900.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,50965,138501.9,4662.02,5846.03,149009.95,27369.15,12412.55,2484.14,42265.84,191275.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,22882,10532.55,9889.08,1239.8,21661.43,2822.88,2885.11,1718.54,7426.53,29087.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",12342,148809.28,31835.31,35911.45,216556.04,36409.67,15052.76,3660.32,55122.75,271678.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33404,91741.89,29134.5,11887.75,132764.14,18737.9,9557.3,2223.84,30519.04,163283.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,37500,84644.0,23516.72,13468.8,121629.52,19230.26,12424.5,9738.58,41393.34,163022.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,36614,43654.25,2569.2,926.0,47149.45,0.0,5525.32,3476.86,9002.18,56151.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5924,5768.2,0.0,0.0,5768.2,1488.19,1803.94,459.52,3751.65,9519.85 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,39566,20347.13,342.5,0.0,20689.63,0.0,5032.22,1604.25,6636.47,27326.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9203,Sr Airport Communications Disp,25834,91457.95,1401.55,1347.6,94207.1,19123.1,12246.74,7773.31,39143.15,133350.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17555,139190.92,2796.38,6770.64,148757.94,27541.31,12424.5,2524.06,42489.87,191247.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",51310,148809.21,53027.04,19832.19,221668.44,33185.47,15052.76,3726.74,51964.97,273633.41 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,18510,72865.0,0.0,0.0,72865.0,14965.12,11946.64,5729.07,32640.83,105505.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,28108,0.0,0.0,101.14,101.14,0.0,0.0,1.47,1.47,102.61 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,23992,13395.01,0.0,0.0,13395.01,3004.5,2389.33,1069.38,6463.21,19858.22 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,17694,60098.47,666.45,1587.07,62351.99,12979.7,9748.46,5134.15,27862.31,90214.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4359,119450.11,22867.89,13289.95,155607.95,23683.74,12424.5,2566.7,38674.94,194282.89 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,3125,85004.0,15375.35,16286.93,116666.28,20006.7,12424.5,9468.42,41899.62,158565.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50573,110932.58,710.55,17507.78,129150.91,16834.59,10857.64,8889.91,36582.14,165733.05 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,9300,Port Operation,9382,Govrnmt/Publ Affairs Mgr,40002,117076.97,0.0,0.0,117076.97,23852.31,12424.5,18212.75,54489.56,171566.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15816,109119.7,314.72,266.79,109701.21,17928.48,11420.56,9459.83,38808.87,148510.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41574,119455.89,20374.03,10286.12,150116.04,23662.81,12424.5,2549.81,38637.12,188753.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,24441,4415.65,357.54,532.92,5306.11,1032.0,1332.05,425.32,2789.37,8095.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,47171,56037.89,0.0,752.73,56790.62,11565.73,12316.98,4618.72,28501.43,85292.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,38666,2380.06,0.0,5.75,2385.81,0.0,791.47,184.81,976.28,3362.09 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9155,Claims Investigator,37634,102292.82,8902.85,8779.03,119974.7,21484.1,12424.5,9473.2,43381.8,163356.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12471,14223.75,0.0,2074.85,16298.6,5567.65,1075.8,679.56,7323.01,23621.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7372,13661.92,2059.35,168.84,15890.11,3897.77,4312.56,1143.71,9354.04,25244.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7041,39676.66,2259.69,2370.71,44307.06,10826.48,11887.2,3344.82,26058.5,70365.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,32039,48984.39,3793.22,3049.32,55826.93,12113.0,11835.83,4555.66,28504.49,84331.42 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,1530,174581.49,0.0,0.0,174581.49,35105.96,9818.29,10530.93,55455.18,230036.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,46270,78380.6,2020.74,0.0,80401.34,16125.2,12424.52,6338.88,34888.6,115289.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16349,140334.03,0.0,250.0,140584.03,28242.36,12424.5,10124.98,50791.84,191375.87 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,7383,99654.01,0.0,0.0,99654.01,22731.77,12424.5,1695.51,36851.78,136505.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17711,47213.3,2973.45,443.13,50629.88,11416.7,12424.5,4104.23,27945.43,78575.31 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,13092,67111.86,2675.09,4845.11,74632.06,14225.56,12278.16,5794.2,32297.92,106929.98 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,13762,59518.04,0.0,0.0,59518.04,12011.2,10035.17,4613.81,26660.18,86178.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,1256,256.66,0.0,0.0,256.66,0.0,64.21,19.87,84.08,340.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24528,77071.06,0.0,1984.0,79055.06,16290.11,12424.5,6386.26,35100.87,114155.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,14803,19734.01,0.0,0.0,19734.01,3672.52,3822.92,1624.26,9119.7,28853.71 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0890,Mayoral Staff X,27995,65753.1,0.0,0.0,65753.1,14044.06,9031.66,11734.81,34810.53,100563.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,17754,26432.0,0.0,1505.7,27937.7,4919.0,3822.92,2230.14,10972.06,38909.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,5342,59214.76,63.28,4953.08,64231.12,12998.31,11210.49,5316.63,29525.43,93756.55 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12400,97764.06,8159.84,16096.39,122020.29,27685.56,12424.5,2030.81,42140.87,164161.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,38890,110729.97,7012.08,10610.89,128352.94,22054.52,9927.66,2185.84,34168.02,162520.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,42421,81542.08,0.0,0.0,81542.08,16806.21,12424.5,6522.78,35753.49,117295.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41092,119406.7,4753.11,3943.25,128103.06,23767.94,12418.53,2171.21,38357.68,166460.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,19647,430.88,0.0,0.0,430.88,0.0,0.0,34.12,34.12,465.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32104,37295.31,3767.66,1723.69,42786.66,10093.61,11650.54,3257.68,25001.83,67788.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,50330,83105.93,5143.19,12513.24,100762.36,18738.75,12268.36,8001.84,39008.95,139771.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2204,Dental Hygienist,25998,95671.1,0.0,142.76,95813.86,19713.78,12316.99,7699.62,39730.39,135544.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30168,15560.54,1592.51,162.17,17315.22,3894.39,4817.79,1232.86,9945.04,27260.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14760,48223.68,4400.57,1554.15,54178.4,13662.79,9496.01,4208.56,27367.36,81545.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,26257,119461.62,57893.15,3784.27,181139.04,23641.9,12424.5,3021.61,39088.01,220227.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44469,0.0,0.0,1106.34,1106.34,0.0,68.5,65.51,134.01,1240.35 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,28749,84629.01,0.0,0.0,84629.01,16610.74,9079.44,6777.54,32467.72,117096.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35352,140848.27,8907.2,8386.8,158142.27,0.0,9982.97,9996.46,19979.43,178121.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4291,56531.0,0.0,5394.43,61925.43,12761.08,12424.5,5069.7,30255.28,92180.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,4198,14945.0,0.0,13824.63,28769.63,3379.1,2389.33,2313.77,8082.2,36851.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,38584,14590.0,848.05,0.0,15438.05,2715.2,2389.33,1127.31,6231.84,21669.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,28447,54339.6,0.0,1210.0,55549.6,12365.86,12424.5,4454.21,29244.57,84794.17 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,2920,11847.64,0.0,0.0,11847.64,2605.3,3133.0,950.44,6688.74,18536.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50502,47331.6,0.0,0.0,47331.6,11341.04,12424.5,3634.88,27400.42,74732.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44828,66469.09,35.4,5640.11,72144.6,15610.13,5974.87,5889.39,27474.39,99618.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48637,10818.87,0.0,0.0,10818.87,339.84,4637.51,885.02,5862.37,16681.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",25977,137054.51,0.0,0.0,137054.51,27581.88,12420.26,17374.72,57376.86,194431.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,49031,50009.49,5183.06,3039.09,58231.64,10809.78,7306.8,4847.29,22963.87,81195.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2489,Lab Svcs Mgr,12376,144744.05,0.0,0.0,144744.05,29034.89,12424.5,10224.75,51684.14,196428.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,52193,44078.2,6182.99,3406.33,53667.52,10023.27,9844.03,4341.92,24209.22,77876.74 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,43604,81202.4,199.57,0.0,81401.97,16703.31,12424.51,6555.99,35683.81,117085.78 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,30253,66921.85,0.0,908.75,67830.6,13806.82,12362.97,5534.24,31704.03,99534.63 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,52822,88404.64,0.0,0.0,88404.64,17314.04,9557.31,13068.6,39939.95,128344.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23245,113233.61,8980.55,23595.63,145809.79,26219.84,15196.12,2592.33,44008.29,189818.08 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,43203,60240.85,309.92,623.93,61174.7,12544.53,12423.01,4831.66,29799.2,90973.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13899,71304.04,0.0,1585.11,72889.15,0.0,0.0,5764.98,5764.98,78654.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,8641,4293.05,0.0,124.07,4417.12,0.0,1033.51,364.86,1398.37,5815.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,12195,10189.73,0.0,184.64,10374.37,2072.93,2036.9,954.19,5064.02,15438.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,34751,63575.01,5354.12,758.12,69687.25,13153.79,11946.64,5732.14,30832.57,100519.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,6118,47691.8,7434.6,3462.8,58589.2,9887.2,8840.51,1516.26,20243.97,78833.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36205,97774.4,16799.64,13124.29,127698.33,26964.64,12424.5,1911.24,41300.38,168998.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30859,40381.98,175.6,2882.56,43440.14,9934.36,10919.23,3261.45,24115.04,67555.18 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,23895,67911.01,448.77,11348.71,79708.49,15623.02,12424.5,6520.81,34568.33,114276.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5400,Community Development,5408,Coord Of Citizen Involvement,40689,98762.41,0.0,2810.14,101572.55,20255.73,10979.79,8298.77,39534.29,141106.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,19340,71784.15,20262.57,4576.73,96623.45,14998.8,12374.03,8273.47,35646.3,132269.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27820,49663.45,580.63,8526.83,58770.91,9360.06,5079.71,4724.46,19164.23,77935.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,10110,71330.06,5858.17,0.0,77188.23,14649.88,11946.64,5789.98,32386.5,109574.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,28018,138231.8,1538.76,2347.47,142118.03,27192.21,11946.64,2421.06,41559.91,183677.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12938,117791.32,30540.03,2540.65,150872.0,23280.98,12249.96,2516.23,38047.17,188919.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1770,70245.0,18273.11,8605.89,97124.0,15584.45,12424.5,7932.43,35941.38,133065.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",29347,93738.1,671.82,0.0,94409.92,19319.86,12424.5,8305.72,40050.08,134460.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,5139,61742.48,0.0,1560.0,63302.48,13016.04,12279.89,5094.3,30390.23,93692.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15114,1730.51,0.0,0.88,1731.39,0.0,937.81,134.04,1071.85,2803.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,40205,67261.12,0.0,385.0,67646.12,13942.04,12424.5,4895.02,31261.56,98907.68 +Calendar,2015,4,Community Health,DPH,Public Health,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7236,Locksmith Supervisor 1,18008,57556.01,1377.68,15574.36,74508.05,1831.18,6690.12,5882.56,14403.86,88911.91 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,5261,2325.0,0.0,0.0,2325.0,421.5,238.93,179.35,839.78,3164.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,25278,34349.0,0.0,0.0,34349.0,0.0,6451.19,2712.77,9163.96,43512.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18640,28012.93,0.0,0.0,28012.93,-8819.65,0.0,5338.75,-3480.9,24532.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18855,70245.0,19237.77,10305.15,99787.92,15890.21,12424.5,7849.33,36164.04,135951.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32802,36930.42,3475.92,1749.11,42155.45,10006.27,11533.51,3023.43,24563.21,66718.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12441,49083.1,0.0,60.0,49143.1,10009.98,10990.9,3951.29,24952.17,74095.27 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,36498,26022.51,0.0,322.5,26345.01,6306.94,6421.32,2109.82,14838.08,41183.09 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17777,77317.92,0.0,5453.77,82771.69,16004.25,10990.9,6681.24,33676.39,116448.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,15029,87531.02,0.0,0.0,87531.02,18040.63,12424.5,7145.52,37610.65,125141.67 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,14705,131991.63,0.0,0.0,131991.63,26786.87,11446.91,10031.55,48265.33,180256.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,18215,20085.76,0.0,0.0,20085.76,0.0,6074.87,1480.26,7555.13,27640.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,42195,118680.07,42455.09,7714.19,168849.35,24886.32,15196.11,2822.56,42904.99,211754.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,2038,64996.37,42947.5,8905.72,116849.59,14138.89,12085.04,9006.76,35230.69,152080.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18696,112018.8,0.0,17081.49,129100.29,18954.31,10872.03,9677.87,39504.21,168604.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,29758,58705.34,0.0,0.0,58705.34,12259.19,4164.05,4364.41,20787.65,79492.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,42966,62468.8,0.0,3012.49,65481.29,13423.63,12424.52,5143.74,30991.89,96473.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,19224,73514.67,0.0,0.0,73514.67,15137.76,12145.07,5936.32,33219.15,106733.82 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,39551,90193.46,0.0,0.0,90193.46,20648.56,11237.6,1525.06,33411.22,123604.68 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,16220,32852.25,1666.68,1657.85,36176.78,0.0,4754.76,2799.84,7554.6,43731.38 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",23915,69419.05,8458.92,4678.8,82556.77,16904.14,12424.5,480.52,29809.16,112365.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49662,124366.21,1073.9,9309.02,134749.13,26113.67,11096.03,9873.61,47083.31,181832.44 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,39735,16802.21,0.0,0.0,16802.21,0.0,4644.26,1360.71,6004.97,22807.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28997,98802.69,6199.51,10283.1,115285.3,20530.79,12424.5,1915.04,34870.33,150155.63 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,4375,98157.0,22712.27,8126.24,128995.51,21682.23,12424.5,9881.03,43987.76,172983.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31274,1549.5,0.0,0.0,1549.5,339.96,0.0,122.41,462.37,2011.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12355,1800.75,0.0,0.0,1800.75,0.0,878.08,139.72,1017.8,2818.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,38471,70245.0,10060.43,4977.7,85283.13,14606.45,12424.5,6744.14,33775.09,119058.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,43280,92085.0,0.0,0.0,92085.0,18979.21,12424.5,7567.93,38971.64,131056.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,47539,95053.03,15912.16,4043.42,115008.61,20423.17,12424.5,9170.69,42018.36,157026.97 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,35466,65660.86,0.0,0.0,65660.86,12990.24,7968.41,5432.84,26391.49,92052.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47196,94680.7,13616.32,6985.79,115282.81,19494.45,12424.5,1922.83,33841.78,149124.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,43499,52.35,0.0,2.62,54.97,10.23,5.97,4.31,20.51,75.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46887,56531.05,83.63,2501.79,59116.47,11827.48,12424.49,4640.67,28892.64,88009.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,29180,18858.84,0.0,875.0,19733.84,4230.01,2194.83,1689.08,8113.92,27847.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",27913,132030.42,37291.84,15205.49,184527.75,28928.24,14957.19,3104.69,46990.12,231517.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19304,112159.78,55302.31,16981.77,184443.86,24704.2,15052.76,2707.27,42464.23,226908.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40392,3717.88,0.0,60.52,3778.4,0.0,1812.91,293.11,2106.02,5884.42 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,52700,84557.39,0.0,1619.49,86176.88,17762.85,12418.53,6981.71,37163.09,123339.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,48051,63939.05,0.0,0.0,63939.05,13417.78,10513.04,5286.03,29216.85,93155.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50214,11928.43,0.0,7850.99,19779.42,-0.01,0.0,3476.06,3476.05,23255.47 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,28387,93837.77,2838.2,5482.66,102158.63,20066.21,12445.4,8149.51,40661.12,142819.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,23674,68571.01,1830.63,1929.28,72330.92,14371.98,12424.5,5618.32,32414.8,104745.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,5477,117231.97,5112.83,10261.08,132605.88,23183.71,12424.5,2203.41,37811.62,170417.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,13787,62220.9,4971.82,6814.2,74006.92,13858.21,12376.72,6022.68,32257.61,106264.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,26622,108038.0,0.0,3670.4,111708.4,22401.3,12424.5,8939.42,43765.22,155473.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20407,56531.0,734.74,1252.66,58518.4,11907.17,12424.5,4593.38,28925.05,87443.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,41355,40152.0,0.0,0.0,40152.0,8073.04,5734.39,3253.55,17060.98,57212.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,27854,51717.35,0.0,1809.08,53526.43,10729.19,8010.7,4282.8,23022.69,76549.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,2489,7470.0,3056.97,1172.5,11699.47,1938.51,1433.6,942.68,4314.79,16014.26 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,52453,48885.52,0.0,0.0,48885.52,9196.95,6212.25,7851.4,23260.6,72146.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,1327,62811.0,0.0,1250.0,64061.0,13159.32,12424.5,4802.07,30385.89,94446.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,45737,2571.0,0.0,0.0,2571.0,576.68,477.86,197.98,1252.52,3823.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,34965,75380.05,1948.09,536.1,77864.24,13278.81,11743.61,6100.76,31123.18,108987.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,53199,145200.01,0.0,0.0,145200.01,29221.73,12424.5,10191.25,51837.48,197037.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,14641,37412.59,533.4,4429.91,42375.9,9564.91,10113.3,3157.88,22836.09,65211.99 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,30044,78963.01,0.0,0.0,78963.01,16274.47,12424.5,6551.98,35250.95,114213.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29430,45105.45,45.92,0.0,45151.37,9675.76,8681.68,3683.56,22041.0,67192.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,47050,187810.57,0.0,0.0,187810.57,37701.88,12424.5,18261.33,68387.71,256198.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44657,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,23248,27627.17,29.63,0.0,27656.8,6705.02,8308.89,2223.19,17237.1,44893.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,40282,29950.03,0.0,0.0,29950.03,5832.22,6690.12,2223.33,14745.67,44695.7 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,35902,97650.01,0.0,5865.91,103515.92,20055.51,11946.63,8461.66,40463.8,143979.72 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,21337,117158.01,0.0,0.0,117158.01,23849.2,12424.5,9413.06,45686.76,162844.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,12.0,"Carpet, Linoleum and Soft Tile Workers, Local 12",7300,Journeyman Trade,7394,Soft Floor Coverer Supvr I,17938,106812.05,5763.27,132.67,112707.99,22043.71,12424.47,8613.24,43081.42,155789.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,51673,65675.45,0.0,1438.47,67113.92,13760.37,11493.62,5309.76,30563.75,97677.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,47729,15028.2,0.0,420.0,15448.2,3465.01,3297.27,1244.54,8006.82,23455.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30898,119455.88,42083.19,11395.29,172934.36,23662.83,12424.5,2900.46,38987.79,211922.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4660,65331.96,1602.49,620.4,67554.85,18067.1,12874.78,4936.78,35878.66,103433.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,3670,49083.1,59.49,0.0,49142.59,9998.81,10990.9,3953.13,24942.84,74085.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44099,37364.25,690.87,4825.73,42880.85,7649.05,3799.03,3425.98,14874.06,57754.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,42307,71311.06,4736.8,624.0,76671.86,14826.41,12424.5,6338.63,33589.54,110261.4 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,4060,108358.53,0.0,0.0,108358.53,22308.01,12424.5,8672.33,43404.84,151763.37 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),5692,147294.91,0.0,4195.87,151490.78,30473.8,9930.05,10308.36,50712.21,202202.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,32978,33956.95,3658.71,6644.93,44260.59,7650.24,6691.32,3493.13,17834.69,62095.28 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,44148,54979.61,880.69,4016.5,59876.8,12296.55,12424.5,4962.13,29683.18,89559.98 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8165,Worker's Comp Supervisor 1,8890,111091.01,0.0,624.0,111715.01,22482.76,12424.5,9171.36,44078.62,155793.63 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,192C,Court Administrator,33289,86528.0,0.0,35571.12,122099.12,18510.4,7645.85,22874.61,49030.86,171129.98 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,36645,141819.76,0.0,0.0,141819.76,28481.53,12424.5,17405.98,58312.01,200131.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,13152,2424.0,0.0,60.0,2484.0,462.27,477.86,136.97,1077.1,3561.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6193,74622.35,0.0,3544.6,78166.95,0.0,6522.98,6063.01,12585.99,90752.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16634,2901.17,0.0,22.54,2923.71,0.0,1414.66,226.72,1641.38,4565.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,53103,89824.16,9020.56,42.0,98886.72,18425.38,12424.5,7971.38,38821.26,137707.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51607,56531.0,0.0,4567.45,61098.45,11788.47,12424.5,4569.3,28782.27,89880.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,14344,87274.95,1808.64,893.35,89976.94,18173.65,11994.42,7090.89,37258.96,127235.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,15897,20480.7,528.95,16996.1,38005.75,4623.43,2628.26,3053.04,10304.73,48310.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",36242,1081.0,0.0,0.0,1081.0,0.0,0.0,85.5,85.5,1166.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5272,Landscape Architect Assoc 2,10404,26243.02,0.0,0.0,26243.02,4883.82,2867.15,1997.08,9748.05,35991.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3880,14309.52,0.0,337.1,14646.62,0.0,4748.8,1135.62,5884.42,20531.04 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,30298,58476.11,2559.43,5981.37,67016.91,13955.07,12376.71,5409.54,31741.32,98758.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,31265,63844.03,0.0,0.0,63844.03,12543.43,8123.72,5126.38,25793.53,89637.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26106,24207.98,2206.36,1187.08,27601.42,6565.01,7517.41,2082.8,16165.22,43766.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9789,119467.36,4550.8,15610.83,139628.99,23620.97,12424.5,2323.08,38368.55,177997.54 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,19703,93237.42,0.0,2075.05,95312.47,19634.13,12376.71,7888.04,39898.88,135211.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17873,65849.11,9535.48,3628.21,79012.8,19008.22,12975.48,5993.65,37977.35,116990.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3932,5863.16,0.0,262.0,6125.16,1635.48,1156.97,394.47,3186.92,9312.08 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,34149,39985.5,0.0,926.55,40912.05,9885.93,12424.5,3322.23,25632.66,66544.71 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,22884,131321.94,0.0,0.0,131321.94,26344.9,12424.5,17195.98,55965.38,187287.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36092,147041.69,604.9,30684.86,178331.45,24161.77,12252.77,6739.7,43154.24,221485.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4955,54718.21,63.67,5069.94,59851.82,14228.66,12424.5,4839.93,31493.09,91344.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50766,67957.59,13684.8,7223.23,88865.62,20591.17,13388.42,6907.12,40886.71,129752.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,42595,19749.0,0.0,160.0,19909.0,0.0,5256.52,1573.4,6829.92,26738.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30129,80957.63,1735.73,2960.52,85653.88,16556.63,12424.5,3298.84,32279.97,117933.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46412,65549.9,22277.52,1991.29,89818.71,18499.58,12917.0,6804.94,38221.52,128040.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,34282,117135.31,8398.71,4226.57,129760.59,23184.69,12424.5,1852.85,37462.04,167222.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",25640,78506.05,2593.34,3559.48,84658.87,16641.03,11826.45,6975.54,35443.02,120101.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,924,0.0,0.0,6391.7,6391.7,0.0,68.5,488.97,557.47,6949.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,27717,93281.1,0.0,624.0,93905.1,19354.57,12424.5,7760.44,39539.51,133444.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52078,11963.25,1559.81,578.78,14101.84,2888.53,2271.71,1085.41,6245.65,20347.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33810,47333.3,2507.07,1910.2,51750.57,11337.29,12419.01,4058.27,27814.57,79565.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1361,149099.0,0.0,7411.1,156510.1,25064.96,12424.5,4582.15,42071.61,198581.71 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,10317,59263.35,0.0,2078.96,61342.31,12606.3,11925.73,5061.19,29593.22,90935.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,32547,102298.49,2022.58,11739.48,116060.55,23261.74,11935.4,9364.16,44561.3,160621.85 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,46661,80401.34,0.0,0.0,80401.34,17208.6,5193.79,9626.31,32028.7,112430.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50981,785.18,0.0,23.42,808.6,0.0,340.48,62.6,403.08,1211.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,4645,48902.5,0.0,568.62,49471.12,10108.23,9826.11,3688.91,23623.25,73094.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,20656,39344.41,0.0,0.0,39344.41,8632.19,4300.78,3201.36,16134.33,55478.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,28508,61437.88,12300.07,10357.53,84095.48,14244.74,12159.7,6891.9,33296.34,117391.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49339,95930.92,16678.97,15100.38,127710.27,21300.6,12615.64,2129.39,36045.63,163755.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,25381,64821.61,1592.15,2435.59,68849.35,13831.9,12309.52,5684.03,31825.45,100674.8 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,37755,99654.04,0.0,0.0,99654.04,22731.78,12424.5,1694.21,36850.49,136504.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31763,24563.93,0.0,2463.99,27027.92,5275.14,2705.91,2161.8,10142.85,37170.77 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,24358,108377.47,98288.15,23484.24,230149.86,32064.97,12424.5,3653.78,48143.25,278293.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41979,40896.6,3416.5,1716.86,46029.96,11133.47,12431.25,3442.81,27007.53,73037.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,29592,83174.0,0.0,0.0,83174.0,17113.03,12424.5,6658.91,36196.44,119370.44 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,45698,62519.11,0.0,1060.0,63579.11,13095.85,12424.5,5168.05,30688.4,94267.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,45586,77071.07,1215.23,25.0,78311.3,15889.73,12424.5,6379.51,34693.74,113005.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12870,17135.25,0.0,2855.94,19991.19,0.0,1505.4,1510.88,3016.28,23007.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,27127,77846.1,0.0,1200.0,79046.1,16293.91,9927.66,5974.1,32195.67,111241.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19829,77071.0,26222.29,2579.0,105872.29,16407.97,12424.5,8625.67,37458.14,143330.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9479,118878.47,3532.81,9200.48,131611.76,23560.22,12364.77,2233.59,38158.58,169770.34 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,23684,37172.42,0.0,3000.0,40172.42,8742.19,9770.86,3308.95,21822.0,61994.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35085,54.15,0.0,0.0,54.15,0.0,17.92,4.19,22.11,76.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45691,86519.39,2928.28,12732.06,102179.73,18665.48,7402.13,6074.19,32141.8,134321.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,23279,89819.0,0.0,2143.08,91962.08,18985.67,11946.64,7419.11,38351.42,130313.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,21154,85368.06,307.4,659.0,86334.46,17731.18,12424.5,6989.63,37145.31,123479.77 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,37656,77071.02,0.0,960.0,78031.02,16081.62,12424.5,6423.9,34930.02,112961.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,3284,53103.08,970.05,979.38,55052.51,9078.77,11809.07,4417.16,25305.0,80357.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36048,8644.92,0.0,0.0,8644.92,1432.51,3748.74,699.17,5880.42,14525.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,26477,61169.62,157.42,339.6,61666.64,12597.88,12376.71,4943.78,29918.37,91585.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,43960,55855.0,3474.53,4835.33,64164.86,13183.4,12424.5,4916.13,30524.03,94688.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,4126,55034.81,0.0,250.0,55284.81,12282.41,12416.44,4475.99,29174.84,84459.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3174,42641.22,1670.67,2902.11,47214.0,11849.2,12752.14,3540.73,28142.07,75356.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",6464,148809.28,40541.95,18638.79,207990.02,32933.98,15052.76,3493.42,51480.16,259470.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,52641,27623.59,0.0,0.0,27623.59,6526.24,9073.47,2271.87,17871.58,45495.17 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,3294,208032.0,0.0,1562.5,209594.5,42181.17,12424.5,11349.28,65954.95,275549.45 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,5395,147874.76,0.0,0.0,147874.76,29697.16,12424.5,18612.93,60734.59,208609.35 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,51585,26418.02,2295.47,6724.39,35437.88,4916.38,3345.06,2765.62,11027.06,46464.94 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1471,Elections Worker,4149,23950.0,0.0,138.31,24088.31,5372.0,4778.65,1983.82,12134.47,36222.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,32288,37966.62,0.0,3151.69,41118.31,0.0,3291.3,3187.41,6478.71,47597.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17288,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1848.37,10262.14,34266.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,28892,71700.42,0.0,572.04,72272.46,14875.05,11389.75,5765.95,32030.75,104303.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49212,1616.97,0.0,25.96,1642.93,0.0,0.0,76.24,76.24,1719.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52133,54659.91,3193.07,1250.99,59103.97,12718.44,10782.73,4501.7,28002.87,87106.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,53036,39006.02,0.0,0.0,39006.02,0.0,5701.53,3023.74,8725.27,47731.29 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,14926,121005.03,0.0,0.0,121005.03,24265.6,11946.64,9408.58,45620.82,166625.85 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0655,"Counselor, Family Court Svc",21447,67166.47,0.0,6942.34,74108.81,15008.34,8028.14,5984.67,29021.15,103129.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,29139,86663.0,0.0,57.68,86720.68,17873.1,12424.5,7056.52,37354.12,124074.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44818,9036.4,0.0,1141.54,10177.94,1704.76,3918.5,817.1,6440.36,16618.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38788,61394.79,457.04,10975.1,72826.93,12516.7,6495.86,5833.21,24845.77,97672.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,40260,62563.2,1839.63,7103.42,71506.25,13978.67,12376.71,5897.05,32252.43,103758.68 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",10377,12778.87,47.28,1120.1,13946.25,0.0,0.0,1102.85,1102.85,15049.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49617,33302.76,2905.22,1937.45,38145.43,10411.46,6622.86,2726.63,19760.95,57906.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,46588,106116.01,0.0,0.0,106116.01,21870.85,12424.5,8553.21,42848.56,148964.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,22474,56280.97,214.41,0.0,56495.38,11618.37,11970.53,4364.85,27953.75,84449.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6606,784.5,0.0,7.86,792.36,0.0,427.09,61.34,488.43,1280.79 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,14896,94058.8,0.0,0.0,94058.8,19355.43,12424.5,7517.16,39297.09,133355.89 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21421,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10993.17,60806.5,246595.5 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),51746,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11061.88,61617.02,251091.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,45834,45492.54,1129.47,3009.59,49631.6,11131.08,12388.49,4001.01,27520.58,77152.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38483,5826.83,0.0,0.0,5826.83,0.0,2526.71,457.84,2984.55,8811.38 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,41440,103843.0,78.21,2520.97,106442.18,21749.03,12245.3,8513.2,42507.53,148949.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,32654,56959.74,0.0,0.0,56959.74,12733.87,12340.88,5157.67,30232.42,87192.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,6427,73075.0,856.88,0.0,73931.88,13808.53,12394.63,5946.01,32149.17,106081.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,20926,49235.0,2458.59,895.05,52588.64,10060.39,9557.33,4123.14,23740.86,76329.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29489,15282.62,2355.11,1134.41,18772.14,4814.63,3039.22,1446.95,9300.8,28072.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,23967,107978.0,8954.14,16135.01,133067.15,24765.59,12424.5,9959.4,47149.49,180216.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,9873,74165.02,0.0,0.0,74165.02,15285.75,12424.5,6151.71,33861.96,108026.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25867,28345.78,0.0,935.98,29281.76,0.0,2478.92,2266.27,4745.19,34026.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,2704,57509.02,2387.86,2162.45,62059.33,13332.3,12424.5,5018.41,30775.21,92834.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,9898,37508.33,1709.07,1061.59,40278.99,7912.8,7430.81,3211.57,18555.18,58834.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15547,112159.77,25327.27,22287.09,159774.13,26112.51,15052.75,2834.34,43999.6,203773.73 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,35997,118427.0,0.0,0.0,118427.0,23833.74,12424.5,24506.58,60764.82,179191.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24843,18300.71,0.0,23.62,18324.33,685.58,7920.21,1487.75,10093.54,28417.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,9137,16524.65,0.0,0.0,16524.65,3587.65,3233.65,1544.83,8366.13,24890.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,11622,96805.0,0.0,0.0,96805.0,19940.76,12424.5,8447.72,40812.98,137617.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47921,97762.97,9127.33,13054.19,119944.49,26235.65,12424.5,1995.66,40655.81,160600.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,615,50089.8,23323.69,8063.91,81477.4,13063.07,12424.5,6442.69,31930.26,113407.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,18933,52662.8,0.0,11504.61,64167.41,11812.28,6546.74,5204.27,23563.29,87730.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,4333,62468.89,184.74,1770.49,64424.12,13169.53,12424.5,5316.49,30910.52,95334.64 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,46733,125595.41,0.0,0.0,125595.41,25198.19,12010.67,9887.77,47096.63,172692.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,45530,37812.15,0.0,0.0,37812.15,7443.49,7735.42,3009.25,18188.16,56000.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42658,70812.47,29202.34,8541.19,108556.0,21772.03,13958.51,8503.9,44234.44,152790.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5234,49160.6,17930.13,2822.95,69913.68,11786.98,12424.5,5575.33,29786.81,99700.49 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,28366,64319.0,0.0,0.0,64319.0,13993.72,10513.04,5135.72,29642.48,93961.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,45074,155321.12,0.0,3283.39,158604.51,31923.77,12424.48,10430.43,54778.68,213383.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17841,39073.57,0.0,327.42,39400.99,91.35,0.0,1209.56,1300.91,40701.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,27312,53324.7,23962.3,13319.97,90606.97,15330.41,12424.5,7232.02,34986.93,125593.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,30768,15168.27,0.0,0.0,15168.27,0.0,4957.85,1218.92,6176.77,21345.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7220,Asphalt Finisher Supervisor 1,52829,92646.0,25081.75,6595.54,124323.29,19801.16,12424.51,9830.34,42056.01,166379.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25706,104288.84,0.0,44.49,104333.33,0.0,8963.5,8087.86,17051.36,121384.69 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,2443,63102.0,2163.77,5741.4,71007.17,13865.85,12424.5,5858.91,32149.26,103156.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,7309,25090.0,0.0,0.0,25090.0,4548.8,2389.32,3052.47,9990.59,35080.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,29922,65422.0,0.0,2868.52,68290.52,13529.67,12392.49,5653.58,31575.74,99866.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,41224,84644.0,45656.45,6020.11,136320.56,17568.81,12424.5,9949.45,39942.76,176263.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,26914,130636.48,24584.85,15684.27,170905.6,28765.59,15171.69,2912.13,46849.41,217755.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,45636,158511.58,3811.8,2318.26,164641.64,31349.42,12424.5,2751.19,46525.11,211166.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48396,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1851.75,10265.52,34269.52 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,18677,29724.2,0.0,17198.43,46922.63,7194.02,5471.56,3779.6,16445.18,63367.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36722,63170.45,5027.23,665.08,68862.76,17399.45,12439.5,5215.05,35054.0,103916.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,18418,3329.7,0.0,160.43,3490.13,0.0,525.65,270.88,796.53,4286.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,41779,97700.03,4284.04,900.25,102884.32,20187.8,12394.64,8205.3,40787.74,143672.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,21606,74.2,0.0,0.0,74.2,16.32,0.0,5.75,22.07,96.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,41766,96254.06,0.0,0.0,96254.06,19838.22,12424.5,7872.5,40135.22,136389.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,28309,64450.24,1895.88,4685.43,71031.55,13886.65,12328.92,5832.36,32047.93,103079.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,49753,28626.15,0.0,0.0,28626.15,5139.22,3990.17,2074.61,11204.0,39830.15 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,5908,45903.22,14270.04,6029.78,66203.04,11889.88,12424.5,5410.7,29725.08,95928.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40744,67822.34,9605.9,2598.78,80027.02,16042.35,13363.45,5903.93,35309.73,115336.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29577,91176.01,3779.07,4361.54,99316.62,18593.48,9497.57,1633.02,29724.07,129040.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,6023,66102.01,0.0,0.0,66102.01,13624.06,12424.5,5463.87,31512.43,97614.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,6566,86663.05,900.72,2286.0,89849.77,18347.08,12424.51,7066.63,37838.22,127687.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,45609,84644.0,5926.6,11690.98,102261.58,19194.47,12424.52,8217.88,39836.87,142098.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45113,137.63,0.0,7.34,144.97,0.0,35.84,11.25,47.09,192.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,11669,72315.51,329.18,1460.0,74104.69,15172.45,12424.5,6398.95,33995.9,108100.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,52487,47331.0,0.0,551.44,47882.44,9179.74,8123.71,3790.72,21094.17,68976.61 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,7233,9504.0,0.0,92.25,9596.25,2152.43,1433.6,795.07,4381.1,13977.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,20095,94685.21,0.0,1320.0,96005.21,19749.83,12011.03,7617.98,39378.84,135384.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,27944,127418.77,0.0,0.0,127418.77,25614.78,12186.17,9902.97,47703.92,175122.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22108,44293.87,9783.29,1831.24,55908.4,13056.23,8792.19,4163.47,26011.89,81920.29 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,44397,42413.5,0.0,0.0,42413.5,7893.14,5196.78,3284.12,16374.04,58787.54 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,8139,127381.0,0.0,0.0,127381.0,25600.9,12424.5,9855.74,47881.14,175262.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23048,117140.93,57379.89,61585.84,236106.66,23164.17,12424.51,3912.62,39501.3,275607.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,13896,119455.89,267.95,7041.07,126764.91,23662.82,12424.5,2103.37,38190.69,164955.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32589,113233.59,32634.38,9497.7,155365.67,23700.77,15196.11,2593.27,41490.15,196855.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,377C,Principal Mgmt Analyst,14273,115128.03,0.0,5838.0,120966.03,23309.69,12424.5,9414.65,45148.84,166114.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,828,79795.95,0.0,0.0,79795.95,16447.47,12424.5,6325.93,35197.9,114993.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,3479,63948.01,0.0,0.0,63948.01,12754.82,9079.44,5196.2,27030.46,90978.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,40237,73904.06,21068.36,2855.71,97828.13,15489.34,12145.43,7963.36,35598.13,133426.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,22969,55741.01,0.0,600.0,56341.01,12660.13,11946.64,4305.78,28912.55,85253.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,46528,55115.68,1130.67,6228.75,62475.1,12070.89,8412.82,5182.02,25665.73,88140.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",16578,10336.05,0.0,0.0,10336.05,0.0,2460.98,802.01,3262.99,13599.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,6375,89966.91,12368.19,11679.38,114014.48,18334.53,9557.31,1939.5,29831.34,143845.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9140,Transit Manager 1,3861,36650.43,0.0,20585.0,57235.43,993.2,4127.55,4424.25,9545.0,66780.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,44732,50319.21,0.0,0.0,50319.21,0.0,0.0,3980.37,3980.37,54299.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,42634,940.2,0.0,0.0,940.2,170.08,0.0,74.27,244.35,1184.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,8098,84167.8,31044.52,4870.52,120082.84,17631.81,12567.87,9582.42,39782.1,159864.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49658,30481.19,4273.06,1055.25,35809.5,8013.72,9503.37,2705.01,20222.1,56031.6 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,29345,90517.31,0.0,0.0,90517.31,18627.58,12424.5,7226.73,38278.81,128796.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,41384,74045.85,6146.4,965.0,81157.25,15357.7,11534.22,6522.07,33413.99,114571.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7398,Apprentice Cement Mason I,593,6248.4,0.0,0.0,6248.4,0.0,1517.21,501.64,2018.85,8267.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,12482,85004.02,14683.76,2730.79,102418.57,17519.6,12424.51,8222.69,38166.8,140585.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,32635,0.0,0.0,1969.26,1969.26,0.0,68.5,160.21,228.71,2197.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",37493,179494.7,20446.56,14359.57,214300.83,38088.64,12424.5,547.53,51060.67,265361.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2018,95695.67,38284.0,4311.12,138290.79,19501.01,9557.31,2354.66,31412.98,169703.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,43546,70697.14,0.0,0.0,70697.14,14571.03,12370.75,5570.26,32512.04,103209.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,51000,20954.93,0.0,0.0,20954.93,4160.27,4217.16,1699.63,10077.06,31031.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,11917,75605.01,11126.48,1553.08,88284.57,17676.43,12424.5,7213.28,37314.21,125598.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",13195,12836.99,0.0,0.0,12836.99,0.0,3040.43,996.11,4036.54,16873.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,7003,118427.0,0.0,0.0,118427.0,23833.74,12424.5,17970.5,54228.74,172655.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,18486,1975.8,0.0,0.0,1975.8,0.0,655.57,153.36,808.93,2784.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,28225,189343.25,0.0,0.0,189343.25,38058.83,12424.5,18263.88,68747.21,258090.46 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,53089,19854.74,0.0,5461.14,25315.88,4458.81,2368.42,2071.35,8898.58,34214.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,18047,91790.8,8451.58,16832.8,117075.18,21175.12,12448.4,1942.31,35565.83,152641.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,5399,9187.46,0.0,0.0,9187.46,0.0,3040.42,717.08,3757.5,12944.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12363,24180.95,2338.05,1010.46,27529.46,6209.74,7508.86,2083.23,15801.83,43331.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,3408,81465.31,4387.55,3172.29,89025.15,17079.08,12210.72,7330.58,36620.38,125645.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,29545,85368.08,0.0,40.0,85408.08,17597.38,12424.5,6996.97,37018.85,122426.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,22150,42790.3,0.0,960.0,43750.3,10493.0,12424.5,3623.26,26540.76,70291.06 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,14167,60558.64,1105.53,4938.86,66603.03,12644.42,11183.43,5471.73,29299.58,95902.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,14285,24828.02,399.58,0.0,25227.6,6405.6,5734.39,2036.54,14176.53,39404.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3040,22347.23,0.0,1362.1,23709.33,7000.62,4444.14,1780.0,13224.76,36934.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,30994,76241.98,0.0,0.0,76241.98,15411.68,8494.05,5814.42,29720.15,105962.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10127,115508.6,0.0,16841.19,132349.79,23617.57,10879.5,9865.27,44362.34,176712.13 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8452,Criminal Justice Specialist 2,33490,93316.4,0.0,0.0,93316.4,19285.72,12089.99,7177.93,38553.64,131870.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48638,72298.07,897.98,16350.2,89546.25,16635.83,6952.95,7166.44,30755.22,120301.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,45669,62088.8,2149.44,0.0,64238.24,13879.43,12424.52,5089.61,31393.56,95631.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,17546,44408.82,54.98,1800.0,46263.8,11062.03,12424.5,3755.19,27241.72,73505.52 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,8447,55959.03,0.0,100.0,56059.03,11274.12,6212.25,4469.7,21956.07,78015.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,2063,63445.61,0.0,0.0,63445.61,13006.96,11946.63,5031.3,29984.89,93430.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,1309,1738.46,0.0,0.0,1738.46,0.0,456.96,134.93,591.89,2330.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,9309,51130.13,26613.94,8240.22,85984.29,11068.25,6393.48,5187.69,22649.42,108633.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,29306,89123.7,31604.96,11507.41,132236.07,19657.69,12042.22,9910.54,41610.45,173846.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48668,20787.22,3081.22,749.03,24617.47,5213.77,6442.16,1882.36,13538.29,38155.76 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,23079,74248.83,0.0,5891.0,80139.83,15609.93,12424.5,6645.55,34679.98,114819.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,30158,32678.6,3261.17,278.7,36218.47,8126.63,8601.58,2947.93,19676.14,55894.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,8284,13700.98,0.0,535.49,14236.47,0.0,3006.07,1102.19,4108.26,18344.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10541,16307.39,0.0,1630.77,17938.16,1252.56,0.0,1285.76,2538.32,20476.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,38866,82717.0,0.0,0.0,82717.0,17048.47,12424.5,6325.13,35798.1,118515.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26144,70691.68,620.31,6431.19,77743.18,14413.98,6957.12,6416.31,27787.41,105530.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32916,62772.23,0.0,615.8,63388.03,12942.18,11104.4,4947.8,28994.38,92382.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,7796,72515.21,11915.5,6292.86,90723.57,15838.39,12064.31,7395.52,35298.22,126021.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,36976,57046.91,0.0,0.0,57046.91,12284.27,8553.73,4603.26,25441.26,82488.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21317,5658.13,0.0,21.44,5679.57,0.0,2180.26,440.47,2620.73,8300.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,36194,143188.05,0.0,31821.63,175009.68,28816.78,12424.5,10794.46,52035.74,227045.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,51726,26147.04,705.15,13406.41,40258.6,5995.86,5256.52,3156.56,14408.94,54667.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,4095,62811.03,208.3,13543.9,76563.23,14998.0,12424.5,6004.26,33426.76,109989.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,17006,24951.11,23444.41,3816.24,52211.76,6338.68,6301.85,4138.45,16778.98,68990.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35543,96374.99,49811.5,21023.34,167209.83,27854.92,12246.44,2803.7,42905.06,210114.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",12393,94388.0,6937.24,1956.15,103281.39,19860.34,12424.5,8446.55,40731.39,144012.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2307,97370.64,9866.93,6791.2,114028.77,25337.88,12373.62,1885.92,39597.42,153626.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13321,112159.77,73546.7,18956.0,204662.47,24855.36,15052.76,3443.31,43351.43,248013.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,1707,117120.33,395.45,6561.04,124076.82,24822.32,12382.7,9800.1,47005.12,171081.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1587,69297.84,25137.46,5450.05,99885.35,20465.86,13654.47,7765.79,41886.12,141771.47 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,21923,42287.47,10902.25,3657.0,56846.72,9538.69,9004.78,4553.87,23097.34,79944.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15400,25909.62,10086.32,308.19,36304.13,6228.52,11086.48,2845.43,20160.43,56464.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2768,56163.3,55.02,3104.06,59322.38,11429.73,8601.58,4178.18,24209.49,83531.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1996,44981.16,45.76,6839.4,51866.32,10955.77,9997.12,4056.7,25009.59,76875.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33086,57948.65,17512.62,553.83,76015.1,15186.46,13266.68,5593.95,34047.09,110062.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",43760,12877.3,0.0,0.0,12877.3,0.0,3058.32,999.48,4057.8,16935.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,16819,57638.79,0.0,2645.87,60284.66,12534.66,8028.15,4849.7,25412.51,85697.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3309,57976.59,6415.5,827.7,65219.79,15265.4,13086.29,4972.46,33324.15,98543.94 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8301,Sheriff's Property Keeper,32319,1803.6,0.0,0.0,1803.6,465.33,430.07,142.48,1037.88,2841.48 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8240,Pub Safety Communication Coord,44043,110525.49,1718.57,5808.67,118052.73,23984.36,12412.56,9635.64,46032.56,164085.29 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,45587,112209.01,0.0,0.0,112209.01,22582.31,12424.5,8787.08,43793.89,156002.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45114,31438.39,122.98,550.22,32111.59,7194.0,6186.75,2387.77,15768.52,47880.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,1866,108038.01,13520.84,13596.17,135155.02,24644.6,12424.5,9993.96,47063.06,182218.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1038,125229.14,24688.5,3978.33,153895.97,24794.16,12424.5,1691.94,38910.6,192806.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,34667,113188.93,27481.2,13537.46,154207.59,21856.72,10035.18,2623.29,34515.19,188722.78 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,13878,72711.74,0.0,0.0,72711.74,14938.07,12179.47,5782.46,32900.0,105611.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,8120,84599.0,1645.73,10850.54,97095.27,19668.83,12424.5,7777.34,39870.67,136965.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,19546,62811.01,3064.15,2830.05,68705.21,13087.4,12424.5,5666.33,31178.23,99883.44 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,17345,63024.69,6505.49,6349.48,75879.66,13661.17,12409.57,6116.38,32187.12,108066.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29040,1257.0,0.0,18076.71,19333.71,271.61,131.35,283.5,686.46,20020.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,8535,95153.55,0.0,0.0,95153.55,19600.58,12424.5,7327.45,39352.53,134506.08 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,16455,56120.03,6081.14,6528.69,68729.86,13258.71,12424.5,5600.39,31283.6,100013.46 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,38546,56284.17,3309.21,8679.02,68272.4,13596.59,11814.57,5473.0,30884.16,99156.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,18063,5731.38,5791.23,6543.08,18065.69,0.0,0.0,1430.54,1430.54,19496.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39798,8616.26,0.0,399.87,9016.13,0.0,3736.31,698.03,4434.34,13450.47 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2462,Microbiologist,25530,28600.0,0.0,0.0,28600.0,5322.47,4539.72,2266.43,12128.62,40728.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,32783,56531.0,1810.43,5387.58,63729.01,12336.34,12424.5,5005.4,29766.24,93495.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,33493,52541.95,1153.28,870.37,54565.6,6419.67,7789.21,4330.69,18539.57,73105.17 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,22632,95597.86,0.0,740.0,96337.86,19485.62,10629.52,7783.36,37898.5,134236.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,37453,105637.23,0.0,0.0,105637.23,21754.73,12311.01,8685.09,42750.83,148388.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9529,40088.91,9900.25,593.86,50583.02,9840.73,7972.41,3859.54,21672.68,72255.7 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,48544,120111.03,0.0,11591.95,131702.98,24172.55,12424.5,9966.28,46563.33,178266.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,48238,6778.25,0.0,10.47,6788.72,0.0,1392.56,526.91,1919.47,8708.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30308,68819.06,10301.34,1695.31,80815.71,19339.32,13562.36,6268.97,39170.65,119986.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35337,119450.12,16575.5,7291.61,143317.23,23683.73,12424.5,2395.05,38503.28,181820.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,38456,103075.0,0.0,0.0,103075.0,21244.17,12424.51,8410.69,42079.37,145154.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28448,100135.12,65.01,13236.63,113436.76,22792.74,9162.41,9291.2,41246.35,154683.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",21024,40292.0,0.0,11898.76,52190.76,8798.63,5352.08,4198.0,18348.71,70539.47 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,50576,67584.46,4775.89,4658.06,77018.41,14925.12,12364.77,6352.86,33642.75,110661.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8212,64821.9,20233.86,1998.95,87054.71,18311.05,12773.52,6456.12,37540.69,124595.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,6266,196584.1,0.0,0.0,196584.1,39562.78,12424.51,11076.86,63064.15,259648.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7421,Sewer Maintenance Worker,1961,71467.0,0.0,8113.83,79580.83,16404.88,12424.49,6539.89,35369.26,114950.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,47524,79860.68,5892.01,6233.92,91986.61,17410.93,12424.5,1532.86,31368.29,123354.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,45649,92440.31,0.0,589.2,93029.51,19214.49,11731.6,7484.46,38430.55,131460.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,11350,5572.3,0.0,0.0,5572.3,0.0,1797.97,432.49,2230.46,7802.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7282,Street Repair Supervisor 2,40083,101323.05,838.63,0.0,102161.68,20883.11,12424.5,8425.87,41733.48,143895.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50656,49663.27,17179.75,4315.03,71158.05,11748.38,11394.23,5466.6,28609.21,99767.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31553,97768.74,40345.18,8787.61,146901.53,25202.54,12424.51,2456.84,40083.89,186985.42 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,24413,14685.26,0.0,0.0,14685.26,0.0,4790.6,1189.54,5980.14,20665.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,28236,91298.33,0.0,0.0,91298.33,18816.37,12420.02,7198.08,38434.47,129732.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,35779,181720.7,0.0,0.0,181720.7,36576.28,12409.56,10866.28,59852.12,241572.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11879,8740.13,0.0,1055.09,9795.22,5610.0,657.67,177.22,6444.89,16240.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,27279,75605.0,20697.21,4981.82,101284.03,15764.47,12424.5,8226.07,36415.04,137699.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,28640,75605.01,1731.73,9132.3,86469.04,16623.66,12424.5,6871.13,35919.29,122388.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17962,53579.73,867.6,8136.02,62583.35,9762.38,5743.94,4988.69,20495.01,83078.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",5082,93738.0,1723.59,6396.82,101858.41,19863.82,12424.5,8044.32,40332.64,142191.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3052,97763.98,820.12,6814.98,105399.08,25435.95,12424.5,668.84,38529.29,143928.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26982,13354.4,0.0,14.88,13369.28,0.0,5108.7,1036.67,6145.37,19514.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,52682,132734.0,0.0,0.0,132734.0,26692.99,12424.5,18334.93,57452.42,190186.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21677,45276.25,0.0,0.0,45276.25,0.0,0.0,3581.44,3581.44,48857.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4464,114379.16,3691.7,7234.84,125305.7,22588.46,12424.51,1883.52,36896.49,162202.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,39283,58705.58,0.0,918.52,59624.1,12160.95,11111.86,4717.65,27990.46,87614.56 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,25433,61735.01,0.0,624.0,62359.01,12852.62,12424.5,4925.52,30202.64,92561.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,19888,81942.02,168.83,16442.64,98553.49,19529.41,12424.5,8587.52,40541.43,139094.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48866,1904.88,0.0,0.0,1904.88,0.0,928.85,147.77,1076.62,2981.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,51278,107787.68,0.0,0.0,107787.68,21927.6,12424.5,16696.46,51048.56,158836.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44352,6667.11,0.0,0.0,6667.11,0.0,2891.08,531.1,3422.18,10089.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,37204,56348.03,82.46,0.0,56430.49,12567.85,12424.5,4589.37,29581.72,86012.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,9724,101323.06,0.0,5695.95,107019.01,22170.75,12424.5,8785.94,43381.19,150400.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18312,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,16274,97459.09,4298.34,9931.3,111688.73,26132.46,12385.32,1194.48,39712.26,151400.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,33563,31239.0,0.0,0.0,31239.0,5470.79,10274.1,2421.85,18166.74,49405.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,49746,84870.45,0.0,0.0,84870.45,0.0,5797.09,5516.13,11313.22,96183.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,45967,7081.45,0.0,39.26,7120.71,0.0,1408.87,552.18,1961.05,9081.76 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,12300,172954.16,0.0,0.0,172954.16,34754.55,12424.5,18007.0,65186.05,238140.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,9495,26429.53,474.3,1300.05,28203.88,5681.1,6104.72,2188.58,13974.4,42178.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4876,0.0,0.0,1123.18,1123.18,0.0,0.0,85.93,85.93,1209.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38198,54107.99,11415.23,865.02,66388.24,14964.75,10644.63,5129.6,30738.98,97127.22 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,2202,67261.02,0.0,1909.0,69170.02,14230.26,12424.5,5467.88,32122.64,101292.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,40855,66102.12,8047.16,836.34,74985.62,13796.24,12424.5,6573.97,32794.71,107780.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11327,149099.0,1141.38,42454.39,192694.77,40457.62,12424.5,3566.12,56448.24,249143.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30574,65903.33,9292.34,1110.85,76306.52,18325.35,12984.8,5736.04,37046.19,113352.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,37772,49360.48,0.0,40.0,49400.48,4772.43,11309.94,4004.19,20086.56,69487.04 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0649,Probate Examiner,51268,78760.6,0.0,3000.0,81760.6,15787.53,9413.95,7074.22,32275.7,114036.3 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,34910,85372.5,0.0,0.0,85372.5,17465.03,11468.89,6979.72,35913.64,121286.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,12766,107174.21,0.0,0.0,107174.21,21872.07,12424.5,8720.37,43016.94,150191.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,19295,87531.0,0.0,0.0,87531.0,18040.63,12424.5,7038.52,37503.65,125034.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,4099,64455.8,14713.96,19237.03,98406.79,16232.01,12424.5,7688.66,36345.17,134751.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,30972,45188.09,0.0,7976.87,53164.96,10144.32,6893.93,4389.34,21427.59,74592.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35029,9238.02,1789.86,63.08,11090.96,1641.64,955.73,186.31,2783.68,13874.64 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,24355,202720.52,0.0,0.0,202720.52,40737.89,12424.5,26212.46,79374.85,282095.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,47068,14389.65,77.59,1552.06,16019.3,3887.39,3655.68,1270.92,8813.99,24833.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12128,10814.38,0.0,510.97,11325.35,0.0,4627.82,916.86,5544.68,16870.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,41666,30254.57,3583.44,1849.34,35687.35,7812.86,6978.33,2902.4,17693.59,53380.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,39520,58972.05,0.0,43147.81,102119.86,14237.28,6881.27,1637.92,22756.47,124876.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,5357,18372.22,1227.4,270.75,19870.37,1689.52,6079.94,1612.37,9381.83,29252.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,11153,84621.6,14095.12,5235.85,103952.57,17614.09,12424.5,8158.07,38196.66,142149.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,13210,70159.72,6470.31,1000.0,77630.03,14636.49,11946.64,6329.92,32913.05,110543.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,40732,36784.5,6857.64,4318.58,47960.72,8324.53,6546.76,3938.49,18809.78,66770.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5638,34509.88,0.0,1396.21,35906.09,6509.76,3500.37,1908.16,11918.29,47824.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26483,64820.53,438.65,8095.42,73354.6,13513.46,6102.75,5761.41,25377.62,98732.22 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,41318,174443.34,0.0,4500.0,178943.34,35114.86,9939.6,10721.95,55776.41,234719.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,46350,86663.01,1856.13,1434.95,89954.09,18062.03,12424.51,7271.2,37757.74,127711.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,37765,7840.0,0.0,40.0,7880.0,1732.8,1911.46,628.21,4272.47,12152.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,48302,11676.7,0.0,0.0,11676.7,2173.05,2341.54,926.5,5441.09,17117.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,21943,4145.84,0.0,0.0,4145.84,0.0,1482.88,332.4,1815.28,5961.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,31414,67261.09,0.0,624.0,67885.09,13987.79,12424.5,5560.75,31973.04,99858.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,53041,68308.91,2000.87,4324.94,74634.72,14878.91,12376.71,6166.93,33422.55,108057.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,18523,98157.04,0.0,0.0,98157.04,20230.6,12424.5,8014.97,40670.07,138827.11 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,47813,52883.79,0.0,0.0,52883.79,1282.6,7495.02,4132.08,12909.7,65793.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28548,112467.62,805.87,8530.4,121803.89,22292.18,12400.61,2023.69,36716.48,158520.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33366,29871.3,0.0,0.0,29871.3,6088.67,4587.51,2325.16,13001.34,42872.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36047,112071.51,572.03,4597.1,117240.64,22222.5,12357.18,1995.91,36575.59,153816.23 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,34647,99654.02,785.61,0.0,100439.63,22731.79,12424.51,1707.72,36864.02,137303.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3318,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1837.63,10251.4,34255.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2915,Program Specialist Supervisor,25899,91876.99,0.0,0.0,91876.99,18810.02,11547.08,6777.97,37135.07,129012.06 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,27931,82449.43,13990.8,7025.61,103465.84,17665.64,10926.87,8501.95,37094.46,140560.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,47727,186500.8,0.0,1746.44,188247.24,32597.3,12424.5,5926.95,50948.75,239195.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,52702,90217.87,6802.53,10810.63,107831.03,23908.7,11468.78,1823.03,37200.51,145031.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,47702,5999.4,0.0,0.0,5999.4,0.0,1576.95,464.47,2041.42,8040.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,45440,21815.2,0.0,0.0,21815.2,0.0,3870.71,1692.0,5562.71,27377.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,39193,85035.35,16416.85,2030.0,103482.2,17948.78,12424.5,8467.75,38841.03,142323.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49206,61145.56,3164.12,3157.82,67467.5,17447.48,12034.2,5249.57,34731.25,102198.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,9812,13076.66,0.0,33.75,13110.41,2882.97,4299.3,1048.58,8230.85,21341.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,18513,72979.97,5261.29,0.0,78241.26,15023.74,12259.34,6421.61,33704.69,111945.95 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,12308,61428.0,0.0,0.0,61428.0,12660.6,12424.5,5029.14,30114.24,91542.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1023,IS Administrator 3,34247,89781.0,0.0,555.22,90336.22,18840.85,10513.04,7356.29,36710.18,127046.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,28067,91820.01,0.0,0.0,91820.01,19043.4,9557.31,7254.89,35855.6,127675.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16617,140033.71,1562.99,5082.61,146679.31,27726.25,12424.51,2490.81,42641.57,189320.88 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45746,129607.31,0.0,1562.5,131169.81,26372.13,12424.5,9904.65,48701.28,179871.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46724,66752.29,6388.38,2859.63,76000.3,19080.63,13154.15,5890.16,38124.94,114125.24 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,7716,129895.07,0.0,49.65,129944.72,26141.52,12424.5,9934.64,48500.66,178445.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,37793,112170.35,67233.09,19642.94,199046.38,25066.56,15052.76,3395.86,43515.18,242561.56 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,1381,51925.0,0.0,3201.83,55126.83,13219.45,12424.5,4266.09,29910.04,85036.87 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,24774,45484.0,0.0,4488.1,49972.1,10264.91,6546.76,4064.52,20876.19,70848.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4773,6511.94,0.0,30.91,6542.85,0.0,2171.31,507.82,2679.13,9221.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13641,77071.01,0.0,0.0,77071.01,15884.7,12424.5,6227.26,34536.46,111607.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,51099,66102.08,7436.81,836.34,74375.23,13796.22,12424.5,5726.32,31947.04,106322.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15565,700.73,18.92,171.95,891.6,199.94,221.19,56.14,477.27,1368.87 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,26441,44046.51,0.0,0.0,44046.51,1080.12,7406.91,3499.23,11986.26,56032.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,25939,73521.8,8197.02,7414.64,89133.46,15436.55,10465.25,6207.76,32109.56,121243.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,19885,91741.88,3816.54,11639.43,107197.85,18737.92,9557.3,1816.44,30111.66,137309.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,6530,53155.0,0.0,0.0,53155.0,9636.98,3822.91,6551.75,20011.64,73166.64 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,5198,4870.0,0.0,12103.25,16973.25,1103.1,955.73,1329.4,3388.23,20361.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,4299,81157.0,23592.27,21515.32,126264.59,20096.44,12424.51,9759.18,42280.13,168544.72 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,12475,1433.32,242.25,0.0,1675.57,0.0,424.1,130.05,554.15,2229.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,12952,7111.7,0.0,0.0,7111.7,0.0,2353.49,551.71,2905.2,10016.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,44440,19749.03,3645.68,500.14,23894.85,3572.58,1433.6,63.47,5069.65,28964.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,34322,51405.0,18.57,3144.24,54567.81,12644.0,12424.5,4460.94,29529.44,84097.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,35245,78019.97,14785.58,3220.38,96025.93,16079.64,11445.71,7495.29,35020.64,131046.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,15198,66102.01,6145.2,2333.29,74580.5,14035.81,12424.5,6140.7,32601.01,107181.51 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,40745,106116.0,0.0,0.0,106116.0,21882.46,12424.5,8677.07,42984.03,149100.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,49548,3283.18,0.0,4.09,3287.27,0.0,1535.14,254.96,1790.1,5077.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,22557,62187.03,17371.67,0.0,79558.7,12816.97,12424.5,6535.84,31777.31,111336.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42618,110366.17,1422.49,1375.0,113163.66,22581.19,11556.16,8975.89,43113.24,156276.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40519,109891.53,8279.54,10249.9,128420.97,21834.16,12118.07,2331.98,36284.21,164705.18 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,16371,30559.5,281.21,1914.44,32755.15,6043.77,4539.72,2511.58,13095.07,45850.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,16856,81942.02,21388.99,17615.44,120946.45,20102.84,12424.5,9590.02,42117.36,163063.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52431,3839.78,0.0,0.0,3839.78,0.0,1665.06,304.75,1969.81,5809.59 +Calendar,2015,4,Community Health,DPH,Public Health,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,2433,52456.28,683.31,26.5,53166.09,10346.04,7490.54,4153.86,21990.44,75156.53 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9412,28245.0,0.0,0.0,28245.0,7193.89,7167.99,2299.12,16661.0,44906.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51365,31990.0,4309.95,974.7,37274.65,6549.97,7167.99,2989.04,16707.0,53981.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,34194,18159.41,191.1,0.0,18350.51,4685.11,4683.08,1423.13,10791.32,29141.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31252,102647.69,0.0,15132.43,117780.12,21734.91,10784.83,9612.02,42131.76,159911.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,10539,158707.06,0.0,0.0,158707.06,31940.4,12424.5,17692.59,62057.49,220764.55 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,9025,129308.02,0.0,0.0,129308.02,26023.62,12424.5,9976.54,48424.66,177732.68 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,48720,82654.57,0.0,0.0,82654.57,16787.86,10802.21,6606.28,34196.35,116850.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,23509,45250.0,108.38,0.0,45358.38,8816.78,7645.85,3643.22,20105.85,65464.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,18014,34386.02,0.0,12585.28,46971.3,7712.76,5256.52,3836.33,16805.61,63776.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,22915,59576.0,0.0,641.7,60217.7,10921.88,6212.25,8668.63,25802.76,86020.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",8564,13423.64,0.0,0.0,13423.64,0.0,3183.77,1041.5,4225.27,17648.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,18109,54813.6,519.4,1666.26,56999.26,12406.54,12424.5,4554.91,29385.95,86385.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",43221,182293.0,0.0,0.0,182293.0,36686.83,12424.5,18117.36,67228.69,249521.69 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,7977,88296.02,0.0,5591.36,93887.38,18393.8,12424.5,7789.93,38608.23,132495.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,52963,49679.0,0.0,5158.24,54837.24,12559.19,12424.5,5033.65,30017.34,84854.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,13243,87531.01,0.0,0.0,87531.01,18040.63,12424.5,7216.23,37681.36,125212.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,8255,2074.0,0.0,207.4,2281.4,424.57,477.86,177.08,1079.51,3360.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",50911,130329.32,70413.62,16853.87,217596.81,28943.44,15052.76,3668.23,47664.43,265261.24 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4334,"Investigator, Tax Collector",433,85857.01,1230.76,0.0,87087.77,17695.55,12424.5,7074.96,37195.01,124282.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3144,48071.94,0.0,7035.24,55107.18,12481.47,12254.74,4417.39,29153.6,84260.78 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9770,Community Development Asst,36794,54830.61,0.0,0.0,54830.61,11400.39,11415.01,4565.76,27381.16,82211.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11478,106902.95,8814.76,18010.5,133728.21,23649.68,14346.95,2222.72,40219.35,173947.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24075,69466.39,23005.28,1737.63,94209.3,19486.72,13689.48,7101.57,40277.77,134487.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27915,4137.49,0.0,0.0,4137.49,1013.28,1290.24,317.94,2621.46,6758.95 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,28944,100554.06,0.0,2200.0,102754.06,21151.66,12424.5,8204.18,41780.34,144534.4 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20535,40885.0,66.73,0.0,40951.73,9710.14,10990.9,3237.21,23938.25,64889.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,24015,28260.54,3735.97,2300.2,34296.71,5667.36,5196.79,2831.56,13695.71,47992.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6216,10533.5,0.0,87.8,10621.3,0.0,4040.94,823.5,4864.44,15485.74 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,49667,23834.0,0.0,0.0,23834.0,4435.5,3345.06,1838.23,9618.79,33452.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22883,130945.79,0.0,778.91,131724.7,26404.37,11592.0,9973.82,47970.19,179694.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,7215,4832.18,0.0,143.59,4975.77,1094.18,1045.33,402.7,2542.21,7517.98 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,40541,83608.66,0.0,160.0,83768.66,16542.02,9551.35,6855.51,32948.88,116717.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,25243,30192.0,3476.21,2595.84,36264.05,6022.67,4874.23,2915.41,13812.31,50076.36 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,34804,15267.0,1001.72,291.9,16560.62,0.0,3831.89,1285.37,5117.26,21677.88 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,22679,54526.22,4232.07,6662.44,65420.73,12021.21,10735.55,5386.15,28142.91,93563.64 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,49045,44170.06,0.0,416.93,44586.99,9189.12,6747.35,3565.54,19502.01,64089.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,31738,85368.03,0.0,0.0,85368.03,17603.96,12424.5,7081.58,37110.04,122478.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9593,93269.3,5113.46,750.28,99133.04,19196.82,12424.5,8159.99,39781.31,138914.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,32428,72876.01,21653.28,491.79,95021.08,15113.79,12424.53,7616.54,35154.86,130175.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42793,64456.62,8850.13,2246.74,75553.49,18274.53,12705.79,5633.29,36613.61,112167.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26488,20112.04,0.0,48.61,20160.65,0.0,4999.68,1562.81,6562.49,26723.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16581,56531.0,0.0,5789.69,62320.69,12400.68,12424.5,5116.14,29941.32,92262.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19833,98237.98,1761.1,9376.18,109375.26,20408.25,13181.8,1957.93,35547.98,144923.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,32513,112209.03,0.0,0.0,112209.03,22870.16,12424.5,9231.36,44526.02,156735.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23934,56531.01,136.56,2562.64,59230.21,11906.96,12424.5,4906.0,29237.46,88467.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47555,73090.87,10489.2,7251.72,90831.79,16083.39,15100.54,1493.85,32677.78,123509.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,48941,64707.9,30479.51,14437.16,109624.57,15699.21,12472.28,8922.45,37093.94,146718.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,42805,52964.6,0.0,0.0,52964.6,9067.29,12424.5,4014.61,25506.4,78471.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,15703,78117.43,0.0,0.0,78117.43,15573.18,9079.44,6177.44,30830.06,108947.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,24526,9216.14,0.0,0.0,9216.14,0.0,0.0,728.84,728.84,9944.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,35126,111918.12,11848.73,2422.42,126189.27,23020.51,12424.52,9888.15,45333.18,171522.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,17152,63102.0,0.0,281.28,63383.28,13058.18,12424.5,5003.78,30486.46,93869.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6765,10238.15,0.0,311.01,10549.16,0.0,4378.44,849.14,5227.58,15776.74 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,40241,128384.71,0.0,0.0,128384.71,25810.08,12257.25,17070.28,55137.61,183522.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,42345,26576.49,0.0,0.0,26576.49,5961.12,3972.26,2231.76,12165.14,38741.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,17464,135835.8,50200.84,9430.46,195467.1,26836.26,12388.67,3297.18,42522.11,237989.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37337,144425.08,0.0,7767.39,152192.47,30297.55,12400.61,5433.67,48131.83,200324.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5216,Chief Surveyor,33934,126490.1,0.0,0.0,126490.1,25456.42,12424.5,9923.8,47804.72,174294.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,12458,16730.0,0.0,0.0,16730.0,3752.55,2389.33,1292.22,7434.1,24164.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,52966,119463.82,38725.79,3778.81,161968.42,23633.49,12424.5,2705.06,38763.05,200731.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7249,Automotive Mechanic Sprv 1,17258,45052.9,11726.41,7790.76,64570.07,9913.72,5208.73,5088.03,20210.48,84780.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33457,68109.06,20310.59,2399.44,90819.09,19295.36,13420.79,7048.54,39764.69,130583.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36900,11052.0,56.9,426.54,11535.44,0.0,4730.87,874.84,5605.71,17141.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36089,97653.11,1009.59,20136.85,118799.55,21596.58,9478.82,9026.42,40101.82,158901.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,18807,105814.36,0.0,0.0,105814.36,21767.22,12314.95,7682.51,41764.68,147579.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,47354,41077.73,0.0,3693.8,44771.53,9186.27,9056.44,3711.94,21954.65,66726.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",2253,143903.8,120550.5,22948.27,287402.57,32666.32,15052.76,4855.02,52574.1,339976.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,48138,94499.65,0.0,0.0,94499.65,19042.3,9246.69,7586.18,35875.17,130374.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51679,20961.18,3859.42,358.37,25178.97,5158.46,6494.13,1861.48,13514.07,38693.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21502,40982.88,4578.18,955.65,46516.71,10879.28,12763.26,3483.99,27126.53,73643.24 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,28472,1936.88,0.0,106.87,2043.75,438.86,298.66,33.3,770.82,2814.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26018,21609.28,0.0,336.55,21945.83,5332.78,1684.0,626.23,7643.01,29588.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,36430,8569.26,0.0,0.0,8569.26,0.0,3106.13,664.11,3770.24,12339.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18979,70161.17,0.0,0.0,70161.17,14483.27,11680.35,5598.73,31762.35,101923.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,11030,81991.55,0.0,0.0,81991.55,16877.98,10698.21,6594.94,34171.13,116162.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9203,Sr Airport Communications Disp,39843,92251.47,8144.13,5635.92,106031.52,19292.09,12352.82,8454.66,40099.57,146131.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16843,11004.85,0.0,1816.09,12820.94,3015.85,955.79,581.19,4552.83,17373.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,51587,97793.03,1329.91,19026.43,118149.37,23301.7,12424.5,9687.86,45414.06,163563.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,23077,14856.0,0.0,0.0,14856.0,3332.2,1911.46,1107.26,6350.92,21206.92 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,9619,74107.05,0.0,0.0,74107.05,15270.23,11888.4,5931.54,33090.17,107197.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,36569,61593.43,76.7,622.57,62292.7,12817.14,12395.83,5159.44,30372.41,92665.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,52170,74165.07,0.0,40.0,74205.07,15289.16,12424.5,5890.38,33604.04,107809.11 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,31646,96206.49,0.0,0.0,96206.49,19722.5,11798.02,7579.62,39100.14,135306.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,34614,0.0,0.0,75.48,75.48,0.0,68.5,5.77,74.27,149.75 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,7479,2236.0,0.0,638.1,2874.1,587.27,477.86,221.96,1287.09,4161.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,12507,71311.05,0.0,0.0,71311.05,14697.59,12424.5,5662.93,32785.02,104096.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39469,5523.78,0.0,0.0,5523.78,781.86,2395.3,437.11,3614.27,9138.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,7565,9896.0,0.0,0.0,9896.0,1841.64,1911.46,786.95,4540.05,14436.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,20427,49366.51,218.5,3938.56,53523.57,10389.36,10845.7,4398.25,25633.31,79156.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28812,3020.3,0.0,88.54,3108.84,0.0,752.64,240.81,993.45,4102.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8312,Sheriff's Captain,19522,156528.01,2148.4,18168.08,176844.49,41336.46,12424.75,2228.62,55989.83,232834.32 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,15864,354.7,0.0,0.0,354.7,0.0,47.79,27.53,75.32,430.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21783,119542.45,49973.27,20447.65,189963.37,23665.87,12424.5,2999.06,39089.43,229052.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,47553,75484.71,44447.96,11678.61,131611.28,16745.55,12404.61,9834.57,38984.73,170596.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,2389,70911.2,0.0,25517.03,96428.23,15557.86,6546.73,7782.77,29887.36,126315.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36496,44553.22,0.0,5222.56,49775.78,11585.33,11833.56,4036.95,27455.84,77231.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,44264,65341.31,1647.73,4040.37,71029.41,13736.02,12376.71,5618.17,31730.9,102760.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42505,6428.48,0.0,329.67,6758.15,3898.87,519.86,160.24,4578.97,11337.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,35826,63823.98,366.3,0.0,64190.28,13155.67,12412.56,5322.5,30890.73,95081.01 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,48053,85004.01,5699.28,5970.16,96673.45,18752.73,12424.5,8111.73,39288.96,135962.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41134,10097.08,0.0,976.49,11073.57,1939.91,4378.44,870.44,7188.79,18262.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,28126,30627.02,0.0,0.0,30627.02,6869.63,4300.78,2525.75,13696.16,44323.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24277,701.67,0.0,0.0,701.67,0.02,0.0,10.35,10.37,712.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38763,76335.09,14853.7,7175.45,98364.24,16608.21,15052.76,1638.9,33299.87,131664.11 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,37716,75130.48,3466.58,1325.0,79922.06,15772.9,12117.71,6600.36,34490.97,114413.03 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,29325,36103.8,0.0,5360.25,41464.05,6376.87,0.0,6543.78,12920.65,54384.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46128,62468.8,13087.07,3976.09,79531.96,13167.03,12424.5,6455.5,32047.03,111578.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,321,7002.05,0.0,542.18,7544.23,0.0,1905.19,584.22,2489.41,10033.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,12323,38971.54,0.0,0.0,38971.54,0.0,0.0,3082.19,3082.19,42053.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30748,57564.44,898.89,7424.92,65888.25,897.52,4366.5,1685.31,6949.33,72837.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25849,21096.92,2783.17,786.58,24666.67,5295.71,6535.28,1886.18,13717.17,38383.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7486,44885.86,4917.35,1328.17,51131.38,13344.81,8442.46,2295.89,24083.16,75214.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49348,21166.69,0.0,1047.92,22214.61,0.0,5658.22,1722.09,7380.31,29594.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37020,26566.29,0.0,6305.02,32871.31,814.22,0.0,6070.68,6884.9,39756.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42276,91749.8,41028.89,2465.79,135244.48,19080.23,9557.31,2260.37,30897.91,166142.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,26377,54579.81,0.0,932.98,55512.79,13295.84,12424.5,4512.0,30232.34,85745.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,8372,41685.48,0.0,543.11,42228.59,10183.94,9718.59,3187.76,23090.29,65318.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,39636,97170.23,0.0,0.0,97170.23,19956.41,11952.61,7332.53,39241.55,136411.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,44606,15572.06,66.19,0.0,15638.25,2686.86,4139.51,1241.55,8067.92,23706.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22271,87361.43,0.0,3622.04,90983.47,18345.98,7739.33,6001.9,32087.21,123070.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,47169,26136.0,626.18,6189.63,32951.81,5771.07,5734.39,2520.1,14025.56,46977.37 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,31715,0.0,0.0,5225.61,5225.61,0.0,0.0,399.76,399.76,5625.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51813,96748.76,3016.79,13199.52,112965.07,19612.24,10074.9,1892.49,31579.63,144544.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15682,148529.11,0.0,13844.56,162373.67,29693.82,12376.71,5344.37,47414.9,209788.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,52331,69984.85,0.0,0.0,69984.85,15217.7,6765.8,5650.41,27633.91,97618.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13745,108335.43,4825.89,641.74,113803.06,21881.41,9891.69,9373.58,41146.68,154949.74 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,36227,57314.92,41.36,5883.27,63239.55,13537.4,12388.66,4870.27,30796.33,94035.88 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,27729,147391.3,0.0,0.0,147391.3,29514.44,12424.5,17506.21,59445.15,206836.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,31093,8819.11,0.0,0.0,8819.11,2275.34,1959.25,715.8,4950.39,13769.5 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,45083,46531.04,160.72,0.0,46691.76,11071.74,9079.44,3801.22,23952.4,70644.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,47254,63887.02,0.0,2258.71,66145.73,13620.13,12424.5,5469.29,31513.92,97659.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,44489,113852.01,0.0,0.0,113852.01,22913.02,12424.5,9320.96,44658.48,158510.49 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33936,97764.07,2792.67,17896.65,118453.39,27388.92,12424.52,2015.62,41829.06,160282.45 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,49893,79264.87,0.0,2650.95,81915.82,16883.69,12472.29,6451.31,35807.29,117723.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,21587,9184.83,0.0,242.76,9427.59,2268.84,0.0,607.71,2876.55,12304.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,20377,62758.51,0.0,0.0,62758.51,12917.32,12203.67,5209.39,30330.38,93088.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,7686,56531.01,1670.98,641.97,58843.96,11783.98,12424.5,4619.26,28827.74,87671.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,8907,69458.74,4632.94,6786.98,80878.66,15218.28,9712.8,1322.64,26253.72,107132.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,42371,85368.01,1055.99,0.0,86424.0,17594.59,12424.5,7113.34,37132.43,123556.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25057,95440.14,35189.53,16410.06,147039.73,27177.06,12137.78,2474.56,41789.4,188829.13 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,1619,93227.75,19776.01,5467.2,118470.96,19619.26,12364.77,9732.99,41717.02,160187.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42054,59024.42,13953.35,2010.43,74988.2,16554.33,11623.54,5809.22,33987.09,108975.29 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",9113,69770.13,0.0,375.0,70145.13,12717.3,4300.79,1342.09,18360.18,88505.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9300,Port Operation,9376,"Market Research Spec, Port",45086,96254.01,0.0,0.0,96254.01,19838.21,12424.5,7860.57,40123.28,136377.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,8532,64463.73,11705.95,13783.22,89952.9,15298.13,12424.49,7122.99,34845.61,124798.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,37201,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,3398,71835.04,0.0,0.0,71835.04,15523.44,7167.99,5450.29,28141.72,99976.76 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),31530,154295.0,0.0,1500.0,155795.0,31300.09,12424.5,10333.24,54057.83,209852.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,45840,209576.01,0.0,0.0,209576.01,42117.55,12424.5,18590.66,73132.71,282708.72 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,21784,19054.12,825.01,0.0,19879.13,0.0,4562.12,1540.97,6103.09,25982.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21106,14843.64,659.98,71.97,15575.59,0.0,5125.14,1207.54,6332.68,21908.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,22353,142582.42,6512.86,13799.36,162894.64,29184.14,9461.74,3985.26,42631.14,205525.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48795,67520.8,9500.63,5706.68,82728.11,20032.87,13303.9,6328.23,39665.0,122393.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10886,61730.94,475.31,2966.84,65173.09,13011.2,10917.91,5126.03,29055.14,94228.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30901,66503.63,13886.91,5225.13,85615.67,19645.75,13106.95,6431.48,39184.18,124799.85 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,15244,110552.08,0.0,0.0,110552.08,22520.9,12394.64,16667.45,51582.99,162135.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9141,Transit Manager 2,12025,122732.7,0.0,254.44,122987.14,24732.84,12424.5,9831.27,46988.61,169975.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5631,91627.28,13396.27,10084.42,115107.97,20040.78,12426.59,1939.08,34406.45,149514.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",34756,39413.01,1111.98,1378.0,41902.99,9028.87,5256.52,3476.32,17761.71,59664.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",39422,64944.0,20582.37,3149.66,88676.03,14652.57,8601.59,7111.24,30365.4,119041.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,33113,149478.91,0.0,0.0,149478.91,29858.27,11468.78,16536.71,57863.76,207342.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33639,101835.33,552.24,5932.75,108320.32,21063.45,15052.75,1897.56,38013.76,146334.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,38009,81157.0,23447.25,20508.01,125112.26,20060.2,12424.51,9786.57,42271.28,167383.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37034,27619.99,3235.86,934.95,31790.8,7152.27,8595.91,2384.24,18132.42,49923.22 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,31347,67911.02,0.0,5018.87,72929.89,14498.72,12424.5,5977.83,32901.05,105830.94 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),1262,130539.04,0.0,1500.0,132039.04,26562.86,12424.5,10010.35,48997.71,181036.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27569,144706.0,0.0,10649.33,155355.33,29223.4,12424.5,9981.4,51629.3,206984.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,45448,87008.7,0.0,4665.6,91674.3,17855.67,6546.76,6914.81,31317.24,122991.54 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),17765,110038.6,0.0,1500.0,111538.6,22722.88,12424.5,8953.39,44100.77,155639.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,47872,68636.92,11866.67,4949.48,85453.07,15048.51,12460.34,1358.72,28867.57,114320.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,20883,26262.26,0.0,0.0,26262.26,5474.44,4151.81,2164.85,11791.1,38053.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5218,Structural Engineer,45774,149312.02,0.0,0.0,149312.02,30049.2,12424.63,10331.14,52804.97,202116.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,33329,1513.88,0.0,736.89,2250.77,390.58,435.27,165.28,991.13,3241.9 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,23814,23307.0,0.0,0.0,23307.0,4337.43,3345.06,1850.63,9533.12,32840.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30328,68248.89,9315.07,5516.7,83080.66,20216.97,13447.49,6448.62,40113.08,123193.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,42019,30450.74,0.0,0.0,30450.74,6830.13,5172.89,2467.84,14470.86,44921.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,33859,2567.53,0.0,3992.65,6560.18,581.04,456.96,509.34,1547.34,8107.52 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,40650,190705.03,1162.3,10151.66,202018.99,39335.54,12424.5,11192.07,62952.11,264971.1 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,51745,79395.01,0.0,0.0,79395.01,16363.74,12424.5,6460.19,35248.43,114643.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47697,119492.72,8063.81,18372.04,145928.57,26414.61,15148.34,2452.44,44015.39,189943.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,27583,42602.0,2748.75,7548.25,52899.0,9050.75,6212.25,4240.61,19503.61,72402.61 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,17746,72618.22,0.0,0.0,72618.22,14949.56,12424.5,5685.87,33059.93,105678.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,28012,91663.8,26552.96,5992.03,124208.79,19475.08,12567.87,9813.47,41856.42,166065.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,49368,46215.08,0.0,832.4,47047.48,9729.7,9306.43,3837.43,22873.56,69921.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18064,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1851.75,10265.53,34269.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,8076,2602.0,0.0,0.0,2602.0,583.63,477.86,200.66,1262.15,3864.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6909,47427.72,0.0,4319.08,51746.8,11241.89,10545.18,4055.38,25842.45,77589.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,32530,93322.91,0.0,1145.07,94467.98,19463.18,12376.71,7777.41,39617.3,134085.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,28113,29136.0,344.93,0.0,29480.93,6711.03,8123.71,2197.97,17032.71,46513.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,23873,186698.52,2541.82,1329.13,190569.47,37785.84,12341.17,10982.04,61109.05,251678.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2456,Asst Forensic Toxicologist 1,18498,110338.04,0.0,1541.64,111879.68,22221.33,12424.5,9191.97,43837.8,155717.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2519,10431.93,1878.99,319.47,12630.39,3029.58,3292.97,902.92,7225.47,19855.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46844,4875.75,0.0,2519.17,7394.92,90.32,0.0,2575.44,2665.76,10060.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,18394,65187.04,83.24,0.0,65270.28,13412.95,12424.5,5361.24,31198.69,96468.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,3458,56463.0,0.0,0.0,56463.0,11001.49,7645.84,4522.39,23169.72,79632.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,22642,55162.12,0.0,0.0,55162.12,11364.42,12376.71,4487.73,28228.86,83390.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,49394,4405.01,0.0,3495.57,7900.58,996.09,714.53,628.58,2339.2,10239.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,14169,0.0,0.0,881.21,881.21,0.0,34.25,67.42,101.67,982.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,10970,62468.8,843.34,938.54,64250.68,12998.08,12424.5,5246.35,30668.93,94919.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,39545,4017.75,0.0,2.04,4019.79,0.0,1878.6,311.76,2190.36,6210.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19640,27714.6,0.0,4619.17,32333.77,8548.34,0.0,4699.36,13247.7,45581.47 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,13866,103265.25,0.0,7476.84,110742.09,17025.11,6066.32,-4186.63,18904.8,129646.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,44722,62.01,0.0,0.0,62.01,11.24,5.97,5.32,22.53,84.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,38465,117135.34,7036.35,5736.01,129907.7,23184.68,12424.5,2212.64,37821.82,167729.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,49223,39312.64,332.09,500.0,40144.73,9617.18,10683.21,3275.44,23575.83,63720.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,5426,64330.19,0.0,812.3,65142.49,13410.34,12191.6,5388.55,30990.49,96132.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,14652,81776.04,0.0,1064.0,82840.04,17072.77,12424.5,6555.04,36052.31,118892.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,51723,32893.7,9929.94,15571.54,58395.18,8356.57,6546.76,4704.47,19607.8,78002.98 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,2948,78963.09,0.0,3553.1,82516.19,17005.28,12424.5,6538.21,35967.99,118484.18 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,49032,56276.01,40.63,2365.54,58682.18,12819.46,12424.5,4284.14,29528.1,88210.28 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,6602,46278.38,0.0,0.0,46278.38,0.0,0.0,3660.91,3660.91,49939.29 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,20023,2365.06,0.0,0.0,2365.06,518.89,159.79,183.1,861.78,3226.84 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,26800,67377.82,0.0,0.0,67377.82,13874.04,12424.5,5085.12,31383.66,98761.48 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,16476,135526.06,0.0,0.0,135526.06,27071.16,11468.76,9377.31,47917.23,183443.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,21467,11672.0,0.0,96.0,11768.0,2190.04,1911.46,809.34,4910.84,16678.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12863,113233.61,26203.15,19135.81,158572.57,25075.55,15196.12,2648.96,42920.63,201493.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,11674,21287.0,1140.37,0.0,22427.37,4774.7,3345.08,1803.07,9922.85,32350.22 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,18999,234694.37,0.0,0.0,234694.37,47214.76,12418.57,11739.58,71372.91,306067.28 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,5691,73063.04,0.0,0.0,73063.04,15058.73,12424.5,5785.96,33269.19,106332.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,38798,117129.72,6020.52,10023.8,133174.04,23205.2,12424.5,2260.37,37890.07,171064.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13925,66730.03,15775.63,1907.52,84413.18,18781.89,13148.59,6593.52,38524.0,122937.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator, Taxi And Accessible Servic",25480,5502.0,0.0,0.0,5502.0,1023.92,716.79,427.04,2167.75,7669.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,21529,34500.59,0.0,3411.91,37912.5,7441.39,7236.68,3110.06,17788.13,55700.63 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,27232,118104.06,0.0,0.0,118104.06,23768.42,12424.5,9711.59,45904.51,164008.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,13457,3028.43,0.0,1073.34,4101.77,688.25,386.53,311.21,1385.99,5487.76 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,18942,77071.01,0.0,1485.0,78556.01,16164.56,12424.5,6206.61,34795.67,113351.68 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,16656,90893.7,6650.45,8551.97,106096.12,19881.0,12424.5,8817.84,41123.34,147219.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29077,48744.1,0.0,3070.36,51814.46,12414.93,12424.5,4157.99,28997.42,80811.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,43118,76728.0,164.99,0.0,76892.99,15813.98,12424.5,6308.69,34547.17,111440.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,19055,138820.08,38898.99,3998.43,181717.5,27446.82,12424.5,3099.8,42971.12,224688.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,6105,61535.03,0.0,0.0,61535.03,13748.85,12424.5,5051.61,31224.96,92759.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,3014,79395.09,0.0,0.0,79395.09,16359.41,12424.51,6333.98,35117.9,114512.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,41535,100761.01,14730.08,11229.76,126720.85,20927.45,12424.49,9892.45,43244.39,169965.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14951,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10994.51,60807.84,246596.84 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,52397,192983.57,0.0,0.0,192983.57,38688.49,12424.5,19339.25,70452.24,263435.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23089,7569.6,0.0,50.0,7619.6,0.0,0.0,601.95,601.95,8221.55 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,19011,81958.6,0.0,0.0,81958.6,16838.17,12042.21,6609.98,35490.36,117448.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14556,101797.84,53541.29,9788.21,165127.34,22335.12,15052.75,2751.54,40139.41,205266.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",7627,148823.34,2242.98,17556.13,168622.45,32725.77,15052.76,714.32,48492.85,217115.3 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,46995,143188.01,0.0,0.0,143188.01,28816.77,12424.5,10077.87,51319.14,194507.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,45142,76188.39,0.0,0.0,76188.39,15751.29,12039.4,6293.07,34083.76,110272.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,11931,23335.69,0.0,0.0,23335.69,4342.77,3727.36,1884.17,9954.3,33289.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8623,26169.89,0.0,3.39,26173.28,0.0,2296.74,2031.46,4328.2,30501.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,32421,987.5,0.0,0.0,987.5,0.0,238.93,76.45,315.38,1302.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,52775,28329.19,765.3,1340.99,30435.48,6791.86,6549.76,2509.11,15850.73,46286.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,20868,9672.0,0.0,0.0,9672.0,2495.36,1911.46,796.41,5203.23,14875.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0962,Dept Head II,12933,183270.51,0.0,0.0,183270.51,36864.05,12424.5,18158.4,67446.95,250717.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,32642,61956.15,18355.65,976.8,81288.6,13209.46,9042.77,6461.81,28714.04,110002.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46480,56163.3,24.46,1276.46,57464.22,10885.46,8601.58,3973.01,23460.05,80924.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,28645,150710.01,0.0,1002.2,151712.21,30532.19,12424.5,10276.91,53233.6,204945.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35048,67683.43,25583.67,1654.88,94921.98,19013.51,13336.34,7374.4,39724.25,134646.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33824,32850.0,0.0,0.0,32850.0,0.0,4300.79,2548.08,6848.87,39698.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,36803,33357.84,0.0,1050.54,34408.38,8293.27,8237.21,2815.3,19345.78,53754.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,7948,43872.09,5761.12,1432.04,51065.25,8235.77,5698.54,3957.15,17891.46,68956.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,45526,67261.01,0.0,624.0,67885.01,13991.51,12424.5,5627.94,32043.95,99928.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,1072,85368.0,4384.51,0.0,89752.51,17594.59,12424.5,7383.45,37402.54,127155.05 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),41584,83995.11,0.0,1500.0,85495.11,18023.85,8170.6,7115.8,33310.25,118805.36 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,7798,95594.46,0.0,0.0,95594.46,19861.6,10796.89,7478.93,38137.42,133731.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,40375,97934.03,0.0,624.0,98558.03,20308.13,12424.5,8128.84,40861.47,139419.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",39243,131577.11,135390.92,27962.69,294930.72,31198.47,15196.11,4996.72,51391.3,346322.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,15079,23033.0,2327.27,6783.33,32143.6,4929.39,2867.19,2599.9,10396.48,42540.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43930,39251.41,3537.6,977.18,43766.19,10419.88,12269.01,3293.94,25982.83,69749.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,13619,71612.01,0.0,888.0,72500.01,14947.29,12424.5,5321.8,32693.59,105193.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13732,111472.73,6411.02,13534.87,131418.62,0.0,9735.62,2199.72,11935.34,143353.96 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,39681,28182.02,440.35,377.44,28999.81,0.0,4073.8,2335.21,6409.01,35408.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18269,55130.04,1973.26,1338.7,58442.0,14651.48,13097.46,4447.32,32196.26,90638.26 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,18565,111091.02,0.0,0.0,111091.02,25340.73,12424.5,279.12,38044.35,149135.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12873,92001.3,4145.95,2568.0,98715.25,19487.28,12424.5,8088.91,40000.69,138715.94 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,33212,24450.0,0.0,0.0,24450.0,5484.12,2867.19,1886.07,10237.38,34687.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,49392,12923.19,0.0,0.0,12923.19,0.0,2861.23,1003.04,3864.27,16787.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,39981,58240.5,4365.77,6683.98,69290.25,12850.38,8601.58,5397.34,26849.3,96139.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,23613,5931.02,0.0,0.0,5931.02,0.0,2142.93,480.9,2623.83,8554.85 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19363,1148.0,0.0,0.0,1148.0,0.0,489.82,88.87,578.69,1726.69 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,43965,5432.39,18.93,68.15,5519.47,1419.14,1285.75,398.98,3103.87,8623.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,43246,150863.2,0.0,0.0,150863.2,30287.09,12400.61,27976.66,70664.36,221527.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,27413,78605.63,0.0,2465.24,81070.87,16840.87,9957.52,6758.25,33556.64,114627.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,28881,36534.98,2954.02,902.88,40391.88,8869.96,11468.78,3261.6,23600.34,63992.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,44729,98157.0,0.0,0.0,98157.0,20230.58,12424.5,8063.63,40718.71,138875.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,33560,80019.66,4490.45,5030.76,89540.87,16972.67,12364.77,7199.71,36537.15,126078.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,20362,186877.6,0.0,3471.43,190349.03,36643.18,12400.61,10366.76,59410.55,249759.58 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,474C,Senior Fiscal Technician,52690,6144.6,0.0,0.0,6144.6,1143.52,1051.3,486.66,2681.48,8826.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,38711,595.5,0.0,0.0,595.5,0.0,143.35,46.1,189.45,784.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,34275,72827.12,0.0,0.0,72827.12,14969.61,9978.43,5926.87,30874.91,103702.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17877,6600.38,0.0,0.0,6600.38,0.0,2858.83,542.41,3401.24,10001.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,1052,11922.43,0.0,61.31,11983.74,0.0,4318.71,929.01,5247.72,17231.46 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1767,Media Programming Spec,9895,9635.4,45.45,39.39,9720.24,1800.48,1899.51,768.58,4468.57,14188.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15269,1718.22,0.0,61.84,1780.06,0.0,931.84,137.81,1069.65,2849.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,31247,69247.01,1192.65,0.0,70439.66,14272.16,12424.5,5726.23,32422.89,102862.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5906,101314.98,16143.32,24478.32,141936.62,23885.5,11010.02,10077.32,44972.84,186909.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,18833,19635.8,16.67,1009.9,20662.37,1696.97,5277.43,1615.86,8590.26,29252.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17072,63559.8,4747.91,1561.93,69869.64,14784.09,12522.47,5333.11,32639.67,102509.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8443,52783.76,491.22,1993.38,55268.36,11298.95,8123.71,2786.94,22209.6,77477.96 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),34425,109563.0,16722.01,6573.78,132858.79,23670.78,12424.5,2161.76,38257.04,171115.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,49778,6442.48,0.0,0.0,6442.48,1198.94,1424.62,499.87,3123.43,9565.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,40924,85368.01,740.14,380.0,86488.15,17672.18,12424.5,6821.96,36918.64,123406.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49129,42732.2,4035.97,1477.2,48245.37,11471.04,13136.99,3616.63,28224.66,76470.03 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,8077,81038.55,0.0,0.0,81038.55,16704.15,12412.56,6655.52,35772.23,116810.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,35621,59631.84,0.0,0.0,59631.84,12373.57,11231.45,4957.65,28562.67,88194.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,8039,61735.01,0.0,2064.0,63799.01,13146.28,12424.5,5278.56,30849.34,94648.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,21161,84977.55,0.0,0.0,84977.55,17666.94,11325.41,6812.17,35804.52,120782.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,19478,5516.0,0.0,0.0,5516.0,1026.52,955.73,422.95,2405.2,7921.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17703,119467.45,9448.23,8820.42,137736.1,23621.04,12424.5,2336.36,38381.9,176118.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,30176,135421.0,0.0,0.0,135421.0,27268.29,12424.5,10055.15,49747.94,185168.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,25798,47879.2,359.83,320.16,48559.19,9992.25,8612.99,3962.75,22567.99,71127.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46433,58608.77,31541.64,2478.99,92629.4,12161.42,11653.05,7495.36,31309.83,123939.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",14852,12970.25,0.0,0.0,12970.25,0.0,3088.18,31.78,3119.96,16090.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,19898,31213.03,0.0,780.0,31993.03,7176.0,6212.25,2596.75,15985.0,47978.03 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,37264,146389.51,0.0,13175.06,159564.57,29438.94,12424.5,10395.21,52258.65,211823.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,4221,63642.82,5052.46,2424.08,71119.36,13625.6,12376.72,5618.91,31621.23,102740.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,30614,1575.07,0.0,0.0,1575.07,0.0,522.66,122.09,644.75,2219.82 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,35516,64511.02,0.0,36.0,64547.02,13302.69,12424.5,5101.36,30828.55,95375.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21202,78961.22,38495.65,9579.85,127036.72,14839.27,8123.72,2135.03,25098.02,152134.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,31538,62202.76,1680.23,9227.87,73110.86,13832.26,11002.85,5754.08,30589.19,103700.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2470,Diagnostic Imaging Tech IV,43580,75969.76,34714.53,24128.05,134812.34,15388.46,7519.64,9879.6,32787.7,167600.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20898,37214.98,4243.17,1183.29,42641.44,9935.21,11621.55,3246.38,24803.14,67444.58 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,50994,14580.31,0.0,0.0,14580.31,0.0,1941.33,1152.28,3093.61,17673.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39849,11454.21,0.0,0.0,11454.21,588.86,4905.94,934.34,6429.14,17883.35 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),30997,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10891.71,60705.04,246494.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",14672,87893.61,9994.28,1768.38,99656.27,18362.82,11564.35,7829.82,37756.99,137413.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,30433,145200.07,624.38,0.0,145824.45,29926.35,12424.5,10313.85,52664.7,198489.15 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,48036,48742.83,5988.95,5652.34,60384.12,10579.04,10832.62,4188.65,25600.31,85984.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31471,32211.75,0.0,5368.7,37580.45,707.66,0.0,5018.83,5726.49,43306.94 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,48353,22190.97,0.0,0.0,22190.97,655.74,7281.48,1688.2,9625.42,31816.39 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,52358,9463.59,0.0,3022.52,12486.11,0.0,12424.5,181.05,12605.55,25091.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,1307,13868.07,0.0,731.22,14599.29,0.0,2741.76,1133.14,3874.9,18474.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",8531,93738.01,470.27,0.0,94208.28,19319.82,12424.5,7778.1,39522.42,133730.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,14813,33023.0,0.0,390.0,33413.0,6145.58,3822.92,2585.82,12554.32,45967.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,3796,97934.03,0.0,0.0,97934.03,20181.36,12424.5,7974.06,40579.92,138513.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,39406,93097.07,0.0,622.8,93719.87,19320.11,12400.61,7773.15,39493.87,133213.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,5235,156746.03,0.0,0.0,156746.03,31545.23,12424.52,10475.06,54444.81,211190.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,31400,74412.0,0.0,3624.0,78036.0,15474.51,12424.5,6416.85,34315.86,112351.86 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,21753,0.0,0.0,109.55,109.55,0.0,68.5,8.38,76.88,186.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,30137,31127.37,1738.6,3792.22,36658.19,8093.66,10226.97,2961.79,21282.42,57940.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,12127,81304.0,94035.53,9427.79,184767.32,17845.32,12424.5,10704.56,40974.38,225741.7 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,52520,6862.0,0.0,0.0,6862.0,0.0,1911.46,561.18,2472.64,9334.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,15441,61428.01,1383.6,2993.2,65804.81,13089.26,12424.5,5172.87,30686.63,96491.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,38778,25812.0,0.0,0.0,25812.0,6659.52,5734.39,2146.47,14540.38,40352.38 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,50388,45629.0,0.0,0.0,45629.0,8491.6,5734.39,3609.34,17835.33,63464.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19469,11464.36,0.0,0.0,11464.36,1369.95,4910.06,900.58,7180.59,18644.95 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,26923,118104.08,0.0,0.0,118104.08,23768.42,12424.5,9716.16,45909.08,164013.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,6047,91071.1,5102.3,2706.92,98880.32,19070.68,12412.56,8015.92,39499.16,138379.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,39046,51036.57,193.65,1593.49,52823.71,12269.08,12334.91,4300.45,28904.44,81728.15 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,39876,56276.0,0.0,2084.0,58360.0,13040.95,12424.5,4782.08,30247.53,88607.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,17020,82883.0,34429.76,7602.76,124915.52,17409.18,12424.5,9787.78,39621.46,164536.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,859,40772.15,0.0,0.0,40772.15,9769.06,12254.33,3317.63,25341.02,66113.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,14417,4765.0,0.0,0.0,4765.0,863.89,477.86,369.85,1711.6,6476.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,4283,74624.88,0.0,1384.2,76009.08,15671.75,9939.6,5531.95,31143.3,107152.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,18832,35709.19,3376.76,2249.28,41335.23,7022.19,4444.15,674.19,12140.53,53475.76 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,48613,23207.28,0.0,0.0,23207.28,0.0,5794.11,1798.18,7592.29,30799.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,50768,93766.5,84702.32,6890.18,185359.0,20095.83,12663.43,10857.21,43616.47,228975.47 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,1443,31731.0,2451.61,1006.5,35189.11,0.0,4587.51,2786.83,7374.34,42563.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15316,119459.89,32279.96,16172.73,167912.58,23648.16,12424.5,2808.33,38880.99,206793.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37789,1816.43,0.0,0.0,1816.43,0.0,985.6,140.63,1126.23,2942.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,5181,101055.53,0.0,870.0,101925.53,21006.26,12424.5,8155.94,41586.7,143512.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17218,42938.97,583.81,840.0,44362.78,10351.23,10466.85,3272.65,24090.73,68453.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,30093,70791.0,6978.56,6017.26,83786.82,15830.58,12424.5,6870.16,35125.24,118912.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5272,Landscape Architect Assoc 2,51526,218518.03,0.0,0.0,218518.03,44103.36,12424.49,11505.51,68033.36,286551.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2106,17191.21,0.0,259.6,17450.81,0.0,4618.88,1352.39,5971.27,23422.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,14763,6630.41,0.0,0.0,6630.41,0.0,2164.85,514.62,2679.47,9309.88 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16785,146295.04,0.0,4175.87,150470.91,30288.9,9863.14,10333.57,50485.61,200956.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,15303,92869.25,601.6,3243.11,96713.96,19235.63,12113.89,7896.7,39246.22,135960.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,47618,16078.8,1828.91,672.85,18580.56,3080.26,3177.8,1493.88,7751.94,26332.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17205,128183.31,0.0,25446.15,153629.46,30072.01,11007.63,9839.01,50918.65,204548.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,35976,71908.23,0.0,0.0,71908.23,15364.54,9040.61,5679.51,30084.66,101992.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,29769,61428.0,19175.72,4304.97,84908.69,13111.2,12424.5,6891.34,32427.04,117335.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,50202,79722.03,7712.85,3528.59,90963.47,17160.26,12424.5,7254.76,36839.52,127802.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9141,Transit Manager 2,45268,118211.19,0.0,0.0,118211.19,23717.57,12424.5,9702.19,45844.26,164055.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4593,138635.96,21632.92,6911.32,167180.2,27392.94,12424.5,2796.17,42613.61,209793.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,50050,84644.02,24496.18,8368.2,117508.4,18209.92,12424.5,9541.03,40175.45,157683.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,5585,149081.0,0.0,0.0,149081.0,30453.77,9892.05,17581.3,57927.12,207008.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,1960,141261.58,1710.88,11445.3,154417.76,27887.58,12424.5,2570.92,42883.0,197300.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7317,Senior Water Service Inspector,24474,117750.04,2635.38,0.0,120385.42,23696.97,12424.5,9657.13,45778.6,166164.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35881,3329.37,0.0,0.0,3329.37,787.64,1003.51,255.57,2046.72,5376.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43911,0.0,0.0,1363.46,1363.46,0.0,68.5,85.18,153.68,1517.14 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,37573,57935.81,0.0,0.0,57935.81,11818.75,1433.6,4575.27,17827.62,75763.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13613,3916.0,0.0,489.5,4405.5,966.57,382.3,341.07,1689.94,6095.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39317,59901.23,10478.44,2869.8,73249.47,16951.71,11789.72,5549.77,34291.2,107540.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,13993,42108.94,11328.83,6935.02,60372.79,8361.27,5160.95,1018.34,14540.56,74913.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24029,49856.92,1153.98,5004.78,56015.68,10151.31,5430.93,4507.25,20089.49,76105.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,29503,70467.72,0.0,0.0,70467.72,14534.88,12227.03,5737.17,32499.08,102966.8 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,27969,32769.31,0.0,33.27,32802.58,6104.56,4300.79,2635.01,13040.36,45842.94 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,1150,67911.03,4628.19,5085.8,77625.02,14513.04,12424.5,6149.14,33086.68,110711.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31877,5343.0,0.0,258.25,5601.25,0.01,0.0,712.94,712.95,6314.2 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,39807,106605.02,0.0,0.0,106605.02,21971.81,12424.5,8767.52,43163.83,149768.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22872,74891.64,37148.37,8328.01,120368.02,16403.87,15052.77,2001.6,33458.24,153826.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7615,16096.3,0.0,0.0,16096.3,0.0,1385.81,1249.33,2635.14,18731.44 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,16654,45437.0,0.0,0.0,45437.0,8664.16,6690.12,3599.27,18953.55,64390.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12919,115997.96,1059.66,14076.36,131133.98,22009.59,10924.6,9728.98,42663.17,173797.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,45590,3143.77,0.0,0.0,3143.77,0.0,1128.96,254.62,1383.58,4527.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2290,65403.83,7221.2,4446.25,77071.28,19174.59,12894.31,6008.07,38076.97,115148.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24832,2251.22,0.0,68.61,2319.83,8843.11,181.83,-0.02,9024.92,11344.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",22173,2306.22,0.0,0.0,2306.22,0.0,286.72,178.54,465.26,2771.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,38706,75397.99,5949.92,0.0,81347.91,15539.45,12423.01,6472.47,34434.93,115782.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,42415,111748.41,0.0,0.0,111748.41,22737.86,12424.5,8361.65,43524.01,155272.42 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,17199,12112.0,0.0,3000.0,15112.0,2663.44,2867.19,1231.3,6761.93,21873.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,18549,58101.11,0.0,624.0,58725.11,12103.67,12424.5,4867.67,29395.84,88120.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),14944,50134.56,7188.91,3887.77,61211.24,10414.11,7645.85,1019.95,19079.91,80291.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,49868,20938.02,984.8,33.75,21956.57,5357.97,6929.06,1783.32,14070.35,36026.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44453,56531.0,0.0,7288.42,63819.42,12650.47,12424.5,5219.56,30294.53,94113.95 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,13062,118104.03,0.0,0.0,118104.03,23768.42,12424.5,9378.39,45571.31,163675.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,3361,67445.0,0.0,0.0,67445.0,13452.43,9079.44,5369.72,27901.59,95346.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,49996,118691.13,42006.08,7714.92,168412.13,24843.18,15196.12,2823.57,42862.87,211275.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,39906,130845.86,63711.38,16355.7,210912.94,28930.04,15196.11,3597.86,47724.01,258636.95 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,43464,68250.22,14145.12,5127.18,87522.52,14084.78,9031.66,6943.69,30060.13,117582.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,25955,18920.01,284.69,52.77,19257.47,4255.6,3822.92,1559.9,9638.42,28895.89 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,30848,59123.0,0.0,0.0,59123.0,11711.73,8601.57,4685.71,24999.01,84122.01 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,1511,53973.0,0.0,624.0,54597.0,13095.25,12424.5,4524.97,30044.72,84641.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,42233,89210.09,0.0,624.0,89834.09,18512.06,12424.5,7449.9,38386.46,128220.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23552,56531.0,0.0,1631.1,58162.1,12680.14,12424.5,4473.18,29577.82,87739.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,49556,17563.0,0.0,0.0,17563.0,2591.97,5734.39,1425.11,9751.47,27314.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",36417,141771.05,12824.83,19324.7,173920.58,31414.09,13666.95,2966.79,48047.83,221968.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,42313,87110.43,4695.18,11528.77,103334.38,10610.89,6328.37,8154.22,25093.48,128427.86 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,21307,106605.0,0.0,8089.46,114694.46,21971.81,12424.51,8762.32,43158.64,157853.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13851,75550.31,1511.56,1340.0,78401.87,15822.79,12424.5,6001.07,34248.36,112650.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,48628,42190.19,0.0,0.0,42190.19,8959.39,6715.62,3502.97,19177.98,61368.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,3981,78204.01,0.0,0.0,78204.01,16117.97,12424.5,6330.23,34872.7,113076.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,18540,96823.89,4498.57,15915.49,117237.95,27417.2,12305.04,1940.59,41662.83,158900.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,41744,41834.0,0.0,0.0,41834.0,7870.32,6212.24,3305.44,17388.0,59222.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1179,38772.6,0.0,6115.95,44888.55,0.0,3106.13,3481.02,6587.15,51475.7 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8204,Institutional Police Officer,45578,73559.16,26299.19,21013.07,120871.42,18372.21,12420.44,2316.77,33109.42,153980.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19061,97391.05,6811.87,10250.16,114453.08,26191.06,12376.71,1948.67,40516.44,154969.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,1645,47533.01,0.0,0.0,47533.01,8845.86,5256.52,3877.83,17980.21,65513.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20420,74602.23,13617.96,10268.71,98488.9,17073.38,14053.01,1643.0,32769.39,131258.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,29100,64211.6,12042.95,17719.54,93974.09,15795.14,12376.71,7441.67,35613.52,129587.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1113,81036.17,5546.42,7187.51,93770.1,16730.21,12424.5,1561.7,30716.41,124486.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,48468,26542.1,0.0,0.0,26542.1,5953.42,5686.6,2168.53,13808.55,40350.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,6849,42218.0,0.0,0.0,42218.0,7654.11,3345.06,1326.34,12325.51,54543.51 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21839,128457.03,0.0,1500.0,129957.03,26140.64,12424.5,9969.23,48534.37,178491.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,49478,96254.02,0.0,0.0,96254.02,19838.21,12424.5,7695.92,39958.63,136212.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,27004,75927.02,0.0,0.0,75927.02,15648.74,12424.5,6177.78,34251.02,110178.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,53225,56134.2,0.0,5762.45,61896.65,12487.48,12336.76,5117.02,29941.26,91837.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,33273,9763.92,0.0,0.0,9763.92,0.0,3537.7,756.73,4294.43,14058.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9204,Airports Communications Sprv,16338,99815.07,662.69,1384.4,101862.16,20846.32,12424.5,8441.16,41711.98,143574.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,45247,138635.27,45409.29,12816.85,196861.41,27395.36,12424.49,3346.97,43166.82,240028.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9146,40744.63,4593.54,1090.1,46428.27,9998.63,8102.81,3510.23,21611.67,68039.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12630,113233.6,100846.58,18747.31,232827.49,25036.03,15196.12,3922.7,44154.85,276982.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46652,43882.37,5636.33,918.57,50437.27,11631.32,13357.6,3820.28,28809.2,79246.47 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,30911,67671.48,0.0,3000.0,70671.48,13708.64,9999.34,5934.23,29642.21,100313.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1760,Offset Machine Operator,46531,62655.0,10031.61,624.0,73310.61,13042.21,12424.5,5994.09,31460.8,104771.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,39121,81030.9,1421.15,554.0,83006.05,9026.97,11612.16,6637.58,27276.71,110282.76 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,36110,1455.95,0.0,1510.02,2965.97,0.0,1911.46,43.01,1954.47,4920.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,16312,59420.58,0.0,5612.05,65032.63,12071.41,4677.11,8232.48,24981.0,90013.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11088,97768.16,7228.89,3479.2,108476.25,24630.88,12424.5,1839.05,38894.43,147370.68 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,15477,6936.0,0.0,0.0,6936.0,0.0,1146.87,514.52,1661.39,8597.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,13888,84644.04,24811.12,11261.46,120716.62,19065.95,12424.51,9432.38,40922.84,161639.46 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,5510,14858.34,137.03,0.0,14995.37,3267.34,3939.41,1208.37,8415.12,23410.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51473,56531.01,0.0,1287.45,57818.46,11780.12,12424.5,4789.78,28994.4,86812.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,29861,66102.06,0.0,2292.1,68394.16,14095.79,12424.51,5622.22,32142.52,100536.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,5408,44822.5,1789.88,1374.0,47986.38,0.0,5674.65,3739.81,9414.46,57400.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,29743,16269.05,0.0,0.0,16269.05,3649.16,3535.42,1318.32,8502.9,24771.95 +Calendar,2015,6,General Administration & Finance,REG,Elections,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,29210,25512.5,0.0,0.0,25512.5,0.0,4061.86,2002.56,6064.42,31576.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,47163,158707.01,0.0,0.0,158707.01,32069.33,12424.5,25468.82,69962.65,228669.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",2560,81905.0,45917.45,9745.07,137567.52,17669.07,12424.51,10010.68,40104.26,177671.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24090,7220.18,336.46,31.26,7587.9,1713.56,2176.26,547.24,4437.06,12024.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,27119,35534.0,340.35,0.0,35874.35,6923.66,7645.85,2913.6,17483.11,53357.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,15376,11248.0,0.0,662.23,11910.23,2467.82,955.72,1263.13,4686.67,16596.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11744,3593.95,0.0,0.0,3593.95,0.0,1509.16,286.66,1795.82,5389.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18951,56531.01,0.0,2246.14,58777.15,11914.59,12424.5,4862.05,29201.14,87978.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33409,64814.45,18872.04,3374.37,87060.86,18639.65,12770.24,6820.8,38230.69,125291.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7574,13383.2,0.0,459.19,13842.39,9.48,997.54,620.89,1627.91,15470.3 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15393,49567.38,0.0,546.86,50114.24,10469.8,10888.34,4134.73,25492.87,75607.11 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,38321,14017.99,0.0,0.0,14017.99,6003.66,0.0,2471.93,8475.59,22493.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,47730,150618.72,0.0,0.0,150618.72,30242.77,12424.5,18667.5,61334.77,211953.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,49038,44.91,0.0,0.0,44.91,0.0,14.93,3.48,18.41,63.32 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,48895,73063.05,0.0,0.0,73063.05,15058.74,12424.5,5882.15,33365.39,106428.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,463,4933.4,0.0,0.0,4933.4,918.1,812.37,381.31,2111.78,7045.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,23436,108038.0,23100.02,14341.44,145479.46,23846.24,12424.5,10162.06,46432.8,191912.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21296,65560.94,20950.52,1631.14,88142.6,18384.34,12913.19,6672.19,37969.72,126112.32 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,13519,56525.4,2123.19,5995.04,64643.63,13812.11,12424.5,5227.53,31464.14,96107.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,664,94908.07,10403.71,1765.15,107076.93,19539.74,11609.01,8748.38,39897.13,146974.06 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",52335,180314.38,58410.85,28030.06,266755.29,40936.88,15196.12,4495.59,60628.59,327383.88 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),15398,113143.0,0.0,1500.0,114643.0,23306.59,12424.5,9252.63,44983.72,159626.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,26551,138826.72,62079.49,30056.87,230963.08,27964.15,12424.51,3883.82,44272.48,275235.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,6446,15346.15,0.0,0.0,15346.15,2782.26,1433.6,2303.27,6519.13,21865.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3956,2711.42,0.0,413.79,3125.21,2969.53,0.0,45.87,3015.4,6140.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,22519,47648.63,0.0,1080.0,48728.63,9501.62,7615.31,3929.52,21046.45,69775.08 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,10330,58270.62,0.0,0.0,58270.62,11939.48,6017.17,4760.88,22717.53,80988.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1339,41590.54,5731.16,1040.86,48362.56,11082.53,12955.06,3440.57,27478.16,75840.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35816,16607.83,0.0,5307.38,21915.21,2462.39,0.0,5672.41,8134.8,30050.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,27731,123990.59,0.0,3.03,123993.62,24920.22,12128.82,9671.57,46720.61,170714.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,40504,75407.04,486.34,0.0,75893.38,15541.48,12424.5,6228.4,34194.38,110087.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9150,110858.85,563.82,6696.41,118119.08,13715.25,11038.75,8729.02,33483.02,151602.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31005,144735.06,130.31,24876.02,169741.39,33415.62,12060.13,5586.46,51062.21,220803.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,46631,21394.21,0.0,261.55,21655.76,0.0,4502.87,1680.17,6183.04,27838.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33541,1742.54,0.0,0.0,1742.54,0.0,755.62,142.72,898.34,2640.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25187,5165.63,0.0,0.0,5165.63,0.0,2239.99,407.39,2647.38,7813.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43531,7869.0,0.0,0.0,7869.0,0.0,3412.25,609.22,4021.47,11890.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,28777,38539.48,1491.55,666.12,40697.15,9221.24,9207.87,3220.34,21649.45,62346.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,23955,54842.11,17312.89,3489.8,75644.8,12564.73,12314.53,6352.02,31231.28,106876.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14255,3495.23,0.0,692.0,4187.23,90.37,0.0,1325.7,1416.07,5603.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,14329,40876.41,1187.03,1673.02,43736.46,9942.66,10719.6,3308.81,23971.07,67707.53 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,48821,127143.2,0.0,0.0,127143.2,26037.41,10990.9,9911.42,46939.73,174082.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,231,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),20894,92704.49,2239.93,7221.16,102165.58,20587.86,12424.5,1656.92,34669.28,136834.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,41576,65145.0,19353.86,5990.38,90489.24,14252.55,12424.5,7377.84,34054.89,124544.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50721,97777.08,50911.1,7389.79,156077.97,25602.17,12424.5,2614.62,40641.29,196719.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46241,62717.15,3325.34,1839.74,67882.23,17541.71,12348.46,4936.63,34826.8,102709.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,23759,62811.0,45189.14,13005.26,121005.4,14783.94,12424.5,9649.33,36857.77,157863.17 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8435,"Div Director, Adult Probation",1073,126507.12,0.0,0.0,126507.12,28870.29,12424.5,9749.65,51044.44,177551.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33404,32160.0,4459.69,14829.32,51449.01,5709.66,2867.2,837.45,9414.31,60863.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,4000,116976.03,0.0,12013.42,128989.45,25959.2,12424.5,9863.28,48246.98,177236.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,30875,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8687.28,43083.59,149688.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,28154,19377.0,0.0,0.0,19377.0,3606.08,3345.05,1521.53,8472.66,27849.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,9465,82197.9,0.0,0.0,82197.9,16990.11,12054.16,6403.52,35447.79,117645.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",16367,12844.8,0.0,0.0,12844.8,0.0,3058.34,996.76,4055.1,16899.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,42665,84644.0,23317.1,5697.14,113658.24,18022.41,12424.5,8844.25,39291.16,152949.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51489,76516.2,0.0,7442.26,83958.46,5349.66,0.0,7250.6,12600.26,96558.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2488,Supv Chemist,24411,119321.04,0.0,0.0,119321.04,24013.58,12424.5,9798.54,46236.62,165557.66 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,7444,16193.08,0.0,0.0,16193.08,0.0,5090.77,1255.16,6345.93,22539.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,18960,5644.2,0.0,0.0,5644.2,0.0,1099.09,438.07,1537.16,7181.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,48832,48653.72,0.0,0.0,48653.72,11668.27,12119.87,3956.77,27744.91,76398.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1224,119370.19,3746.46,7623.5,130740.15,23644.3,12415.55,2217.58,38277.43,169017.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52540,3594.86,0.0,2.15,3597.01,0.0,1199.63,278.93,1478.56,5075.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7333,Apprentice Stationary Engineer,10235,10529.2,245.68,1784.0,12558.88,2411.04,1548.64,1066.32,5026.0,17584.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,5509,71330.03,0.0,0.0,71330.03,14649.88,11946.63,5815.46,32411.97,103742.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39877,25740.04,324.15,773.0,26837.19,6840.33,5734.39,2098.48,14673.2,41510.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,46945,4075.58,0.0,55.74,4131.32,0.0,1352.96,320.37,1673.33,5804.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,23589,84897.97,0.0,0.0,84897.97,17749.05,10242.98,6209.1,34201.13,119099.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6281,Fire Safety Inspector 2,7731,135109.0,34724.67,8106.54,177940.21,28837.04,12424.5,10800.11,52061.65,230001.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3761,79457.0,4672.09,9125.77,93254.86,17236.78,12380.0,1555.05,31171.83,124426.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,9579,38980.0,0.0,0.0,38980.0,7519.34,7167.99,2689.95,17377.28,56357.28 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,29140,53388.57,107.03,4439.22,57934.82,12028.48,9755.93,4589.25,26373.66,84308.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,16068,67261.03,0.0,0.0,67261.03,13862.82,12424.5,5326.77,31614.09,98875.12 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,17079,16200.0,0.0,0.0,16200.0,3633.66,2867.19,1301.23,7802.08,24002.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46198,112159.74,18578.19,21069.0,151806.93,25264.14,15052.76,2544.13,42861.03,194667.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,31453,63887.03,10011.52,1011.84,74910.39,13376.46,12424.5,6156.49,31957.45,106867.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38411,123404.04,360.83,19930.04,143694.91,27009.6,10924.0,9920.06,47853.66,191548.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",30424,9746.5,0.0,0.0,9746.5,0.0,2320.63,756.49,3077.12,12823.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,44814,35.93,0.0,2.87,38.8,0.0,11.94,3.01,14.95,53.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,35440,32916.0,0.0,0.0,32916.0,7581.67,8123.71,2668.09,18373.47,51289.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,49072,5403.22,0.0,26941.11,32344.33,927.26,448.36,13.76,1389.38,33733.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16050,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11046.62,61601.76,251076.54 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,16084,36360.0,0.0,3000.0,39360.0,8528.9,9557.31,3244.33,21330.54,60690.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,12622,135421.02,0.0,0.0,135421.02,27253.5,12424.5,10072.48,49750.48,185171.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40385,29735.0,0.0,0.0,29735.0,5390.96,4539.72,2161.12,12091.8,41826.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7789,67655.63,14095.63,1622.61,83373.87,18988.79,13332.57,6472.54,38793.9,122167.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3603,650.1,0.0,0.0,650.1,0.0,0.0,11.05,11.05,661.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,48158,70299.5,1311.26,1150.0,72760.76,14726.21,12424.5,5657.02,32807.73,105568.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,49973,51601.5,0.0,982.84,52584.34,12542.96,12472.29,4306.25,29321.5,81905.84 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,37135,99654.02,0.0,0.0,99654.02,22727.04,12424.5,1686.9,36838.44,136492.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,17242,62706.21,1702.63,6524.36,70933.2,13458.49,11092.45,5656.06,30207.0,101140.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5846,4992.0,0.0,0.0,4992.0,0.0,2293.76,387.28,2681.04,7673.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,17291,117140.95,37074.25,18797.41,173012.61,23164.17,12424.5,2888.24,38476.91,211489.52 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,49534,28822.81,18070.65,4655.56,51549.02,6952.47,6364.57,4091.68,17408.72,68957.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16306,113222.99,52356.24,15393.33,180972.56,24352.81,15196.12,3031.77,42580.7,223553.26 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,33928,78257.53,0.0,0.0,78257.53,16102.44,12424.5,6367.26,34894.2,113151.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,27339,94689.0,11726.43,1477.24,107892.67,19124.78,10990.92,8433.27,38548.97,146441.64 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,33217,41280.0,0.0,0.0,41280.0,10393.06,7167.99,3298.29,20859.34,62139.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43403,64619.13,26329.98,1521.43,92470.54,18103.73,12733.2,6973.68,37810.61,130281.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46316,8945.18,0.0,0.0,8945.18,1773.16,3852.79,736.15,6362.1,15307.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,50361,56298.27,0.0,20140.75,76439.02,13833.47,7528.47,1318.73,22680.67,99119.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19730,6489.3,0.0,0.0,6489.3,996.38,0.0,759.68,1756.06,8245.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,4362,143188.04,0.0,0.0,143188.04,28816.78,12424.5,10206.5,51447.78,194635.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",897,93738.04,1759.77,0.0,95497.81,19319.84,12424.5,7663.85,39408.19,134906.0 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",44446,20520.59,88.41,90.05,20699.05,0.0,4468.05,1603.8,6071.85,26770.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21209,41123.72,0.0,6995.31,48119.03,948.72,0.0,5851.18,6799.9,54918.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H120,Pilot Of Fire Boats,23935,150234.02,54080.12,9765.26,214079.4,31445.32,15196.12,3643.87,50285.31,264364.71 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1867,Auditor I,15422,64581.79,0.0,0.0,64581.79,13284.16,12424.5,5121.57,30830.23,95412.02 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,41225,80227.1,0.0,5264.98,85492.08,16525.13,11289.1,7093.84,34908.07,120400.15 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,2416,52791.2,0.0,378.22,53169.42,11530.59,8123.71,4289.74,23944.04,77113.46 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8148,Chf District Atty Investigator,13636,167368.74,0.0,10042.11,177410.85,40485.51,12424.5,20954.94,73864.95,251275.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,27352,56555.0,0.0,0.0,56555.0,11638.38,8123.71,4584.2,24346.29,80901.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,1209,33051.54,0.0,530.12,33581.66,8052.74,8165.53,2698.36,18916.63,52498.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36852,19531.1,0.0,25595.81,45126.91,3491.23,0.0,6096.77,9588.0,54714.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29936,113233.59,30443.09,21593.96,165270.64,25621.4,15196.12,2763.74,43581.26,208851.9 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2496,Radiologic Tech Sprv,13080,131863.58,10004.12,12630.28,154497.98,28713.23,12400.62,10315.66,51429.51,205927.49 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,21541,113852.0,0.0,0.0,113852.0,22913.02,12424.51,9240.25,44577.78,158429.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9974,89536.29,0.0,2385.45,91921.74,20182.01,8427.1,6515.27,35124.38,127046.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,5099,1994.0,0.0,0.0,1994.0,0.0,477.86,154.77,632.63,2626.63 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,29692,68274.21,0.0,0.0,68274.21,14040.86,12424.5,5492.38,31957.74,100231.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,21381,137101.03,0.0,0.0,137101.03,27607.06,12424.49,27612.41,67643.96,204744.99 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,21719,17122.12,0.0,0.0,17122.12,0.0,2199.67,1327.09,3526.76,20648.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,40345,105363.06,0.0,0.0,105363.06,21712.23,12424.5,8446.46,42583.19,147946.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,49333,92709.62,30521.91,12311.47,135543.0,20533.72,12520.08,9968.07,43021.87,178564.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7100,Administrative-Labor & Trades,7108,Heavy Equip Ops Asst Sprv,38598,16468.0,0.0,0.0,16468.0,3064.68,1911.45,1318.49,6294.62,22762.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,12387,15126.0,2011.29,3548.32,20685.61,3232.52,2867.19,1592.87,7692.58,28378.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,12644,83350.8,207.51,0.0,83558.31,17175.48,12424.5,6718.11,36318.09,119876.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,51838,60063.01,1972.84,1608.28,63644.13,12374.57,12424.51,5162.67,29961.75,93605.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,43473,7563.0,0.0,51.3,7614.3,1417.03,1433.6,622.35,3472.98,11087.28 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,1546,60555.04,0.0,2440.14,62995.18,12925.76,12185.57,4967.89,30079.22,93074.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,1023,97934.04,0.0,0.0,97934.04,20181.36,12424.5,8115.32,40721.18,138655.22 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14139,97754.23,4238.49,18681.75,120674.47,28355.33,12423.07,1696.67,42475.07,163149.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,51185,67261.06,0.0,624.0,67885.06,13991.51,12424.5,5582.99,31999.0,99884.06 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,50877,87393.37,0.0,0.0,87393.37,17998.35,12424.5,7042.24,37465.09,124858.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46359,0.0,0.0,250.0,250.0,0.0,13.7,0.0,13.7,263.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,10623,64680.0,1006.6,11053.31,76739.91,15235.12,9557.31,6067.79,30860.22,107600.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10242,47124.3,0.0,6325.25,53449.55,12316.62,12424.5,4322.86,29063.98,82513.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,25188,102019.04,0.0,0.0,102019.04,21026.28,12424.5,8336.88,41787.66,143806.7 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2533,Emergency Med Svcs Agency Spec,29724,112829.93,0.0,2025.32,114855.25,22702.11,12430.47,9000.19,44132.77,158988.02 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,15969,718.9,0.0,0.0,718.9,2109.39,47.79,0.0,2157.18,2876.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,34993,47124.32,0.0,0.0,47124.32,11304.21,12424.5,3580.69,27309.4,74433.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,19342,84644.01,0.0,1597.0,86241.01,17558.69,12424.5,7072.69,37055.88,123296.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,697,41327.8,0.0,0.0,41327.8,8589.58,8458.22,3316.29,20364.09,61691.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,37251,83166.32,0.0,0.0,83166.32,17115.0,12424.5,6835.92,36375.42,119541.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,4534,12687.0,0.0,0.0,12687.0,2361.06,1433.6,1006.62,4801.28,17488.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49819,98849.71,12271.24,7645.36,118766.31,20539.54,12424.51,1980.94,34944.99,153711.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11634,3497.38,0.0,14.21,3511.59,0.0,1705.39,272.4,1977.79,5489.38 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,14447,13347.0,0.0,0.0,13347.0,2928.33,1433.6,1101.79,5463.72,18810.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,25474,60804.86,0.0,0.0,60804.86,12844.9,9479.66,5110.82,27435.38,88240.24 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9157,Claims Adjuster,36944,102504.01,0.0,0.0,102504.01,21087.73,12424.5,8402.94,41915.17,144419.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,870,79707.32,2604.95,2981.8,85294.07,16346.2,11645.46,6688.09,34679.75,119973.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,9882,76880.0,0.0,3259.02,80139.02,17007.45,9557.29,6525.48,33090.22,113229.24 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,44967,206537.01,0.0,10326.86,216863.87,43627.72,12424.5,11363.74,67415.96,284279.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,10654,67261.01,0.0,624.0,67885.01,13991.51,12424.5,5376.13,31792.14,99677.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,48922,66102.0,158.86,3438.7,69699.56,14337.33,12424.5,5725.47,32487.3,102186.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4086,17914.39,0.0,552.06,18466.45,1978.95,7768.3,1490.77,11238.02,29704.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,9228,652.66,0.0,11.83,664.49,0.0,212.06,51.53,263.59,928.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13970,9178.5,0.0,1529.8,10708.3,7919.91,717.63,3760.35,12397.89,23106.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",6500,137101.08,0.0,0.0,137101.08,27592.11,12424.5,18470.68,58487.29,195588.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,15391,16795.13,0.0,64.57,16859.7,1438.2,0.0,1445.9,2884.1,19743.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,2924,106605.11,0.0,0.0,106605.11,21967.92,12424.5,8727.69,43120.11,149725.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,40885,11377.48,0.0,76.32,11453.8,0.0,3757.22,888.66,4645.88,16099.68 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,14343,37390.01,0.0,0.0,37390.01,6958.26,4778.65,2864.29,14601.2,51991.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,24762,79698.83,9589.7,6964.05,96252.58,17340.33,12400.61,1605.92,31346.86,127599.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,30065,7602.84,0.0,175.11,7777.95,1705.32,1291.56,653.41,3650.29,11428.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,30290,97773.25,56152.36,19505.57,173431.18,28526.88,12424.5,2933.43,43884.81,217315.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,15139,109447.9,1862.84,0.0,111310.74,22435.82,10513.03,8945.67,41894.52,153205.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,43037,67572.11,0.0,26097.4,93669.51,16842.58,7884.78,1521.32,26248.68,119918.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1944,Materials Coordinator,13302,118104.1,0.0,0.0,118104.1,23768.42,12424.5,9711.59,45904.51,164008.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,38185,45232.63,9589.24,5825.98,60647.85,11284.57,12230.48,4831.15,28346.2,88994.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3412,97767.99,15413.12,18364.15,131545.26,28236.27,12424.5,2239.44,42900.21,174445.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,35165,23625.07,0.0,0.0,23625.07,2186.06,7213.8,1936.02,11335.88,34960.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,3514,59882.78,269.34,354.74,60506.86,12329.57,12424.5,4739.39,29493.46,90000.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,16641,130151.04,0.0,0.0,130151.04,26132.61,12424.5,17276.06,55833.17,185984.21 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,10387,49539.82,0.0,190.4,49730.22,11111.81,6403.39,4005.9,21521.1,71251.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45327,1071.88,0.0,24.01,1095.89,0.0,522.66,85.06,607.72,1703.61 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3546,Curator 4,37712,104354.0,0.0,0.0,104354.0,21507.81,12424.5,8591.35,42523.66,146877.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8401,66731.48,34928.85,5084.56,106744.89,19716.61,13150.98,8344.66,41212.25,147957.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",13579,90806.2,27904.45,10584.19,129294.84,19003.96,10465.25,2177.47,31646.68,160941.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,27653,97934.01,0.0,624.0,98558.01,20308.11,12424.5,8122.04,40854.65,139412.66 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),39481,184289.03,0.0,5248.28,189537.31,38144.36,12424.5,10910.83,61479.69,251017.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,25560,55067.87,239.26,1706.6,57013.73,11518.02,10883.38,4442.77,26844.17,83857.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,4589,1800.98,837.26,1743.67,4381.91,458.89,352.43,342.43,1153.75,5535.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12141,77071.04,55.54,1554.0,78680.58,16202.06,12424.5,6520.25,35146.81,113827.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,30029,28517.76,0.0,0.0,28517.76,6458.75,7115.72,2282.28,15856.75,44374.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,31789,6345.0,0.0,0.0,6345.0,1423.17,1433.6,526.71,3383.48,9728.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,44811,29530.46,3617.88,320.28,33468.62,5190.1,0.0,2747.94,7938.04,41406.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1105,62905.66,740.68,553.12,64199.46,17340.54,12393.62,4676.8,34410.96,98610.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,28280,57762.46,21.86,0.0,57784.32,12988.1,11817.85,4711.1,29517.05,87301.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,18835,62811.0,0.0,200.0,63011.0,12945.66,12424.5,4916.38,30286.54,93297.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,21021,79951.0,4785.61,2376.85,87113.46,16954.68,12424.5,7125.72,36504.9,123618.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,14234,89028.05,0.0,0.0,89028.05,18358.77,12424.5,7174.44,37957.71,126985.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30745,112159.75,0.0,15858.9,128018.65,24822.91,15052.75,1157.42,41033.08,169051.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,22012,35746.95,0.0,1042.33,36789.28,9993.79,7771.29,3689.03,21454.11,58243.39 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6333,Senior Building Inspector,6935,124338.02,2781.76,6216.9,133336.68,26275.75,12424.5,9998.45,48698.7,182035.38 +Calendar,2015,6,General Administration & Finance,CON,Controller,2.0,Management Unrepresented Employees,0900,Management,1682,Controller,47368,276842.05,0.0,0.0,276842.05,55714.95,12424.5,19786.24,87925.69,364767.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,43033,139770.46,37349.85,14751.94,191872.25,27603.49,12424.5,3262.65,43290.64,235162.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,44571,18802.8,0.0,0.0,18802.8,4851.12,4778.65,1563.64,11193.41,29996.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,53175,9143.02,0.0,1223.55,10366.57,1901.93,3964.73,831.67,6698.33,17064.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,43788,62093.39,5588.18,2218.4,69899.97,13218.61,12073.48,5744.73,31036.82,100936.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49487,67523.78,8252.86,1934.14,77710.78,19013.12,13304.61,6019.11,38336.84,116047.62 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",10517,0.0,0.0,0.0,0.0,0.0,0.0,-159.12,-159.12,-159.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,26853,66580.02,3438.45,404.66,70423.13,13726.93,12424.5,5532.86,31684.29,102107.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41254,26051.06,0.0,0.0,26051.06,6721.18,6546.76,2127.27,15395.21,41446.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,38661,42108.89,0.0,2736.93,44845.82,9493.22,9362.94,3653.55,22509.71,67355.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,5399,41709.05,0.0,0.0,41709.05,8295.31,8071.62,3317.35,19684.28,61393.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,45045,50372.0,0.0,0.0,50372.0,9814.73,7645.85,3993.94,21454.52,71826.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1916,56531.0,20.26,2979.56,59530.82,12915.46,12424.5,4830.96,30170.92,89701.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",12201,1003.5,0.0,0.0,1003.5,0.0,238.93,77.69,316.62,1320.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40438,55567.16,340.7,0.0,55907.86,12400.35,12423.13,4382.57,29206.05,85113.91 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1781,Media/Security Syst Supv,47564,87948.01,0.0,13307.39,101255.4,18138.59,10035.17,8255.65,36429.41,137684.81 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,9738,65803.26,27788.03,6988.33,100579.62,14164.09,12337.77,8165.11,34666.97,135246.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16846,114260.68,0.0,12263.58,126524.26,24876.15,12424.5,2099.24,39399.89,165924.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52965,93416.59,16669.33,6653.16,116739.08,19536.14,11946.65,1947.85,33430.64,150169.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,3524,29545.6,1142.65,2064.09,32752.34,6370.05,6197.32,2463.86,15031.23,47783.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,37535,60636.7,3206.77,2940.83,66784.3,13929.21,11946.63,5153.8,31029.64,97813.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,25680,46761.62,253.01,1000.0,48014.63,10882.82,10349.26,3893.5,25125.58,73140.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,14364,84812.11,0.0,0.0,84812.11,17451.36,12424.5,6660.92,36536.78,121348.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38979,1300.2,0.0,0.0,1300.2,537.25,0.0,1331.35,1868.6,3168.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39836,66977.04,17880.01,2617.42,87474.47,16979.52,13392.0,6481.59,36853.11,124327.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,2064,6243.56,0.0,132.06,6375.62,1186.5,1400.74,494.49,3081.73,9457.35 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,13211,53224.83,0.0,5983.28,59208.11,11735.67,7263.55,4715.42,23714.64,82922.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38631,149099.0,0.0,28909.72,178008.72,30011.21,12424.5,10036.38,52472.09,230480.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23631,63388.52,183.67,7534.96,71107.15,11985.22,0.0,6549.13,18534.35,89641.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34290,113233.59,8022.99,11443.64,132700.22,23611.12,15196.12,2205.61,41012.85,173713.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,42397,38113.01,0.0,0.0,38113.01,7170.28,6212.25,2912.03,16294.56,54407.57 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,17488,54117.01,541.18,728.01,55386.2,11573.7,10035.18,4977.15,26586.03,81972.23 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",37761,175.0,0.0,0.0,175.0,0.0,41.82,13.56,55.38,230.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,22622,93738.12,5194.7,2890.87,101823.69,19609.55,12424.51,8173.03,40207.09,142030.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,21555,3735.32,0.0,366.87,4102.19,846.17,432.41,317.46,1596.04,5698.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,11067,186150.15,11864.09,18816.81,216831.05,40690.87,12352.82,11416.3,64459.99,281291.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39188,14445.38,0.0,480.79,14926.17,0.0,4796.57,1157.22,5953.79,20879.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,24579,11672.0,220.05,96.0,11988.05,2190.04,1911.46,965.16,5066.66,17054.71 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2496,Radiologic Tech Sprv,21125,131451.16,5865.99,12993.02,150310.17,27128.4,12361.79,10241.16,49731.35,200041.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,8608,73659.2,39573.62,9791.94,123024.76,16270.5,12424.5,9547.08,38242.08,161266.84 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,36986,67261.05,0.0,624.0,67885.05,13991.51,12424.5,5582.99,31999.0,99884.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6231,Senior Street Inspector,24616,92542.01,11296.33,22.11,103860.45,19073.14,12424.5,8283.48,39781.12,143641.57 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,32419,93681.02,35826.52,6369.95,135877.49,19745.82,12424.5,10084.03,42254.35,178131.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,47431,41867.2,0.0,14750.17,56617.37,9390.8,6546.76,4551.43,20488.99,77106.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,10288,12444.0,2177.7,622.2,15243.9,2315.82,2867.19,1217.39,6400.4,21644.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,18556,6774.0,0.0,20.33,6794.33,1264.42,1433.6,546.48,3244.5,10038.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,12239,5804.18,108.3,0.0,5912.48,0.0,1890.56,458.9,2349.46,8261.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,20510,139839.39,34461.27,20065.66,194366.32,27640.38,12424.49,3166.27,43231.14,237597.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4068,97303.34,5094.11,6892.56,109290.01,20233.88,12424.51,1822.77,34481.16,143771.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,30305,54886.22,6415.24,737.04,62038.5,12374.74,12323.61,4997.77,29696.12,91734.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40465,67544.47,32961.54,8529.28,109035.29,20812.23,13308.73,8510.86,42631.82,151667.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7472,Wire Rope Cable Maint Mechanic,42587,88235.25,25901.29,2211.8,116348.34,18541.3,12460.34,9490.98,40492.62,156840.96 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,21762,96906.29,40.72,40.72,96987.73,19199.14,10966.9,7851.26,38017.3,135005.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,21107,74443.71,0.0,1798.0,76241.71,15716.25,9915.71,5861.76,31493.72,107735.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,32833,43080.46,165.84,500.0,43746.3,10432.68,11840.49,3580.08,25853.25,69599.55 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,40760,19495.17,0.0,242.41,19737.58,4744.25,4826.39,1659.51,11230.15,30967.73 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),39123,184289.07,0.0,1500.0,185789.07,37388.89,12424.5,10945.16,60758.55,246547.62 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H120,Pilot Of Fire Boats,21509,15587.68,0.0,0.0,15587.68,3073.69,0.0,266.41,3340.1,18927.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,8053,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5098.82,30375.94,92734.94 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,21673,4654.35,81.49,0.0,4735.84,0.0,1148.37,367.21,1515.58,6251.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,39499,65775.46,0.0,720.0,66495.46,13798.63,10280.08,5539.76,29618.47,96113.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42198,69344.68,7026.24,4454.51,80825.43,20196.8,13663.73,6310.3,40170.83,120996.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,15225,85368.08,0.0,624.0,85992.08,17718.62,12424.5,7085.99,37229.11,123221.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44866,43429.79,10022.44,0.0,53452.23,10416.66,12424.5,4056.75,26897.91,80350.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7219,Maintenance Scheduler,2619,75927.03,2660.07,0.0,78587.1,15648.74,12424.5,6382.03,34455.27,113042.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,36494,55559.34,3140.55,419.86,59119.75,11477.1,10445.54,4841.21,26763.85,85883.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,13310,67261.04,0.0,1656.12,68917.16,14202.01,12424.5,5709.58,32336.09,101253.25 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,36148,47909.0,0.0,0.0,47909.0,9668.34,10035.17,3884.97,23588.48,71497.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30439,3940.33,0.0,122.12,4062.45,0.0,1654.61,323.02,1977.63,6040.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,30258,53416.3,0.0,19135.8,72552.1,11981.33,6546.76,5822.86,24350.95,96903.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",45697,3145.22,0.0,5041.7,8186.92,772.83,319.63,127.41,1219.87,9406.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,16765,119463.84,5030.39,1217.7,125711.93,23633.48,12424.5,1421.16,37479.14,163191.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52365,113233.61,33701.27,19289.86,166224.74,25036.04,15196.12,2778.47,43010.63,209235.37 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,29601,61964.07,0.0,1200.0,63164.07,13102.51,10512.14,5093.44,28708.09,91872.16 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,25477,15108.0,0.0,40.0,15148.0,2819.04,1911.46,1187.46,5917.96,21065.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26284,72542.47,19882.56,7446.13,99871.16,15588.13,9079.44,1663.67,26331.24,126202.4 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,28115,60412.24,7630.94,6092.45,74135.63,13595.44,11044.9,6079.45,30719.79,104855.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",49621,89351.96,9624.75,2339.1,101315.81,18856.25,11839.53,8017.64,38713.42,140029.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,15281,24437.0,0.0,0.0,24437.0,5481.21,3345.06,2013.64,10839.91,35276.91 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28842,55882.7,2403.9,2589.08,60875.68,11715.57,12281.15,4779.86,28776.58,89652.26 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,49594,74304.74,0.0,3766.2,78070.94,15450.28,12406.58,6485.06,34341.92,112412.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4737,4380.46,170.57,142.86,4693.89,1167.02,1899.51,372.22,3438.75,8132.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,18301,187097.93,0.0,0.0,187097.93,37581.97,12424.5,19252.93,69259.4,256357.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17953,46546.5,1381.07,620.0,48547.57,11286.46,12376.71,3945.49,27608.66,76156.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9890,28674.39,0.0,0.0,28674.39,0.0,2490.87,2225.59,4716.46,33390.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,50454,12444.0,1263.84,1685.45,15393.29,2354.48,2867.19,1181.01,6402.68,21795.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,23623,77071.03,220.96,1060.0,78351.99,16101.77,12424.5,6100.03,34626.3,112978.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1126,1068.6,0.0,35.62,1104.22,0.01,0.0,420.33,420.34,1524.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9332,Piledriver Supervisor 1,48247,102345.37,0.0,1008.0,103353.37,21264.42,12311.01,8269.08,41844.51,145197.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15054,112696.23,2294.92,11604.9,126596.05,22291.43,12424.5,2100.82,36816.75,163412.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,48217,84791.01,0.0,0.0,84791.01,17475.8,12424.5,6844.03,36744.33,121535.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,4106,67593.03,0.0,0.0,67593.03,13481.75,9079.44,5456.55,28017.74,95610.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6115,Wastewater Control Inspector,38137,22074.0,0.0,0.0,22074.0,4951.2,2867.19,1809.71,9628.1,31702.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,19770,5493.27,41.4,169.13,5703.8,0.0,2568.53,442.62,3011.15,8714.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40220,62861.72,21108.05,1016.89,84986.66,17448.02,12383.71,6630.12,36461.85,121448.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11667,10830.0,0.0,259.92,11089.92,0.0,896.0,860.75,1756.75,12846.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6074,11323.07,0.0,0.0,11323.07,0.0,4910.06,888.96,5799.02,17122.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,12292,11239.16,0.0,25.65,11264.81,2477.12,3758.53,910.41,7146.06,18410.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,48340,54124.0,9851.64,624.0,64599.64,12250.24,12424.5,5264.75,29939.49,94539.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,41786,56406.0,0.0,768.0,57174.0,11784.13,12424.51,4692.3,28900.94,86074.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,4999,2847.0,0.0,0.0,2847.0,529.83,477.87,202.73,1210.43,4057.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,771,13123.1,0.0,184.59,13307.69,0.0,4342.61,1031.56,5374.17,18681.86 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,30735,66913.63,383.49,2010.8,69307.92,14156.24,12360.7,5720.74,32237.68,101545.6 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,6308,18751.8,0.0,390.48,19142.28,4567.1,5620.89,1547.36,11735.35,30877.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,45316,65592.01,0.0,5095.89,70687.9,14521.27,12424.5,5782.41,32728.18,103416.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7272,Carpenter Supervisor 2,28713,13950.01,0.0,0.0,13950.01,2596.11,1433.6,681.29,4711.0,18661.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,987,97536.92,3105.89,10949.52,111592.33,26376.92,12395.47,1844.03,40616.42,152208.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12069,46.22,0.0,0.0,46.22,0.0,14.93,3.59,18.52,64.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10535,7355.85,0.0,232.99,7588.84,0.0,3189.75,610.81,3800.56,11389.4 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,355C,Ct Comp Facilities Coord,13395,79050.02,0.0,3000.0,82050.02,15164.5,8123.71,6514.28,29802.49,111852.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,15504,16708.92,0.0,470.62,17179.54,0.0,5517.85,1331.73,6849.58,24029.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23739,1555.76,0.0,0.0,1555.76,0.0,758.61,120.7,879.31,2435.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,38192,61428.0,5340.88,9449.2,76218.08,13928.79,12424.5,5996.54,32349.83,108567.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,41146,117129.7,3748.93,5120.15,125998.78,23205.21,12424.5,2137.64,37767.35,163766.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,4494,62468.8,13121.62,4680.55,80270.97,13375.02,12424.51,6514.29,32313.82,112584.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10176,56531.0,0.0,5885.18,62416.18,12288.35,12424.5,5144.37,29857.22,92273.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,25377,27738.03,0.0,0.0,27738.03,5162.04,4300.8,2218.01,11680.85,39418.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34919,37358.02,0.0,497.94,37855.96,0.0,3004.28,2932.79,5937.07,43793.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,51231,638.75,0.0,5.11,643.86,0.0,298.66,49.85,348.51,992.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,42324,84644.0,27291.17,6767.78,118702.95,17560.17,12424.5,9492.67,39477.34,158180.29 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,37819,93681.01,18724.7,12385.6,124791.31,21139.14,12424.5,9791.46,43355.1,168146.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32240,32160.0,12108.16,25793.13,70061.29,5709.66,2867.19,1129.33,9706.18,79767.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,857,79722.0,15408.12,2399.0,97529.12,16910.54,12424.5,7790.22,37125.26,134654.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,32611,64709.87,842.04,980.0,66531.91,13344.26,10650.85,5505.56,29500.67,96032.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12666,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1851.75,10265.53,34269.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,19996,31670.0,0.0,0.0,31670.0,5893.75,4778.65,2483.48,13155.88,44825.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,9707,25675.2,0.0,8528.09,34203.29,5758.92,3440.63,2800.3,11999.85,46203.14 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3546,Curator 4,43017,77785.5,0.0,4038.86,81824.36,16563.44,9318.38,6658.54,32540.36,114364.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45805,56276.03,0.0,1400.0,57676.03,12905.55,12424.5,4701.54,30031.59,87707.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12016,3803.25,0.0,22.44,3825.69,0.0,1460.47,296.7,1757.17,5582.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22123,13713.72,0.0,54.51,13768.23,0.0,4568.39,1067.25,5635.64,19403.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,36443,48259.16,2279.48,5309.1,55847.74,12137.56,12416.55,4513.07,29067.18,84914.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",41048,1200.0,0.0,0.0,1200.0,0.0,71.68,93.02,164.7,1364.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4017,3049.88,0.0,14.34,3064.22,8268.44,235.89,3145.55,11649.88,14714.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",5200,Professional Engineering,5264,Airport Noise Abatement Spec,38629,23608.0,0.0,0.0,23608.0,4393.47,4300.79,1886.98,10581.24,34189.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0963,Dept Head III,47938,196311.83,0.0,0.0,196311.83,39458.49,12424.51,18408.39,70291.39,266603.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,44648,18606.92,0.0,303.51,18910.43,4021.12,1982.97,317.42,6321.51,25231.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46077,113233.61,3757.0,18798.55,135789.16,24205.53,15196.12,2305.46,41707.11,177496.27 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,14265,175212.02,0.0,14985.53,190197.55,35358.98,12424.5,5102.19,52885.67,243083.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,22451,118427.0,0.0,0.0,118427.0,23833.74,12424.5,26836.56,63094.8,181521.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,10750,26894.8,0.0,4161.12,31055.92,6032.51,3392.84,2437.5,11862.85,42918.77 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43943,34833.51,1205.97,858.15,36897.63,8186.29,8840.51,2986.52,20013.32,56910.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,1217,97743.37,3224.8,21643.96,122612.13,29042.44,12421.93,2041.49,43505.86,166117.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,7374,27818.0,0.0,580.0,28398.0,6369.67,4778.65,2300.23,13448.55,41846.55 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1280,Employee Relations Representat,44856,15191.0,0.0,17759.28,32950.28,3407.35,2062.29,2623.56,8093.2,41043.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,19731,40716.0,540.27,32941.18,74197.45,10698.29,6212.25,5936.56,22847.1,97044.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",6674,93281.01,0.0,420.92,93701.93,19311.96,12424.51,7400.01,39136.48,132838.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,616,3050.26,0.0,0.0,3050.26,0.0,1487.36,236.59,1723.95,4774.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,38188,59945.92,0.0,0.0,59945.92,12327.43,12424.51,4876.38,29628.32,89574.24 +Calendar,2015,1,Public Protection,POL,Police,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",42423,1104.0,0.0,0.0,1104.0,0.0,0.0,87.33,87.33,1191.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,6754,22794.95,0.0,707.67,23502.62,5646.6,5910.66,1964.18,13521.44,37024.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,27155,118822.46,2756.95,13011.28,134590.69,23527.56,12603.7,2245.67,38376.93,172967.62 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,28432,39775.03,0.0,15.88,39790.91,9572.42,9832.07,3241.11,22645.6,62436.51 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,37876,33915.02,0.0,0.0,33915.02,6311.6,4778.65,2664.74,13754.99,47670.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52191,27202.49,60.95,2352.46,29615.9,864.72,0.0,4548.75,5413.47,35029.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3994,94685.28,13169.55,7556.12,115410.95,19646.7,12424.5,1924.27,33995.47,149406.42 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,36241,61735.01,0.0,0.0,61735.01,12724.01,12424.5,4840.36,29988.87,91723.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",35450,129722.0,0.0,0.0,129722.0,26454.2,10990.9,17259.6,54704.7,184426.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3435,Urban Forestry Inspector,30015,54166.05,0.0,0.0,54166.05,4311.34,11217.89,4394.64,19923.87,74089.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,47157,126994.05,0.0,0.0,126994.05,25557.71,12424.52,9956.68,47938.91,174932.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,30923,18703.82,0.0,2134.98,20838.8,3660.11,3032.6,1600.93,8293.64,29132.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,42305,69902.0,0.0,0.0,69902.0,14407.12,12424.5,5746.09,32577.71,102479.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5512,117088.51,0.0,16499.3,133587.81,25898.65,9756.22,10114.57,45769.44,179357.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,12233,34370.0,0.0,0.0,34370.0,6396.29,5256.52,2726.16,14378.97,48748.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28529,130982.75,0.0,20750.16,151732.91,29805.45,12424.51,2530.34,44760.3,196493.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,43154,2890.0,0.0,0.0,2890.0,537.83,477.86,224.32,1240.01,4130.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,9730,113233.59,5808.54,18854.08,137896.21,25036.02,15196.12,2346.13,42578.27,180474.48 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,46749,67261.0,18310.62,3400.05,88971.67,14293.07,12424.5,7234.4,33951.97,122923.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,38179,116102.76,0.0,4454.99,120557.75,24238.21,12424.51,9386.03,46048.75,166606.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,20205,61499.0,0.0,1376.37,62875.37,12954.72,12376.71,5158.34,30489.77,93365.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,26892,112377.84,8445.3,200.97,121024.11,22054.23,12329.28,1987.09,36370.6,157394.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,31839,43386.96,0.0,0.0,43386.96,9289.73,9782.31,3521.62,22593.66,65980.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18086,24125.05,2539.23,938.42,27602.7,6179.62,7492.07,2108.41,15780.1,43382.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47773,64618.97,21989.27,2677.34,89285.58,18437.11,0.0,7018.92,25456.03,114741.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4087,59215.88,17672.68,3177.86,80066.42,16995.09,11664.04,6252.77,34911.9,114978.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,19122,53520.83,2700.36,2104.85,58326.04,11999.01,12113.53,4731.96,28844.5,87170.54 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,51636,66463.81,0.0,1656.79,68120.6,14055.15,12280.96,5646.49,31982.6,100103.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51434,98821.59,19496.91,8218.18,126536.68,20552.24,12424.49,2110.58,35087.31,161623.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25099,33660.32,606.24,2469.67,36736.23,5980.01,3345.06,629.07,9954.14,46690.37 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,47726,16303.26,1541.26,777.01,18621.53,3637.44,3881.17,1386.01,8904.62,27526.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,21662,62811.0,7675.77,7206.63,77693.4,13882.0,12424.5,6135.26,32441.76,110135.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27225,66687.39,16146.56,2057.06,84891.01,18823.43,13141.54,6581.68,38546.65,123437.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,32501,84599.05,0.0,2673.71,87272.76,17984.81,12424.5,7123.32,37532.63,124805.39 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,354C,Ct Comp App Programmer,45958,23250.0,0.0,2862.14,26112.14,5127.4,2389.33,2174.07,9690.8,35802.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7049,94689.93,28682.43,9998.98,133371.34,19629.61,12424.51,2216.88,34271.0,167642.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46659,56531.0,0.0,6816.45,63347.45,12403.61,12424.5,5227.1,30055.21,93402.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24327,74838.36,0.0,0.0,74838.36,15397.18,12306.71,5958.07,33661.96,108500.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,42130,25496.05,30.46,1584.13,27110.64,5718.77,3345.06,2166.05,11229.88,38340.52 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,23496,28896.0,0.0,280.0,29176.0,6544.16,3345.06,2379.55,12268.77,41444.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,44408,2859.08,8895.76,8720.13,20474.97,0.0,209.18,3337.0,3546.18,24021.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,50097,61711.6,1019.14,755.29,63486.03,12882.19,12328.92,5260.14,30471.25,93957.28 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",6100,Health & Sanitation Inspection,6139,Senior Industrial Hygienist,1931,130910.03,0.0,0.0,130910.03,26346.51,12424.5,9912.29,48683.3,179593.33 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,25826,80262.01,0.0,0.0,80262.01,16548.63,12376.71,6370.91,35296.25,115558.26 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,3574,7326.79,0.0,63.17,7389.96,1625.05,2168.31,592.66,4386.02,11775.98 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,41710,35961.42,3770.81,1070.14,40802.37,8565.64,9036.14,3051.0,20652.78,61455.15 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,18006,80300.61,0.0,360.0,80660.61,16632.02,12382.69,6214.01,35228.72,115889.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7838,962.34,0.0,33.9,996.24,148.39,0.0,433.97,582.36,1578.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,18213,75285.15,24669.65,5146.24,105101.04,15803.92,12372.83,8543.09,36719.84,141820.88 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,46637,12195.5,0.0,0.0,12195.5,0.0,3106.13,944.85,4050.98,16246.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,1964,138712.48,1803.04,5823.86,146339.38,27475.07,12424.49,2289.77,42189.33,188528.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7159,136994.49,536.34,15951.13,153481.96,0.0,0.0,8407.41,8407.41,161889.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18025,11264.68,0.0,0.0,11264.68,181.43,4824.95,919.62,5926.0,17190.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,29183,53740.11,2326.39,0.0,56066.5,12011.41,12391.4,4547.94,28950.75,85017.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32546,110011.07,3874.48,12655.2,126540.75,17405.42,11162.04,8979.31,37546.77,164087.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,21092,96678.88,7441.2,93.6,104213.68,19947.77,12269.19,8580.14,40797.1,145010.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52768,6748.73,0.0,384.92,7133.65,0.0,1809.91,553.69,2363.6,9497.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,13754,48152.1,1530.36,3473.62,53156.08,12309.51,12424.5,4053.12,28787.13,81943.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33999,119855.51,177.16,15639.45,135672.12,23757.9,10986.12,9968.73,44712.75,180384.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,41459,2556.3,0.0,196.72,2753.02,560.85,273.22,217.0,1051.07,3804.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44637,1010.63,0.0,5.88,1016.51,0.0,492.8,78.89,571.69,1588.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,17891,19416.0,0.0,0.0,19416.0,1633.33,6307.83,1576.08,9517.24,28933.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,49292,109886.09,7477.54,8562.05,125925.68,22977.27,12056.19,2202.26,37235.72,163161.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23991,19412.18,3330.71,217.38,22960.27,4667.25,8375.43,1804.42,14847.1,37807.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44721,98783.78,17623.74,10255.46,126662.98,20509.35,12424.5,2114.04,35047.89,161710.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,6269,56835.51,1695.97,7149.35,65680.83,12769.67,11235.21,5152.4,29157.28,94838.11 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,46686,48135.76,16902.67,1777.9,66816.33,10805.98,10865.47,5468.99,27140.44,93956.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27369,67695.29,5488.43,2237.6,75421.32,19189.37,13341.59,5876.42,38407.38,113828.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,27195,138637.93,38404.61,13364.51,190407.05,27385.65,12424.5,3192.27,43002.42,233409.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2485,Supv Biologist,13148,125070.13,0.0,0.0,125070.13,25188.63,12403.6,9968.32,47560.55,172630.68 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3554,Associate Museum Registrar,5804,39420.0,4408.52,0.0,43828.52,9241.97,9557.31,3524.87,22324.15,66152.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45265,97762.02,3372.15,8791.3,109925.47,25902.87,12424.51,1798.93,40126.31,150051.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,50962,5931.0,247.13,494.25,6672.38,1103.76,860.16,517.52,2481.44,9153.82 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,20006,81048.76,0.0,0.0,81048.76,16817.95,9854.37,6332.45,33004.77,114053.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,16922,61804.01,0.0,0.0,61804.01,12242.71,8601.58,5012.1,25856.39,87660.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1326,Customer Service Agent Supv,10329,31930.01,0.0,117.35,32047.36,7188.21,4778.65,2614.0,14580.86,46628.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,34088,33526.46,2451.63,0.0,35978.09,7520.0,4778.64,2863.2,15161.84,51139.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26743,267.71,0.0,26.77,294.48,0.0,0.0,21.89,21.89,316.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,36126,156746.05,0.0,0.0,156746.05,31545.23,12424.5,10447.22,54416.95,211163.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31989,7419.81,0.0,0.0,7419.81,0.0,3156.9,598.79,3755.69,11175.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,27073,51529.92,0.0,0.0,51529.92,9342.37,4300.79,7964.91,21608.07,73137.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,7573,79722.0,0.0,200.0,79922.0,16473.61,12424.5,6546.98,35445.09,115367.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1599,66163.88,14069.09,6048.31,86281.28,19919.39,13053.97,6740.47,39713.83,125995.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,2511,4420.16,0.0,31.69,4451.85,0.0,2066.77,345.3,2412.07,6863.92 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,25527,77071.0,0.0,0.0,77071.0,15884.7,12424.5,6321.51,34630.71,111701.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,16281,117201.06,0.0,0.0,117201.06,23570.31,12424.5,9433.88,45428.69,162629.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,4818,68051.28,0.0,623.86,68675.14,14154.69,12421.69,5604.57,32180.95,100856.09 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,2768,17936.02,21.72,1610.85,19568.59,4884.05,3822.92,1589.68,10296.65,29865.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,39296,1242.86,0.0,14.83,1257.69,0.0,400.21,97.62,497.83,1755.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51903,5158.74,0.0,0.0,5158.74,0.0,2237.01,406.87,2643.88,7802.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1431,Senior Unit Clerk,40396,31418.59,0.0,13764.24,45182.83,7183.83,5495.46,3642.34,16321.63,61504.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5889,119455.92,5679.22,11534.06,136669.2,23809.61,12424.5,347.09,36581.2,173250.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,50026,31334.52,38.49,2327.67,33700.68,8000.76,7248.62,2850.05,18099.43,51800.11 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,13320,101770.08,0.0,0.0,101770.08,20975.25,12424.51,8316.32,41716.08,143486.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47651,57111.29,8611.52,4142.93,69865.74,17108.03,11302.83,5399.02,33809.88,103675.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,45725,118724.01,0.0,0.0,118724.01,23893.95,12424.5,9726.15,46044.6,164768.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,38190,23182.84,0.0,0.0,23182.84,979.37,5707.5,1860.95,8547.82,31730.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46185,69017.19,36163.2,6801.7,111982.09,20689.61,13593.43,8735.07,43018.11,155000.2 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3280,Assistant Recreation Director,36257,1786.2,0.0,0.0,1786.2,308.49,0.0,141.11,449.6,2235.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,22600,100554.01,0.0,0.0,100554.01,20724.83,12424.5,8104.4,41253.73,141807.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,42279,145659.05,0.0,0.0,145659.05,29325.26,12424.49,10057.77,51807.52,197466.57 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,193,26529.21,0.0,0.0,26529.21,5946.39,3328.27,416.58,9691.24,36220.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,20052,56240.0,0.0,19430.92,75670.92,12339.1,4778.66,9143.66,26261.42,101932.34 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,33723,31779.98,0.0,784.38,32564.36,6782.42,5154.98,2622.12,14559.52,47123.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",37200,135665.39,0.0,0.0,135665.39,27274.63,12424.5,24908.79,64607.92,200273.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,26337,159707.0,0.0,0.0,159707.0,32121.7,12424.5,17720.4,62266.6,221973.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12094,3137.36,0.0,9.92,3147.28,0.0,1209.08,244.0,1453.08,4600.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17074,66794.34,1615.86,2380.88,70791.08,18951.33,13163.58,5471.61,37586.52,108377.6 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16868,100375.8,0.0,1125.0,101500.8,20854.41,11851.06,8184.14,40889.61,142390.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26593,315.9,0.0,31.59,347.49,0.0,23.89,25.3,49.19,396.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,37659,57656.84,0.0,619.2,58276.04,12002.88,12328.92,4832.1,29163.9,87439.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,49239,6157.55,38.33,11.22,6207.1,0.0,2879.14,481.36,3360.5,9567.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,5386,81157.03,705.53,600.0,82462.56,16838.39,12424.5,6453.19,35716.08,118178.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,35901,57059.98,31.2,5280.56,62371.74,7291.89,8171.5,4974.72,20438.11,82809.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50843,896.18,0.0,0.0,896.18,0.0,376.32,69.55,445.87,1342.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,17148,75154.65,11664.98,4798.85,91618.48,15901.73,11258.75,7313.3,34473.78,126092.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48925,124406.1,0.0,629.76,125035.86,25061.63,12281.15,9818.46,47161.24,172197.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,46758,24268.0,0.0,0.0,24268.0,5324.4,1911.46,2842.61,10078.47,34346.47 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,4234,102988.71,0.0,18769.02,121757.73,23725.49,6260.02,9508.88,39494.39,161252.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38933,19202.4,33.33,492.51,19728.24,0.0,5160.95,1527.36,6688.31,26416.55 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,24491,51726.5,3461.2,9548.03,64735.73,14146.72,12376.71,5026.26,31549.69,96285.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25625,21018.59,3400.73,341.2,24760.52,5171.14,6513.08,1895.66,13579.88,38340.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",5920,87269.69,0.0,1420.0,88689.69,18250.93,12424.51,7165.94,37841.38,126531.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31921,108172.29,0.0,4280.3,112452.59,22016.03,11382.52,9209.1,42607.65,155060.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43855,18168.9,0.0,605.71,18774.61,322.08,0.0,2562.56,2884.64,21659.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",2601,86753.51,43378.59,18002.67,148134.77,17090.16,8744.94,2458.03,28293.13,176427.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49718,119463.83,26755.75,3678.17,149897.75,23633.48,12424.5,2492.38,38550.36,188448.11 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,29898,94139.03,0.0,0.0,94139.03,18746.12,10035.18,7472.15,36253.45,130392.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,30095,94509.9,5519.75,4258.5,104288.15,19805.25,12472.29,8317.46,40595.0,144883.15 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4331,Security Analyst,12770,110858.04,0.0,624.0,111482.04,22436.27,12424.5,9145.84,44006.61,155488.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,25784,89794.89,0.0,0.0,89794.89,17962.71,9960.51,6585.06,34508.28,124303.17 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,17896,77064.56,0.0,1565.0,78629.56,16178.26,12423.49,6254.5,34856.25,113485.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52289,10970.27,248.92,748.13,11967.32,0.0,2972.74,926.79,3899.53,15866.85 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,13344,22069.02,0.0,281.9,22350.92,5347.02,6152.35,1796.78,13296.15,35647.07 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,6256,115007.74,130.56,4111.25,119249.55,28985.5,12000.87,1821.2,42807.57,162057.12 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,31470,152499.0,0.0,14121.9,166620.9,32225.02,12424.5,10548.91,55198.43,221819.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,35564,58933.21,8977.92,1329.32,69240.45,12252.19,12239.09,5454.1,29945.38,99185.83 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,21316,24378.94,0.0,0.0,24378.94,6289.79,6212.25,1980.42,14482.46,38861.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,35216,63887.0,4741.0,5213.91,73841.91,13466.14,12424.51,5793.0,31683.65,105525.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,16838,102177.11,0.0,4664.06,106841.17,20786.45,11205.1,1819.55,33811.1,140652.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,24423,101531.03,0.0,1080.0,102611.03,21148.39,12424.5,8393.9,41966.79,144577.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,8514,66102.0,0.0,54.0,66156.0,13634.99,12424.5,5474.11,31533.6,97689.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,4261,67061.98,0.0,4064.33,71126.31,13954.13,12388.66,5832.59,32175.38,103301.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,44213,147148.95,0.0,2132.83,149281.78,29974.3,9875.09,10353.36,50202.75,199484.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51226,8069.71,0.0,78.6,8148.31,0.0,3437.65,655.33,4092.98,12241.29 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,39590,2907.0,893.29,242.25,4042.54,0.0,860.16,313.76,1173.92,5216.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,43841,7080.0,0.0,9993.31,17073.31,1604.19,1433.6,1363.61,4401.4,21474.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",4072,93738.01,6950.19,5291.36,105979.56,19815.12,12424.5,8489.81,40729.43,146708.99 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,865,93987.01,0.0,0.0,93987.01,19623.59,10990.9,7586.98,38201.47,132188.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,33222,51405.02,0.0,4618.18,56023.2,12701.49,12424.5,4375.96,29501.95,85525.15 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,10755,92643.01,0.0,0.0,92643.01,19068.91,12424.5,7538.67,39032.08,131675.09 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,44381,20609.4,0.0,160.0,20769.4,3765.49,2341.54,1643.39,7750.42,28519.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",22085,180314.38,74326.13,30442.11,285082.62,41410.66,15196.12,4810.16,61416.94,346499.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39644,7759.46,0.0,0.0,7759.46,0.0,3364.77,610.29,3975.06,11734.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,14826,70164.45,23507.78,10710.59,104382.82,15875.12,12410.17,8506.93,36792.22,141175.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,2003,83699.0,0.0,2200.0,85899.0,17704.26,12424.5,6688.35,36817.11,122716.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52701,14423.5,0.0,294.09,14717.59,0.0,5540.23,1140.49,6680.72,21398.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,10112,38973.01,0.0,0.0,38973.01,7431.6,6690.11,3119.88,17241.59,56214.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28825,1771.24,0.0,0.0,1771.24,0.0,863.68,137.38,1001.06,2772.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,14594,112776.02,0.0,2255.52,115031.54,23150.48,12424.5,9410.23,44985.21,160016.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,9034,52431.11,13342.51,0.0,65773.62,12557.88,12424.5,5298.65,30281.03,96054.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,35708,53243.02,0.0,2086.51,55329.53,11381.42,10608.62,4545.91,26535.95,81865.48 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2462,Microbiologist,38452,6852.0,0.0,0.0,6852.0,1536.9,955.74,554.11,3046.75,9898.75 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,32880,93227.74,10602.59,8264.08,112094.41,20238.34,12364.77,9229.09,41832.2,153926.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43723,113233.58,46874.15,17981.69,178089.42,24917.38,15196.12,3007.18,43120.68,221210.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42151,126719.28,201.15,13351.77,140272.2,27664.68,11220.28,10131.99,49016.95,189289.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,14793,34570.98,21.04,2604.95,37196.97,9331.98,8007.89,3048.4,20388.27,57585.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9100,Street Transit,9197,Signal And Systems Engineer,20851,9616.2,0.0,0.0,9616.2,0.0,788.48,744.55,1533.03,11149.23 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,35698,0.0,0.0,8926.05,8926.05,0.0,68.5,682.85,751.35,9677.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,12872,56531.0,0.0,1965.6,58496.6,11667.81,12424.5,4834.31,28926.62,87423.22 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42353,26791.5,0.0,0.0,26791.5,4985.91,3106.13,2134.88,10226.92,37018.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25273,68795.69,18319.47,5521.33,92636.49,20389.21,13557.64,7237.9,41184.75,133821.24 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,15533,37711.01,180.77,0.0,37891.78,8330.92,7167.99,2939.5,18438.41,56330.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,39492,8577.42,0.0,61.31,8638.73,0.0,0.0,683.21,683.21,9321.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45825,119614.8,67.13,18748.89,138430.82,25178.78,10924.01,5185.73,41288.52,179719.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,50061,67261.04,0.0,624.0,67885.04,14001.43,12424.5,5560.71,31986.64,99871.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35295,8871.6,13.54,0.0,8885.14,0.0,2935.89,687.89,3623.78,12508.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,48038,84599.0,0.0,600.0,85199.0,17548.1,12424.5,6850.76,36823.36,122022.36 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,33504,78661.29,0.0,1029.34,79690.63,16418.39,12376.71,6542.06,35337.16,115027.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,41636,81642.21,0.0,1354.08,82996.29,17083.92,12424.5,6574.28,36082.7,119078.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36989,366.95,0.0,4.3,371.25,0.0,122.45,28.75,151.2,522.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,34332,62541.86,5869.14,2955.27,71366.27,13528.71,12167.65,5638.18,31334.54,102700.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,15539,135421.0,0.0,5623.34,141044.34,28369.81,12424.5,10178.96,50973.27,192017.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3431,2204.0,0.0,0.0,2204.0,568.64,955.74,180.5,1704.88,3908.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,8851,12813.57,0.0,107.18,12920.75,1165.74,2260.91,1013.75,4440.4,17361.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21610,11477.69,0.0,0.0,11477.69,1748.49,4916.03,919.99,7584.51,19062.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,561,128921.39,0.0,1917.85,130839.24,26258.66,10734.17,7023.01,44015.84,174855.08 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,30083,0.0,0.0,24.13,24.13,0.0,68.5,1.85,70.35,94.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,1415,28892.51,0.0,0.0,28892.51,5473.86,6451.18,2290.16,14215.2,43107.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,30415,26608.8,620.08,2175.13,29404.01,5319.47,5196.78,2347.4,12863.65,42267.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,34561,51208.5,3070.29,3167.06,57445.85,12393.38,12376.71,4731.1,29501.19,86947.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,52623,112776.03,167.04,5638.81,118581.88,23831.37,12424.5,9720.34,45976.21,164558.09 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,27239,68571.07,7967.97,5870.58,82409.62,14387.36,12424.5,6529.05,33340.91,115750.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28971,6784.18,0.0,0.0,6784.18,0.0,2941.86,540.17,3482.03,10266.21 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8603,Emergency Services Coord III,1679,1518.15,0.0,0.0,1518.15,0.0,173.23,117.83,291.06,1809.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,41006,26429.0,0.0,0.0,26429.0,4918.43,2867.16,2097.22,9882.81,36311.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45100,119450.18,12505.47,6788.43,138744.08,23683.73,12424.5,2308.85,38417.08,177161.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,1199,10338.01,0.0,0.0,10338.01,2273.34,2867.18,830.68,5971.2,16309.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",24721,11841.3,0.0,0.0,11841.3,0.0,2819.45,919.07,3738.52,15579.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,50433,76338.0,0.0,1278.86,77616.86,15997.18,12424.5,6388.26,34809.94,112426.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,28632,86378.03,62.12,1082.92,87523.07,17955.99,12384.65,7184.68,37525.32,125048.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,19064,9355.06,0.0,94.47,9449.53,0.0,1860.69,733.43,2594.12,12043.65 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44035,97788.59,135485.7,20375.85,253650.14,28729.5,12424.5,4283.33,45437.33,299087.47 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,45939,158707.01,0.0,0.0,158707.01,31940.4,12424.5,27911.29,72276.19,230983.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,15780,69746.07,0.0,0.0,69746.07,14374.93,12424.5,5784.91,32584.34,102330.41 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,164.0,Physicians and Dentists - Miscellaneous,2500,Med Therapy & Auxiliary,2598,Asst Med Examiner,40814,145257.6,2777.57,15990.0,164025.17,27705.39,7454.7,10294.48,45454.57,209479.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,49645,51665.54,0.0,0.0,51665.54,12385.11,12424.5,4201.46,29011.07,80676.61 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,25050,76983.76,0.0,2819.15,79802.91,15879.35,12410.35,6356.52,34646.22,114449.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,24726,5804.0,0.0,0.0,5804.0,1080.12,955.74,446.69,2482.55,8286.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,27772,66580.0,0.0,0.0,66580.0,13722.34,12424.5,5293.53,31440.37,98020.37 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,10912,46015.71,0.0,0.0,46015.71,0.0,6050.97,3430.05,9481.02,55496.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,50918,26642.84,1195.38,4927.81,32766.03,7089.57,5213.65,2712.89,15016.11,47782.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,6642,62468.8,46135.6,2441.45,111045.85,12889.96,12424.51,8761.21,34075.68,145121.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1920,Inventory Clerk,12370,53973.01,7159.96,2290.19,63423.16,13206.13,12424.5,5030.03,30660.66,94083.82 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,47591,1028.86,0.0,0.0,1028.86,0.0,340.48,79.98,420.46,1449.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2456,Asst Forensic Toxicologist 1,6711,30439.27,0.0,0.0,30439.27,0.0,3420.2,2359.59,5779.79,36219.06 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,13930,174700.75,0.0,0.0,174700.75,35239.56,12424.5,19039.86,66703.92,241404.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4231,Senior Estate Investigator,3107,91191.01,0.0,0.0,91191.01,18794.97,12424.5,7488.09,38707.56,129898.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,5738,110000.8,0.0,0.0,110000.8,23491.62,7230.7,8879.58,39601.9,149602.7 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,8380,208693.14,0.0,0.0,208693.14,41979.5,12101.95,10891.13,64972.58,273665.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2687,113222.99,46653.03,24967.73,184843.75,26627.67,15196.12,3097.47,44921.26,229765.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36409,94835.29,19043.17,16318.51,130196.97,27065.22,12048.77,2209.4,41323.39,171520.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19446,1294.85,0.0,0.0,1294.85,0.0,561.49,100.24,661.73,1956.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1298,11212.85,0.0,0.0,11212.85,0.0,4862.29,897.97,5760.26,16973.11 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",40400,52377.47,464.91,7705.83,60548.21,12614.39,8766.86,1200.79,22582.04,83130.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,13135,70245.0,0.0,6937.05,77182.05,15324.92,0.0,6359.87,21684.79,98866.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,22942,123776.01,4558.69,732.76,129067.46,24910.01,12424.5,9889.86,47224.37,176291.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,24698,96930.04,0.0,0.0,96930.04,19972.31,12424.5,7687.08,40083.89,137013.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16058,25692.77,0.0,2976.58,28669.35,0.0,1979.68,677.62,2657.3,31326.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,46440,15864.0,6675.4,2990.9,25530.3,3249.61,1911.46,1600.72,6761.79,32292.09 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,31994,9072.0,0.0,0.0,9072.0,1644.76,955.73,700.46,3300.95,12372.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8195,5232.6,0.0,66.08,5298.68,209.87,0.0,703.21,913.08,6211.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51169,67021.94,2223.54,2125.84,71371.32,18944.55,13206.94,5191.59,37343.08,108714.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,44057,725.9,0.0,33.06,758.96,0.0,167.25,58.9,226.15,985.11 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,14034,79718.3,0.0,0.0,79718.3,16411.2,12424.5,6478.45,35314.15,115032.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,9079,107978.02,619.2,7202.47,115799.69,22308.41,12424.51,9463.99,44196.91,159996.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5215,Fire Protection Engineer,45824,143353.75,831.6,0.0,144185.35,28837.94,12424.5,10268.09,51530.53,195715.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",33937,15381.58,0.0,0.0,15381.58,0.0,3631.78,1193.83,4825.61,20207.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,12730,60248.01,0.0,624.0,60872.01,12546.13,12424.5,5045.82,30016.45,90888.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11243,6853.09,0.0,0.0,6853.09,0.0,2913.49,543.59,3457.08,10310.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12737,121934.8,0.0,250.0,122184.8,24515.65,12424.51,9768.67,46708.83,168893.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4895,119461.64,5353.35,12755.19,137570.18,23641.92,12424.5,2296.93,38363.35,175933.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39358,54174.91,2561.55,5998.22,62734.68,13169.38,12057.15,5026.03,30252.56,92987.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18649,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3372.94,18198.79,61966.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42298,5286.16,0.0,0.0,5286.16,0.0,2292.26,424.2,2716.46,8002.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39689,851.0,0.0,0.0,851.0,219.55,238.93,65.9,524.38,1375.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",7374,63179.57,0.0,940.0,64119.57,12726.97,7645.85,5137.39,25510.21,89629.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12462,68381.29,24503.49,4675.48,97560.26,20016.41,13473.89,7628.07,41118.37,138678.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51937,35385.1,0.0,718.54,36103.64,333.12,3118.19,2795.28,6246.59,42350.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,36325,59097.77,994.93,1540.0,61632.7,13516.09,12424.5,4765.97,30706.56,92339.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14309,112510.46,0.0,12769.83,125280.29,23860.64,10529.65,9748.19,44138.48,169418.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,25292,101770.03,0.0,0.0,101770.03,20975.25,12424.5,8328.24,41727.99,143498.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6556,99167.26,1187.63,12936.85,113291.74,20836.05,8807.9,8723.67,38367.62,151659.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,49282,46508.0,8856.55,12587.1,67951.65,10645.42,7215.77,5460.8,23321.99,91273.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33605,51302.73,0.0,5391.79,56694.52,4275.19,4240.22,3429.09,11944.5,68639.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21037,58051.09,3266.37,1461.04,62778.5,15446.63,13293.68,4731.58,33471.89,96250.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7284,Utility Plumber Supervisor 2,4243,125004.1,26239.42,18846.26,170089.78,26436.46,12424.5,10587.44,49448.4,219538.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11465,3378.51,0.0,25.8,3404.31,0.0,839.25,263.91,1103.16,4507.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,8076,2800.0,0.0,0.0,2800.0,628.04,477.86,235.73,1341.63,4141.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3888,91672.22,0.0,11101.86,102774.08,21051.29,8925.03,8342.86,38319.18,141093.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4135,440.8,0.0,0.0,440.8,0.0,191.14,40.17,231.31,672.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,40554,101531.0,1746.46,0.0,103277.46,20926.02,12424.51,8312.37,41662.9,144940.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,33847,1572.24,0.0,0.0,1572.24,0.0,0.0,124.21,124.21,1696.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9183,"Deputy Dir I, MTA",22512,178227.53,0.0,0.0,178227.53,35786.54,12424.5,17978.95,66189.99,244417.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26453,26427.3,3355.15,279.27,30061.72,6852.01,8269.83,2272.78,17394.62,47456.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32897,7924.67,0.0,67.41,7992.08,0.0,2099.63,620.32,2719.95,10712.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15831,113233.6,37423.14,21677.69,172334.43,25257.38,15196.11,2878.91,43332.4,215666.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,30260,57213.5,732.2,0.0,57945.7,11681.99,11318.18,4787.01,27787.18,85732.88 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,39970,28622.07,0.0,39687.13,68309.2,6279.68,0.0,6831.37,13111.05,81420.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41860,69147.24,8802.36,5037.88,82987.48,20346.3,13625.2,6481.47,40452.97,123440.45 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,36740,16064.18,489.6,0.0,16553.78,0.0,3839.35,1283.34,5122.69,21676.47 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,34252,67878.6,21212.6,8459.96,97551.16,15067.36,12418.53,8483.56,35969.45,133520.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50778,10474.17,579.96,68.32,11122.45,0.0,3488.43,862.44,4350.87,15473.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38389,0.0,0.0,879.4,879.4,0.0,68.5,67.27,135.77,1015.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H110,Marine Engineer Of Fire Boats,44228,137411.54,55343.4,24995.81,217750.75,32249.46,13905.89,566.49,46721.84,264472.59 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,11948,46527.19,20789.38,2981.88,70298.45,9474.93,9150.89,5516.83,24142.65,94441.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",4791,106203.87,15050.09,7863.67,129117.63,22504.28,12424.48,9936.26,44865.02,173982.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27878,119450.16,1066.36,9509.23,130025.75,23683.75,12424.5,2211.4,38319.65,168345.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24412,1997.38,0.0,0.0,1997.38,0.0,866.13,162.1,1028.23,3025.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,22840,111433.3,14978.87,6328.88,132741.05,23154.73,12370.74,9992.64,45518.11,178259.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,42397,32773.01,0.0,0.0,32773.01,7350.98,6212.25,2553.02,16116.25,48889.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52890,34566.3,0.0,0.0,34566.3,6939.88,5304.3,2662.26,14906.44,49472.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39541,61213.29,20213.61,1576.92,83003.82,17110.34,12055.89,6226.21,35392.44,118396.26 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,4541,3040.0,0.0,0.0,3040.0,0.0,181.59,235.64,417.23,3457.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,13805,28672.0,0.0,185.86,28857.86,7373.92,6690.11,2353.48,16417.51,45275.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27517,44334.25,2139.8,733.67,47207.72,11787.21,10764.64,3540.45,26092.3,73300.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",39151,90949.04,0.0,1466.8,92415.84,19046.25,12113.89,7311.2,38471.34,130887.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,32291,62581.8,0.0,130.0,62711.8,11586.87,6546.76,5089.65,23223.28,85935.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,20388,81776.02,0.0,1662.2,83438.22,17193.6,12424.5,6914.92,36533.02,119971.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,17542,93738.09,656.02,6966.35,101360.46,20547.93,12424.51,8004.33,40976.77,142337.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,39657,60569.75,0.0,878.05,61447.8,12820.51,9235.53,4938.78,26994.82,88442.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,6808,85432.81,0.0,0.0,85432.81,17657.59,12424.5,6733.02,36815.11,122247.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,35830,85047.3,11006.55,10436.29,106490.14,19046.27,12424.5,8706.36,40177.13,146667.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,49450,60231.8,12169.09,11578.07,83978.96,13540.74,9007.75,6846.12,29394.61,113373.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16800,3533.37,0.0,8.58,3541.95,0.0,1170.77,274.48,1445.25,4987.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,27107,16553.17,0.0,0.0,16553.17,3712.89,2347.93,1281.45,7342.27,23895.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,17056,85221.0,4718.12,891.33,90830.45,17581.77,12424.5,7334.09,37340.36,128170.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,431,143188.02,0.0,0.0,143188.02,28816.77,12424.5,10096.86,51338.13,194526.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,35243,47693.11,0.0,40326.87,88019.98,10463.91,4348.58,9793.74,24606.23,112626.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30091,20485.59,0.0,20753.6,41239.19,3728.72,1999.86,2882.62,8611.2,49850.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40702,56531.0,0.0,6541.34,63072.34,12422.49,12424.5,5053.09,29900.08,92972.42 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,40896,187704.0,0.0,0.0,187704.0,37607.27,12424.5,18124.79,68156.56,255860.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",10046,15203.03,0.0,0.0,15203.03,0.0,3619.84,1179.25,4799.09,20002.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45596,7525.25,0.0,33.48,7558.73,0.0,2900.04,586.11,3486.15,11044.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,31889,117129.7,71607.14,30162.78,218899.62,23205.2,12424.5,3633.99,39263.69,258163.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,13803,97234.68,13771.59,19326.88,130333.15,20187.52,11239.59,10021.71,41448.82,171781.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,41507,89331.83,0.0,0.0,89331.83,18378.02,12424.51,7080.83,37883.36,127215.19 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,39600,44660.07,0.0,506.03,45166.1,9819.13,7406.92,3587.03,20813.08,65979.18 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,9078,25000.0,0.0,0.0,25000.0,5611.81,6690.12,1990.62,14292.55,39292.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,8388,68116.79,0.0,812.2,68928.99,14136.43,11194.0,5662.09,30992.52,99921.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19807,68867.76,1290.68,0.0,70158.44,14161.84,12424.5,5657.56,32243.9,102402.34 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,26677,6713.0,89.91,0.0,6802.91,0.0,1672.53,526.69,2199.22,9002.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51134,119455.93,4898.62,10153.87,134508.42,23662.82,12424.5,2236.3,38323.62,172832.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,20022,54251.46,0.0,0.0,54251.46,13004.06,12424.5,4416.72,29845.28,84096.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50405,41738.84,1266.74,964.41,43969.99,12315.11,8300.53,3389.47,24005.11,67975.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,14831,47667.0,0.0,0.0,47667.0,8870.85,5734.39,3812.75,18417.99,66084.99 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27497,3878.0,15.75,0.0,3893.75,1000.54,1654.61,325.15,2980.3,6874.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41691,107744.76,520.84,19205.62,127471.22,23942.65,10984.34,9886.79,44813.78,172285.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48966,9238.0,1782.64,265.17,11285.81,1641.64,955.73,193.33,2790.7,14076.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",52206,35807.73,0.0,0.0,35807.73,6491.96,2341.54,4079.56,12913.06,48720.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,22705,119455.93,12016.02,7150.3,138622.25,23662.84,12424.5,2353.54,38440.88,177063.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3723,0.0,0.0,250.0,250.0,0.0,34.25,0.0,34.25,284.25 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7314,Aprnt Stationary Engineer I,2800,10790.6,3435.08,0.0,14225.68,2372.85,2365.43,1134.01,5872.29,20097.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,27396,49679.0,0.0,6548.65,56227.65,12941.5,12424.5,4592.3,29958.3,86185.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33181,1928.0,0.0,0.0,1928.0,0.0,740.69,149.65,890.34,2818.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,24492,53973.0,587.87,624.0,55184.87,13095.25,12424.5,4571.43,30091.18,85276.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46434,4840.61,0.0,198.16,5038.77,555.86,364.37,71.84,992.07,6030.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3430,113275.72,2105.36,10147.12,125528.2,23572.89,12428.03,2129.4,38130.32,163658.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers Int, Local 261",3400,Agriculture & Horticulture,3408,Apprentice Arborist Tech I,5786,23668.02,728.03,156.6,24552.65,5347.31,6690.12,1847.46,13884.89,38437.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16328,20290.81,3895.6,290.72,24477.13,5256.11,6289.84,2016.35,13562.3,38039.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,5883,36768.92,16.07,500.0,37284.99,8772.42,10100.11,3097.07,21969.6,59254.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9181,"Manager VII, MTA",48839,170335.01,0.0,0.0,170335.01,34279.68,12424.5,17963.92,64668.1,235003.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,20351,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2322.2,12775.55,44075.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27505,42779.2,0.0,4242.02,47021.22,10902.44,11420.99,3561.3,25884.73,72905.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,47434,79722.0,285.66,1159.0,81166.66,16668.49,12424.48,6727.22,35820.19,116986.85 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8601,Emergency Services Coord I,8121,11252.02,0.0,0.0,11252.02,2523.84,1911.46,904.47,5339.77,16591.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27883,66279.13,12971.81,4073.09,83324.03,19217.94,13053.32,6501.84,38773.1,122097.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,28531,80357.01,1929.9,957.75,83244.66,16566.16,12424.5,6818.28,35808.94,119053.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,623,59317.81,2839.59,9951.75,72109.15,1434.71,0.0,6797.48,8232.19,80341.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,41442,25734.0,2492.98,0.0,28226.98,5646.06,2867.19,2288.07,10801.32,39028.3 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,48062,56253.02,3943.99,5006.93,65203.94,13044.7,7132.14,5232.46,25409.3,90613.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27379,67242.92,1399.58,1821.87,70464.37,18949.78,13252.64,5163.14,37365.56,107829.93 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7430,Asst Electronic Main Tech,21044,76460.65,202.13,0.0,76662.78,15684.26,11970.53,6205.78,33860.57,110523.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,18906,45836.0,8992.2,3115.89,57944.09,8740.11,6690.11,4480.83,19911.05,77855.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",31077,16190.82,0.0,0.0,16190.82,0.0,3413.75,1255.82,4669.57,20860.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12823,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1780.95,10194.72,34198.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17617,112589.0,6540.04,18881.99,138011.03,24880.4,15109.21,2304.74,42294.35,180305.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2927,44253.2,0.0,2296.12,46549.32,10135.74,9844.57,3501.44,23481.75,70031.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3436,Arborist Technician Supervisor,34765,91653.0,1221.05,4496.04,97370.09,18892.11,12424.49,7803.27,39119.87,136489.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25066,3616.81,0.0,0.0,3616.81,0.0,1763.63,280.49,2044.12,5660.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,3533,6076.44,0.0,0.0,6076.44,0.0,1986.12,470.44,2456.56,8533.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26114,55003.7,1485.91,1508.15,57997.76,13643.7,6975.34,984.82,21603.86,79601.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,48061,66580.01,912.06,4103.61,71595.68,14155.5,12424.5,5918.78,32498.78,104094.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,22978,78741.87,0.0,1494.0,80235.87,16528.75,12424.5,6320.06,35273.31,115509.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33495,33145.72,4438.39,987.28,38571.39,8750.42,10339.75,2958.52,22048.69,60620.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,49213,84644.0,36769.1,9097.78,130510.88,18044.86,12424.5,9800.46,40269.82,170780.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35949,1384.25,0.0,24.99,1409.24,0.0,674.99,109.39,784.38,2193.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,6130,22778.58,0.0,1293.8,24072.38,4878.77,3861.33,2046.68,10786.78,34859.16 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,11571,125815.14,0.0,0.0,125815.14,25316.37,12424.5,9926.96,47667.83,173482.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52940,62370.57,0.0,4795.32,67165.89,13158.8,11032.72,5486.06,29677.58,96843.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,1787,54124.02,0.0,80.0,54204.02,12125.34,12424.5,4363.78,28913.62,83117.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4582,54440.1,0.0,6020.59,60460.69,14143.11,12424.5,4642.74,31210.35,91671.04 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",24478,70521.76,1790.8,6528.25,78840.81,17537.6,12030.98,1599.47,31168.05,110008.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,26259,67729.02,703.88,0.0,68432.9,13959.24,12424.5,5571.5,31955.24,100388.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,29076,2410.8,117.06,108.0,2635.86,0.0,573.44,204.07,777.51,3413.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,12207,5940.2,344.81,0.0,6285.01,1332.39,955.73,484.99,2773.11,9058.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,24753,67445.0,4323.9,376.64,72145.54,13531.51,9079.47,5861.8,28472.78,100618.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,50451,137101.0,0.0,0.0,137101.0,27592.09,12424.5,25072.93,65089.52,202190.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,33842,60871.39,0.0,0.0,60871.39,12543.56,12424.03,4715.06,29682.65,90554.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20049,56531.0,0.0,6103.1,62634.1,12264.26,12424.5,5071.58,29760.34,92394.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,36244,88701.02,0.0,0.0,88701.02,18240.03,12424.5,7192.07,37856.6,126557.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37748,5539.19,0.0,8.88,5548.07,0.0,1842.77,430.37,2273.14,7821.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,32664,53535.37,0.0,1872.27,55407.64,11369.36,10826.64,4526.11,26722.11,82129.75 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,30452,143188.03,0.0,0.0,143188.03,28816.75,12424.5,10260.88,51502.13,194690.16 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,7437,181802.66,0.0,0.0,181802.66,36562.35,12424.5,28376.96,77363.81,259166.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,12694,81157.0,528.5,16205.13,97890.63,19217.49,12424.5,7980.87,39622.86,137513.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",30009,7684.19,0.0,0.0,7684.19,0.0,1821.85,596.41,2418.26,10102.45 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4331,Security Analyst,35263,110858.01,0.0,0.0,110858.01,22310.68,12424.5,9186.43,43921.61,154779.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33651,44183.92,3146.03,1194.14,48524.09,11773.27,13048.0,3678.27,28499.54,77023.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",16763,110561.56,0.0,13820.23,124381.79,24071.68,12759.01,2111.61,38942.3,163324.09 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,40268,103081.2,0.0,0.0,103081.2,20747.84,11087.74,8250.54,40086.12,143167.32 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,51556,32934.71,0.0,0.0,32934.71,0.0,5525.32,2625.82,8151.14,41085.85 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,7298,149797.65,0.0,175.0,149972.65,30157.86,9939.6,10365.02,50462.48,200435.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,4407,100403.23,6852.42,1389.9,108645.55,20914.07,12424.62,8828.02,42166.71,150812.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",34540,18495.69,0.0,0.0,18495.69,0.0,4397.85,1432.77,5830.62,24326.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,10511,8880.0,0.0,0.0,8880.0,1609.94,955.73,687.63,3253.3,12133.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,18207,139535.3,7693.29,8521.54,155750.13,27586.44,12424.5,2474.0,42484.94,198235.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,1992,47278.21,0.0,1040.0,48318.21,11577.79,12424.5,3925.23,27927.52,76245.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",20708,21243.0,0.0,0.0,21243.0,0.0,4987.72,1648.79,6636.51,27879.51 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,394,83013.75,0.0,1291.79,84305.54,17412.63,12195.96,6796.66,36405.25,120710.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,27786,129895.0,0.0,0.0,129895.0,26141.48,12424.5,9952.08,48518.06,178413.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,33697,15110.0,4197.98,1263.26,20571.24,3600.47,3345.07,1646.62,8592.16,29163.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,24863,92001.3,38411.43,8227.88,138640.61,19656.54,12424.5,10058.58,42139.62,180780.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31120,113233.6,41144.98,16651.37,171029.95,24488.43,15196.12,2906.15,42590.7,213620.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,47950,51477.0,14725.82,0.0,66202.82,12342.84,12424.5,5327.9,30095.24,96298.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,4469,50513.07,3191.06,2421.32,56125.45,12460.61,11479.95,4546.82,28487.38,84612.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,9783,100554.02,0.0,0.0,100554.02,20721.15,12424.51,8107.14,41252.8,141806.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,27052,14796.0,0.0,47.16,14843.16,2762.3,1911.44,1135.77,5809.51,20652.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22738,54516.59,0.0,980.0,55496.59,12440.03,12072.07,4520.9,29033.0,84529.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16119,5289.61,0.0,0.0,5289.61,1364.71,2293.76,418.08,4076.55,9366.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,16305,119467.42,4017.29,15336.42,138821.13,23620.99,12424.5,2365.02,38410.51,177231.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,20715,1272.5,0.0,0.0,1272.5,285.4,238.93,111.1,635.43,1907.93 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,50529,139412.56,0.0,6970.67,146383.23,29479.27,8386.54,10171.36,48037.17,194420.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,33774,35783.69,0.0,3333.02,39116.71,8661.38,6065.91,3228.05,17955.34,57072.05 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,4643,79663.01,0.0,2416.14,82079.15,14795.86,6690.12,4897.05,26383.03,108462.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,38336,19332.0,0.0,10539.28,29871.28,4374.93,3440.63,2412.08,10227.64,40098.92 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),44599,171788.21,0.0,1500.0,173288.21,34804.37,12424.5,10734.9,57963.77,231251.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39852,77543.3,2360.31,1454.97,81358.58,15693.29,11898.85,4284.24,31876.38,113234.96 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),17283,96606.12,0.0,1125.0,97731.12,19978.14,11403.06,7831.55,39212.75,136943.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,46000,110041.01,9167.25,5525.42,124733.68,22428.26,12424.5,9551.63,44404.39,169138.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24838,65589.61,0.0,200.0,65789.61,13529.66,12424.51,4835.08,30789.25,96578.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,4481,43726.59,0.0,0.0,43726.59,9593.64,4300.79,8238.16,22132.59,65859.18 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,40042,130629.03,0.0,0.0,130629.03,26219.26,12424.5,24905.94,63549.7,194178.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4920,119459.82,6490.04,9636.36,135586.22,23794.9,12424.5,2255.66,38475.06,174061.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,49315,139012.76,13708.56,14210.62,166931.94,28008.02,12424.5,2790.84,43223.36,210155.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,41758,54266.31,9126.03,2311.52,65703.86,12427.34,12182.53,5281.72,29891.59,95595.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42609,113233.61,15710.63,20224.85,149169.09,25382.6,15196.12,2540.99,43119.71,192288.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10754,3270.76,0.0,9.31,3280.07,0.0,1594.88,254.36,1849.24,5129.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,11769,40046.63,4387.77,765.5,45199.9,8896.7,6481.05,3823.93,19201.68,64401.58 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,47939,71123.84,0.0,0.0,71123.84,14815.61,11183.25,5116.23,31115.09,102238.93 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,17520,21097.01,0.0,394.33,21491.34,3998.17,3345.06,1743.26,9086.49,30577.83 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,12257,111918.02,0.0,0.0,111918.02,23066.89,12424.5,9126.79,44618.18,156536.2 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,40583,58782.03,0.0,624.0,59406.03,12243.99,12424.5,4924.18,29592.67,88998.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10350,118688.79,2122.14,13638.12,134449.05,24899.85,10518.3,7396.78,42814.93,177263.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5044,136038.49,129.89,42617.83,178786.21,33291.64,12421.52,5297.64,51010.8,229797.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,18557,84519.57,0.0,1530.84,86050.41,17747.71,12414.59,7065.39,37227.69,123278.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,34397,62702.3,32215.88,7979.06,102897.24,14208.1,12472.29,8104.47,34784.86,137682.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,39471,48000.56,0.0,0.0,48000.56,0.0,5656.73,3721.36,9378.09,57378.65 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,43802,168752.68,0.0,4635.0,173387.68,33865.44,10860.87,10562.29,55288.6,228676.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,6941,38628.95,257.97,264.0,39150.92,7237.98,4620.36,2958.33,14816.67,53967.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,8499,10862.5,0.0,0.0,10862.5,0.0,3285.33,899.37,4184.7,15047.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,19956,143188.04,0.0,0.0,143188.04,28816.76,12424.5,10163.31,51404.57,194592.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,53084,109783.4,0.0,0.0,109783.4,22346.91,12424.5,9024.19,43795.6,153579.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",12552,106090.02,6244.82,0.0,112334.84,21865.57,12424.5,9577.96,43868.03,156202.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51197,113233.6,53753.16,21223.61,188210.37,25481.15,15196.12,3154.23,43831.5,232041.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48203,113233.62,55199.95,18429.38,186862.95,25036.05,15196.12,3333.53,43565.7,230428.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,38156,47391.22,3413.48,1805.08,52609.78,11639.01,11851.06,4003.41,27493.48,80103.26 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,11247,11317.11,0.0,124.07,11441.18,0.0,1998.08,888.02,2886.1,14327.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,42274,86422.8,3494.27,9669.06,99586.13,19269.54,12436.45,7977.09,39683.08,139269.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45822,57743.85,0.0,10908.59,68652.44,877.11,0.0,6887.92,7765.03,76417.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3634,113413.91,0.0,20513.23,133927.14,800.12,0.0,8848.67,9648.79,143575.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37078,315.4,0.0,0.0,315.4,0.0,0.0,23.51,23.51,338.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27526,13991.86,0.0,194.27,14186.13,0.0,4644.25,1099.72,5743.97,19930.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2258,69585.62,28630.54,2673.82,100889.98,19767.33,13709.73,7680.95,41158.01,142047.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,49397,79820.32,0.0,298.94,80119.26,16497.12,12424.5,6455.46,35377.08,115496.34 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,40549,35382.4,0.0,0.0,35382.4,6584.64,4205.21,2692.23,13482.08,48864.48 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1100,Administrative & Mgmt (Unrep),1130,Youth Comm Advisor,37120,53704.83,0.0,0.0,53704.83,10892.14,10513.04,4244.39,25649.57,79354.4 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,42907,252520.0,0.0,0.0,252520.0,50802.77,12424.5,11955.32,75182.59,327702.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,29568,63887.01,6979.53,1925.3,72791.84,13580.46,12424.5,5751.32,31756.28,104548.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,45441,69130.89,0.0,1040.0,70170.89,14296.34,10973.94,5686.18,30956.46,101127.35 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,13536,8460.0,0.0,0.0,8460.0,2182.68,1911.46,675.25,4769.39,13229.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,6306,64463.7,28894.75,16890.87,110249.32,15667.15,12424.5,8963.97,37055.62,147304.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45334,8456.09,0.0,0.0,8456.09,0.0,3604.9,679.21,4284.11,12740.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7353,Water Meter Repairer,39964,76728.01,3891.86,0.0,80619.87,15813.98,12424.51,6580.56,34819.05,115438.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,32396,73403.57,0.0,0.0,73403.57,14175.94,7699.61,14234.61,36110.16,109513.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,43060,16799.28,0.0,0.0,16799.28,3768.08,2587.94,1371.55,7727.57,24526.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45337,34464.47,63.36,7107.79,41635.62,3344.47,0.0,6196.28,9540.75,51176.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21697,3497.4,0.0,1.96,3499.36,0.0,1705.39,271.45,1976.84,5476.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7846,137839.4,33.19,2140.72,140013.31,28131.87,12206.24,10112.53,50450.64,190463.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,12266,11420.69,0.0,0.0,11420.69,2511.41,3016.52,916.21,6444.14,17864.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15883,97604.08,6303.51,15256.81,119164.4,27448.68,12404.43,1982.77,41835.88,161000.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,20800,38420.87,0.0,6978.84,45399.71,9160.3,4483.21,744.56,14388.07,59787.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,37728,4137.01,0.0,0.0,4137.01,769.9,477.86,325.41,1573.17,5710.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,52767,688.79,0.0,0.0,688.79,0.0,203.1,53.45,256.55,945.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,20003,80953.77,1748.87,2892.81,85595.45,16570.71,12424.5,3298.15,32293.36,117888.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,537,60695.06,9862.06,753.24,71310.36,16697.87,11950.52,5304.04,33952.43,105262.79 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,21939,86850.0,0.0,2200.0,89050.0,18326.32,12424.5,7052.07,37802.89,126852.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,40479,51350.28,2166.85,7480.17,60997.3,13569.4,12290.4,4730.35,30590.15,91587.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19857,20605.35,0.0,3020.85,23626.2,0.0,0.0,1869.16,1869.16,25495.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14080,113223.0,43982.74,19901.37,177107.11,25379.22,15196.12,3009.75,43585.09,220692.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,51445,15800.01,0.0,0.0,15800.01,4076.4,4778.65,1198.01,10053.06,25853.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,836,17414.59,0.0,951.77,18366.36,1767.88,0.0,3852.7,5620.58,23986.94 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",52809,102795.84,0.0,0.0,102795.84,20643.09,11373.2,15868.38,47884.67,150680.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47148,149099.0,0.0,31288.08,180387.08,36973.03,12424.5,3705.26,53102.79,233489.87 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,49672,8546.88,0.0,0.0,8546.88,0.0,1941.33,664.1,2605.43,11152.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33628,1902.98,0.0,86.98,1989.96,4158.34,149.57,1621.63,5929.54,7919.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,12008,139214.95,24629.94,7819.92,171664.81,27538.35,12424.5,2925.49,42888.34,214553.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49633,117254.89,1986.99,10307.86,129549.74,24596.05,10383.71,9902.19,44881.95,174431.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27493,3678.05,0.0,45.49,3723.54,0.0,1838.29,288.69,2126.98,5850.52 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,51999,11149.05,0.0,0.0,11149.05,0.0,2783.56,864.79,3648.35,14797.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31844,34318.56,9247.69,1914.12,45480.37,10445.19,6824.88,3511.38,20781.45,66261.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1138,124083.71,3017.25,15367.66,142468.62,23395.14,10986.73,10081.61,44463.48,186932.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,18018,110512.8,1460.15,4251.73,116224.68,22199.94,12173.63,9205.51,43579.08,159803.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,6513,1910.4,0.0,313.43,2223.83,428.5,382.3,173.3,984.1,3207.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17819,104692.76,15004.54,13177.27,132874.57,21410.44,9079.44,2260.21,32750.09,165624.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24293,34849.44,787.36,4963.66,40600.46,0.0,3037.43,3313.93,6351.36,46951.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12555,116202.97,3151.39,6193.54,125547.9,23040.5,12326.71,2137.05,37504.26,163052.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,10272,69976.5,0.0,9888.47,79864.97,15581.16,12376.71,6315.76,34273.63,114138.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,41110,13895.0,0.0,416.85,14311.85,0.0,3345.06,1110.03,4455.09,18766.94 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,49229,77071.05,0.0,0.0,77071.05,15884.7,12424.5,6285.79,34594.99,111666.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,46139,79951.0,4613.71,2080.0,86644.71,16910.75,12424.5,6881.63,36216.88,122861.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25965,31611.75,0.0,5175.4,36787.15,0.0,2700.0,2848.07,5548.07,42335.22 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,1907,208032.0,0.0,1500.0,209532.0,42167.46,12424.5,11266.9,65858.86,275390.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,24298,101741.52,0.0,1560.0,103301.52,20964.01,12424.5,8073.25,41461.76,144763.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3215,Aquatics Facility Supervisor,42142,72489.92,0.0,1204.84,73694.76,15135.26,11974.05,6071.39,33180.7,106875.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,25584,107978.0,0.0,3054.0,111032.0,22887.8,12424.5,8997.98,44310.28,155342.28 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,5325,80570.03,0.0,0.0,80570.03,16605.95,12424.5,6642.18,35672.63,116242.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,31723,77242.54,0.0,0.0,77242.54,15893.6,12424.5,5835.32,34153.42,111395.96 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,1186,21824.7,0.0,0.0,21824.7,4895.27,2867.19,1763.91,9526.37,31351.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,41212,1073.16,0.0,53.63,1126.79,209.69,122.45,91.18,423.32,1550.11 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,48207,97991.01,0.0,0.0,97991.01,20276.65,11946.64,8065.48,40288.77,138279.78 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,13393,100022.21,0.0,0.0,100022.21,20587.61,12424.5,7869.02,40881.13,140903.34 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,24765,67671.01,0.0,0.0,67671.01,13452.37,8840.51,5410.7,27703.58,95374.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28490,40585.13,8026.9,3464.58,52076.61,12807.29,8071.08,3927.88,24806.25,76882.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3087,14361.0,0.0,1534.07,15895.07,916.58,0.0,4116.17,5032.75,20927.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16752,56531.0,0.0,4707.81,61238.81,12620.02,12424.5,4963.47,30007.99,91246.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,15788,96523.93,0.0,1589.7,98113.63,19956.32,9067.32,7941.03,36964.67,135078.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,2705,49676.87,754.16,745.62,51176.65,10406.96,9664.83,4280.59,24352.38,75529.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51211,119467.42,70437.6,7939.1,197844.12,23621.0,12424.5,3365.34,39410.84,237254.96 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,25397,67846.16,11322.23,3376.2,82544.59,14369.42,12412.56,6607.96,33389.94,115934.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3214,80033.03,10345.93,5352.48,95731.44,16944.76,12448.4,1691.89,31085.05,126816.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,30043,47827.65,1382.43,2950.82,52160.9,9571.96,8840.51,1411.44,19823.91,71984.81 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,40987,71904.22,0.0,0.0,71904.22,13522.64,7167.97,5774.17,26464.78,98369.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5596,106442.92,40362.97,12532.73,159338.62,22768.21,14286.01,2713.08,39767.3,199105.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34995,27756.96,440.47,1110.6,29308.03,6722.15,7051.5,2490.2,16263.85,45571.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,3949,61735.03,0.0,624.0,62359.03,12852.62,12424.5,5124.28,30401.4,92760.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,32691,80124.45,21898.77,9211.56,111234.78,17445.5,12472.29,1857.08,31774.87,143009.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,1373,66844.76,231.61,1040.0,68116.37,13963.45,12062.22,5400.15,31425.82,99542.19 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,50559,65762.26,0.0,0.0,65762.26,0.0,0.0,5202.49,5202.49,70964.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19859,114534.2,0.0,2530.22,117064.42,23514.4,12424.5,9379.75,45318.65,162383.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,4347,16273.94,0.0,290.2,16564.14,0.0,5396.89,1283.86,6680.75,23244.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,18489,31690.66,0.0,4639.21,36329.87,7585.43,5240.09,2994.46,15819.98,52149.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,10993,20539.35,92.17,2368.91,23000.43,4013.07,6188.36,1607.11,11808.54,34808.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19656,56003.01,2041.86,5205.39,63250.26,12459.13,9937.81,5252.19,27649.13,90899.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32008,56531.0,0.0,6676.37,63207.37,13348.21,12424.5,5116.07,30888.78,94096.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,16977,39531.9,0.0,1691.61,41223.51,8651.03,7850.62,3333.04,19834.69,61058.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35153,51639.3,0.0,8387.07,60026.37,7756.52,0.0,7851.7,15608.22,75634.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,337,54965.13,0.0,2043.0,57008.13,11270.14,8541.86,4422.25,24234.25,81242.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13763,67876.62,8744.51,1968.48,78589.61,19126.32,13371.93,6173.87,38672.12,117261.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,9354,55508.0,0.0,0.0,55508.0,12398.87,12424.5,4514.18,29337.55,84845.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,15164,121974.46,0.0,250.0,122224.46,24522.83,12424.5,9782.11,46729.44,168953.9 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,47789,77071.01,0.0,192.0,77263.01,15920.46,12424.5,6358.62,34703.58,111966.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13335,68540.35,24995.6,5721.68,99257.63,20317.94,13502.81,7551.29,41372.04,140629.67 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",48984,900.0,0.0,0.0,900.0,0.0,0.0,71.2,71.2,971.2 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42601,106101.9,0.0,1500.0,107601.9,21368.56,10823.65,8051.17,40243.38,147845.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,25710,124957.82,0.0,0.0,124957.82,25089.07,11226.85,9867.11,46183.03,171140.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,45622,125289.59,0.0,0.0,125289.59,25214.64,10871.44,9857.3,45943.38,171232.97 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,30731,102019.05,0.0,0.0,102019.05,21022.56,12424.5,8151.07,41598.13,143617.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,31960,270560.62,0.0,0.0,270560.62,54301.11,12424.5,20719.96,87445.57,358006.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,41391,84320.6,15881.22,15364.58,115566.4,19165.14,12376.71,9431.96,40973.81,156540.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14827,7401.65,0.0,54.42,7456.07,0.0,2469.99,577.25,3047.24,10503.31 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,37586,22503.16,0.0,258.86,22762.02,5440.5,6576.62,1843.01,13860.13,36622.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,14508,104038.26,0.0,0.0,104038.26,21426.87,12045.2,8349.9,41821.97,145860.23 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,51222,5758.05,0.0,0.0,5758.05,486.56,1323.51,446.53,2256.6,8014.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,51941,43534.0,0.0,0.0,43534.0,8101.65,5256.52,3581.15,16939.32,60473.32 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,12817,8121.4,505.57,0.0,8626.97,1785.9,2102.6,701.05,4589.55,13216.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38590,68212.94,5121.67,3393.86,76728.47,19629.86,13441.16,5770.25,38841.27,115569.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,42007,83411.29,0.0,0.0,83411.29,17165.3,12415.54,6783.65,36364.49,119775.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27627,71079.3,0.0,1645.7,72725.0,10876.29,0.0,5844.62,16720.91,89445.91 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,38803,2829.0,0.0,0.0,2829.0,0.0,716.79,219.4,936.19,3765.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27728,3288.59,0.0,469.4,3757.99,7150.03,0.0,2770.0,9920.03,13678.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20690,113233.59,17799.56,18589.36,149622.51,25036.02,15196.12,2451.79,42683.93,192306.44 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,8653,63102.0,258.43,624.0,63984.43,13134.23,12424.5,5236.7,30795.43,94779.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11223,54893.89,6072.96,833.47,61800.32,14878.81,13058.33,4707.87,32645.01,94445.33 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),29102,184289.06,0.0,5248.28,189537.34,38144.36,12424.5,11047.42,61616.28,251153.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,509,14003.81,0.0,92.73,14096.54,0.0,0.0,1115.09,1115.09,15211.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,39146,18291.14,0.0,0.0,18291.14,0.0,4006.61,1464.26,5470.87,23762.01 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,31814,53412.71,0.0,0.0,53412.71,11980.41,6212.25,8024.29,26216.95,79629.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,41417,47898.79,583.2,0.0,48481.99,9011.06,5807.86,4075.99,18894.91,67376.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13042,48744.1,0.0,5760.08,54504.18,12705.37,12424.5,4159.53,29289.4,83793.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1706,Telephone Operator,5614,49993.15,11024.72,2476.9,63494.77,12141.92,11559.81,4974.93,28676.66,92171.43 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,43899,61428.0,1814.25,5803.83,69046.08,13398.17,12424.51,5421.39,31244.07,100290.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,13439,8790.92,0.0,166.38,8957.3,1815.02,4.29,693.48,2512.79,11470.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26048,70889.55,8607.8,2045.01,81542.36,20044.35,13309.03,6328.33,39681.71,121224.07 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47540,97440.13,7736.1,10120.47,115296.7,25424.54,12384.96,1961.74,39771.24,155067.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,19431,48097.66,319.77,300.67,48718.1,10473.34,10477.2,3893.71,24844.25,73562.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,5757,12483.45,0.0,0.0,12483.45,2745.11,3340.58,999.3,7084.99,19568.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,10347,85357.0,17941.39,2774.0,106072.39,17352.48,10513.04,8228.25,36093.77,142166.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,21402,53760.31,1559.27,0.0,55319.58,12007.77,12281.13,4249.24,28538.14,83857.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,9281,10716.0,0.0,0.0,10716.0,2403.6,1911.46,864.98,5180.04,15896.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13129,3633.24,1021.86,0.0,4655.1,1028.21,1146.88,360.4,2535.49,7190.59 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,45387,0.0,0.0,2666.52,2666.52,0.0,0.0,203.98,203.98,2870.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2720,1534.94,0.0,117.45,1652.39,0.0,0.0,92.19,92.19,1744.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,19379,104028.38,9912.52,10176.94,124117.84,21968.4,11410.95,2105.1,35484.45,159602.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27616,28712.0,0.0,3987.75,32699.75,6449.74,2102.73,1599.72,10152.19,42851.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,40815,2835.01,0.0,0.0,2835.01,635.89,477.86,223.97,1337.72,4172.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,37581,81116.04,0.0,0.0,81116.04,16715.59,12424.5,6500.59,35640.68,116756.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,42356,25650.0,0.0,0.0,25650.0,0.0,4300.77,2044.95,6345.72,31995.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6008,69019.27,19000.91,4660.0,92680.18,20205.39,13598.5,7031.92,40835.81,133515.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30580,70245.0,0.0,2925.85,73170.85,14627.15,12424.5,5993.07,33044.72,106215.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",1741,105785.99,2633.34,6523.05,114942.38,23220.06,12388.65,9436.57,45045.28,159987.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12768,44913.5,992.03,1535.22,47440.75,12018.18,13224.57,3554.44,28797.19,76237.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,13418,32160.0,13378.84,16136.47,61675.31,5823.18,2867.19,1011.0,9701.37,71376.68 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1003,IS Operator-Senior,51614,70448.09,0.0,0.0,70448.09,14519.74,12424.5,5774.34,32718.58,103166.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",9219,148571.43,19164.34,8983.47,176719.24,30952.31,12429.16,3004.22,46385.69,223104.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,52838,59336.4,0.0,1540.0,60876.4,13564.56,12424.5,4813.5,30802.56,91678.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2132,46181.53,433.58,1359.55,47974.66,11280.71,11743.53,3900.7,26924.94,74899.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,50145,139788.35,1036.52,11589.72,152414.59,27696.62,12424.5,2553.57,42674.69,195089.28 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,22281,99654.0,7615.52,3691.09,110960.61,23565.79,12424.5,1888.18,37878.47,148839.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,50610,62764.67,0.0,2273.5,65038.17,13316.66,11588.77,5114.53,30019.96,95058.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,40714,49456.6,9227.46,4710.72,63394.78,11546.24,9776.41,5079.71,26402.36,89797.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,22336,36855.0,0.0,0.0,36855.0,8266.57,6212.25,2913.11,17391.93,54246.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3067,60617.98,5166.39,1797.05,67581.42,16921.08,11931.53,5009.11,33861.72,101443.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,48903,34619.9,379.05,12387.36,47386.31,7783.36,6546.76,3849.64,18179.76,65566.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,38036,61428.01,1370.99,6961.2,69760.2,12789.24,12424.5,5675.96,30889.7,100649.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,9074,72316.02,2231.84,380.0,74927.86,14737.78,10513.03,5780.88,31031.69,105959.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,31444,24248.0,0.0,480.0,24728.0,5437.68,5734.38,1961.66,13133.72,37861.72 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,35470,7794.49,0.0,130.47,7924.96,1742.69,2311.67,615.36,4669.72,12594.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39847,30639.89,4614.11,1114.42,36368.42,8066.78,9548.94,2751.59,20367.31,56735.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,6251,100594.01,0.0,0.0,100594.01,20008.2,10990.91,7968.21,38967.32,139561.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,45641,49500.79,0.0,345.12,49845.91,9060.2,3938.8,3959.74,16958.74,66804.65 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,26123,14644.77,0.0,1360.95,16005.72,3320.15,777.37,1247.97,5345.49,21351.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11007,30058.6,839.85,0.0,30898.45,0.0,2580.47,2398.22,4978.69,35877.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,44201,33760.0,0.0,2278.38,36038.38,7572.4,4778.65,2955.72,15306.77,51345.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,38880,3493.97,0.0,1052.79,4546.76,864.72,477.86,349.83,1692.41,6239.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,24831,69959.73,1840.86,4556.95,76357.54,14552.89,12373.73,6038.49,32965.11,109322.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41659,58989.15,0.0,1929.61,60918.76,0.0,5184.91,4720.52,9905.43,70824.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,43295,117565.56,20144.15,7056.44,144766.15,24528.28,15052.76,2410.76,41991.8,186757.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,7683,31305.05,27.47,17566.83,48899.35,5663.67,2389.33,795.43,8848.43,57747.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41955,17268.69,0.0,0.0,17268.69,0.0,1484.37,1340.33,2824.7,20093.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,20973,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8945,7505.7,0.0,376.2,7881.9,1782.85,645.06,410.98,2838.89,10720.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,10995,70239.11,21477.91,11759.93,103476.95,15919.77,12423.49,8200.1,36543.36,140020.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,42973,67261.02,0.0,621.3,67882.32,13990.95,12424.5,5582.78,31998.23,99880.55 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,20347,54454.89,0.0,0.0,54454.89,11947.39,3345.06,6356.53,21648.98,76103.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,910,79376.02,0.0,18269.5,97645.52,16980.34,7645.85,7718.66,32344.85,129990.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34762,56531.0,0.0,6245.4,62776.4,12441.95,12424.5,4930.19,29796.64,92573.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,25622,75605.0,43094.45,8351.91,127051.36,16691.37,12424.5,9809.83,38925.7,165977.06 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,1646,51219.65,1021.33,326.81,52567.79,10615.21,10098.55,4033.95,24747.71,77315.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51675,1384.0,0.0,7.68,1391.68,0.0,516.69,108.02,624.71,2016.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1114,64487.62,9159.4,1840.93,75487.95,16158.99,13324.43,5552.44,35035.86,110523.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,33311,108038.0,167.96,13174.78,121380.74,24137.52,12424.5,9784.49,46346.51,167727.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,5913,81419.04,9941.09,513.0,91873.13,16861.72,12424.5,7521.93,36808.15,128681.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,9435,81942.01,2987.6,2217.5,87147.11,17345.26,12424.49,7133.84,36903.59,124050.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,43116,23256.97,0.0,0.0,23256.97,5126.28,1911.46,2896.96,9934.7,33191.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,19755,139226.16,33706.58,14800.03,187732.77,27497.12,12424.5,3154.64,43076.26,230809.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,27384,113325.81,7291.22,13848.36,134465.39,24470.52,9557.3,338.12,34365.94,168831.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,50376,97934.04,3354.23,2144.84,103433.11,20608.4,12424.5,8307.27,41340.17,144773.28 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,50907,45892.79,0.0,0.0,45892.79,0.0,5081.32,3558.23,8639.55,54532.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,20319,85225.8,0.0,0.0,85225.8,16357.16,8123.71,6410.63,30891.5,116117.3 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1767,Media Programming Spec,35565,14030.02,506.39,170.11,14706.52,2642.65,2389.32,1203.09,6235.06,20941.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,44912,4839.37,0.0,0.0,4839.37,0.0,1736.74,386.23,2122.97,6962.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",6759,175.0,0.0,0.0,175.0,0.0,0.0,13.84,13.84,188.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,47224,583.31,0.0,10.98,594.29,0.0,101.55,46.12,147.67,741.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,28173,65589.6,2183.31,1995.0,69767.91,13898.33,12424.51,5572.6,31895.44,101663.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32424,115944.84,0.0,17151.2,133096.04,0.0,0.0,9622.69,9622.69,142718.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",33323,149254.09,19071.54,18270.38,186596.01,33004.07,15098.94,2842.71,50945.72,237541.73 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,42762,80570.01,0.0,48.0,80618.01,16614.88,12424.5,6449.67,35489.05,116107.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,11291,16468.31,0.0,0.0,16468.31,3385.68,3173.14,1388.71,7947.53,24415.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,42026,56531.0,5096.29,5401.39,67028.68,12350.03,12424.5,5473.34,30247.87,97276.55 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,31602,77071.03,0.0,0.0,77071.03,15884.7,12424.5,6327.48,34636.68,111707.71 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,25962,2931.82,0.0,0.0,2931.82,0.0,377.82,227.32,605.14,3536.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45642,56531.0,0.0,2364.15,58895.15,11681.22,12424.5,4623.19,28728.91,87624.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,3406,85368.04,0.0,720.0,86088.04,17733.16,12424.5,7138.56,37296.22,123384.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10194,68208.33,27171.93,5567.98,100948.24,20214.25,13439.37,7685.11,41338.73,142286.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26378,61426.53,4405.12,4320.11,70151.76,17920.78,12100.21,5251.41,35272.4,105424.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,39217,83910.09,4323.46,0.0,88233.55,17048.35,10690.39,7105.27,34844.01,123077.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35365,12639.91,0.0,368.19,13008.1,0.0,4194.76,1008.14,5202.9,18211.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13911,113233.59,17640.61,18320.37,149194.57,25036.02,15196.12,2541.53,42773.67,191968.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8635,119463.8,1761.0,3678.17,124902.97,23633.47,12424.5,2080.36,38138.33,163041.3 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,30738,42866.9,0.0,1038.73,43905.63,9425.41,7406.92,3538.09,20370.42,64276.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40125,8519.47,0.0,576.87,9096.34,2000.28,2248.95,727.63,4976.86,14073.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35951,117738.1,0.0,19359.54,137097.64,0.0,8707.01,2297.18,11004.19,148101.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21114,46329.48,17089.82,634.2,64053.5,12698.42,9088.28,4774.1,26560.8,90614.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29163,8685.14,0.0,0.0,8685.14,0.0,3766.18,672.41,4438.59,13123.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12464,3270.75,0.0,0.98,3271.73,0.0,1594.88,253.81,1848.69,5120.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,48655,18846.01,0.0,0.0,18846.01,4862.26,4300.79,1549.31,10712.36,29558.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23890,13730.64,0.0,21668.03,35398.67,3128.9,1261.56,2811.84,7202.3,42600.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31699,2190.65,0.0,0.0,2190.65,0.0,919.89,177.74,1097.63,3288.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,15208,40802.52,0.0,930.0,41732.52,9742.86,9796.24,3306.23,22845.33,64577.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2416,Laboratory Technician II,50612,34619.93,0.0,12807.97,47427.9,7839.0,6546.76,3860.73,18246.49,65674.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,11279,41824.01,0.0,0.0,41824.01,8727.28,8601.58,3399.58,20728.44,62552.45 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8234,Fire Alarm Dispatcher,52550,8845.8,807.66,871.76,10525.22,1731.14,1648.64,836.47,4216.25,14741.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10582,23714.02,217.59,1100.36,25031.97,6327.11,5256.52,1945.23,13528.86,38560.83 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,30876,7946.65,0.0,0.0,7946.65,0.0,1799.46,616.35,2415.81,10362.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,8688,56571.33,0.0,571.49,57142.82,11680.35,11378.94,4757.34,27816.63,84959.45 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,49039,92774.32,55855.37,12647.63,161277.32,20615.84,12303.54,10450.64,43370.02,204647.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,26166,12764.14,0.0,452.73,13216.87,0.0,3763.19,1024.45,4787.64,18004.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,36839,97424.0,1745.01,3054.0,102223.01,20709.39,12424.5,8169.21,41303.1,143526.11 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,42649,91767.66,0.0,0.0,91767.66,19015.49,11176.32,7252.86,37444.67,129212.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3203,69134.48,22470.78,1881.11,93486.37,19477.22,13622.21,7272.3,40371.73,133858.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,14560,113034.05,0.0,0.0,113034.05,23025.67,12424.5,8903.24,44353.41,157387.46 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,5043,93901.8,0.0,1040.0,94941.8,19563.18,12424.5,7466.11,39453.79,134395.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52517,62093.52,7747.09,1515.41,71356.02,15743.38,12409.62,5450.17,33603.17,104959.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,19611,96254.04,0.0,0.0,96254.04,19838.21,12424.51,7760.05,40022.77,136276.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11668,148529.1,0.0,20604.9,169134.0,33160.4,12376.71,10626.24,56163.35,225297.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28167,43199.23,2310.3,3315.69,48825.22,12419.28,12830.63,3692.45,28942.36,77767.58 +Calendar,2015,6,General Administration & Finance,REG,Elections,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,36946,4322.0,0.0,0.0,4322.0,969.42,955.73,334.61,2259.76,6581.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9988,72156.94,0.0,3647.84,75804.78,15428.13,7244.44,6129.36,28801.93,104606.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29490,1152.42,0.0,90.1,1242.52,203.58,0.0,1112.75,1316.33,2558.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,18653,63887.02,7286.94,1794.77,72968.73,13312.13,12424.5,5893.28,31629.91,104598.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,41170,26325.01,370.31,0.0,26695.32,1075.98,7884.78,1281.82,10242.58,36937.9 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8602,Emergency Services Coord II,14865,32794.53,1336.18,906.87,35037.58,6103.06,5495.46,2753.73,14352.25,49389.83 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),10753,119581.0,0.0,1500.0,121081.0,24325.9,12424.5,9263.04,46013.44,167094.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7228,Automotive Trnst Shop Sprv 1,35196,108934.8,21736.17,5566.22,136237.19,21741.68,11373.2,9950.46,43065.34,179302.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8766,6002.04,0.0,0.0,6002.04,0.0,2601.32,503.45,3104.77,9106.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4305,61570.77,6140.44,1600.0,69311.21,12934.01,11644.2,5444.79,30023.0,99334.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,47283,75365.04,19211.03,10201.28,104777.35,16406.83,9557.31,7758.35,33722.49,138499.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,17019,59080.86,0.0,0.0,59080.86,0.0,3688.52,4579.69,8268.21,67349.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4800,111815.93,90884.55,20301.86,223002.34,24765.49,15004.97,3800.21,43570.67,266573.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,40164,60642.04,0.0,0.0,60642.04,13048.65,8601.57,4692.63,26342.85,86984.89 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,44195,104664.43,0.0,6.18,104670.61,21572.35,12186.29,8454.05,42212.69,146883.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,18299,65339.19,0.0,606.16,65945.35,13602.06,12069.2,5467.96,31139.22,97084.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",38489,6296.98,0.0,0.0,6296.98,0.0,1499.32,487.51,1986.83,8283.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,20759,15047.0,0.0,5474.53,20521.53,2904.48,2867.19,1645.45,7417.12,27938.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,37923,47198.4,4473.07,4013.59,55685.06,11025.65,10656.39,4331.1,26013.14,81698.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,4043,106605.0,0.0,0.0,106605.0,21971.81,12424.5,8551.11,42947.42,149552.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,41677,30401.0,0.0,0.0,30401.0,6669.95,3345.06,2438.08,12453.09,42854.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,47779,19563.56,0.0,341.98,19905.54,3704.4,3133.0,1638.4,8475.8,28381.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,49152,173335.38,0.0,0.0,173335.38,34744.37,12424.5,17891.38,65060.25,238395.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,27299,33503.34,192.83,3223.72,36919.89,7964.63,6227.18,3063.71,17255.52,54175.41 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,43779,0.0,0.0,24821.57,24821.57,0.0,34.24,1898.85,1933.09,26754.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,45157,51337.46,6185.79,2394.86,59918.11,12466.68,12408.08,4926.92,29801.68,89719.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11446,3444.0,0.0,65.68,3509.68,0.0,1302.18,272.42,1574.6,5084.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,45738,29232.79,0.0,863.37,30096.16,0.0,4845.86,2335.94,7181.8,37277.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,33087,101484.72,3121.72,946.53,105552.97,20878.65,12424.52,8498.91,41802.08,147355.05 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,28403,77685.0,0.0,0.0,77685.0,15954.74,11946.63,6249.34,34150.71,111835.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42711,66942.08,4783.6,4647.24,76372.92,19602.93,13193.57,5624.96,38421.46,114794.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10494,6643.9,0.0,0.0,6643.9,0.0,1944.32,515.67,2459.99,9103.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16114,68711.39,1163.7,6121.19,75996.28,0.0,0.0,1297.39,1297.39,77293.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1737,36231.07,1272.61,1654.08,39157.76,11097.1,7205.19,3029.94,21332.23,60489.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9716,107.4,0.0,0.0,107.4,0.0,35.84,8.32,44.16,151.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36366,56120.0,0.0,423.6,56543.6,12561.34,12424.5,4655.64,29641.48,86185.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31737,56314.9,0.0,6910.78,63225.68,13668.3,12376.71,4865.7,30910.71,94136.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,41184,58910.51,0.0,598.5,59509.01,12268.41,11916.77,4897.64,29082.82,88591.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30034,67433.03,21192.93,4106.49,92732.45,19614.15,13279.41,7252.33,40145.89,132878.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,17100,97764.62,10777.12,11803.52,120345.26,26645.45,12424.51,2021.7,41091.66,161436.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27810,131385.27,0.0,6519.41,137904.68,26962.89,12364.77,8257.06,47584.72,185489.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20582,6419.17,0.0,0.0,6419.17,1435.18,2783.56,528.11,4746.85,11166.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37807,5348.01,0.0,4082.48,9430.49,1379.78,1720.32,752.15,3852.25,13282.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,18836,55300.95,437.07,1361.0,57099.02,11723.51,10965.04,4609.91,27298.46,84397.48 +Calendar,2015,4,Community Health,DPH,Public Health,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37144,14707.89,0.0,1408.04,16115.93,3784.83,3275.47,1292.25,8352.55,24468.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",3208,97317.25,0.0,0.0,97317.25,20050.13,12424.5,8018.15,40492.78,137810.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42132,119410.65,9940.59,9718.31,139069.55,24185.93,12424.5,2321.68,38932.11,178001.66 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,51163,70931.02,0.0,0.0,70931.02,14619.09,12424.5,5700.44,32744.03,103675.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,46969,39375.58,615.84,1372.28,41363.7,7670.4,6896.2,3204.38,17770.98,59134.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,13782,24280.01,0.0,436.68,24716.69,5914.51,6212.25,1961.33,14088.09,38804.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38174,7882.46,0.0,1308.34,9190.8,4437.34,0.0,6.94,4444.28,13635.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,10709,40933.0,0.0,0.0,40933.0,8291.49,7645.85,3130.85,19068.19,60001.19 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,6079,9463.59,0.0,0.0,9463.59,0.0,12424.5,137.22,12561.72,22025.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,34070,62468.82,0.0,948.04,63416.86,13000.36,12424.5,5232.23,30657.09,94073.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,11268,26811.65,0.0,0.0,26811.65,2456.21,8081.9,2174.91,12713.02,39524.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,44170,53536.0,0.0,0.0,53536.0,9706.06,5256.51,4322.32,19284.89,72820.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,50466,26800.0,912.88,11133.29,38846.17,4758.05,2389.33,628.36,7775.74,46621.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25520,34967.5,0.0,5134.89,40102.39,-4785.07,2922.92,-2406.09,-4268.24,35834.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",51241,93738.03,9723.49,0.0,103461.52,19319.82,12424.5,8252.68,39997.0,143458.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,31484,33987.76,4343.41,1069.65,39400.82,7038.54,10026.15,3186.33,20251.02,59651.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3260,Crafts Instructor,24438,31983.71,0.0,1297.16,33280.87,6846.64,6487.03,2759.65,16093.32,49374.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,1774,126994.05,0.0,0.0,126994.05,25557.71,12424.48,9848.37,47830.56,174824.61 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,22566,48860.05,0.0,0.0,48860.05,10505.49,8601.58,3942.31,23049.38,71909.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,33203,8570.31,0.0,61.31,8631.62,0.0,3106.13,669.01,3775.14,12406.76 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,352C,Ct Comp Sys Engineer II,13395,37962.01,0.0,2325.0,40287.01,8376.22,4300.79,3360.62,16037.63,56324.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,13747,149099.0,0.0,6128.0,155227.0,31190.65,12424.5,10372.72,53987.87,209214.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,34448,59229.01,0.0,624.0,59853.01,12336.08,12424.5,4916.28,29676.86,89529.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",15214,57203.05,2031.68,90.0,59324.73,11158.8,7499.5,4767.12,23425.42,82750.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,15681,58556.3,0.0,0.0,58556.3,11064.89,12161.68,4403.27,27629.84,86186.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52568,1892.4,0.0,63.08,1955.48,0.0,143.35,144.27,287.62,2243.1 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",39093,198139.08,0.0,5525.28,203664.36,40987.79,12424.5,11299.2,64711.49,268375.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25758,4152.76,0.0,44.1,4196.86,0.0,2024.95,325.52,2350.47,6547.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,26942,72384.43,0.0,308.08,72692.51,14958.99,7525.54,5934.39,28418.92,101111.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",11294,53449.01,0.0,0.0,53449.01,11726.67,5256.52,7461.22,24444.41,77893.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,6302,64689.5,895.14,9204.49,74789.13,13856.04,10610.94,6150.35,30617.33,105406.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10479,117140.94,85364.83,18201.5,220707.27,23164.17,12424.5,3710.56,39299.23,260006.5 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,10424,119321.06,0.0,0.0,119321.06,24013.61,12424.5,9713.08,46151.19,165472.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,26972,82883.0,2214.45,2555.89,87653.34,17369.6,12424.5,7011.11,36805.21,124458.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,16109,27897.68,0.0,0.0,27897.68,0.0,3374.93,2165.31,5540.24,33437.92 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,3103,6365.56,0.0,0.0,6365.56,0.0,2344.54,494.06,2838.6,9204.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40340,118853.34,0.0,44299.36,163152.7,26756.52,9964.39,5114.87,41835.78,204988.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33411,52983.01,0.0,1899.2,54882.21,10667.52,5017.58,3985.92,19671.02,74553.23 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,13644,97770.85,8544.92,11025.1,117340.87,26458.49,12424.5,1996.69,40879.68,158220.55 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,20193,74412.01,0.0,3000.0,77412.01,15345.94,12424.5,6433.18,34203.62,111615.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4216,59552.95,14875.56,3126.54,77555.05,17363.4,11743.97,5869.26,34976.63,112531.68 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),27445,85041.8,95046.68,14035.47,194123.95,19497.23,12424.51,3144.67,35066.41,229190.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18355,61713.16,1244.7,6009.87,68967.73,13145.12,10914.75,5426.29,29486.16,98453.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12281,112685.44,25847.59,6809.21,145342.24,22330.91,12424.5,2429.77,37185.18,182527.42 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,9817,111918.05,0.0,0.0,111918.05,22523.7,12424.5,9103.22,44051.42,155969.47 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,13923,1110.5,0.0,734.04,1844.54,267.27,238.93,139.76,645.96,2490.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32237,140578.74,95.73,10759.56,151434.03,28046.17,12424.5,2569.95,43040.62,194474.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,37308,82246.86,0.0,200.0,82446.86,16960.91,12027.27,6499.92,35488.1,117934.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2667,7496.25,0.0,0.0,7496.25,0.0,3241.24,619.42,3860.66,11356.91 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2464,Senior Microbiologist,27976,107416.03,0.0,0.0,107416.03,22139.02,12424.5,8208.83,42772.35,150188.38 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,29713,67844.06,6971.89,7939.09,82755.04,14959.07,12412.56,6806.81,34178.44,116933.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,28165,71953.38,736.05,2363.42,75052.85,6327.32,10656.38,5905.1,22888.8,97941.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2485,Supv Biologist,13148,216.27,0.0,0.0,216.27,39.21,20.9,17.71,77.82,294.09 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24569,41860.0,2980.0,0.0,44840.0,10040.14,12424.5,3634.58,26099.22,70939.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers Int, Local 261",3400,Agriculture & Horticulture,3408,Apprentice Arborist Tech I,1080,22021.9,4374.18,237.6,26633.68,1862.88,6690.12,2145.56,10698.56,37332.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51866,68359.45,7990.59,3279.77,79629.81,19607.63,13472.82,5801.25,38881.7,118511.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,26749,14713.82,0.0,156.82,14870.64,0.0,3542.18,1153.01,4695.19,19565.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36069,20604.67,2610.85,838.32,24053.84,5189.63,6384.27,1835.74,13409.64,37463.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,41742,61735.0,1062.0,1220.0,64017.0,12974.71,12424.5,5300.44,30699.65,94716.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36875,4068.35,0.0,29.59,4097.94,0.0,1708.37,325.77,2034.14,6132.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,3794,101132.71,15709.37,10729.67,127571.75,21021.18,12424.51,2128.8,35574.49,163146.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",8489,19673.8,0.0,0.0,19673.8,0.0,4157.41,1526.55,5683.96,25357.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9221,51848.6,0.0,7959.53,59808.13,13545.75,12424.5,4751.82,30722.07,90530.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,25374,61281.27,7391.24,2597.8,71270.31,12659.2,12394.64,5812.16,30866.0,102136.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,15272,117133.6,6634.67,9653.22,133421.49,23190.84,12424.5,2217.14,37832.48,171253.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2915,Program Specialist Supervisor,8432,98812.05,0.0,0.0,98812.05,20360.15,12424.51,8196.69,40981.35,139793.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51835,5765.01,0.0,40.12,5805.13,0.0,1430.6,450.11,1880.71,7685.84 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,33745,5087.0,0.0,0.0,5087.0,1116.09,477.86,390.65,1984.6,7071.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,51282,56720.42,0.0,561.2,57281.62,11319.52,4202.64,4623.92,20146.08,77427.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,53188,82010.03,18194.32,7768.29,107972.64,17833.44,12358.8,8643.49,38835.73,146808.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",39461,14688.73,0.0,0.0,14688.73,0.0,3497.35,1139.97,4637.32,19326.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,40322,75410.67,0.0,0.0,75410.67,16481.66,6493.01,5719.06,28693.73,104104.4 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,15814,34674.0,0.0,0.0,34674.0,6681.9,7167.97,2707.17,16557.04,51231.04 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,18084,51233.68,3157.77,1304.07,55695.52,10542.04,10591.23,4433.27,25566.54,81262.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,15465,116604.54,0.0,0.0,116604.54,8078.63,10300.99,9119.7,27499.32,144103.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,8670,49143.0,14842.04,857.06,64842.1,9742.36,8601.58,5283.72,23627.66,88469.76 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,7384,74473.4,0.0,0.0,74473.4,15328.74,12424.5,5833.37,33586.61,108060.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16672,65329.28,3422.31,3840.05,72591.64,18899.59,12871.96,5442.34,37213.89,109805.53 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,25182,86207.07,0.0,0.0,86207.07,17747.53,12266.99,6692.43,36706.95,122914.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47889,26365.83,0.0,0.0,26365.83,0.0,2278.82,2046.41,4325.23,30691.06 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",11603,39085.0,0.0,781.7,39866.7,7227.85,2389.33,754.26,10371.44,50238.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,6132,73466.4,0.0,0.0,73466.4,15409.63,10513.07,6051.96,31974.66,105441.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51065,8767.15,0.0,0.0,8767.15,0.0,3739.3,703.36,4442.66,13209.81 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,50422,103066.64,0.0,0.0,103066.64,21242.43,12424.5,8255.03,41921.96,144988.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,3036,98313.42,0.0,0.0,98313.42,19675.03,10351.35,8149.4,38175.78,136489.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",9300,Port Operation,9345,Sheet Metal Supervisor 1,4097,65695.01,325.05,5.42,66025.48,12413.65,7167.9,5244.37,24825.92,90851.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,26663,101713.97,19802.02,15635.71,137151.7,21274.87,9079.44,2325.66,32679.97,169831.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5142,130953.0,0.0,7857.18,138810.18,27273.71,12424.5,2266.67,41964.88,180775.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,12050,10871.87,0.0,507.64,11379.51,4079.3,0.0,3555.47,7634.77,19014.28 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45982,184241.51,0.0,5184.83,189426.34,38120.0,12421.28,10961.66,61502.94,250929.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,38371,59770.92,1874.9,6229.41,67875.23,13066.22,11199.74,5624.28,29890.24,97765.47 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,25479,158707.02,0.0,0.0,158707.02,31940.4,12424.5,25405.22,69770.12,228477.14 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,48642,87531.11,0.0,0.0,87531.11,18040.64,12424.5,7204.89,37670.03,125201.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,50746,113013.13,0.0,3955.59,116968.72,23544.78,12424.5,9603.27,45572.55,162541.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,9209,102843.43,2065.58,922.66,105831.67,20941.22,11349.3,1721.74,34012.26,139843.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,15445,4770.0,0.0,0.0,4770.0,864.8,477.86,370.23,1712.89,6482.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25670,372.0,0.0,3.72,375.72,0.0,0.0,29.75,29.75,405.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,8178,113455.66,3580.64,11895.88,128932.18,23644.71,12448.4,2194.67,38287.78,167219.96 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,17341,95968.0,0.0,0.0,95968.0,19779.2,12424.49,7818.43,40022.12,135990.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49540,67045.19,10806.77,561.94,78413.9,15373.94,13207.43,5778.66,34360.03,112773.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,40773,76377.31,11893.63,12100.21,100371.15,17452.4,11243.88,8188.67,36884.95,137256.1 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8165,Worker's Comp Supervisor 1,22725,106845.02,0.0,0.0,106845.02,21425.48,11946.63,9090.49,42462.6,149307.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,30320,49679.0,0.0,4757.0,54436.0,12600.68,12424.5,4450.59,29475.77,83911.77 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,30407,111918.0,0.0,680.0,112598.0,22659.17,12424.5,9254.3,44337.97,156935.97 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4306,Collections Officer,36968,66048.9,0.0,0.0,66048.9,13606.18,12424.5,5372.93,31403.61,97452.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26099,44860.32,273.94,3949.95,49084.21,11149.76,11745.93,3918.8,26814.49,75898.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,49170,82636.4,76421.53,13187.12,172245.05,18483.47,12137.78,10605.36,41226.61,213471.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37521,4642.19,0.0,146.36,4788.55,0.0,2013.01,385.67,2398.68,7187.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,2799,11211.64,0.0,405.49,11617.13,0.0,3697.48,900.66,4598.14,16215.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5011,3380.82,0.0,6423.57,9804.39,789.08,320.17,754.57,1863.82,11668.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers Int, Local 261",3400,Agriculture & Horticulture,3408,Apprentice Arborist Tech I,4737,17375.2,168.52,118.08,17661.8,3876.71,5361.05,1440.61,10678.37,28340.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20426,2093.8,485.57,0.0,2579.37,255.88,907.95,199.69,1363.52,3942.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21883,0.0,0.0,870.86,870.86,0.0,68.5,66.62,135.12,1005.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,12889,58751.57,0.0,7122.74,65874.31,13326.62,12323.74,5392.76,31043.12,96917.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,469,38786.35,0.0,0.0,38786.35,9301.47,8691.84,3061.25,21054.56,59840.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3314,136424.99,0.0,34224.76,170649.75,32781.83,12076.25,10637.03,55495.11,226144.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,8087,12116.79,0.0,152.67,12269.46,0.0,4011.09,950.8,4961.89,17231.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,36534,28179.29,0.0,12728.66,40907.95,7474.77,6527.35,3325.35,17327.47,58235.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,36616,110435.34,0.0,0.0,110435.34,22143.61,11584.77,16743.16,50471.54,160906.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,33221,63351.6,0.0,624.0,63975.6,13215.26,12424.5,5252.19,30891.95,94867.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,43956,83579.21,0.0,0.0,83579.21,17165.86,9724.69,6649.95,33540.5,117119.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,28062,45471.85,0.0,0.0,45471.85,10885.64,12173.63,3690.86,26750.13,72221.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33443,56531.0,326.55,4190.44,61047.99,12512.69,12424.5,5000.27,29937.46,90985.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",5285,34244.91,155.4,0.0,34400.31,1862.93,8078.92,2665.3,12607.15,47007.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,24905,68367.68,2495.51,8261.52,79124.71,15020.2,12523.06,1317.59,28860.85,107985.56 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,19579,55184.13,11806.76,6111.31,73102.2,12171.8,10865.47,5985.04,29022.31,102124.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37391,67827.41,15896.72,6038.52,89762.65,20227.91,13364.34,6972.37,40564.62,130327.27 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,8550,8937.6,0.0,0.0,8937.6,1663.3,1529.17,707.86,3900.33,12837.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27562,3213.0,0.0,70.68,3283.68,0.0,1236.47,254.55,1491.02,4774.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32302,127599.28,1348.19,17267.36,146214.83,27145.17,10957.09,10092.07,48194.33,194409.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9592,3705.63,0.0,27.93,3733.56,0.0,1806.92,289.62,2096.54,5830.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,48861,84192.52,29193.92,0.0,113386.44,17339.72,12424.53,9038.31,38802.56,152189.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24197,2548.0,0.0,1.96,2549.96,0.0,1242.45,197.8,1440.25,3990.21 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,35014,72618.21,0.0,0.0,72618.21,14949.56,12424.5,5532.65,32906.71,105524.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,33960,57274.04,0.0,0.0,57274.04,11257.84,8123.71,4488.76,23870.31,81144.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34039,10263.86,0.0,347.3,10611.16,1272.12,0.0,1489.77,2761.89,13373.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10850,94120.57,39179.18,12339.49,145639.24,25922.27,11959.48,2404.09,40285.84,185925.08 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,4527,94393.16,5091.99,10300.65,109785.8,25507.52,11998.84,1860.86,39367.22,149153.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34002,5034.75,0.0,0.0,5034.75,0.0,2183.25,397.26,2580.51,7615.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,27709,54256.01,1082.03,0.0,55338.04,10207.24,6212.25,4554.33,20973.82,76311.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51990,113919.95,2663.59,4397.73,120981.27,23002.58,12424.5,1972.26,37399.34,158380.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,16699,2779.36,0.0,0.0,2779.36,623.41,477.86,202.56,1303.83,4083.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,17410,24600.0,0.0,3932.56,28532.56,5020.14,4300.79,2330.79,11651.72,40184.28 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,38743,49602.83,0.0,0.0,49602.83,8993.0,3822.92,4959.77,17775.69,67378.52 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,7432,11770.0,0.0,0.0,11770.0,2190.4,2389.33,1061.82,5641.55,17411.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,3812,133152.3,11146.98,0.0,144299.28,26748.22,12424.5,17515.85,56688.57,200987.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11553,18799.45,2265.3,3774.22,24838.97,4400.92,2523.01,404.12,7328.05,32167.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",6200,Public Safety Inspection,6235,Heating/Ventilating Inspector,47181,112776.04,6372.07,2255.52,121403.63,23150.49,12424.5,9796.14,45371.13,166774.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,35790,98346.32,369.71,2117.2,100833.23,20394.25,7445.14,8595.57,36434.96,137268.19 +Calendar,2015,1,Public Protection,POL,Police,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,9506,64199.0,1668.31,0.0,65867.31,13231.68,12424.5,5310.79,30966.97,96834.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,53067,3891.45,0.0,0.0,3891.45,0.0,1687.46,316.21,2003.67,5895.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10776,117126.96,1049.4,12036.23,130212.59,25064.27,10366.28,9685.66,45116.21,175328.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45081,47344.74,0.0,420.68,47765.42,11441.33,11769.88,3833.46,27044.67,74810.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,50193,98366.22,2917.29,0.0,101283.51,20240.79,12424.52,8261.19,40926.5,142210.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,20,85368.01,61.18,0.0,85429.19,17594.59,12424.5,6973.32,36992.41,122421.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,24885,30667.33,0.0,378.44,31045.77,6236.85,5958.57,2607.9,14803.32,45849.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,52716,85368.02,31592.16,1540.0,118500.18,17912.59,12424.5,9702.57,40039.66,158539.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,15340,54000.7,0.0,0.0,54000.7,10992.77,3229.78,4185.29,18407.84,72408.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,47429,105732.01,0.0,0.0,105732.01,21776.02,12424.5,8522.34,42722.86,148454.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,35197,15637.23,0.0,0.0,15637.23,0.0,3467.52,1212.2,4679.72,20316.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17430,7715.81,0.0,3875.52,11591.33,0.0,663.04,899.67,1562.71,13154.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,50710,78155.18,6151.69,1037.45,85344.32,15851.96,10346.21,7322.09,33520.26,118864.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,13457,39126.15,0.0,646.74,39772.89,8921.05,5243.14,3220.9,17385.09,57157.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",43663,24005.73,0.0,0.0,24005.73,0.0,5047.45,1860.72,6908.17,30913.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,21520,61475.4,0.0,621.36,62096.76,12793.8,12371.94,4845.56,30011.3,92108.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,37621,129895.03,0.0,0.0,129895.03,26141.5,12424.5,10082.84,48648.84,178543.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,44253,15439.02,0.0,825.75,16264.77,1639.28,4087.25,1271.19,6997.72,23262.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8646,56531.02,0.0,4662.2,61193.22,13298.34,12424.5,4707.83,30430.67,91623.89 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),11266,184289.04,0.0,5185.78,189474.82,38130.64,12424.5,11014.1,61569.24,251044.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3399,2018.19,0.0,0.0,2018.19,0.0,984.1,156.58,1140.68,3158.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39508,21531.91,0.0,466.37,21998.28,0.0,5359.57,1705.18,7064.75,29063.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,9993,67261.01,1833.78,624.0,69718.79,13991.51,12424.5,5773.03,32189.04,101907.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,16237,97934.01,8368.74,2438.78,108741.53,20596.22,12424.5,8867.04,41887.76,150629.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30723,67049.82,16330.47,1010.68,84390.97,18690.62,13214.35,6375.51,38280.48,122671.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,33528,2772.0,0.0,0.0,2772.0,515.87,477.86,215.15,1208.88,3980.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5245,104578.33,9241.74,8919.28,122739.35,22808.38,14494.38,2081.65,39384.41,162123.76 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7273,Communications Line Wrk Sprv 2,12621,3112.24,0.0,621.33,3733.57,682.83,333.61,324.38,1340.82,5074.39 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1041,IS Engineer-Assistant,38276,53872.0,0.0,0.0,53872.0,12083.5,6212.25,4365.72,22661.47,76533.47 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",4163,2757.7,0.0,126.43,2884.13,0.0,573.44,223.52,796.96,3681.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",25004,130329.32,3968.0,13703.55,148000.87,28415.71,15052.76,2475.3,45943.77,193944.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,27844,140134.72,17288.78,9474.78,166898.28,27711.46,12424.5,2798.69,42934.65,209832.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,33721,60745.05,1941.96,3404.86,66091.87,12995.28,12424.5,5320.41,30740.19,96832.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",32166,85643.36,0.0,240.0,85883.36,17656.57,12300.07,6971.7,36928.34,122811.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,3755,2926.85,1683.83,87.92,4698.6,0.0,878.08,364.29,1242.37,5940.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16918,116552.06,1106.2,14780.96,132439.22,23225.01,10014.15,6513.77,39752.93,172192.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,51441,52311.1,0.0,200.0,52511.1,11658.61,11898.85,4265.55,27823.01,80334.11 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,6936,62914.86,0.0,0.0,62914.86,12982.78,12269.44,4956.38,30208.6,93123.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,49869,91511.26,0.0,0.0,91511.26,18867.25,12424.5,7447.55,38739.3,130250.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,18937,95991.54,24056.57,20046.29,140094.4,27478.82,12203.85,2331.03,42013.7,182108.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50639,66115.19,7904.15,1317.01,75336.35,18473.35,13027.39,5500.93,37001.67,112338.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,377.0,"Iron Workers, Local 377",7200,Supervisory-Labor & Trade,9346,Fusion Welder,51942,86334.94,0.0,1388.82,87723.76,17833.42,10783.09,7235.6,35852.11,123575.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,8720,61875.05,0.0,624.0,62499.05,12881.26,12424.5,4888.1,30193.86,92692.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,31873,8316.0,0.0,1158.4,9474.4,1561.02,1433.6,747.28,3741.9,13216.3 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7273,Communications Line Wrk Sprv 2,11766,116638.01,9242.31,14028.08,139908.4,23473.53,12424.5,10066.41,45964.44,185872.84 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,32763,111451.01,0.0,7687.67,119138.68,30176.97,0.0,9722.8,39899.77,159038.45 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,50315,9001.25,124.36,0.0,9125.61,2322.33,2269.86,737.7,5329.89,14455.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41390,96185.31,4989.46,9299.74,110474.51,25644.83,12279.53,1787.15,39711.51,150186.02 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,50996,24284.5,0.0,0.0,24284.5,4402.8,2628.26,1909.43,8940.49,33224.99 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,35468,79722.0,457.05,0.0,80179.05,16430.89,12424.5,6371.54,35226.93,115405.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,50022,108038.0,34609.55,13518.24,156165.79,24146.23,12424.5,10387.62,46958.35,203124.14 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26417,97580.08,9173.58,9597.89,116351.55,25864.63,12400.61,1923.44,40188.68,156540.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26335,136422.11,0.0,7869.65,144291.76,22694.47,12376.71,7725.23,42796.41,187088.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",22791,29330.44,0.0,3246.65,32577.09,6578.83,3911.8,2682.62,13173.25,45750.34 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,20564,62658.47,15055.92,3568.31,81282.7,13045.8,12336.82,6882.95,32265.57,113548.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,34779,9986.2,522.06,1938.65,12446.91,2361.78,2341.54,1063.65,5766.97,18213.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,52263,119450.17,15418.51,6657.69,141526.37,23683.74,12424.5,2338.21,38446.45,179972.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2957,53362.41,10240.94,988.64,64591.99,15416.08,10612.08,4863.55,30891.71,95483.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,16490,45378.52,0.0,0.0,45378.52,10867.19,12424.5,3690.07,26981.76,72360.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48308,123413.64,536.4,12625.19,136575.23,25622.1,10927.53,7492.79,44042.42,180617.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25065,66604.89,1196.82,1380.0,69181.71,13872.56,10731.61,5443.37,30047.54,99229.25 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,41015,64963.08,1504.01,4062.47,70529.56,13920.08,12424.5,5786.89,32131.47,102661.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,32382,58.58,0.0,0.0,58.58,0.0,17.92,4.55,22.47,81.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,11722,66102.09,0.0,210.0,66312.09,13670.78,12424.5,5457.51,31552.79,97864.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,24226,25208.5,270.98,7.96,25487.44,4909.01,6212.25,2872.27,13993.53,39480.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7314,Aprnt Stationary Engineer I,52685,2181.0,0.0,0.0,2181.0,405.88,477.87,167.45,1051.2,3232.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,22805,62245.77,0.0,2354.97,64600.74,12890.92,11786.73,5301.36,29979.01,94579.75 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,3000,6757.13,0.0,0.0,6757.13,0.0,2192.2,552.35,2744.55,9501.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44163,0.0,0.0,5563.17,5563.17,0.0,0.0,406.46,406.46,5969.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,16143,82717.04,0.0,608.0,83325.04,17128.69,12424.5,6884.78,36437.97,119763.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38086,56531.0,202.6,1641.45,58375.05,11651.3,12424.5,4705.67,28781.47,87156.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,7134,34064.99,0.0,0.0,34064.99,4666.87,7167.99,2755.82,14590.68,48655.67 +Calendar,2015,1,Public Protection,PDR,Public Defender,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,614,8673.0,0.0,0.0,8673.0,1614.06,1672.53,672.61,3959.2,12632.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,3376,63007.0,0.0,1372.76,64379.76,13239.98,11229.84,5317.24,29787.06,94166.82 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,49157,101047.0,0.0,0.0,101047.0,20826.03,12424.5,8080.05,41330.58,142377.58 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,39290,73421.67,3713.51,3255.34,80390.52,15262.58,11836.55,6645.33,33744.46,114134.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,26067,26879.8,0.0,2774.68,29654.48,6842.33,6690.11,2147.35,15679.79,45334.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,2971,16558.9,0.0,0.0,16558.9,4272.21,4109.64,1276.4,9658.25,26217.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,25408,69914.75,20222.47,9269.56,99406.78,15544.27,12365.72,8056.95,35966.94,135373.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26596,13935.08,0.0,780.54,14715.62,0.0,3745.27,1140.03,4885.3,19600.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,21208,30674.47,483.85,536.97,31695.29,6593.0,7384.51,2554.36,16531.87,48227.16 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,52324,37390.01,0.0,0.0,37390.01,6958.26,4778.65,2967.3,14704.21,52094.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,36376,10128.5,0.0,0.0,10128.5,0.0,2245.97,785.72,3031.69,13160.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,37941,113073.03,0.0,0.0,113073.03,22756.69,12424.5,9295.91,44477.1,157550.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5644,Principal Environ Specialist,50420,113175.67,0.0,0.0,113175.67,22780.06,12018.31,9267.3,44065.67,157241.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,7.0,"Bricklayers, Local 3",7300,Journeyman Trade,7378,Tile Setter,17991,68755.59,1771.07,1084.0,71610.66,14336.23,10719.13,5822.75,30878.11,102488.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,8164,58101.0,0.0,0.0,58101.0,11974.94,12424.5,4818.3,29217.74,87318.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11386,116098.83,1631.57,25541.34,143271.74,23673.29,10931.17,7927.31,42531.77,185803.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,18183,114886.87,0.0,1090.0,115976.87,23302.79,12424.5,9314.95,45042.24,161019.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,16009,116577.5,0.0,0.0,116577.5,23433.51,12424.5,9590.4,45448.41,162025.91 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,11924,112079.01,0.0,14304.63,126383.64,22975.19,10513.04,9919.94,43408.17,169791.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5218,Structural Engineer,10667,149312.05,0.0,0.0,149312.05,30049.2,12424.52,10334.47,52808.19,202120.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,25314,103975.2,0.0,24432.28,128407.48,22812.14,6546.76,13460.83,42819.73,171227.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37878,9058.75,0.0,205.94,9264.69,0.0,3470.49,718.01,4188.5,13453.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,25225,2931.87,0.0,33.73,2965.6,0.0,1370.87,230.08,1600.95,4566.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,11305,64334.68,0.0,820.75,65155.43,13143.02,10011.27,5081.13,28235.42,93390.85 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,42413,191926.0,0.0,0.0,191926.0,38625.42,12424.51,10992.53,62042.46,253968.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44562,112159.79,34227.08,27757.63,174144.5,27488.16,15052.75,2915.09,45456.0,219600.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,40036,26798.8,0.0,400.0,27198.8,5240.4,5689.59,2046.06,12976.05,40174.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,44341,111486.9,0.0,0.0,111486.9,22687.46,12424.5,8716.33,43828.29,155315.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,11519,22939.35,0.0,0.0,22939.35,0.0,5961.37,1778.16,7739.53,30678.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43236,80949.88,3157.76,4177.6,88285.24,16584.79,12424.5,3340.45,32349.74,120634.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49087,89629.96,28168.74,9195.85,126994.55,18770.29,11468.78,2119.27,32358.34,159352.89 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,4131,33815.01,0.0,0.0,33815.01,6725.87,7167.99,2699.53,16593.39,50408.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,31559,27626.0,0.0,0.0,27626.0,5141.21,3822.92,2254.29,11218.42,38844.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46158,62468.82,13015.21,1857.78,77341.81,13108.92,12424.5,6334.25,31867.67,109209.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25320,113223.02,31746.92,18480.72,163450.66,25079.53,15196.12,2741.32,43016.97,206467.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43444,48625.58,0.0,8617.26,57242.84,10601.3,3757.7,5669.78,20028.78,77271.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,18880,44469.7,0.0,0.0,44469.7,567.05,7120.2,3525.44,11212.69,55682.39 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,8003,27040.0,0.0,0.0,27040.0,4902.35,2389.33,5050.96,12342.64,39382.64 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,8719,42177.42,0.0,735.63,42913.05,8783.44,6797.63,3540.75,19121.82,62034.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,44268,75605.0,22015.64,5179.25,102799.89,15970.27,12424.5,8356.94,36751.71,139551.6 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,31123,5155.31,0.0,196.7,5352.01,0.0,1164.79,414.35,1579.14,6931.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,47146,55268.17,0.0,6961.25,62229.42,12130.45,12145.25,5138.55,29414.25,91643.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,25363,3724.63,0.0,28.6,3753.23,841.85,0.0,341.17,1183.02,4936.25 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,7282,19014.86,0.0,0.0,19014.86,0.0,6215.24,1476.58,7691.82,26706.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,38206,10119.47,0.0,0.0,10119.47,2269.8,1302.43,848.59,4420.82,14540.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,25515,62279.84,6889.81,1754.3,70923.95,13131.05,12388.13,5781.16,31300.34,102224.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,32966,59707.4,0.0,600.0,60307.4,11933.18,8623.81,4826.84,25383.83,85691.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,31289,64447.9,10694.57,4815.83,79958.3,14329.26,12424.51,6462.27,33216.04,113174.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25048,48357.27,524.53,3985.61,52867.41,9145.24,5258.91,4242.01,18646.16,71513.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44285,15317.8,41.33,1333.42,16692.55,1854.17,6642.33,1344.64,9841.14,26533.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,24103,61428.0,0.0,1664.0,63092.0,13002.62,12424.5,5226.03,30653.15,93745.15 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,45588,7253.0,0.0,106.28,7359.28,1618.3,2150.39,590.1,4358.79,11718.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,82,58304.7,258.08,1017.59,59580.37,12998.24,12281.15,4491.52,29770.91,89351.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,16215,52710.01,2289.39,5886.54,60885.94,11785.88,9557.31,4999.97,26343.16,87229.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,42247,8964.35,0.0,0.0,8964.35,1971.27,2652.15,714.68,5338.1,14302.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5149,Supt Water Treatment Fac,44588,83015.0,620.94,2106.13,85742.07,15670.76,7167.98,4393.91,27232.65,112974.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,45804,31584.0,4371.59,5043.76,40999.35,5607.96,2867.19,690.29,9165.44,50164.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10590,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1850.29,10264.06,34268.06 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46231,146858.6,0.0,4187.1,151045.7,30395.89,9901.37,10388.21,50685.47,201731.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,31276,138534.23,20942.18,22539.84,182016.25,27377.42,12364.76,3047.78,42789.96,224806.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,1239,24696.0,0.0,0.0,24696.0,5539.28,3822.92,1933.65,11295.85,35991.85 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,34829,22237.82,0.0,275.61,22513.43,5347.24,5487.57,1875.24,12710.05,35223.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,8503,71039.09,186.38,0.0,71225.47,14699.89,11946.64,5918.23,32564.76,103790.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,25979,72509.15,10393.62,600.0,83502.77,15140.68,10639.51,6889.69,32669.88,116172.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7124,22401.98,0.0,869.97,23271.95,1908.86,9658.86,1879.17,13446.89,36718.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17829,51966.2,0.0,0.0,51966.2,12450.42,12424.5,3974.85,28849.77,80815.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,5978,69778.28,0.0,0.0,69778.28,14350.1,12422.18,5631.85,32404.13,102182.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31756,40713.8,4256.18,1577.4,46547.38,10937.43,7977.42,3496.52,22411.37,68958.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27567,97192.47,5219.02,5905.91,108317.4,20190.89,12424.5,1806.6,34421.99,142739.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,50860,28622.01,4110.36,0.0,32732.37,6419.93,5256.52,2698.31,14374.76,47107.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,5332,61428.0,13575.61,1861.0,76864.61,13043.67,12424.5,6204.7,31672.87,108537.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,779,117140.96,37352.54,13906.44,168399.94,23164.17,12424.51,2871.03,38459.71,206859.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",9337,149119.65,2308.04,22042.0,173469.69,33354.84,14335.96,2581.64,50272.44,223742.13 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",50892,51159.92,20887.17,24557.3,96604.39,10158.47,5877.75,1590.98,17627.2,114231.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,10259,8644.0,0.0,0.0,8644.0,1900.8,1911.46,689.22,4501.48,13145.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,42321,55882.7,167.25,4509.3,60559.25,12074.56,12281.15,4961.83,29317.54,89876.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18872,112685.47,36542.53,25030.05,174258.05,22330.91,12424.5,2907.97,37663.38,211921.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,23554,2591.06,0.0,0.0,2591.06,581.17,370.82,225.64,1177.63,3768.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47012,72610.15,67.17,7490.79,80168.11,0.0,5535.0,6214.61,11749.61,91917.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14716,70867.95,489.5,5344.53,76701.98,14673.94,6913.7,6328.84,27916.48,104618.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,41264,0.0,0.0,1352.08,1352.08,0.0,34.25,103.44,137.69,1489.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,11707,40401.41,0.0,1141.21,41542.62,8683.1,8601.52,3384.96,20669.58,62212.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,44689,462.9,0.0,0.0,462.9,0.0,143.35,35.84,179.19,642.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,47998,70245.0,6720.9,2845.35,79811.25,14498.35,12424.5,6538.27,33461.12,113272.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,19335,91908.02,0.0,0.0,91908.02,18282.97,10035.18,7357.0,35675.15,127583.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24921,54419.1,542.3,9014.64,63976.04,0.0,4779.32,4784.44,9563.76,73539.8 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),5854,184289.01,0.0,1562.5,185851.51,37402.56,12424.5,10946.44,60773.5,246625.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,53221,68726.39,11794.17,0.0,80520.56,14461.02,10270.32,6260.92,30992.26,111512.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,14295,92001.31,846.73,2477.25,95325.29,19452.87,12424.5,7643.95,39521.32,134846.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2998,"Rep, Comm Status Of Women",3730,43834.0,0.0,0.0,43834.0,559.23,7120.2,3507.43,11186.86,55020.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,33912,82716.99,9395.04,5497.64,97609.67,17213.78,12424.5,7600.13,37238.41,134848.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29589,147923.6,0.0,15470.26,163393.86,19915.05,12325.94,10158.54,42399.53,205793.39 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,13057,73695.33,18.6,10931.08,84645.01,16573.82,12415.49,6727.24,35716.55,120361.56 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,39901,24006.0,0.0,2040.12,26046.12,4847.18,3345.06,2057.84,10250.08,36296.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,50562,54651.37,0.0,3573.37,58224.74,11422.37,12013.48,4776.77,28212.62,86437.36 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,9945,13726.59,0.0,0.0,13726.59,0.0,1081.17,1062.71,2143.88,15870.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,49097,110809.2,4398.67,17913.84,133121.71,25347.21,11714.09,10008.97,47070.27,180191.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36392,108390.61,0.0,3029.09,111419.7,22081.46,9605.1,9035.9,40722.46,152142.16 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,17742,95968.01,0.0,0.0,95968.01,19779.21,12424.5,7961.45,40165.16,136133.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,35752,18799.03,0.0,0.0,18799.03,0.0,1893.54,1458.98,3352.52,22151.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,14031,101246.56,12154.32,8906.08,122306.96,22723.82,12420.98,9821.62,44966.42,167273.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10094,41586.78,5454.4,991.25,48032.43,11126.99,12774.12,3642.24,27543.35,75575.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,15520,67260.37,0.0,1440.0,68700.37,14158.14,12424.39,5647.48,32230.01,100930.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",32701,135109.0,32064.44,8106.54,175279.98,28149.67,12424.5,2969.99,43544.16,218824.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,31403,76945.03,0.0,4907.25,81852.28,16633.52,10751.97,6532.18,33917.67,115769.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,5416,87871.01,0.0,0.0,87871.01,18090.31,12424.5,7073.87,37588.68,125459.69 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,38496,113073.02,0.0,5612.84,118685.86,23886.1,12424.5,9694.1,46004.7,164690.56 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,3029,102252.06,0.0,3000.0,105252.06,21083.84,12424.5,31875.72,65384.06,170636.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,42723,64463.7,12872.6,11491.51,88827.81,15255.11,12424.5,7192.56,34872.17,123699.98 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,11785,66959.27,0.0,1000.0,67959.27,14007.32,12368.47,5186.57,31562.36,99521.63 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,12358,49301.0,0.0,4344.56,53645.56,9174.92,5256.52,4182.58,18614.02,72259.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,38626,33815.0,86.36,0.0,33901.36,6725.87,7167.97,2742.25,16636.09,50537.45 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,47428,59957.0,2347.83,1535.0,63839.83,12661.54,12424.5,4904.56,29990.6,93830.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44636,44223.12,3142.43,938.93,48304.48,11659.65,13015.26,3444.89,28119.8,76424.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,41199,74165.03,778.89,1744.0,76687.92,15642.79,12424.5,6289.95,34357.24,111045.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46462,74087.0,0.0,11819.74,85906.74,15176.17,6212.25,6438.73,27827.15,113733.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,37849,35670.6,0.0,0.0,35670.6,0.0,6116.69,2838.55,8955.24,44625.84 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,10257,27821.6,440.35,377.44,28639.39,0.0,4014.07,2211.95,6226.02,34865.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,38231,52065.92,0.0,1400.0,53465.92,12798.83,12424.5,4298.32,29521.65,82987.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,23486,75605.02,0.0,1309.9,76914.92,15711.25,12424.5,6354.96,34490.71,111405.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,41296,37107.09,0.0,0.0,37107.09,7763.22,8367.12,3034.17,19164.51,56271.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,23023,99011.41,874.8,78.41,99964.62,20462.76,12089.99,8288.75,40841.5,140806.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6281,Fire Safety Inspector 2,26629,135115.5,3310.07,8106.93,146532.5,28812.18,12424.5,10309.9,51546.58,198079.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36851,49780.51,0.0,3381.4,53161.91,11395.05,11074.54,4041.2,26510.79,79672.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,30330,110461.34,57637.24,12269.48,180368.06,22209.21,12352.82,3011.62,37573.65,217941.71 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,34954,62187.0,1753.15,1066.46,65006.61,13046.27,12424.5,5324.16,30794.93,95801.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33795,1640.0,0.0,3.84,1643.84,0.0,612.26,127.59,739.85,2383.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,3402,9108.75,0.0,182.2,9290.95,0.0,0.0,733.99,733.99,10024.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13999,8416.53,0.0,0.0,8416.53,0.0,0.0,694.78,694.78,9111.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,30072,66071.03,0.0,0.0,66071.03,13608.2,12328.93,5189.04,31126.17,97197.2 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,50878,92729.53,0.0,0.0,92729.53,19097.96,12424.51,7408.52,38930.99,131660.52 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,26806,19441.99,935.18,0.0,20377.17,0.0,0.0,1612.34,1612.34,21989.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,44595,93281.0,0.0,0.0,93281.0,19183.95,12424.52,7459.44,39067.91,132348.91 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,4667,23158.36,0.0,370.08,23528.44,5569.65,6938.05,1887.45,14395.15,37923.59 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,48518,78774.25,0.0,9873.32,88647.57,16071.82,5184.84,2132.8,23389.46,112037.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,41129,81942.0,16663.81,3197.27,101803.08,17124.94,12424.5,8075.26,37624.7,139427.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,21728,44124.0,7078.96,519.0,51721.96,6963.49,6212.25,4165.4,17341.14,69063.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,5259,116976.14,0.0,0.0,116976.14,23541.49,12424.51,9563.59,45529.59,162505.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24104,525.52,0.0,0.0,525.52,0.0,227.88,40.69,268.57,794.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3435,Urban Forestry Inspector,28516,61628.0,0.0,0.0,61628.0,12677.73,12424.5,4922.66,30024.89,91652.89 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,42295,100.94,0.0,0.0,100.94,0.0,29.87,7.83,37.7,138.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,1479,64425.2,426.59,590.41,65442.2,13333.26,11755.67,5901.66,30990.59,96432.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,31957,92282.03,0.0,669.0,92951.03,19156.56,12424.5,7708.43,39289.49,132240.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21290,110337.22,0.0,9755.69,120092.91,22296.59,9471.29,9217.42,40985.3,161078.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",43398,97989.0,11044.13,15710.54,124743.67,22038.88,12424.5,9807.68,44271.06,169014.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,24243,33887.0,0.0,0.0,33887.0,6306.38,3345.04,1650.79,11302.21,45189.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28881,2204.0,0.0,72.6,2276.6,587.36,955.74,186.24,1729.34,4005.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,2507,47974.4,2340.28,2764.77,53079.45,11713.61,12028.48,4294.01,28036.1,81115.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5400,Community Development,5408,Coord Of Citizen Involvement,35652,84109.55,0.0,3032.81,87142.36,16926.93,9318.38,6989.97,33235.28,120377.64 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,33396,97172.51,0.0,0.0,97172.51,20018.06,12424.5,7951.06,40393.62,137566.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16723,117932.54,0.0,13035.13,130967.67,23384.72,10981.35,9535.32,43901.39,174869.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,3128,54651.37,0.0,7763.79,62415.16,12190.34,12014.25,4896.15,29100.74,91515.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,18280,79395.08,0.0,624.0,80019.08,16488.03,12424.51,6635.15,35547.69,115566.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,16392,17760.0,16040.97,2165.48,35966.45,3673.17,1911.46,642.29,6226.92,42193.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14768,4613.11,0.0,0.0,4613.11,1116.56,1433.6,358.05,2908.21,7521.32 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,22292,4076.21,0.0,0.0,4076.21,0.0,1487.35,327.56,1814.91,5891.12 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,48248,57485.73,8498.56,6322.33,72306.62,14016.08,12424.5,5583.02,32023.6,104330.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24563,59663.94,0.0,0.0,59663.94,13304.02,12424.5,4707.92,30436.44,90100.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,123,119461.57,350.71,12834.62,132646.9,24333.68,12424.5,235.2,36993.38,169640.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,12843,64680.0,34869.61,9228.3,108777.91,15016.3,9557.31,8809.93,33383.54,142161.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,673,66603.71,2440.22,2155.6,71199.53,15667.59,13130.13,5435.52,34233.24,105432.77 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,22315,40360.2,0.0,13493.24,53853.44,9273.04,6546.76,4395.93,20215.73,74069.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50290,28782.6,0.0,1317.29,30099.89,5377.62,5638.82,2316.27,13332.71,43432.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,18837,52896.07,0.0,1210.0,54106.07,12116.26,11966.23,4217.99,28300.48,82406.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37153,2881.5,0.0,8.84,2890.34,0.0,1108.04,224.23,1332.27,4222.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52351,14853.83,2534.63,1638.18,19026.64,2149.27,3963.31,1490.48,7603.06,26629.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7715,67651.2,19653.74,5059.92,92364.86,19941.36,13330.47,7182.62,40454.45,132819.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,29805,85220.51,10267.54,6613.67,102101.72,17563.19,12424.5,8151.76,38139.45,140241.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,22792,68973.13,1161.9,238.0,70373.03,3293.09,8476.16,5544.35,17313.6,87686.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33650,72332.49,39814.69,9060.28,121207.46,22317.54,14250.85,9391.04,45959.43,167166.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",31923,11870.07,0.0,0.0,11870.07,2209.02,1433.6,3038.17,6680.79,18550.86 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,32734,134050.4,0.0,0.0,134050.4,26902.64,12424.5,17328.69,56655.83,190706.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,49365,109056.29,0.0,0.0,109056.29,21944.17,12402.22,8657.94,43004.33,152060.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,3384,97646.0,0.0,1060.0,98706.0,20301.59,12424.5,7917.08,40643.17,139349.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34710,5289.6,0.0,0.0,5289.6,0.0,2293.76,417.0,2710.76,8000.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,21797,59182.54,1380.57,2107.94,62671.05,12406.75,11702.33,4944.76,29053.84,91724.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6661,3869.0,0.0,35.12,3904.12,0.0,1051.3,302.65,1353.95,5258.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,3239,69661.58,123.34,64.82,69849.74,14683.68,10040.89,5703.2,30427.77,100277.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,11631,97424.0,9162.42,2276.0,108862.42,20544.33,12424.5,8562.76,41531.59,150394.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35677,19826.15,0.0,581.23,20407.38,4887.48,6573.65,1741.45,13202.58,33609.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,1182,63887.0,18113.18,1553.88,83554.06,13499.73,12424.5,6842.68,32766.91,116320.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19199,43246.75,0.0,5417.13,48663.88,10030.71,9563.22,3986.28,23580.21,72244.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48115,25840.13,0.0,778.99,26619.12,2118.27,0.0,4194.26,6312.53,32931.65 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,38144,36593.8,0.0,1505.5,38099.3,7870.09,6254.07,3151.1,17275.26,55374.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,47166,21300.0,698.91,0.0,21998.91,5495.4,4778.63,1905.61,12179.64,34178.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,6959,92540.84,13672.98,4603.77,110817.59,19676.83,12424.5,8870.95,40972.28,151789.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,4568,18636.88,241.88,0.0,18878.76,0.0,4868.26,1406.66,6274.92,25153.68 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,28711,135053.22,0.0,0.0,135053.22,27178.66,12424.5,9945.82,49548.98,184602.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7695,113905.49,24331.87,16764.27,155001.63,25330.34,14527.11,1757.97,41615.42,196617.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42293,28741.9,0.0,0.0,28741.9,0.0,2532.69,2229.15,4761.84,33503.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,31587,5408.25,0.0,101.54,5509.79,1316.66,1254.65,496.91,3068.22,8578.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,6761,46659.01,0.0,0.0,46659.01,11210.53,11707.69,3643.12,26561.34,73220.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,48141,81542.0,0.0,0.0,81542.0,16806.13,12424.5,6656.98,35887.61,117429.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9816,68127.61,2515.34,3118.91,73761.86,16680.7,13424.14,5634.44,35739.28,109501.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,38663,82883.0,1996.7,9197.9,94077.6,18972.7,12424.5,7719.58,39116.78,133194.38 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2464,Senior Microbiologist,19042,59064.82,0.0,20042.41,79107.23,13248.19,6546.76,6273.55,26068.5,105175.73 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,37332,109725.63,0.0,0.0,109725.63,22603.29,12424.5,17392.05,52419.84,162145.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19146,55614.81,400.44,7810.38,63825.63,13636.97,12370.74,5262.34,31270.05,95095.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27218,26492.07,0.0,0.0,26492.07,0.0,0.0,2098.18,2098.18,28590.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19936,3025.1,0.0,1.43,3026.53,0.0,1009.48,234.91,1244.39,4270.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52443,474.35,0.0,23.63,497.98,0.0,158.3,38.56,196.86,694.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,31734,51932.85,0.0,0.0,51932.85,10923.52,12424.5,3552.96,26900.98,78833.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35966,302.77,113.54,0.0,416.31,74.15,95.58,32.31,202.04,618.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26358,44299.39,5769.42,688.74,50757.55,11971.07,13060.42,3721.51,28753.0,79510.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,51580,84157.07,19505.96,6266.6,109929.63,17639.46,12424.5,9319.52,39383.48,149313.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,44376,116081.85,0.0,3689.69,119771.54,24074.0,12328.93,9785.94,46188.87,165960.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1078,67075.28,10899.9,2891.9,80867.08,19113.71,13215.54,6136.57,38465.82,119332.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43735,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2429.38,12882.73,44182.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,50009,0.0,0.0,3791.27,3791.27,0.0,0.0,290.03,290.03,4081.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,51423,91789.55,0.0,0.0,91789.55,18738.86,11468.77,7172.85,37380.48,129170.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32184,53862.8,160.88,125.0,54148.68,12086.47,11930.04,4350.45,28366.96,82515.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12106,7478.0,0.0,415.6,7893.6,0.0,2867.2,611.82,3479.02,11372.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21065,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.23,5147.57,17667.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,33822,43195.79,0.0,0.0,43195.79,9231.05,9546.08,3564.38,22341.51,65537.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6289,33209.63,0.0,6362.85,39572.48,7414.94,2850.83,3135.37,13401.14,52973.62 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,34340,75512.5,0.0,0.0,75512.5,17234.35,12424.5,1248.34,30907.19,106419.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,11829,70245.0,0.0,4141.3,74386.3,14616.8,12424.5,6134.12,33175.42,107561.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13373,94689.94,11976.0,5599.61,112265.55,19629.61,12424.5,1872.77,33926.88,146192.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,23634,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,21734,68867.71,1622.09,1440.0,71929.8,14458.05,12424.5,5816.08,32698.63,104628.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5644,Principal Environ Specialist,27353,18201.3,0.0,0.0,18201.3,4082.55,2144.42,1487.28,7714.25,25915.55 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,47282,68617.12,1983.54,0.0,70600.66,14121.48,12424.49,1174.82,27720.79,98321.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5218,Structural Engineer,11187,124700.2,0.0,0.0,124700.2,25373.99,12424.47,9874.5,47672.96,172373.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31030,77071.07,0.0,300.0,77371.07,15940.53,12424.5,6367.18,34732.21,112103.28 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,25581,102820.51,0.0,0.0,102820.51,21131.67,12036.23,8399.51,41567.41,144387.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,27637,64447.91,31199.53,18470.94,114118.38,16444.46,12424.51,9265.65,38134.62,152253.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,22307,92271.12,10810.03,3369.26,106450.41,23237.72,11736.31,1764.98,36739.01,143189.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,38302,114103.8,0.0,5705.19,119808.99,24084.15,12424.5,9570.56,46079.21,165888.2 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,41823,62560.89,0.0,494.4,63055.29,13001.21,9844.03,4937.06,27782.3,90837.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,48329,286.35,0.0,1007.95,1294.3,62.83,17.92,102.04,182.79,1477.09 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,4745,63560.91,3464.03,4086.25,71111.19,13313.86,12424.5,5746.08,31484.44,102595.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,27037,50046.61,0.0,1196.36,51242.97,10771.93,10035.18,4236.63,25043.74,76286.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,48191,6981.2,0.0,4446.02,11427.22,1605.6,1481.39,916.04,4003.03,15430.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7540,58324.01,4828.02,528.44,63680.47,13267.18,11479.05,4826.51,29572.74,93253.21 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,35643,91329.06,37708.46,15760.4,144797.92,20840.89,12111.79,10188.84,43141.52,187939.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,18105,13038.97,0.0,181.65,13220.62,0.0,3138.98,1055.12,4194.1,17414.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,23400,80035.84,0.0,29574.98,109610.82,17608.54,6309.2,189.22,24106.96,133717.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,22530,76127.55,19880.41,7407.84,103415.8,16962.11,11196.51,7816.64,35975.26,139391.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42736,69522.91,36527.44,6325.82,112376.17,20797.78,13703.29,8589.7,43090.77,155466.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5272,Landscape Architect Assoc 2,42651,27353.0,0.0,0.0,27353.0,5090.39,2867.17,2179.39,10136.95,37489.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2403,Forensic Laboratory Technician,43640,56916.04,0.0,1201.16,58117.2,12246.92,8601.58,4808.5,25657.0,83774.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,44373,20694.03,0.0,0.0,20694.03,4550.59,5734.39,1650.72,11935.7,32629.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,11548,83148.08,0.0,0.0,83148.08,17137.11,12424.52,6595.8,36157.43,119305.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,24931,125164.33,0.0,0.0,125164.33,25182.97,12412.56,9863.7,47459.23,172623.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,43054,93281.06,0.0,778.36,94059.42,19386.3,12424.5,7550.54,39361.34,133420.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,24437,61230.03,229.62,0.0,61459.65,13531.14,7167.87,5056.75,25755.76,87215.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0965,Dept Head V,29187,279560.98,0.0,0.0,279560.98,56207.89,12424.5,19708.87,88341.26,367902.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,23152,76954.55,2182.35,1860.0,80996.9,16239.78,12424.51,6538.82,35203.11,116200.01 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,6904,75028.0,0.0,0.0,75028.0,15463.6,12424.5,6147.45,34035.55,109063.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23045,7073.47,0.0,216.03,7289.5,0.0,3067.3,556.53,3623.83,10913.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,19608,72407.75,12258.99,769.51,85436.25,15064.37,10542.84,6912.04,32519.25,117955.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,47795,138629.95,39254.16,30330.97,208215.08,27414.76,12424.5,3473.61,43312.87,251527.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36285,112159.76,1761.1,17492.72,131413.58,24816.69,15052.76,2238.58,42108.03,173521.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31187,6634.35,0.0,605.75,7240.1,0.0,549.07,120.62,669.69,7909.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,46777,59275.31,0.0,0.0,59275.31,11645.83,7870.44,4765.78,24282.05,83557.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17570,12618.0,0.0,0.0,12618.0,870.8,3079.25,988.77,4938.82,17556.82 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,11692,21053.0,0.0,0.0,21053.0,4048.52,2867.19,1646.43,8562.14,29615.14 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,6622,93499.0,0.0,0.0,93499.0,19270.58,12424.5,7146.58,38841.66,132340.66 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,6987,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5169.23,30446.35,92805.36 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,3503,18128.0,0.0,0.0,18128.0,3373.64,3822.92,1446.07,8642.63,26770.63 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,7477,26409.2,0.0,0.0,26409.2,4914.76,5256.52,2088.3,12259.58,38668.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,47898,66102.0,0.0,0.0,66102.0,13624.06,12424.5,5365.27,31413.83,97515.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,40999,20640.0,0.0,21775.2,42415.2,4629.55,2389.32,3508.13,10527.0,52942.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2496,68231.4,7881.3,2191.61,78304.31,16059.26,13445.7,5981.47,35486.43,113790.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,22266,76500.9,0.0,1823.5,78324.4,16041.49,11618.1,6510.97,34170.56,112494.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",29860,70415.3,0.0,472.2,70887.5,15070.98,9402.0,5945.03,30418.01,101305.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31605,19.12,0.0,0.0,19.12,928.27,1.44,0.0,929.71,948.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44982,124594.11,29447.09,8992.26,163033.46,25147.82,12424.5,420.16,37992.48,201025.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,38560,68155.39,541.8,3717.48,72414.67,14193.39,12052.6,5982.59,32228.58,104643.25 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0882,Mayoral Staff II,36513,41746.04,0.0,0.0,41746.04,10013.06,12424.5,11406.59,33844.15,75590.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24041,1777.75,0.0,0.0,1777.75,0.0,816.85,137.96,954.81,2732.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47118,20983.78,0.0,545.96,21529.74,1959.6,5632.84,1675.08,9267.52,30797.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,13328,80154.0,1666.05,0.0,81820.05,16520.24,12424.49,6487.68,35432.41,117252.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,45291,66102.0,8023.77,0.0,74125.77,13624.06,12424.5,6087.8,32136.36,106262.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,810,29283.66,0.0,1703.24,30986.9,1763.47,0.0,1255.42,3018.89,34005.79 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,38950,24376.68,0.0,853.91,25230.59,6134.22,6863.36,2071.79,15069.37,40299.96 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),32278,164932.5,0.0,1500.0,166432.5,33457.3,12424.5,10636.8,56518.6,222951.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3215,Aquatics Facility Supervisor,29561,49963.0,0.0,573.21,50536.21,10078.88,9079.44,3951.34,23109.66,73645.87 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,3674,45911.8,2373.16,660.0,48944.96,11135.77,12424.52,4046.08,27606.37,76551.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45963,165.3,0.0,3.51,168.81,0.0,71.68,13.07,84.75,253.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,42223,12565.44,3843.64,17654.09,34063.17,2910.43,1427.62,2712.24,7050.29,41113.46 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,24855,35165.0,0.0,0.0,35165.0,6783.42,7167.99,2793.6,16745.01,51910.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41862,1816.62,0.0,0.0,1816.62,444.9,573.44,141.0,1159.34,2975.96 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,45770,25530.0,0.0,0.0,25530.0,6502.49,7167.99,2045.35,15715.83,41245.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33559,44519.48,529.25,1370.25,46418.98,13146.8,8853.0,3600.83,25600.63,72019.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,38584,57246.08,2504.52,0.0,59750.6,12080.09,10035.18,4360.26,26475.53,86226.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5706,39255.36,0.0,5912.08,45167.44,9011.51,6912.62,3735.05,19659.18,64826.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,19115,50329.63,0.0,0.0,50329.63,12075.37,12042.87,4055.07,28173.31,78502.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14590,116745.15,20340.5,3624.78,140710.43,23091.68,12382.7,2351.4,37825.78,178536.21 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,8834,99654.0,0.0,0.0,99654.0,22731.77,12424.5,1648.71,36804.98,136458.98 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,39668,11061.7,0.0,0.0,11061.7,2058.58,1768.1,853.53,4680.21,15741.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,19509,101733.01,2624.4,232.73,104590.14,21018.74,12424.5,8579.48,42022.72,146612.86 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,33516,20146.19,935.49,1781.27,22862.95,4542.9,4774.17,1824.22,11141.29,34004.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,20786,67185.59,49.09,615.87,67850.55,13958.14,12262.62,5425.19,31645.95,99496.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47735,28894.09,0.0,1026.47,29920.56,0.0,2179.67,2318.47,4498.14,34418.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3551,148804.8,0.0,9803.53,158608.33,30301.2,12400.61,9434.19,52136.0,210744.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,20833,60173.04,0.0,0.0,60173.04,12397.77,12424.5,4830.48,29652.75,89825.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,21115,50741.33,0.0,1180.0,51921.33,10575.68,10961.04,4177.07,25713.79,77635.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,31315,66924.63,0.0,1657.25,68581.88,13896.42,10417.47,5384.91,29698.8,98280.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,26079,85432.29,1309.21,4141.53,90883.03,17550.1,9079.44,1513.24,28142.78,119025.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,37791,5480.48,0.0,190.59,5671.07,0.0,461.44,439.71,901.15,6572.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,23982,143188.01,0.0,0.0,143188.01,28816.77,12424.5,10206.5,51447.77,194635.78 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46732,166715.08,0.0,1500.0,168215.08,33843.7,12424.5,10637.03,56905.23,225120.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39155,53110.4,5414.59,2404.45,60929.44,12752.65,12424.5,4857.26,30034.41,90963.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11914,117140.98,3932.95,6945.1,128019.03,23164.17,12424.5,2133.8,37722.47,165741.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,27954,56615.39,0.0,0.0,56615.39,0.0,4426.25,4388.77,8815.02,65430.41 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,10918,129895.05,0.0,0.0,129895.05,26141.52,12424.5,9943.77,48509.79,178404.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,1452,12188.0,0.0,0.0,12188.0,2733.76,1911.46,983.75,5628.97,17816.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16457,0.0,0.0,20240.75,20240.75,0.0,0.0,293.49,293.49,20534.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,19431,7996.0,0.0,0.0,7996.0,2062.96,1911.46,646.16,4620.58,12616.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,5221,77356.92,5241.3,550.26,83148.48,16454.58,9838.05,6952.86,33245.49,116393.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9141,Transit Manager 2,21909,122732.71,0.0,0.0,122732.71,24678.62,12424.5,9826.94,46930.06,169662.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1839,Water Conservation Admin,36630,96428.48,0.0,0.0,96428.48,19921.36,9704.2,15180.93,44806.49,141234.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50571,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3357.26,18183.11,61950.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,14198,117957.88,0.0,0.0,117957.88,23741.92,12409.03,8714.55,44865.5,162823.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,33210,84744.8,0.0,0.0,84744.8,17465.43,12424.47,6756.36,36646.26,121391.06 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,40900,140836.61,0.0,0.0,140836.61,13909.07,12424.5,17458.81,43792.38,184628.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43468,3025.75,0.0,0.0,3025.75,0.0,1475.41,234.66,1710.07,4735.82 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,45788,83247.81,0.0,0.0,83247.81,16013.8,8314.86,11815.29,36143.95,119391.76 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,30846,52889.58,574.87,1190.0,54654.45,11003.48,9764.4,4229.9,24997.78,79652.23 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,52082,5172.5,0.0,0.0,5172.5,962.6,1194.67,400.37,2557.64,7730.14 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,48610,54765.4,0.0,3000.0,57765.4,12241.28,12424.5,4796.72,29462.5,87227.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",2940,130832.6,11844.68,24062.96,166740.24,28925.78,13189.09,2787.11,44901.98,211642.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",5535,92474.41,54088.22,3013.58,149576.21,19096.81,12171.06,10208.58,41476.45,191052.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,22404,101531.03,8394.19,0.0,109925.22,20926.03,12424.51,8835.03,42185.57,152110.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4334,140325.0,0.0,43774.01,184099.01,20314.64,12423.73,4951.27,37689.64,221788.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,48924,90048.08,0.0,0.0,90048.08,18675.1,11293.27,7030.99,36999.36,127047.44 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,20815,96212.61,0.0,0.0,96212.61,19370.89,10172.56,7754.51,37297.96,133510.57 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,39323,91331.05,0.0,0.0,91331.05,18823.7,12424.5,7141.17,38389.37,129720.42 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,29695,129048.04,0.0,0.0,129048.04,25955.66,12424.5,9836.8,48216.96,177265.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,5412,58652.0,0.0,513.37,59165.37,12193.54,12424.5,4869.15,29487.19,88652.56 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,28435,3632.01,0.0,38.18,3670.19,807.07,651.09,309.47,1767.63,5437.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,36592,77873.33,0.0,0.0,77873.33,16050.16,12424.51,5834.87,34309.54,112182.87 +Calendar,2015,6,General Administration & Finance,REG,Elections,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,14141,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8661.25,43057.56,149662.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29730,130141.15,706.08,42497.54,173344.77,31691.1,10846.35,9678.89,52216.34,225561.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24892,55726.85,4849.67,2032.24,62608.76,11588.75,12246.67,5152.89,28988.31,91597.07 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,40858,87765.3,22582.14,11020.48,121367.92,19430.35,11635.84,9746.9,40813.09,162181.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,11827,69691.71,1052.1,0.0,70743.81,14368.0,12388.06,5742.25,32498.31,103242.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,9689,170335.02,0.0,0.0,170335.02,34279.7,12424.5,17875.19,64579.39,234914.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2652,3416.21,0.0,144.64,3560.85,0.0,1481.39,283.15,1764.54,5325.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4212,56531.0,20.26,1631.1,58182.36,11667.81,12424.5,4766.78,28859.09,87041.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,113,287.3,0.0,0.0,287.3,0.0,155.31,22.24,177.55,464.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1710,Chief Telephone Operator,40862,67261.13,0.0,624.0,67885.13,13991.51,12424.5,5632.51,32048.52,99933.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,40203,51662.57,1371.59,805.92,53840.08,12454.38,12227.39,4305.88,28987.65,82827.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,18292,40543.57,0.0,128.31,40671.88,8857.31,6345.15,2754.99,17957.45,58629.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43417,32491.28,5779.62,1154.02,39424.92,8655.72,10148.23,2927.7,21731.65,61156.57 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,47017,180520.0,0.0,10250.63,190770.63,37419.77,12424.5,10972.94,60817.21,251587.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,34662,126994.1,0.0,0.0,126994.1,25557.71,12424.51,9896.6,47878.82,174872.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,5850,80281.25,0.0,0.0,80281.25,16691.48,11392.37,6435.2,34519.05,114800.3 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,17978,49084.8,0.0,496.12,49580.92,10213.62,9878.2,3790.89,23882.71,73463.63 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,19869,14911.01,0.0,0.0,14911.01,3278.93,3822.92,1121.4,8223.25,23134.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21815,14410.87,0.0,0.0,14410.87,0.0,960.99,1117.13,2078.12,16488.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,43328,100554.01,0.0,0.0,100554.01,20719.32,12424.49,7812.45,40956.26,141510.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,23343,64447.92,19175.0,16193.46,99816.38,15933.08,12424.51,8139.57,36497.16,136313.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29112,110475.3,33609.5,21727.57,165812.37,25434.45,14827.86,2781.45,43043.76,208856.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51993,56531.0,0.0,3920.55,60451.55,11788.47,12424.5,4746.25,28959.22,89410.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,16041,49679.01,0.0,2496.3,52175.31,11965.06,12424.5,4271.64,28661.2,80836.51 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",22841,22722.01,0.0,829.44,23551.45,5167.19,1433.6,1920.34,8521.13,32072.58 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,49663,78246.39,0.0,2539.97,80786.36,16668.61,12311.01,6401.31,35380.93,116167.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,45582,120111.0,0.0,1231.96,121342.96,24172.55,12424.5,9835.88,46432.93,167775.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49390,81087.31,3624.22,4680.62,89392.15,16888.04,12424.51,1488.31,30800.86,120193.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,8640,136466.0,11491.92,23916.52,171874.44,38970.53,12424.5,2929.75,54324.78,226199.22 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,11875,101016.32,0.0,0.0,101016.32,20812.49,12331.92,8252.19,41396.6,142412.92 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,38974,76144.66,0.0,0.0,76144.66,15689.25,12424.5,6078.23,34191.98,110336.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,43408,97793.0,16095.91,10341.92,124230.83,22274.43,12424.5,9788.99,44487.92,168718.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15383,2859.0,0.0,0.0,2859.0,518.34,286.72,200.33,1005.39,3864.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11199,69785.24,0.0,8747.67,78532.91,0.0,6098.76,6091.36,12190.12,90723.03 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",46498,175.0,0.0,0.0,175.0,0.0,41.82,13.56,55.38,230.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8020,21368.68,4088.88,1130.18,26587.74,5444.03,6620.81,2035.28,14100.12,40687.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,23020,119461.66,5339.85,8033.66,132835.17,23641.92,12424.5,2207.58,38274.0,171109.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,16618,25077.4,1385.71,2295.32,28758.43,6300.31,6212.25,2375.77,14888.33,43646.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,32910,27556.0,0.0,0.0,27556.0,4995.89,2867.22,2312.06,10175.17,37731.17 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,8027,5612.0,0.0,0.0,5612.0,0.0,477.86,435.59,913.45,6525.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,17755,60248.0,0.0,624.0,60872.0,12546.13,12424.5,5010.98,29981.61,90853.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,18020,74866.46,0.0,642.55,75509.01,15499.92,12424.51,6045.01,33969.44,109478.45 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,28087,72709.16,104.23,0.0,72813.39,14985.78,12424.5,6030.01,33440.29,106253.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,48997,62681.96,346.64,829.84,63858.44,13080.9,12398.81,5040.26,30519.97,94378.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25550,69689.71,15796.43,4460.21,89946.35,20326.38,13734.21,6672.6,40733.19,130679.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,2292,52665.6,253.2,0.0,52918.8,11516.31,7454.69,4128.17,23099.17,76017.97 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),18550,113565.3,0.0,1500.0,115065.3,23401.31,12472.29,9286.21,45159.81,160225.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,42830,100849.32,0.0,0.0,100849.32,20763.9,12281.14,7966.65,41011.69,141861.01 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,33808,798.19,18.56,0.0,816.75,0.0,192.64,63.4,256.04,1072.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),14932,11556.0,0.0,543.86,12099.86,2050.76,955.73,32.55,3039.04,15138.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11684,112159.78,12186.28,19055.88,143401.94,25145.48,15052.76,2325.64,42523.88,185925.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,31687,52653.8,60.15,3887.61,56601.56,12407.32,10226.32,4572.77,27206.41,83807.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39249,65683.87,18477.1,1613.32,85774.29,18422.7,12942.69,6486.19,37851.58,123625.87 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,18428,47751.0,6223.53,8352.0,62326.53,8886.44,5256.52,3703.66,17846.62,80173.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13949,46818.37,0.0,2346.43,49164.8,13908.37,0.0,5331.95,19240.32,68405.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24006,37912.52,0.0,4.45,37916.97,-0.01,0.0,3305.56,3305.55,41222.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27678,116759.3,117.23,25955.44,142831.97,20362.8,10991.57,9465.67,40820.04,183652.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",25752,131577.09,26770.75,17323.76,175671.6,29124.99,15196.12,2997.87,47318.98,222990.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7200,Supervisory-Labor & Trade,7251,Track Maint Wrk Sprv 1,30363,93382.44,36271.72,13473.51,143127.67,21724.34,12424.51,10072.35,44221.2,187348.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,44071,65589.6,0.0,25.0,65614.6,13492.89,12424.51,5247.35,31164.75,96779.35 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,48568,13482.0,0.0,11630.07,25112.07,3132.56,2867.19,2012.21,8011.96,33124.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10465,52947.39,0.0,2603.55,55550.94,10992.65,11656.57,4558.24,27207.46,82758.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,29893,105660.91,0.0,0.0,105660.91,20090.88,7645.85,10161.93,37898.66,143559.57 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,38405,73031.16,0.0,602.64,73633.8,15133.3,11998.91,6065.67,33197.88,106831.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,33179,166171.01,0.0,824.0,166995.01,33567.58,12424.5,10570.2,56562.28,223557.29 +Calendar,2015,1,Public Protection,POL,Police,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",20340,1104.0,0.0,0.0,1104.0,0.0,65.94,85.58,151.52,1255.52 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,22675,118104.06,0.0,0.0,118104.06,23768.42,12424.5,9515.53,45708.45,163812.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,34000,66102.02,10119.65,2225.99,78447.66,13786.64,12424.49,6439.88,32651.01,111098.67 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,30315,40482.84,0.0,0.0,40482.84,8127.0,7652.85,2890.29,18670.14,59152.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,48883,93738.03,14773.79,10001.64,118513.46,19325.49,12424.5,9694.88,41444.87,159958.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,9756,85368.03,0.0,0.0,85368.03,17591.5,12161.68,7081.58,36834.76,122202.79 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,28467,98385.64,0.0,0.0,98385.64,22431.44,12270.39,1673.69,36375.52,134761.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,7090,59490.14,0.0,488.65,59978.79,12465.25,9729.4,5011.2,27205.85,87184.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,53209,3564.2,0.0,158.7,3722.9,0.0,955.73,288.95,1244.68,4967.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,28980,118724.06,0.0,0.0,118724.06,23893.95,0.0,9794.85,33688.8,152412.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,9679,68067.09,0.0,624.0,68691.09,14157.65,12424.5,5694.84,32276.99,100968.08 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,14000,63598.62,0.0,528.53,64127.15,13310.89,10523.49,5162.17,28996.55,93123.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,24347,64847.6,770.1,10.0,65627.7,14468.98,12424.5,5311.03,32204.51,97832.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,51221,40696.0,0.0,0.0,40696.0,8928.72,3822.91,3357.74,16109.37,56805.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24007,7380.15,57.44,337.87,7775.46,0.0,3189.75,620.82,3810.57,11586.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33731,1188.1,0.0,0.0,1188.1,0.0,515.2,99.74,614.94,1803.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16219,13987.44,0.0,537.22,14524.66,0.0,4630.8,1126.47,5757.27,20281.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,35786,56149.9,0.0,6730.78,62880.68,13674.69,12424.5,5088.99,31188.18,94068.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23474,24916.86,3626.01,3951.71,32494.58,6363.42,4955.17,2365.2,13683.79,46178.37 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1750,Microphoto/Imaging Technician,43792,48951.03,0.0,0.0,48951.03,11740.96,12424.5,3729.48,27894.94,76845.97 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,6016,84062.81,11590.56,78.19,95731.56,19193.09,12424.5,1617.6,33235.19,128966.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,40722,113369.06,27393.39,49301.64,190064.09,24020.78,12424.49,10975.42,47420.69,237484.78 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,37234,61885.6,0.0,0.0,61885.6,12815.26,9186.97,4911.77,26914.0,88799.6 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,22847,111918.04,0.0,1060.0,112978.04,22716.04,12424.5,9242.59,44383.13,157361.17 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,44291,75028.0,0.0,1321.18,76349.18,15744.91,12424.5,6318.72,34488.13,110837.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,31258,68067.0,0.0,624.0,68691.0,14157.65,12424.5,5628.33,32210.48,100901.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",6597,93738.03,0.0,2387.75,96125.78,19805.93,12424.51,7603.78,39834.22,135960.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,11743,86663.02,1716.15,1687.0,90066.17,18201.76,12424.46,7416.9,38043.12,128109.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45617,97764.44,8576.06,19747.74,126088.24,28600.08,12424.5,2137.21,43161.79,169250.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,29145,56120.0,0.0,1000.0,57120.0,12780.34,12424.5,4597.56,29802.4,86922.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,32151,11636.74,0.0,75.5,11712.24,0.0,0.0,979.45,979.45,12691.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,28401,84791.01,0.0,0.0,84791.01,17475.8,12424.49,6831.15,36731.44,121522.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,40511,54301.04,0.0,2906.55,57207.59,11377.34,11946.64,4691.78,28015.76,85223.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,33212,82155.03,0.0,0.0,82155.03,16487.69,9557.31,6285.8,32330.8,114485.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41628,101708.03,550.69,24713.12,126971.84,13578.72,9868.7,9405.88,32853.3,159825.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39732,112680.1,21180.89,9614.04,143475.03,22350.67,12424.51,2435.63,37210.81,180685.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,2606,71330.03,265.78,1000.0,72595.81,14854.29,11946.63,5735.28,32536.2,105132.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",13678,150234.0,54020.22,18779.24,223033.46,33216.91,15196.12,3750.89,52163.92,275197.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27213,52760.03,0.0,40.0,52800.03,12645.38,12424.5,4332.4,29402.28,82202.31 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,41689,13468.41,0.0,0.0,13468.41,2441.82,955.73,842.15,4239.7,17708.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,2265,67877.01,1511.61,3235.78,72624.4,13994.01,12424.5,5941.67,32360.18,104984.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15478,74072.95,1648.45,5868.42,81589.82,16229.53,8036.57,6303.79,30569.89,112159.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49217,5491.25,0.0,28.65,5519.9,0.0,1373.86,429.65,1803.51,7323.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,32752,56616.91,1166.81,1251.92,59035.64,12778.53,12424.5,4554.09,29757.12,88792.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,51853,225.0,0.0,0.0,225.0,0.0,53.76,17.44,71.2,296.2 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),39984,184289.01,0.0,5185.78,189474.79,38130.64,12424.5,10962.48,61517.62,250992.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,29160,23791.85,11030.88,2143.16,36965.89,5834.03,6043.5,2911.79,14789.32,51755.21 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,36024,136466.0,0.0,10047.96,146513.96,35626.85,12424.5,2441.27,50492.62,197006.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,29287,11910.0,574.67,552.35,13037.02,3138.46,2867.19,1042.05,7047.7,20084.72 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),47660,184289.02,0.0,1500.0,185789.02,37388.85,12424.5,10937.52,60750.87,246539.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,32135,117129.7,15904.09,10378.57,143412.36,23205.2,12424.5,2396.73,38026.43,181438.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,4883,34001.56,0.0,0.0,34001.56,0.0,4289.38,2627.84,6917.22,40918.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9104,Transit Car Cleaner Asst Sprv,22372,68867.0,3346.73,12130.35,84344.08,16073.87,12424.5,6931.6,35429.97,119774.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1931,Senior Parts Storekeeper,45996,72319.0,7994.72,3043.41,83357.13,14905.16,12424.5,6555.03,33884.69,117241.82 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,17306,27278.05,0.0,308.48,27586.53,6627.95,6860.35,2274.3,15762.6,43349.13 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),51159,184289.04,0.0,4873.28,189162.32,38062.08,12424.5,11044.39,61530.97,250693.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",39356,65962.3,3207.22,6114.9,75284.42,14144.1,11468.77,5820.12,31432.99,106717.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,40371,59444.19,8747.51,9369.82,77561.52,8135.12,4220.27,6182.82,18538.21,96099.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,46649,92085.02,0.0,0.0,92085.02,18979.21,12424.5,7310.51,38714.22,130799.24 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,47447,31357.22,83.86,725.88,32166.96,7089.73,6985.8,2556.52,16632.05,48799.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,35275,40808.31,171.65,4220.07,45200.03,10743.39,12424.5,3658.38,26826.27,72026.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,5967,60404.0,0.0,2321.5,62725.5,12782.7,12424.5,4941.17,30148.37,92873.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,37958,4908.71,0.0,162.02,5070.73,0.0,1636.69,393.58,2030.27,7101.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,28360,56406.0,0.0,192.0,56598.0,11665.28,12424.47,4399.87,28489.62,85087.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,28473,103095.76,7366.24,17469.87,127931.87,23615.91,11852.37,9917.94,45386.22,173318.09 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8204,Institutional Police Officer,28552,73583.01,2934.46,1424.0,77941.47,17116.51,12424.5,1565.25,31106.26,109047.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9204,Airports Communications Sprv,12839,93112.14,136.04,581.83,93830.01,19195.25,11584.9,7806.5,38586.65,132416.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29397,141556.95,19814.33,7148.21,168519.49,27976.6,12424.5,2578.6,42979.7,211499.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32455,38401.88,3914.47,825.55,43141.9,10183.4,12009.7,3266.02,25459.12,68601.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,15715,61735.02,0.0,2184.0,63919.02,13172.8,12424.5,5292.63,30889.93,94808.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,15206,127129.05,0.0,9785.67,136914.72,27565.57,12424.5,17375.72,57365.79,194280.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,7412,48752.17,379.83,1899.74,51031.74,10329.93,8647.34,4240.57,23217.84,74249.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,49650,51548.13,0.0,0.0,51548.13,10042.52,7638.38,4098.83,21779.73,73327.86 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34632,55269.93,0.0,3681.37,58951.3,12183.48,12154.27,4822.32,29160.07,88111.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,25169,22241.62,7545.75,2887.82,32675.19,5682.85,6215.24,2615.25,14513.34,47188.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),44440,23112.0,2312.73,20944.16,46368.89,4183.12,1911.46,68.84,6163.42,52532.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,38680,84644.0,59238.36,12850.27,156732.63,19299.89,12424.5,10341.14,42065.53,198798.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",50799,6184.07,0.0,0.0,6184.07,508.1,1472.42,494.17,2474.69,8658.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,15963,25697.1,0.0,0.0,25697.1,0.0,2819.41,1994.01,4813.42,30510.52 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,51747,807.82,0.0,0.0,807.82,0.0,0.0,63.97,63.97,871.79 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),41354,164204.0,0.0,1500.0,165704.0,33325.23,12424.5,10637.01,56386.74,222090.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,49614,20435.0,0.0,0.0,20435.0,4493.67,4300.79,1822.08,10616.54,31051.54 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",2800,Public Health,2806,Disease Control Investigator,51035,20523.24,0.0,0.0,20523.24,3819.39,4170.86,1628.53,9618.78,30142.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43075,51154.5,3616.9,1080.0,55851.4,11521.62,11468.76,4985.06,27975.44,83826.84 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,19197,59117.24,510.14,807.95,60435.33,13205.47,12419.43,4901.32,30526.22,90961.55 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,24630,57541.91,63.77,5460.29,63065.97,13557.31,12424.5,5101.78,31083.59,94149.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,38364,148965.37,13568.68,37733.66,200267.71,35496.65,12281.15,11107.01,58884.81,259152.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6333,Senior Building Inspector,22131,124338.0,0.0,128.0,124466.0,25046.66,12424.51,9846.58,47317.75,171783.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,7730,62446.45,13105.91,3958.03,79510.39,13458.98,12420.02,6212.97,32091.97,111602.36 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,27515,129895.05,0.0,0.0,129895.05,26141.49,12424.5,9992.87,48558.86,178453.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26072,60085.17,0.0,9619.83,69705.0,0.0,5275.16,5401.7,10676.86,80381.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,40415,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,33292,43786.5,1346.59,3984.48,49117.57,11048.0,10465.25,3957.15,25470.4,74587.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,50986,125815.03,0.0,0.0,125815.03,25320.89,12424.5,9889.33,47634.72,173449.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,47382,38449.0,0.0,0.0,38449.0,7155.35,5734.39,3047.12,15936.86,54385.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38361,67560.14,10075.75,5515.97,83151.86,19961.04,13309.14,6677.56,39947.74,123099.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,39500,138944.07,38701.88,12247.39,189893.34,27450.2,12424.51,3158.84,43033.55,232926.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,42821,23371.01,0.0,168.0,23539.01,4380.62,3345.06,1947.73,9673.41,33212.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34501,56531.0,17731.82,2287.8,76550.62,11780.12,12424.5,6267.28,30471.9,107022.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,44760,48211.81,5572.56,2700.09,56484.46,10024.31,8936.08,1497.94,20458.33,76942.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38121,30918.19,2068.76,603.78,33590.73,7883.76,7170.9,2417.29,17471.95,51062.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,4413,108038.0,19365.6,8221.6,135625.2,22565.33,12424.5,9993.62,44983.45,180608.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31807,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1848.37,10262.15,34266.15 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,29198,79236.41,0.0,0.0,79236.41,16297.01,12424.5,6375.06,35096.57,114332.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52605,110694.08,6587.64,21636.98,138918.7,25141.99,14760.31,338.74,40241.04,179159.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,11778,89441.6,1783.1,12269.82,103494.52,24582.81,10298.96,1750.11,36631.88,140126.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,18756,81942.0,6238.13,3167.75,91347.88,17544.8,12424.5,7248.55,37217.85,128565.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46117,64917.59,260.05,5281.1,70458.74,13988.35,5964.6,5812.5,25765.45,96224.19 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,51386,6566.0,0.0,0.0,6566.0,1694.03,1672.53,536.89,3903.45,10469.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30757,114594.46,0.0,6618.4,121212.86,20817.0,11683.57,8252.09,40752.66,161965.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48788,113574.76,43674.94,19419.15,176668.85,24877.66,14670.47,2600.81,42148.94,218817.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,40623,50161.28,37.53,1705.05,51903.86,10662.31,8449.38,4279.13,23390.82,75294.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,8882,147132.73,0.0,0.0,147132.73,29610.55,12424.5,17551.44,59586.49,206719.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49202,6034.5,0.0,352.03,6386.53,1165.75,0.0,1108.04,2273.79,8660.32 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,89,58782.0,218.91,624.0,59624.91,12243.99,12424.5,4831.98,29500.47,89125.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,16057,16401.15,11779.04,837.53,29017.72,3263.48,5041.47,2293.18,10598.13,39615.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,11791,101921.57,0.0,0.0,101921.57,21004.41,12412.56,7765.48,41182.45,143104.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35121,1244.6,0.0,21.34,1265.94,0.0,334.51,98.01,432.52,1698.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2618,Food Service Supervisor,6652,51653.99,1280.1,2303.43,55237.52,10598.92,10106.13,4565.3,25270.35,80507.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2720,Janitorial Services Supervisor,22343,70498.05,1525.85,8094.55,80118.45,14726.75,11580.05,6334.67,32641.47,112759.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24263,56531.0,1964.02,48.0,58543.02,11660.24,12424.5,4847.31,28932.05,87475.07 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,26449,82597.15,0.0,0.0,82597.15,17017.74,12376.72,6499.28,35893.74,118490.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,20303,32006.17,0.0,0.0,32006.17,0.0,2508.8,1553.27,4062.07,36068.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14680,0.0,0.0,2799.38,2799.38,0.0,68.5,214.15,282.65,3082.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,44525,92001.31,64925.53,7626.23,164553.07,19346.23,12424.51,10465.17,42235.91,206788.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18040,2433.09,0.0,261.54,2694.63,662.8,68.5,192.7,924.0,3618.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19195,116123.72,1887.48,13359.37,131370.57,25972.81,9678.27,9969.22,45620.3,176990.87 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2558,Senior Physical Therapist,22192,106525.42,0.0,1313.88,107839.3,21836.81,10512.99,8689.65,41039.45,148878.75 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,9656,15926.73,0.0,625.0,16551.73,3128.9,934.82,6690.63,10754.35,27306.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,972,138573.47,0.0,1020.58,139594.05,27737.9,10348.0,10114.12,48200.02,187794.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,51888,70245.0,54.67,4154.35,74454.02,14616.8,12424.5,6094.52,33135.82,107589.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",11326,120048.46,0.0,0.0,120048.46,24160.9,12424.5,9779.72,46365.12,166413.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35787,118260.26,0.0,567.89,118828.15,23407.4,9854.78,7334.88,40597.06,159425.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36603,46402.52,0.0,7748.59,54151.11,235.21,0.0,4585.98,4821.19,58972.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,14667,40366.2,0.0,1393.56,41759.76,9031.1,6642.33,3270.85,18944.28,60704.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,51007,23808.02,0.0,0.0,23808.02,5392.32,7144.09,1925.74,14462.15,38270.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15449,97766.19,24266.31,7513.99,129546.49,25612.1,12424.5,2159.59,40196.19,169742.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,24649,112776.02,24564.84,2255.52,139596.38,23150.48,12424.5,10058.19,45633.17,185229.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,28190,54124.0,0.0,3377.3,57501.3,12866.47,12424.5,4462.46,29753.43,87254.73 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,10568,10890.0,142.94,285.86,11318.8,2809.6,2389.33,932.71,6131.64,17450.44 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,12726,77153.76,0.0,0.0,77153.76,14960.89,8422.37,5996.46,29379.72,106533.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,43435,3271.23,16.33,149.87,3437.43,0.0,958.72,441.55,1400.27,4837.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,12579,80570.01,0.0,624.0,81194.01,16730.2,12424.5,6732.67,35887.37,117081.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13651,68034.37,3015.45,0.0,71049.82,14006.15,12281.38,5838.8,32126.33,103176.15 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39705,8051.06,0.0,0.0,8051.06,0.0,2096.63,624.89,2721.52,10772.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48692,1583.83,0.0,0.0,1583.83,374.68,477.39,122.93,975.0,2558.83 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,21368,106605.1,0.0,33291.38,139896.48,21971.81,12424.5,10105.67,44501.98,184398.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2719,Janitorial Svcs Asst Sprv,13996,74326.0,269.37,10238.68,84834.05,16753.57,12424.5,6744.53,35922.6,120756.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21525,119467.43,4374.04,14343.14,138184.61,23621.03,12424.5,2353.19,38398.72,176583.33 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),6598,103763.83,0.0,8029.65,111793.48,23453.64,6546.76,8973.79,38974.19,150767.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O790,Asst Harbormaster (OCII),42722,12659.85,0.0,0.0,12659.85,2839.59,1911.46,989.72,5740.77,18400.62 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,49102,85004.01,6684.89,2964.94,94653.84,18140.55,12424.5,7577.46,38142.51,132796.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,240,68104.28,18283.58,2695.72,89083.58,19397.48,13421.33,6746.6,39565.41,128648.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14260,122961.5,28862.86,3079.41,154903.77,24246.0,12424.51,2640.46,39310.97,194214.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21280,38160.38,30.04,1354.15,39544.57,9005.48,7524.65,2952.51,19482.64,59027.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,14062,152801.73,0.0,0.0,152801.73,30830.11,12109.88,10357.17,53297.16,206098.89 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,33064,67911.05,1305.75,4554.21,73771.01,14449.45,12424.5,6044.22,32918.17,106689.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,36148,9079.55,0.0,396.41,9475.96,2125.46,1992.11,788.98,4906.55,14382.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4532,10219.5,0.0,612.75,10832.25,0.0,3912.52,839.83,4752.35,15584.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,36896,80357.0,6814.08,39.83,87210.91,16569.96,12424.5,6499.12,35493.58,122704.49 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,15166,74412.03,0.0,4735.55,79147.58,15687.95,12424.5,6332.56,34445.01,113592.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43336,42300.34,6553.59,0.0,48853.93,9092.56,8566.68,3924.3,21583.54,70437.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,16805,97424.01,4510.8,1890.5,103825.31,20469.78,12424.5,8336.57,41230.85,145056.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,3588,66086.21,0.0,0.0,66086.21,13071.58,8506.01,5101.2,26678.79,92765.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,48375,7999.2,102.26,0.0,8101.46,0.0,2102.61,595.58,2698.19,10799.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,35604,61475.0,0.0,0.0,61475.0,13737.66,12424.5,5004.9,31167.06,92642.06 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,22945,133087.07,0.0,8063.22,141150.29,26803.33,12424.5,10201.05,49428.88,190579.17 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,42551,67261.0,0.0,684.0,67945.0,14002.67,12424.5,5580.94,32008.11,99953.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,31204,106116.0,0.0,0.0,106116.0,21870.85,12424.5,8510.65,42806.0,148922.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9734,77554.39,1977.97,14019.01,93551.37,17477.62,6864.36,5373.78,29715.76,123267.13 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2802,Epidemiologist 1,31580,32901.01,0.0,0.0,32901.01,6190.79,6116.67,2632.5,14939.96,47840.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,32889,43240.16,55.69,0.0,43295.85,7823.67,10931.17,3503.86,22258.7,65554.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,7637,91335.03,0.0,0.0,91335.03,18821.79,12424.5,7217.75,38464.04,129799.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35474,113233.62,1138.27,13929.44,128301.33,24094.65,15196.12,2174.61,41465.38,169766.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,33282,15505.07,0.0,0.0,15505.07,3401.8,1524.86,5704.26,10630.92,26135.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,27519,0.0,0.0,65.27,65.27,0.0,0.0,0.0,0.0,65.27 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,1405,26085.92,0.0,0.0,26085.92,0.0,3999.14,2022.01,6021.15,32107.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,35579,86049.01,13140.54,1810.1,100999.65,18109.88,12424.5,7631.89,38166.27,139165.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,25252,19568.6,0.0,151.39,19719.99,4712.75,5865.8,1541.46,12120.01,31840.0 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,16480,79086.0,0.0,8621.69,87707.69,15335.37,7421.99,11523.91,34281.27,121988.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49734,2862.95,0.0,395.69,3258.64,229.05,215.04,1473.18,1917.27,5175.91 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,34969,65774.0,0.0,0.0,65774.0,13556.27,12424.5,5413.8,31394.57,97168.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25848,119467.43,33351.98,16042.74,168862.15,23621.0,12424.5,2939.76,38985.26,207847.41 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,49482,79708.91,0.0,0.0,79708.91,16427.62,10548.88,6131.62,33108.12,112817.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,5335,86135.29,0.0,0.0,86135.29,17594.73,10895.21,7067.66,35557.6,121692.89 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,18110,74557.51,0.0,0.0,74557.51,15356.52,12424.5,5930.22,33711.24,108268.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,12968,28064.03,0.0,0.0,28064.03,5861.85,1992.11,2335.58,10189.54,38253.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,38098,75716.92,0.0,0.0,75716.92,15611.41,12424.5,6154.36,34190.27,109907.19 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,10226,22793.32,0.0,408.65,23201.97,5569.43,6361.59,1885.62,13816.64,37018.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20725,56531.0,0.0,2948.4,59479.4,11659.55,12424.5,4817.92,28901.97,88381.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,38598,69006.0,23356.94,1896.15,94259.09,14881.43,10513.03,7654.5,33048.96,127308.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,27456,81157.1,0.0,10153.1,91310.2,18837.85,12424.5,7460.01,38722.36,130032.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7561,67063.07,4801.01,2936.42,74800.5,19181.14,13217.1,5833.22,38231.46,113031.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,24850,81776.04,0.0,2004.0,83780.04,17265.98,12424.5,6897.0,36587.48,120367.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40532,80949.96,8069.08,6840.95,95859.99,16862.48,12424.51,1597.82,30884.81,126744.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,16830,19629.4,0.0,0.0,19629.4,0.0,3918.55,1584.27,5502.82,25132.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15662,455.2,0.0,0.0,455.2,0.0,191.14,35.33,226.47,681.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,24790,41539.2,0.0,0.0,41539.2,8004.36,7120.2,3299.2,18423.76,59962.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36291,6596.91,0.0,10770.32,17367.23,1974.44,1311.92,1233.79,4520.15,21887.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,16687,112776.09,0.0,6175.96,118952.05,23928.77,12424.5,9708.47,46061.74,165013.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,37896,61428.01,0.0,1140.0,62568.01,12894.11,12424.5,5184.59,30503.2,93071.21 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50452,97761.4,11955.8,8945.54,118662.74,25941.18,12424.51,2009.47,40375.16,159037.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9954,46604.12,0.0,3104.25,49708.37,1664.07,3518.28,6757.76,11940.11,61648.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27778,67349.06,25624.81,4955.08,97928.95,19855.42,13274.08,7657.36,40786.86,138715.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,1411,85307.1,6825.21,12034.32,104166.63,19086.26,12424.5,8522.08,40032.84,144199.47 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,47575,47910.81,0.0,0.0,47910.81,11472.97,11954.11,3859.07,27286.15,75196.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16873,43609.73,0.0,1633.6,45243.33,10404.05,11408.26,3619.06,25431.37,70674.7 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,26581,9306.0,0.0,66.55,9372.55,2418.1,2807.46,765.56,5991.12,15363.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25495,97764.23,10817.29,12472.52,121054.04,26706.82,12424.5,2059.75,41191.07,162245.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46237,112696.23,26724.3,10945.7,150366.23,22291.43,12424.5,2506.75,37222.68,187588.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,7203,1390.0,0.0,0.0,1390.0,0.0,477.87,107.89,585.76,1975.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47103,67385.41,21328.82,2061.86,90776.09,19050.25,13282.09,7092.11,39424.45,130200.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,631,67464.1,20026.22,4911.96,92402.28,19835.72,13294.28,7185.78,40315.78,132718.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,6714,116908.74,0.0,0.0,116908.74,23516.91,12265.07,26876.69,62658.67,179567.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,39583,28605.94,0.0,576.83,29182.77,7011.36,8383.55,2340.57,17735.48,46918.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,8524,4069.95,0.0,40.0,4109.95,0.0,1223.04,377.3,1600.34,5710.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,33693,53973.0,0.0,0.0,53973.0,7622.93,12424.5,4310.08,24357.51,78330.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,24603,88980.4,0.0,0.0,88980.4,18712.4,8601.58,12992.31,40306.29,129286.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,47853,94023.74,0.0,599.7,94623.44,19592.1,11940.67,7173.87,38706.64,133330.08 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,32574,55873.56,0.0,466.05,56339.61,11860.22,9279.55,4707.91,25847.68,82187.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",48202,96040.92,10437.96,916.48,107395.36,19776.17,12424.5,8781.95,40982.62,148377.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,30557,117565.56,23470.98,7641.76,148678.3,24631.6,15052.76,2477.61,42161.97,190840.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38744,113223.0,26264.39,19925.98,159413.37,25406.73,15196.12,2717.43,43320.28,202733.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,43411,30709.22,0.0,0.0,30709.22,7116.1,8546.33,2483.72,18146.15,48855.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,26678,26219.5,0.0,0.0,26219.5,0.0,5017.58,2312.68,7330.26,33549.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,44708,98157.03,0.0,7610.38,105767.41,20230.58,12424.5,8627.21,41282.29,147049.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,49204,61428.0,21061.73,2619.8,85109.53,12789.24,12424.5,6906.95,32120.69,117230.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,10873,80949.92,7201.64,6465.91,94617.47,16744.98,12424.5,1773.8,30943.28,125560.75 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,13446,17707.43,0.0,813.04,18520.47,4380.79,5304.3,1492.81,11177.9,29698.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18379,4001.65,0.0,0.0,4001.65,0.0,1735.25,325.53,2060.78,6062.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,8647,56705.02,0.0,0.0,56705.02,11380.24,9557.31,4538.34,25475.89,82180.91 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,37668,50748.22,0.0,0.0,50748.22,10170.41,3385.38,3934.33,17490.12,68238.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13312,145575.6,0.0,19888.39,165463.99,33968.54,12129.06,5365.12,51462.72,216926.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21542,110303.52,8599.75,17562.93,136466.2,24308.88,14752.65,2324.96,41386.49,177852.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,3735,61417.98,3755.62,0.0,65173.6,12938.12,10179.02,5170.6,28287.74,93461.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,51846,48995.78,0.0,61.06,49056.84,11234.94,10725.69,3782.02,25742.65,74799.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,18752,38543.69,696.35,220.28,39460.32,9196.5,11685.01,3177.8,24059.31,63519.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,8026,127749.49,0.0,530.0,128279.49,25824.8,12424.5,9992.37,48241.67,176521.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,514,2462.25,0.0,14.7,2476.95,0.0,1200.64,192.24,1392.88,3869.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",36718,8310.84,0.0,0.0,8310.84,0.0,1720.32,638.48,2358.8,10669.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,47930,193110.58,0.0,0.0,193110.58,38849.62,12424.5,26042.76,77316.88,270427.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,49116,4277.53,0.0,0.0,4277.53,0.0,1266.34,332.0,1598.34,5875.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37271,106551.21,0.0,1980.37,108531.58,21637.7,9148.14,7793.58,38579.42,147111.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,3015,103551.24,0.0,0.0,103551.24,21302.02,12414.47,8300.22,42016.71,145567.95 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,492,164167.21,0.0,22780.13,186947.34,35782.38,12424.5,9217.81,57424.69,244372.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,6101,148841.47,17725.65,1375.0,167942.12,30247.31,9290.3,10579.94,50117.55,218059.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,9200,Airport Operation,9251,Public Relations Mgr,2676,125489.84,0.0,0.0,125489.84,25214.72,12424.5,18249.86,55889.08,181378.92 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,3646,32344.0,0.0,38761.25,71105.25,7096.28,1911.46,5570.34,14578.08,85683.33 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),25656,42927.0,0.0,375.0,43302.0,7850.66,3822.92,3470.39,15143.97,58445.97 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,6115,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5169.23,30446.35,92805.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,50044,47809.49,6474.08,159.13,54442.7,9759.55,9291.49,4519.95,23570.99,78013.69 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,29125,62019.93,0.0,22600.48,84620.41,13607.15,6546.76,10838.88,30992.79,115613.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,52285,117124.03,41709.3,8051.92,166885.25,23225.7,12424.5,2798.79,38448.99,205334.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,15425,83671.22,19017.31,6862.29,109550.82,16978.17,10303.86,8968.21,36250.24,145801.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,8749,75605.01,3986.58,7586.13,87177.72,16615.97,12424.5,7014.12,36054.59,123232.31 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,18824,112452.07,1140.04,0.0,113592.11,22603.65,12295.66,9134.89,44034.2,157626.31 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,13584,188528.55,0.0,13942.85,202471.4,42180.09,12203.19,6448.49,60831.77,263303.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,34078,14360.49,0.0,839.27,15199.76,0.0,0.0,789.95,789.95,15989.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,45161,13005.15,0.0,0.0,13005.15,0.0,2843.3,34.41,2877.71,15882.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,34805,31636.63,1494.48,1175.23,34306.34,7005.45,7014.65,2753.98,16774.08,51080.42 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,22025,106997.86,0.0,40.0,107037.86,21569.67,11250.92,8811.44,41632.03,148669.89 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0951,Dep Dir I,19810,122032.59,0.0,0.0,122032.59,24610.33,12424.5,17146.11,54180.94,176213.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,34189,40505.0,7081.72,965.32,48552.04,9611.63,9557.31,3697.17,22866.11,71418.15 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),21146,82817.64,6324.1,1869.5,91011.24,17231.26,12424.5,1470.02,31125.78,122137.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,7004,56526.41,0.0,6855.71,63382.12,12350.08,12423.49,5229.87,30003.44,93385.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,1699,170317.9,0.0,0.0,170317.9,34276.58,12424.51,17787.17,64488.26,234806.16 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,29307,3351.6,0.0,0.0,3351.6,623.74,573.44,265.45,1462.63,4814.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,48051,1498.5,0.0,0.0,1498.5,278.85,238.93,117.7,635.48,2133.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,34517,84644.01,16310.09,15596.21,116550.31,19642.67,12424.5,9462.84,41530.01,158080.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14038,2762.77,467.99,288.98,3519.74,786.37,872.1,269.8,1928.27,5448.01 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,44765,106605.05,0.0,0.0,106605.05,21971.81,12424.5,8761.55,43157.86,149762.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23068,101619.67,3917.23,17666.6,123203.5,15928.5,9705.04,6801.99,32435.53,155639.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,2380,135421.0,0.0,0.0,135421.0,27253.5,12424.5,10119.66,49797.66,185218.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,11588,137101.04,0.0,0.0,137101.04,27592.1,12424.5,18415.41,58432.01,195533.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16568,39243.61,8265.16,596.62,48105.39,10338.51,12270.03,3630.53,26239.07,74344.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36428,6837.47,1549.41,298.73,8685.61,1938.99,2158.34,594.53,4691.86,13377.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15660,97007.19,20721.97,10311.62,128040.78,26069.83,12328.94,2128.07,40526.84,168567.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,26057,119465.58,24642.14,14400.69,158508.41,23627.21,12424.5,2646.02,38697.73,197206.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,5163,53194.55,0.0,0.0,53194.55,12756.03,12424.5,4326.3,29506.83,82701.38 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,13115,74160.2,0.0,4843.46,79003.66,15847.56,12424.51,6338.51,34610.58,113614.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,1645,57660.0,0.0,0.0,57660.0,12742.26,7168.01,4697.51,24607.78,82267.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,35081,161718.17,1727.65,21940.83,185386.65,33796.93,12424.49,473.52,46694.94,232081.59 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,1100,Administrative & Mgmt (Unrep),1166,"Administrator, Department Of Public Heal",25597,299121.51,0.0,0.0,299121.51,60058.86,12424.5,20151.23,92634.59,391756.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,26043,124721.89,0.0,0.0,124721.89,25051.56,12424.5,18182.78,55658.84,180380.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35249,77071.0,25443.09,1104.0,103618.09,16108.79,12424.5,8442.17,36975.46,140593.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50737,6756.72,0.0,5422.0,12178.72,1973.52,1343.7,898.36,4215.58,16394.3 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,15495,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5124.28,30401.4,92760.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,27081,51405.01,3178.46,2496.25,57079.72,12361.01,12424.5,4661.8,29447.31,86527.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13965,117158.86,1649.43,30607.54,149415.83,28106.97,10368.72,10285.14,48760.83,198176.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,7717,98157.02,0.0,6608.46,104765.48,20230.58,0.0,8526.28,28756.86,133522.34 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,38428,162366.02,0.0,0.0,162366.02,32562.19,12424.5,17768.38,62755.07,225121.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29163,11604.81,0.0,0.0,11604.81,1194.86,4969.8,931.97,7096.63,18701.44 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16557,55163.46,122.46,624.89,55910.81,11525.79,12131.45,4638.74,28295.98,84206.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,3912,107416.06,18051.67,2175.0,127642.73,22592.99,12424.5,9865.88,44883.37,172526.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H120,Pilot Of Fire Boats,50208,4260.12,0.0,0.0,4260.12,805.65,0.0,72.99,878.64,5138.76 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,21210,119009.13,348.16,11519.67,130876.96,31734.47,12418.53,2220.96,46373.96,177250.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,29895,81157.0,34569.75,16248.48,131975.23,19116.6,12424.5,9858.97,41400.07,173375.3 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,16782,203205.47,0.0,51900.88,255106.35,47022.02,11868.98,11995.55,70886.55,325992.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",33612,5820.31,0.0,0.0,5820.31,0.0,1385.81,450.61,1836.42,7656.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50450,0.0,23.25,0.0,23.25,0.0,68.5,1.8,70.3,93.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19299,6164.31,0.0,0.0,6164.31,1590.38,2673.06,512.91,4776.35,10940.66 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,42823,476.44,18.56,0.0,495.0,0.0,114.99,38.42,153.41,648.41 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,15837,89673.57,16537.4,3886.44,110097.41,18610.3,11894.49,9071.07,39575.86,149673.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29982,117129.72,17218.91,5382.2,139730.83,23205.2,12424.5,2334.93,37964.63,177695.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21835,66690.4,7614.45,639.65,74944.5,18443.24,13142.85,5719.99,37306.08,112250.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,6843,62131.41,1068.31,7825.27,71024.99,14441.87,12085.87,5830.66,32358.4,103383.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45025,11350.6,0.0,360.63,11711.23,0.0,4922.02,923.11,5845.13,17556.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,51420,60248.13,0.0,1664.0,61912.13,12759.53,12424.5,5088.55,30272.58,92184.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,3843,147232.13,0.0,0.0,147232.13,29630.65,12424.5,27785.66,69840.81,217072.94 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,40959,80555.01,0.0,8055.5,88610.51,16244.63,6212.24,4196.8,26653.67,115264.18 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),11310,99571.61,0.0,1125.0,100696.61,20643.3,11755.49,8075.92,40474.71,141171.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43281,77071.04,0.0,205.0,77276.04,15935.29,12424.5,6157.33,34517.12,111793.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,47467,1472.68,0.0,8.9,1481.58,0.0,474.22,114.99,589.21,2070.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6418,70245.0,11836.31,6099.5,88180.81,14933.21,12424.5,7006.42,34364.13,122544.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,20288,39582.01,406.82,1462.34,41451.17,8831.06,8601.58,3699.07,21131.71,62582.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47520,96522.57,6456.37,6740.42,109719.36,25125.4,12417.22,1859.48,39402.1,149121.46 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,2455,10454.58,0.0,0.0,10454.58,0.0,3459.75,809.8,4269.55,14724.13 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",45244,136887.63,81610.93,18676.51,237175.07,30186.35,15052.76,4039.12,49278.23,286453.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6249,Senior Electrical Inpsector,18958,124338.01,24333.59,2486.76,151158.36,25523.79,12424.5,10259.37,48207.66,199366.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,9518,85368.03,16306.85,1944.0,103618.88,17993.39,12424.5,8267.52,38685.41,142304.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28766,55855.0,0.0,8175.58,64030.58,13574.19,12424.5,5233.58,31232.27,95262.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,15006,82883.0,588.06,8896.99,92368.05,18905.58,12424.5,7332.79,38662.87,131030.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,24940,4230.0,79.31,0.0,4309.31,787.2,955.73,333.79,2076.72,6386.03 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,19423,72699.0,0.0,1255.51,73954.51,15243.13,12424.5,6084.32,33751.95,107706.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,2845,80536.63,969.15,600.0,82105.78,16699.23,12328.92,6384.49,35412.64,117518.42 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,6612,1004.91,0.0,0.0,1004.91,0.0,241.92,78.0,319.92,1324.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12419,11337.88,0.0,1013.68,12351.56,2905.05,1456.06,207.21,4568.32,16919.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,43877,37390.01,0.0,0.0,37390.01,6958.26,4778.65,2881.22,14618.13,52008.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,29637,5205.83,41.4,68.99,5316.22,0.0,2434.12,412.31,2846.43,8162.65 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,6787,51744.04,0.0,637.13,52381.17,11448.64,7645.85,4281.1,23375.59,75756.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,26687,50582.71,279.3,898.47,51760.48,12203.82,12424.5,4205.21,28833.53,80594.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,8727,137354.75,14318.55,19114.15,170787.45,27148.44,12424.5,2856.62,42429.56,213217.01 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,9781,22713.51,0.0,0.0,22713.51,4226.98,3106.12,1816.63,9149.73,31863.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,16393,40808.31,16307.07,4457.11,61572.49,10375.43,12424.5,4928.13,27728.06,89300.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23384,12820.68,0.0,1903.52,14724.2,3099.79,2835.05,1237.21,7172.05,21896.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,2715,100475.02,636.28,0.0,101111.3,20689.17,12424.49,8095.36,41209.02,142320.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,18212,86663.15,512.7,2878.5,90054.35,18450.49,12424.48,7164.66,38039.63,128093.98 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,38550,80570.03,0.0,48.0,80618.03,16614.89,12424.5,6687.11,35726.5,116344.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,33865,70558.0,13392.46,6238.1,90188.56,14073.19,9079.45,6976.22,30128.86,120317.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32698,50845.89,0.0,2637.46,53483.35,10316.51,4472.88,4304.65,19094.04,72577.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13748,30721.35,5016.32,712.73,36450.4,7992.14,9575.11,2783.48,20350.73,56801.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,393,117935.69,0.0,250.0,118185.69,21753.56,12424.5,9511.8,43689.86,161875.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,30623,96254.01,0.0,0.0,96254.01,19591.2,12424.5,7906.35,39922.05,136176.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19417,50277.13,591.31,2580.76,53449.2,12399.11,11102.91,4250.96,27752.98,81202.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,5796,0.0,0.0,2203.37,2203.37,0.0,34.25,168.56,202.81,2406.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,46551,61735.0,1618.85,624.0,63977.85,12852.62,12424.5,5245.4,30522.52,94500.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,42388,0.0,0.0,13130.0,13130.0,0.0,13.7,1004.63,1018.33,14148.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,23149,55146.54,9888.03,1890.0,66924.57,12587.14,11577.74,5332.23,29497.11,96421.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,50609,46702.81,0.0,1130.0,47832.81,11319.02,11223.86,3852.84,26395.72,74228.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7339,"Aprntcstatnry Eng,Wtrtreatplnt",34737,72759.85,9472.55,1265.53,83497.93,15208.25,9683.41,6852.48,31744.14,115242.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,39785,1209.78,0.0,4.84,1214.62,0.0,358.4,233.88,592.28,1806.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16847,6191.87,0.0,0.0,6191.87,1385.19,2685.01,510.48,4580.68,10772.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17906,82143.05,2081.64,3243.45,87468.14,0.0,0.0,6919.1,6919.1,94387.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22744,69163.84,22621.52,4455.88,96241.24,20187.5,13629.62,7314.16,41131.28,137372.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14704,119467.4,39391.89,14920.38,173779.67,23620.97,12424.5,2909.53,38955.0,212734.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33003,13574.84,0.0,195.05,13769.89,3021.81,3001.83,1160.64,7184.28,20954.17 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,20123,108493.61,0.0,0.0,108493.61,21878.31,11836.14,8277.35,41991.8,150485.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,32075,16315.0,0.0,0.0,16315.0,3036.2,2389.33,1236.17,6661.7,22976.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,425,137427.5,2124.34,15897.61,155449.45,27225.69,12424.5,2647.92,42298.11,197747.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,9058,29021.45,0.0,6073.92,35095.37,1619.45,3858.75,2757.53,8235.73,43331.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31198,8791.07,0.0,829.26,9620.33,1817.63,3812.11,773.93,6403.67,16024.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,36524,77071.06,0.0,1504.0,78575.06,16195.47,12424.5,6460.13,35080.1,113655.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,51785,4188.0,0.0,0.0,4188.0,1080.5,955.73,347.54,2383.77,6571.77 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,7991,107328.0,0.0,5903.04,113231.04,23059.13,12424.5,9375.84,44859.47,158090.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,46959,56620.21,552.7,12172.71,69345.62,14879.0,12424.51,5515.72,32819.23,102164.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51554,62876.01,2356.62,550.04,65782.67,17341.05,12387.35,5111.08,34839.48,100622.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21567,128400.26,65972.61,15076.55,209449.42,28281.13,14861.61,3484.62,46627.36,256076.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,44508,48506.92,0.0,0.0,48506.92,11027.65,10861.3,3962.44,25851.39,74358.31 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,285C,Court Computer Sys Manager,38412,87992.0,0.0,5588.0,93580.0,16879.81,8123.71,21577.63,46581.15,140161.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1471,35327.22,7148.2,2167.28,44642.7,11021.31,7025.46,3450.62,21497.39,66140.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,34341,29146.85,0.0,3198.02,32344.87,6537.63,4303.36,2521.03,13362.02,45706.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48994,2699.9,0.0,881.46,3581.36,696.57,1170.77,291.4,2158.74,5740.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,26122,79395.01,0.0,624.0,80019.01,16489.46,12424.51,6635.15,35549.12,115568.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20234,10807.91,0.0,0.0,10807.91,4837.85,0.0,5143.22,9981.07,20788.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,29552,95194.76,0.0,0.0,95194.76,19148.29,8543.22,7349.27,35040.78,130235.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47037,3062.5,0.0,0.0,3062.5,0.0,1493.33,237.49,1730.82,4793.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13552,44654.05,439.1,3401.86,48495.01,10586.64,8760.71,3461.83,22809.18,71304.19 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,17357,1402.2,7.3,15.19,1424.69,365.69,430.07,110.29,906.05,2330.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,41651,19716.7,0.0,8918.17,28634.87,4642.47,4380.22,2420.66,11443.35,40078.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,45667,82438.13,201.88,508.0,83148.01,17149.08,11719.56,6530.42,35399.06,118547.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1802,Research Assistant,14022,72319.01,0.0,1534.0,73853.01,15033.79,12424.5,5669.6,33127.89,106980.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,52866,40284.93,12729.99,2778.16,55793.08,7585.74,11263.77,4442.17,23291.68,79084.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50002,26219.1,0.0,5277.65,31496.75,1750.01,0.0,3806.36,5556.37,37053.12 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,44306,93884.02,0.0,1140.0,95024.02,19584.35,12424.51,7750.37,39759.23,134783.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,40807,179010.68,0.0,4654.43,183665.11,36747.55,11874.96,10849.74,59472.25,243137.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,52602,33581.0,0.0,0.0,33581.0,6249.41,3822.92,2691.37,12763.7,46344.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7491,11877.45,0.0,749.36,12626.81,0.0,3942.4,978.87,4921.27,17548.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42347,878.56,0.0,151.04,1029.6,0.0,0.0,30.55,30.55,1060.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,19032,181622.0,527.0,5209.35,187358.35,37547.28,12424.5,10837.48,60809.26,248167.61 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,45039,12061.0,0.0,0.0,12061.0,0.0,1672.53,930.62,2603.15,14664.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32505,138860.42,50670.92,1682.17,191213.51,27445.94,12424.51,3268.94,43139.39,234352.9 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,29680,76748.52,0.0,3000.0,79748.52,15814.75,11596.25,6648.37,34059.37,113807.89 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,8913,20136.04,0.0,0.0,20136.04,3747.3,3345.06,1628.58,8720.94,28856.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,6128,62158.85,1770.47,11848.2,75777.52,14945.42,12294.7,6065.84,33305.96,109083.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32666,109825.32,5675.45,6577.4,122078.17,22506.95,12424.5,2028.9,36960.35,159038.52 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,32804,75028.0,0.0,1584.0,76612.0,15789.4,12424.5,6299.15,34513.05,111125.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,19329,69247.01,10098.51,2464.12,81809.64,14324.25,12424.5,6650.36,33399.11,115208.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4231,Senior Estate Investigator,14319,90114.78,0.0,0.0,90114.78,18568.56,12276.96,7403.03,38248.55,128363.33 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1369,Special Assistant 10,39605,41001.98,0.0,0.0,41001.98,0.0,5352.09,3178.22,8530.31,49532.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36932,19836.4,0.0,0.0,19836.4,5117.76,5160.95,1381.06,11659.77,31496.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,30010,61427.43,20203.28,1738.05,83368.76,12795.92,12217.84,6811.12,31824.88,115193.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23952,3528.02,0.0,18.62,3546.64,0.0,1720.32,275.19,1995.51,5542.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45126,53629.0,8682.48,7117.21,69428.69,13998.7,12424.5,5567.29,31990.49,101419.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),5770,6423.3,46.32,0.0,6469.62,0.0,1863.67,501.97,2365.64,8835.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,7447,62545.0,447.86,7512.17,70505.03,13691.8,9557.31,5649.05,28898.16,99403.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10989,43798.37,3668.76,2208.87,49676.0,10476.33,8694.29,3760.71,22931.33,72607.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",27307,131577.14,3968.0,16634.76,152179.9,29124.99,15196.12,2592.83,46913.94,199093.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,13286,23101.81,345.28,997.2,24444.29,5941.32,6642.33,1965.64,14549.29,38993.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",1667,378.79,0.0,0.0,378.79,0.0,77.65,29.4,107.05,485.84 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,12372,86901.01,0.0,0.0,86901.01,17705.87,10990.9,6860.75,35557.52,122458.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9126,Transit Traffic Checker,19488,18529.0,153.8,5788.35,24471.15,4237.38,3345.06,1947.89,9530.33,34001.48 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,46966,53405.01,0.0,0.0,53405.01,10355.49,7406.92,4275.56,22037.97,75442.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36721,57134.88,796.31,795.54,58726.73,15971.27,11271.89,4357.11,31600.27,90327.0 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,46212,31585.0,0.0,0.0,31585.0,6150.53,6690.12,2320.89,15161.54,46746.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,31979,56058.18,0.0,250.0,56308.18,11548.26,9820.14,4599.57,25967.97,82276.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,27148,23430.57,3520.23,3067.7,30018.5,6029.08,6212.25,2397.9,14639.23,44657.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10969,2621.5,0.0,0.0,2621.5,0.0,1278.29,203.39,1481.68,4103.18 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,2923,111091.01,0.0,0.0,111091.01,25340.73,12424.5,285.89,38051.12,149142.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6249,44968.19,7458.13,2385.19,54811.51,10829.69,10889.78,4172.16,25891.63,80703.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30161,148529.1,0.0,21853.83,170382.93,28875.74,12376.71,4832.71,46085.16,216468.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48725,144706.0,0.0,6855.46,151561.46,29427.95,12424.5,10084.41,51936.86,203498.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25442,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2414.98,12868.33,44168.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,9231,56120.0,2350.09,3246.3,61716.39,12696.57,12424.5,4968.7,30089.77,91806.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,32564,64064.1,0.0,0.0,64064.1,13100.47,11406.05,5105.33,29611.85,93675.95 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,44041,88296.0,0.0,3624.0,91920.0,18337.86,12424.5,7638.64,38401.0,130321.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,23765,164415.18,1920.99,8536.58,174872.75,34459.57,11264.78,10713.53,56437.88,231310.63 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2594,Employee Assistance Counselor,17417,53490.04,0.0,0.0,53490.04,11820.71,7167.99,4216.98,23205.68,76695.72 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29158,88090.73,1316.54,9134.72,98541.99,23548.55,11231.57,522.76,35302.88,133844.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26008,113233.62,4369.64,14525.39,132128.65,24432.37,15196.12,2249.6,41878.09,174006.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,20031,151876.6,0.0,0.0,151876.6,30670.57,12424.5,18699.5,61794.57,213671.17 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,33604,8099.62,0.0,87.23,8186.85,1800.3,2401.27,654.52,4856.09,13042.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43515,67689.18,14333.75,4777.17,86800.1,19851.45,13335.67,6782.19,39969.31,126769.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43941,917.85,0.0,30.6,948.45,952.64,71.8,-0.01,1024.43,1972.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,35213,2735.42,0.0,0.0,2735.42,0.0,835.25,177.46,1012.71,3748.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,28499,18128.0,0.0,0.0,18128.0,3373.64,3822.92,1364.07,8560.63,26688.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,17075,66305.78,7718.79,4807.93,78832.5,14109.05,12373.01,6420.36,32902.42,111734.92 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,24037,63102.0,4650.21,5177.33,72929.54,13625.36,12424.5,5717.67,31767.53,104697.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,17806,50591.01,0.0,0.0,50591.01,11176.47,11468.77,4070.89,26716.13,77307.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,48590,3915.01,3.06,160.0,4078.07,734.45,477.86,66.51,1278.82,5356.89 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,49818,140239.02,0.0,0.0,140239.02,28158.32,12424.5,17431.63,58014.45,198253.47 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,16761,80227.1,2397.78,10489.63,93114.51,17577.3,12424.5,7485.77,37487.57,130602.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,47529,111030.46,0.0,507.5,111537.96,22438.2,12382.68,9033.18,43854.06,155392.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,5121,87000.92,0.0,0.0,87000.92,17910.31,12424.5,6890.77,37225.58,124226.5 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,39360,67911.03,2842.14,6268.99,77022.16,14800.38,12424.5,6352.84,33577.72,110599.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26287,120493.23,0.0,15312.45,135805.68,25883.56,11045.85,5775.72,42705.13,178510.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16903,63997.8,18254.68,769.41,83021.89,17810.08,12608.54,6352.69,36771.31,119793.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19107,113233.6,28657.2,16575.69,158466.49,25104.08,15196.12,2646.86,42947.06,201413.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43304,81821.25,1297.71,1386.07,84505.03,17044.29,12424.5,1407.48,30876.27,115381.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45384,20278.71,0.0,907.41,21186.12,1801.21,8765.84,1716.36,12283.41,33469.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,3528,42224.0,0.0,8179.52,50403.52,9540.83,6212.25,4297.82,20050.9,70454.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27538,139663.5,0.0,13081.24,152744.74,30677.13,12364.77,10371.77,53413.67,206158.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2919,Child Care Specialist,14322,41635.3,0.0,480.0,42115.3,10078.01,12424.5,3422.86,25925.37,68040.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,16503,81649.02,495.67,12773.2,94917.89,17648.14,11946.64,7798.78,37393.56,132311.45 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,3737,24402.99,0.0,467.99,24870.98,5937.43,6797.64,1962.23,14697.3,39568.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,49424,6318.56,0.0,0.0,6318.56,1417.24,1427.62,524.48,3369.34,9687.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23548,1873.4,0.0,0.0,1873.4,0.0,812.37,143.62,955.99,2829.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,49683,22601.08,0.0,1430.0,24031.08,5413.38,6212.25,1718.98,13344.61,37375.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,11973,36091.13,1973.53,3703.55,41768.21,2879.57,7209.32,3312.03,13400.92,55169.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,33894,11277.93,79.99,751.66,12109.58,0.0,0.0,1067.66,1067.66,13177.24 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,1159,43585.02,0.0,0.0,43585.02,8111.15,4778.65,3552.94,16442.74,60027.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,34467,100554.03,0.0,0.0,100554.03,20724.83,12424.52,7895.95,41045.3,141599.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",12059,131848.54,45694.42,26095.4,203638.36,29832.52,15196.12,3337.63,48366.27,252004.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,22903,67261.03,982.27,3802.03,72045.33,14271.34,12424.5,5941.18,32637.02,104682.35 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,20467,95321.24,0.0,1214.44,96535.68,19878.67,12472.29,7945.31,40296.27,136831.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,47833,74695.52,0.0,31187.63,105883.15,15905.23,7884.78,13518.63,37308.64,143191.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,23685,58683.55,0.0,3049.31,61732.86,12501.86,11673.42,5099.16,29274.44,91007.3 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,39494,68067.08,0.0,624.0,68691.08,14157.68,12424.5,5654.46,32236.64,100927.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,40129,82105.05,346.69,0.0,82451.74,16872.09,11946.64,6558.42,35377.15,117828.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50394,91753.33,54449.15,8216.2,154418.68,18696.04,9557.31,2628.18,30881.53,185300.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18252,112159.75,13110.4,19008.72,144278.87,24844.38,15052.76,2416.68,42313.82,186592.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,33138,63102.04,0.0,355.47,63457.51,13081.89,12424.5,5261.43,30767.82,94225.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,34992,10566.27,0.0,0.0,10566.27,0.0,3195.72,788.24,3983.96,14550.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,32640,94651.49,18074.25,7470.62,120196.36,19620.98,12424.5,1998.2,34043.68,154240.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,8769,85368.05,0.0,0.0,85368.05,17591.51,12424.5,6829.77,36845.78,122213.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,48858,68067.02,0.0,0.0,68067.02,14029.01,12424.5,5595.2,32048.71,100115.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19766,122786.65,128.5,27737.69,150652.84,26997.22,10746.0,9796.05,47539.27,198192.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,10645,78185.8,9701.6,9090.93,96978.33,17485.41,11946.64,7429.78,36861.83,133840.16 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17130,17624.21,1304.74,760.89,19689.84,4211.23,5083.29,1595.1,10889.62,30579.46 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,36381,232355.92,0.0,0.0,232355.92,46742.77,12424.5,18917.57,78084.84,310440.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,5396,92892.91,6755.33,1588.5,101236.74,19411.54,12424.5,8217.31,40053.35,141290.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,15405,116959.89,15924.61,10036.49,142920.99,23175.01,12406.58,2238.48,37820.07,180741.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2520,Morgue Attendant,36438,20853.53,0.0,0.0,20853.53,0.0,0.0,1650.57,1650.57,22504.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,46143,129308.09,0.0,0.0,129308.09,26023.67,12424.5,9926.56,48374.73,177682.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,5956,14632.0,8710.61,1403.77,24746.38,3281.96,1911.46,2012.15,7205.57,31951.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49656,14296.5,0.0,690.2,14986.7,0.0,5477.53,1161.87,6639.4,21626.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,13291,82350.5,2270.19,8014.64,92635.33,12874.06,11707.71,6648.82,31230.59,123865.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33606,56531.0,0.0,8442.75,64973.75,12649.48,12424.5,5355.76,30429.74,95403.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24086,120126.18,24807.18,5690.65,150624.01,23750.11,12424.5,2520.46,38695.07,189319.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,21595,43579.34,0.0,145.0,43724.34,10457.14,11949.39,3516.98,25923.51,69647.85 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,6071,28190.94,0.0,0.0,28190.94,6323.25,3108.03,2213.94,11645.22,39836.16 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,45748,70996.59,0.0,0.0,70996.59,14636.47,12436.45,5811.72,32884.64,103881.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9885,98882.43,4429.25,12005.14,115316.82,20509.75,12424.5,1922.91,34857.16,150173.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",16781,13467.31,0.0,0.0,13467.31,0.0,3195.73,1044.9,4240.63,17707.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17058,133226.57,819.24,11204.29,145250.1,29187.04,11103.21,8418.37,48708.62,193958.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,3696,70081.2,0.0,1336.5,71417.7,14720.28,11946.64,5883.28,32550.2,103967.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,17672,87448.36,0.0,0.0,87448.36,17646.45,10054.59,7227.77,34928.81,122377.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,2979,19848.11,0.0,0.0,19848.11,0.0,5331.18,1539.7,6870.88,26718.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41639,3564.75,0.0,0.0,3564.75,0.0,1738.23,276.53,2014.76,5579.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,16697,108038.0,7996.65,14378.18,130412.83,24261.63,12424.5,9950.82,46636.95,177049.78 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,13338,214125.18,0.0,0.0,214125.18,43021.21,12424.5,21787.64,77233.35,291358.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6190,8707.2,750.33,1240.79,10698.32,2058.32,2293.76,837.8,5189.88,15888.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25006,5248.28,0.0,0.0,5248.28,0.0,2275.84,408.29,2684.13,7932.41 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,43717,57190.23,893.89,624.0,58708.12,12967.4,12424.5,4862.75,30254.65,88962.77 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3518,"Assoc Musm Cnsrvt, AAM",15701,84973.0,0.0,624.0,85597.0,17641.99,12424.5,7509.74,37576.23,123173.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,19514,97934.0,0.0,1185.6,99119.6,20439.47,12424.5,8218.15,41082.12,140201.72 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,17422,118724.03,0.0,0.0,118724.03,23906.92,12424.5,9606.31,45937.73,164661.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,17103,56531.0,0.0,1641.45,58172.45,11651.3,12424.5,4680.84,28756.64,86929.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26634,113233.61,5122.23,18954.7,137310.54,25057.62,15196.12,2435.95,42689.69,180000.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9124,Sr Transit Information Clerk,1824,61112.08,22296.22,583.37,83991.67,13736.64,12424.5,7456.9,33618.04,117609.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,13563,3027.0,0.0,0.0,3027.0,563.32,477.86,234.94,1276.12,4303.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17082,74360.45,1395.21,0.0,75755.66,15285.66,12225.64,6257.02,33768.32,109523.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,3623,70245.0,13033.51,12043.74,95322.25,15790.94,12424.5,7745.03,35960.47,131282.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,4162,113369.0,25467.25,11587.38,150423.63,25155.87,12424.47,10286.22,47866.56,198290.19 +Calendar,2015,1,Public Protection,POL,Police,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",12158,1104.0,0.0,0.0,1104.0,0.0,65.94,85.58,151.52,1255.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2861,67312.01,8829.3,1964.59,78105.9,18969.04,13262.74,6054.88,38286.66,116392.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,27568,18504.22,0.0,1266.11,19770.33,0.0,1330.56,1534.5,2865.06,22635.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,47999,100761.02,33509.68,6507.24,140777.94,21738.94,12424.5,10130.2,44293.64,185071.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27962,61690.42,0.0,8435.88,70126.3,4177.36,0.0,7114.93,11292.29,81418.59 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,25992,102019.01,0.0,0.0,102019.01,21026.27,12424.51,8267.22,41718.0,143737.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,37512,75927.07,1450.35,0.0,77377.42,15648.75,12424.5,6303.99,34377.24,111754.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,18323,2581.2,0.0,28.8,2610.0,673.38,573.44,193.8,1440.62,4050.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9140,Transit Manager 1,13882,106609.9,0.0,0.0,106609.9,21917.55,12424.5,8567.79,42909.84,149519.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,24215,1492.43,0.0,0.0,1492.43,0.0,400.21,115.84,516.05,2008.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,42964,54429.83,0.0,2263.04,56692.87,13585.9,12424.5,4602.33,30612.73,87305.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,27080,54254.0,0.0,1290.0,55544.0,12370.57,12424.5,4241.5,29036.57,84580.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,6927,67766.85,0.0,0.0,67766.85,13896.92,11753.16,5591.06,31241.14,99007.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",24868,9131.87,0.0,0.0,9131.87,297.74,2174.29,728.48,3200.51,12332.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,32571,101733.02,1185.75,0.0,102918.77,20967.3,12424.5,8440.18,41831.98,144750.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,26582,77071.05,55.54,1624.0,78750.59,16217.77,12424.5,6521.21,35163.48,113914.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,18935,24433.01,0.0,0.0,24433.01,0.0,5734.39,1852.64,7587.03,32020.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,22290,21985.0,0.0,423.22,22408.22,4170.17,2389.33,1798.29,8357.79,30766.01 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,28564,323.01,340.66,0.0,663.67,0.0,95.58,51.51,147.09,810.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6812,70245.0,7759.14,11841.13,89845.27,15934.96,12424.5,7105.28,35464.74,125310.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2900,Human Services,2967,Sup Welfare Fraud Investigator,32677,108227.07,0.0,0.0,108227.07,22052.01,12424.5,8878.4,43354.91,151581.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,27441,116976.03,0.0,3761.98,120738.01,24317.64,12424.52,9794.25,46536.41,167274.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H050,Asst Chf Of Dept (Fire Dept),52232,208411.13,52699.41,33628.71,294739.25,47407.5,15196.12,5023.09,67626.71,362365.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,41568,79951.0,0.0,0.0,79951.0,16478.21,12424.51,6394.51,35297.23,115248.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,7483,16137.87,0.0,0.0,16137.87,0.0,4297.81,1252.56,5550.37,21688.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10144,97062.83,0.0,250.0,97312.83,19235.82,10614.59,7766.61,37617.02,134929.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,47500,21608.0,1569.54,947.66,24125.2,4107.83,3488.42,1969.39,9565.64,33690.84 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,9160,21852.0,0.0,0.0,21852.0,4066.65,2867.19,3531.46,10465.3,32317.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3320,Animal Keeper,3718,42115.86,0.0,1916.55,44032.41,8737.86,7897.44,3696.16,20331.46,64363.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,22893,7691.88,0.0,0.0,7691.88,1725.29,954.48,920.71,3600.48,11292.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6281,Fire Safety Inspector 2,5965,114822.46,5710.5,6889.34,127422.3,24119.11,10550.13,9983.21,44652.45,172074.75 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,17375,574.58,0.0,0.0,574.58,0.0,65.71,44.59,110.3,684.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,15461,89955.65,466.63,4279.98,94702.26,18375.56,9557.31,1574.51,29507.38,124209.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,12808,0.0,0.0,115.16,115.16,0.0,0.0,8.81,8.81,123.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24035,8988.98,0.0,207.04,9196.02,3365.68,0.0,1929.49,5295.17,14491.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,9811,50523.28,0.0,4226.4,54749.68,10877.16,9978.9,4280.14,25136.2,79885.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47373,36535.86,5060.22,888.23,42484.31,9692.02,11414.27,3275.61,24381.9,66866.21 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",15836,2220.74,0.0,0.0,2220.74,0.0,484.62,172.1,656.72,2877.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2656,Chef,35005,74165.03,3259.96,4541.17,81966.16,15563.32,12424.5,6723.6,34711.42,116677.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38457,124818.03,536.4,29718.26,155072.69,28915.12,11051.84,6665.43,46632.39,201705.08 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,23829,78963.04,0.0,0.0,78963.04,16274.47,12424.5,6549.98,35248.95,114211.99 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,37414,112345.82,0.0,480.0,112825.82,22698.94,12472.29,8760.67,43931.9,156757.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11987,66063.54,4035.04,1239.65,71338.23,18445.29,13018.19,5230.22,36693.7,108031.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4223,140485.76,10583.47,12179.95,163249.18,27747.27,12424.5,2693.35,42865.12,206114.3 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,5742,19311.22,0.0,364.78,19676.0,4694.23,5788.15,1588.35,12070.73,31746.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3260,Crafts Instructor,48614,37827.67,0.0,413.92,38241.59,7897.43,7669.74,3140.01,18707.18,56948.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,51552,67621.31,0.0,180.0,67801.31,13978.83,12376.71,5516.02,31871.56,99672.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,9395,"Property Manager, Port",2945,105363.03,0.0,0.0,105363.03,21716.08,12424.5,8458.38,42598.96,147961.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,22305,127110.76,0.0,0.0,127110.76,25581.24,12424.51,17165.58,55171.33,182282.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,32946,68333.56,0.0,814.0,69147.56,14202.16,11229.84,5666.08,31098.08,100245.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17627,70369.18,24078.35,5435.63,99883.16,20785.53,13864.73,7777.33,42427.59,142310.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5216,Chief Surveyor,30878,103742.99,0.0,0.0,103742.99,21031.87,11907.93,8188.27,41128.07,144871.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50795,117222.85,44521.47,17362.62,179106.94,23178.63,12424.5,3052.29,38655.42,217762.36 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,34803,53293.01,0.0,19450.0,72743.01,11953.66,6546.76,5830.55,24330.97,97073.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5821,10613.7,0.0,1987.74,12601.44,204.34,0.0,457.55,661.89,13263.33 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,1306,35977.28,0.0,3457.54,39434.82,0.0,2735.78,3113.19,5848.97,45283.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,30622,97764.84,18403.49,13618.06,129786.39,26972.92,12424.5,2202.07,41599.49,171385.88 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,40963,13021.09,137.03,0.0,13158.12,2863.34,3439.14,1022.44,7324.92,20483.04 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,27809,17280.2,0.0,0.0,17280.2,3799.92,4444.15,1388.65,9632.72,26912.92 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,29673,88296.03,0.0,5322.0,93618.03,18337.86,12424.5,7768.54,38530.9,132148.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29370,66960.73,1501.07,5021.71,73483.51,16403.25,13197.51,5396.57,34997.33,108480.84 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0905,Mayoral Staff XVII,16341,172824.8,0.0,0.0,172824.8,34781.24,12424.48,17930.69,65136.41,237961.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,45409,108077.33,5417.46,14045.44,127540.23,21574.8,11468.77,2100.54,35144.11,162684.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3425,865.36,0.0,32.45,897.81,0.0,71.68,69.67,141.35,1039.16 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,10626,118104.03,0.0,0.0,118104.03,23768.42,12424.5,9385.44,45578.36,163682.39 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,49667,60060.01,0.0,0.0,60060.01,12816.69,9079.44,4655.41,26551.54,86611.55 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,43214,8043.41,0.0,0.0,8043.41,1804.14,954.24,666.04,3424.42,11467.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45902,56311.26,402.75,3382.92,60096.93,11793.48,9958.83,4724.87,26477.18,86574.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3424,Integrated Pest Mgmt Specialst,28223,80357.0,0.0,0.0,80357.0,16562.14,12424.51,6670.19,35656.84,116013.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22195,99851.08,95.46,11563.1,111509.64,21776.51,10921.73,8911.42,41609.66,153119.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1451,19435.26,0.0,77702.56,97137.82,3023.28,2030.93,1216.5,6270.71,103408.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",23287,43250.85,1255.63,555.02,45061.5,9462.38,5635.17,3830.55,18928.1,63989.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,36199,99861.0,0.0,1000.0,100861.0,20322.69,6427.29,8173.76,34923.74,135784.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,19228,42166.39,0.0,0.0,42166.39,9259.59,5544.38,3370.6,18174.57,60340.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5207,7706.96,0.0,575.31,8282.27,0.0,2084.81,641.97,2726.78,11009.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24510,149043.84,1394.36,7994.0,158432.2,17690.73,12420.02,9965.81,40076.56,198508.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,25782,32064.0,0.0,700.0,32764.0,7348.99,5734.39,2657.66,15741.04,48505.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,41072,85368.03,24329.02,2064.0,111761.05,18019.59,12424.5,9170.21,39614.3,151375.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,10157,10678.38,0.0,456.76,11135.14,0.0,0.0,1068.34,1068.34,12203.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,37579,130329.46,0.0,0.0,130329.46,26170.75,12424.5,17264.41,55859.66,186189.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8971,39910.25,0.0,1317.3,41227.55,8047.43,8762.85,3406.83,20217.11,61444.66 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,18863,50394.81,21905.74,2143.05,74443.6,3786.93,10416.81,5933.61,20137.35,94580.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23467,45567.11,0.0,12192.96,57760.07,15155.86,0.0,6764.83,21920.69,79680.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7482,Power Generation Technician 2,33734,65998.85,21745.87,5034.3,92779.02,14922.34,7872.83,7205.75,30000.92,122779.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30106,19088.3,0.0,615.95,19704.25,1557.33,1482.04,2071.49,5110.86,24815.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",37021,11697.38,0.0,0.0,11697.38,0.0,2777.6,907.9,3685.5,15382.88 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,39945,105259.18,0.0,2022.99,107282.17,21968.62,12412.56,8186.72,42567.9,149850.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44731,11564.1,0.0,618.45,12182.55,6241.98,905.68,419.12,7566.78,19749.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,31628,34316.95,0.0,0.0,34316.95,3186.05,11140.24,2734.85,17061.14,51378.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1891,61013.11,0.0,1765.83,62778.94,5452.41,0.0,4699.18,10151.59,72930.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44500,67340.83,9964.09,1720.82,79025.74,18959.56,13274.39,6124.13,38358.08,117383.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,3233,84644.02,23452.36,8696.17,116792.55,18435.24,12424.51,9127.56,39987.31,156779.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,47448,102150.0,0.0,0.0,102150.0,19212.84,7167.98,4885.35,31266.17,133416.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,25415,62187.0,147.08,6317.94,68652.02,13953.55,12424.5,5623.94,32001.99,100654.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,22449,44393.1,0.0,0.0,44393.1,10619.52,11550.13,3578.29,25747.94,70141.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,52965,3915.0,746.3,224.23,4885.53,734.45,477.86,82.0,1294.31,6179.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,31545,77253.18,0.0,1730.0,78983.18,15968.0,10082.96,6549.51,32600.47,111583.65 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,34415,641.4,0.0,0.0,641.4,140.72,47.79,10.81,199.32,840.72 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,39748,67261.09,0.0,0.0,67261.09,13860.37,12424.51,5578.59,31863.47,99124.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,42457,37840.01,1940.06,0.0,39780.07,7042.05,4778.64,3260.42,15081.11,54861.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,14815,54320.01,0.0,0.0,54320.01,10834.52,9079.44,4451.87,24365.83,78685.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,32071,62267.4,892.07,460.77,63620.24,12947.23,11461.48,5134.37,29543.08,93163.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5556,66681.5,9511.06,2187.65,78380.21,18787.65,13135.93,5779.69,37703.27,116083.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,42418,68650.53,0.0,0.0,68650.53,14390.05,8368.62,5679.27,28437.94,97088.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44523,97762.86,48904.44,21016.26,167683.56,27369.35,12424.5,2805.39,42599.24,210282.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42106,110.2,0.0,0.0,110.2,0.0,47.79,8.54,56.33,166.53 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,51123,93681.03,0.0,969.46,94650.49,19509.47,12424.5,7671.97,39605.94,134256.43 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,30432,30168.0,0.0,0.0,30168.0,6766.68,5734.39,2398.41,14899.48,45067.48 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,35064,111918.02,0.0,440.0,112358.02,22612.62,12424.5,9033.99,44071.11,156429.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",3709,401.4,0.0,0.0,401.4,0.0,95.58,31.07,126.65,528.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13386,113233.62,33518.14,19497.26,166249.02,25283.77,15196.12,2822.46,43302.35,209551.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,20170,62127.01,0.0,200.0,62327.01,12792.25,12424.5,5017.83,30234.58,92561.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35237,86.28,0.0,0.0,86.28,0.0,20.9,6.7,27.6,113.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,47966,56120.0,0.0,624.0,56744.0,12696.57,12424.5,4613.36,29734.43,86478.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,47666,150710.0,170.25,14.4,150894.65,30355.36,12424.5,10306.2,53086.06,203980.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,49218,97393.23,4489.66,14137.38,116020.27,26429.01,12376.72,1967.18,40772.91,156793.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31010,111628.16,46104.07,16053.46,173785.69,24386.09,14981.09,2814.48,42181.66,215967.35 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,42963,16410.11,161.33,0.0,16571.44,0.0,3736.31,1284.73,5021.04,21592.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,22594,29582.05,321.69,297.04,30200.78,5712.46,5914.18,2481.07,14107.71,44308.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,21495,51405.0,120.72,3964.95,55490.67,12546.7,12424.5,4585.66,29556.86,85047.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,15854,10051.2,0.0,0.0,10051.2,2277.03,2293.76,791.25,5362.04,15413.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12801,573.0,0.0,0.0,573.0,0.0,143.36,44.35,187.71,760.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,15853,30980.01,153.23,0.0,31133.24,7022.7,7167.99,2447.01,16637.7,47770.94 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3549,Arts Program Assistant,5086,4545.77,0.0,115.27,4661.04,1019.62,883.4,358.58,2261.6,6922.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6626,70143.33,227.56,2770.7,73141.59,14881.21,12406.58,6030.93,33318.72,106460.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35585,61.23,0.0,0.0,61.23,13.73,11.94,25.49,51.16,112.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,1477,28320.0,0.0,288.0,28608.0,6416.76,5734.39,2355.22,14506.37,43114.37 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,23420,87956.4,0.0,5319.6,93276.0,18261.15,12376.71,7741.35,38379.21,131655.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,37678,108038.0,0.0,8917.16,116955.16,23632.89,12424.5,9375.36,45432.75,162387.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8938,74125.02,0.0,2020.0,76145.02,15638.18,11946.62,6027.14,33611.94,109756.96 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,28793,151774.8,0.0,12514.6,164289.4,30500.73,12424.5,10515.06,53440.29,217729.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20685,21321.36,0.0,0.0,21321.36,0.0,1878.61,1650.71,3529.32,24850.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",40313,8861.0,0.0,558.16,9419.16,2015.66,477.86,160.13,2653.65,12072.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7488,Power Generation Supervisor,23160,72190.8,16869.29,4875.81,93935.9,14187.41,7460.69,5605.43,27253.53,121189.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,31288,64526.76,7738.96,5757.27,78022.99,13917.45,12436.45,6415.16,32769.06,110792.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45625,1704.66,0.0,0.0,1704.66,0.0,739.2,131.97,871.17,2575.83 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),43350,129197.3,0.0,1500.0,130697.3,26308.31,12424.5,9967.09,48699.9,179397.2 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,3749,15952.76,0.0,0.0,15952.76,2968.83,3324.15,1276.29,7569.27,23522.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3544,Curator 3,24223,82914.04,0.0,0.0,82914.04,17088.82,12424.5,6836.57,36349.89,119263.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7617,10594.63,0.0,203.66,10798.29,0.0,4054.38,837.27,4891.65,15689.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,5282,24377.25,12995.49,2289.15,39661.89,3441.55,5288.0,3148.74,11878.29,51540.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,35589,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3378.43,18204.28,61971.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,47874,117124.06,3877.85,13277.53,134279.44,23225.7,12424.51,2284.97,37935.18,172214.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,47879,117517.03,7485.97,5323.36,130326.36,24163.45,12424.5,9951.36,46539.31,176865.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3754,30270.69,0.0,5000.47,35271.16,0.0,0.0,2788.34,2788.34,38059.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34453,123050.88,1139.85,17976.82,142167.55,15108.23,10895.34,5198.04,31201.61,173369.16 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,19512,74173.43,0.0,1756.2,75929.63,15646.35,9879.87,6045.33,31571.55,107501.18 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2620,Food Service Mgr Administrator,8668,12409.21,0.0,7246.74,19655.95,2783.38,1935.36,3148.97,7867.71,27523.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30276,140300.48,830.7,4908.5,146039.68,16559.23,12421.52,9342.3,38323.05,184362.73 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12039,97624.73,33403.5,12952.38,143980.61,26179.81,12406.58,2454.66,41041.05,185021.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,228,66468.04,0.0,41061.83,107529.87,12846.88,6904.62,172.04,19923.54,127453.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,1201,5051.0,0.0,159.7,5210.7,0.0,1941.34,403.7,2345.04,7555.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,44824,82883.0,0.0,1517.48,84400.48,17383.95,12424.5,6774.76,36583.21,120983.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,28562,130845.86,97296.95,17766.48,245909.29,28946.65,15196.1,4188.59,48331.34,294240.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5658,122705.19,129.8,30525.1,153360.09,27623.62,10865.47,8985.81,47474.9,200834.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35090,65735.18,4588.64,1401.68,71725.5,16413.58,13146.2,5476.59,35036.37,106761.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38604,910.4,0.0,0.0,910.4,0.0,382.3,70.67,452.97,1363.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,40156,48010.02,277.65,4308.85,52596.52,11940.11,12424.5,4183.96,28548.57,81145.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11244,37142.16,4127.41,1395.99,42665.56,10112.74,11592.17,3230.12,24935.03,67600.59 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,52754,138322.97,0.0,1166.14,139489.11,28049.86,12424.5,18474.77,58949.13,198438.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47613,69770.18,21760.38,7899.3,99429.86,21321.22,13745.26,7741.63,42808.11,142237.97 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,47753,72699.03,0.0,2144.0,74843.03,15424.98,12424.5,6063.08,33912.56,108755.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33076,113233.6,5216.15,18773.88,137223.63,25036.03,15196.12,2282.17,42514.32,179737.95 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,36176,106116.07,0.0,0.0,106116.07,21870.85,12424.5,8464.26,42759.61,148875.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,46048,59336.41,24594.91,1500.0,85431.32,13552.8,12424.5,6829.61,32806.91,118238.23 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,39369,82918.7,0.0,0.0,82918.7,17029.12,12185.56,6702.46,35917.14,118835.84 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,8001,23343.8,0.0,0.0,23343.8,0.0,3536.21,1849.27,5385.48,28729.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43553,56531.0,0.0,7791.64,64322.64,12807.41,12424.5,5259.39,30491.3,94813.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,3657,85177.14,0.0,1680.0,86857.14,17896.0,12396.55,6880.64,37173.19,124030.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,36147,68717.6,0.0,644.2,69361.8,14286.26,12328.92,5500.72,32115.9,101477.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,15920,6909.0,0.0,0.0,6909.0,1285.77,1433.6,535.88,3255.25,10164.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,22237,25882.02,0.0,557.19,26439.21,6273.18,7762.32,2117.42,16152.92,42592.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50926,67902.54,5515.11,954.38,74372.03,18868.79,13381.31,5794.87,38044.97,112417.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2416,Laboratory Technician II,18056,10369.02,0.0,0.0,10369.02,0.0,2383.35,802.76,3186.11,13555.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8959,119055.65,19048.75,15115.92,153220.32,24151.75,12382.69,2503.84,39038.28,192258.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,22881,20115.07,0.0,0.0,20115.07,3743.43,2180.25,1621.69,7545.37,27660.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29359,120571.26,747.64,12492.05,133810.95,25272.47,11010.02,10009.14,46291.63,180102.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26375,34178.14,808.65,1488.84,36475.63,8091.37,9109.31,2892.52,20093.2,56568.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,50300,35355.02,0.0,0.0,35355.02,6820.12,7167.98,2860.27,16848.37,52203.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,9643,47077.4,0.0,0.0,47077.4,9071.58,7120.19,3884.31,20076.08,67153.48 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,4320,94107.06,0.0,0.0,94107.06,19395.81,12424.5,7755.22,39575.53,133682.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12214,549.3,0.0,0.0,549.3,0.0,71.68,42.64,114.32,663.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,25095,80967.43,2004.99,0.0,82972.42,16801.9,11605.83,6316.05,34723.78,117696.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,39979,85368.02,7795.51,0.0,93163.53,17594.59,12424.5,7452.24,37471.33,130634.86 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,14949,50560.58,491.29,0.0,51051.87,12137.77,11992.93,3845.13,27975.83,79027.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,35427,87713.02,0.0,0.0,87713.02,18078.18,12424.49,7191.58,37694.25,125407.27 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1326,Customer Service Agent Supv,26056,83528.0,0.0,0.0,83528.0,17215.61,12424.5,6877.11,36517.22,120045.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,10183,133480.02,0.0,0.0,133480.02,26827.65,12245.32,10039.49,49112.46,182592.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,6170,67261.07,0.0,624.0,67885.07,13987.79,12424.5,5148.19,31560.48,99445.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,25326,5499.71,0.0,0.0,5499.71,1233.59,1050.4,432.52,2716.51,8216.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,46941,80357.0,3254.4,385.92,83997.32,16637.27,12424.5,6701.74,35763.51,119760.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",44177,10637.1,0.0,0.0,10637.1,0.0,2532.69,825.21,3357.9,13995.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48252,74233.44,2246.14,6149.23,82628.81,15051.95,8109.37,6626.49,29787.81,112416.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47689,68872.94,10619.47,3618.11,83110.52,19891.21,13573.77,6300.05,39765.03,122875.55 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,23093,67218.93,146.18,1823.1,69188.21,14125.13,12416.68,5444.73,31986.54,101174.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37040,35486.67,0.0,1555.66,37042.33,542.53,0.0,1177.67,1720.2,38762.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,32470,37144.36,0.0,225.12,37369.48,6912.59,4730.87,609.22,12252.68,49622.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,1948,13286.19,0.0,0.0,13286.19,0.0,3091.19,1031.23,4122.42,17408.61 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,39711,75927.0,1276.65,624.0,77827.65,15777.43,12424.5,6073.02,34274.95,112102.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",33384,8837.3,0.0,0.0,8837.3,0.0,2102.58,685.56,2788.14,11625.44 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41618,97761.35,22700.93,8732.52,129194.8,25712.67,12424.5,2191.13,40328.3,169523.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8312,Sheriff's Captain,45830,156528.04,3359.11,18168.08,178055.23,41336.49,12424.5,2980.98,56741.97,234797.2 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,48428,19286.83,33.25,752.84,20072.92,683.85,2598.39,1581.52,4863.76,24936.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,32394,62639.1,0.0,0.0,62639.1,12208.2,7598.04,5015.91,24822.15,87461.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11884,125712.82,0.0,14011.43,139724.25,26768.6,10478.87,9722.06,46969.53,186693.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,46697,144892.82,0.0,1475.0,146367.82,29373.54,12073.28,10186.77,51633.59,198001.41 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,1413,90775.04,0.0,0.0,90775.04,18709.21,12424.51,7363.11,38496.83,129271.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36881,9261.25,0.0,628.45,9889.7,0.0,3954.34,797.96,4752.3,14642.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,44716,18977.7,0.0,666.64,19644.34,3655.81,2341.54,1557.3,7554.65,27198.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3522,102133.5,390.19,20750.66,123274.35,24001.18,11096.03,9365.24,44462.45,167736.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42443,119467.39,24206.7,8272.85,151946.94,23620.99,12424.5,2581.2,38626.69,190573.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,38844,44906.5,0.0,0.0,44906.5,9414.57,7270.54,3585.47,20270.58,65177.08 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,3990,20617.05,786.02,0.0,21403.07,4935.24,0.0,1693.06,6628.3,28031.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,3329,85221.0,335.78,9059.34,94616.12,19319.99,12424.5,7777.06,39521.55,134137.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11222,2725.63,0.0,0.0,2725.63,0.0,1329.06,211.47,1540.53,4266.16 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,27743,54780.14,0.0,0.0,54780.14,12232.58,12424.5,4416.67,29073.75,83853.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,692,149189.62,0.0,0.0,149189.62,29983.68,12424.5,17582.01,59990.19,209179.81 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,20004,143119.63,0.0,0.0,143119.63,28801.77,12418.53,10135.88,51356.18,194475.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,36187,84644.0,28041.56,12688.66,125374.22,19065.03,12424.5,9758.83,41248.36,166622.58 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,48678,93328.9,0.0,0.0,93328.9,19219.6,12424.5,7192.84,38836.94,132165.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,38941,93281.08,0.0,624.0,93905.08,19354.57,12424.5,7645.21,39424.28,133329.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,26986,54028.51,784.38,1630.0,56442.89,12388.45,12352.82,4517.98,29259.25,85702.14 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,6059,51986.36,0.0,0.0,51986.36,0.0,6043.5,4030.41,10073.91,62060.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31431,20542.91,0.0,2693.19,23236.1,0.0,1809.67,1798.89,3608.56,26844.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,7142,73463.5,0.0,242.55,73706.05,14900.79,10632.51,6002.56,31535.86,105241.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3537,66914.97,23528.47,5763.51,96206.95,19941.87,13187.66,7309.73,40439.26,136646.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,14236,100553.55,0.0,5034.41,105587.96,21762.25,12424.45,8284.98,42471.68,148059.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45138,113233.6,2588.4,22109.12,137931.12,25651.36,15196.12,2294.72,43142.2,181073.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,34755,164107.89,1851.72,1663.8,167623.41,33400.93,12274.21,10524.05,56199.19,223822.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16047,5712.0,0.0,7.26,5719.26,0.0,1529.17,443.9,1973.07,7692.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45364,34677.98,6272.62,3913.77,44864.37,9728.07,6772.9,3485.19,19986.16,64850.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,21345,852.6,0.0,7.11,859.71,0.0,143.35,66.57,209.92,1069.63 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,20665,85109.01,3698.59,1353.75,90161.35,17850.83,12424.5,7066.17,37341.5,127502.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,22261,140053.57,14510.51,11842.16,166406.24,27635.48,12424.5,2790.94,42850.92,209257.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,20133,53973.01,0.0,5068.48,59041.49,13471.35,12424.5,4583.74,30479.59,89521.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,19247,80570.02,0.0,0.0,80570.02,16605.95,12424.52,6604.21,35634.68,116204.7 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,20302,65158.2,0.0,0.0,65158.2,13426.74,12424.5,5301.58,31152.82,96311.02 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,27227,38528.0,0.0,3091.18,41619.18,8918.56,6690.11,3327.42,18936.09,60555.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30337,32414.04,0.0,1548.95,33962.99,0.0,0.0,2689.19,2689.19,36652.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9642,21204.57,3787.98,805.86,25798.41,5327.95,6571.36,1974.03,13873.34,39671.75 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),10631,168585.0,0.0,1562.5,170147.5,34208.05,12316.98,10696.1,57221.13,227368.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17749,59925.03,0.0,0.0,59925.03,0.0,7275.51,4648.33,11923.84,71848.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,512,119461.62,9397.59,1614.84,130474.05,23641.91,12424.5,1469.93,37536.34,168010.39 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,36988,205167.0,0.0,16418.27,221585.27,41290.0,12424.5,11437.97,65152.47,286737.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25226,1880.88,0.0,29.36,1910.24,420.06,489.82,147.9,1057.78,2968.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,35370,100761.0,0.0,0.0,100761.0,20767.03,12424.5,8312.14,41503.67,142264.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,11625,126166.03,18134.6,8615.92,152916.55,24619.99,10990.9,2566.39,38177.28,191093.83 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,31911,15591.27,0.0,0.0,15591.27,0.0,3718.38,1208.83,4927.21,20518.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",39181,2258.0,0.0,0.0,2258.0,0.0,477.88,174.82,652.7,2910.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46250,56531.0,0.0,5358.7,61889.7,13773.89,12424.5,4721.04,30919.43,92809.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51055,56284.86,1798.34,918.82,59002.02,12605.99,11803.4,4771.0,29180.39,88182.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11420,64181.98,6831.31,3005.98,74019.27,16322.71,12720.42,5629.05,34672.18,108691.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,32989,28568.01,0.0,4809.01,33377.02,6728.2,4157.41,2609.06,13494.67,46871.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,51870,135421.0,0.0,3227.34,138648.34,27946.19,12424.49,10078.49,50449.17,189097.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24259,5167.8,0.0,651.86,5819.66,1407.25,0.0,459.76,1867.01,7686.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,12976,21471.0,0.0,0.0,21471.0,3995.74,2867.19,1712.84,8575.77,30046.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,9648,70207.53,3534.9,8475.82,82218.25,15114.83,10274.11,6747.26,32136.2,114354.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28889,93502.83,3884.16,9255.32,106642.31,19519.27,11946.63,1778.67,33244.57,139886.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51702,69025.94,29271.81,5846.39,104144.14,20520.87,13601.13,7938.37,42060.37,146204.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,20864,73282.62,2698.24,6721.27,82702.13,15264.62,12424.5,6806.32,34495.44,117197.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23453,66044.85,6663.71,5569.4,78277.96,19610.71,13008.27,6056.53,38675.51,116953.47 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,3364,19925.26,321.38,11889.59,32136.23,4469.26,3703.45,2580.41,10753.12,42889.35 +Calendar,2015,1,Public Protection,POL,Police,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",37524,1104.0,0.0,0.0,1104.0,0.0,0.0,87.33,87.33,1191.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18038,67972.3,2183.34,7252.58,77408.22,0.0,5375.81,6000.18,11375.99,88784.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,11015,68067.06,0.0,624.0,68691.06,14157.66,12424.5,5494.64,32076.8,100767.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12807,117140.88,1522.12,2510.32,121173.32,23164.17,12424.5,1027.37,36616.04,157789.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,38046,67372.81,0.0,13117.53,80490.34,14087.25,11755.49,6558.35,32401.09,112891.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7472,Wire Rope Cable Maint Mechanic,25322,87389.03,49825.65,15843.49,153058.17,20492.78,12340.88,10246.51,43080.17,196138.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,23749,40234.39,236.03,1278.5,41748.92,5117.63,6271.98,3361.87,14751.48,56500.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49931,100233.29,0.0,24260.6,124493.89,23716.79,9148.08,9847.68,42712.55,167206.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,47858,160487.02,0.0,0.0,160487.02,32217.8,12424.5,10555.1,55197.4,215684.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,15912,64823.24,3571.76,3926.95,72321.95,13326.16,11462.79,5926.33,30715.28,103037.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52914,10723.2,0.0,0.0,10723.2,2358.02,4587.51,852.33,7797.86,18521.06 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,19079,9394.32,0.0,0.0,9394.32,0.0,3500.37,771.91,4272.28,13666.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9826,673.75,0.0,18.62,692.37,0.0,328.54,53.74,382.28,1074.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,35417,103815.09,0.0,0.0,103815.09,21133.62,10976.28,8333.69,40443.59,144258.68 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,16085,15853.47,0.0,252.08,16105.55,3478.26,1202.13,1296.82,5977.21,22082.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,13941,57411.89,2525.57,606.55,60544.01,11815.95,11170.1,4892.94,27878.99,88423.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,9342,52415.66,2294.74,2023.38,56733.78,12737.45,12399.48,4575.48,29712.41,86446.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50751,69015.85,536.4,12927.85,82480.1,15426.16,6161.96,6148.38,27736.5,110216.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51288,118895.78,20641.59,21105.08,160642.45,24072.1,12364.76,2682.73,39119.59,199762.04 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),39284,111379.6,0.0,1500.0,112879.6,22966.0,12424.5,9095.77,44486.27,157365.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44428,56531.0,0.0,5733.32,62264.32,12392.03,12424.5,5141.53,29958.06,92222.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,11063,61735.02,5627.16,0.0,67362.18,12724.0,12424.5,5272.29,30420.79,97782.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,34980,97934.01,0.0,1544.0,99478.01,20502.25,12424.5,8099.88,41026.63,140504.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49150,4390.79,0.0,34.17,4424.96,0.0,2203.61,343.07,2546.68,6971.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,5972,49085.49,0.0,0.0,49085.49,11748.95,12342.25,3712.12,27803.32,76888.81 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8211,Supv Bldg Grounds Patrol Ofcr,2451,67911.01,147.59,4228.41,72287.01,14869.98,12424.5,5864.31,33158.79,105445.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7333,Apprentice Stationary Engineer,24643,3249.0,0.0,32.49,3281.49,736.04,477.86,254.05,1467.95,4749.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,22136,48639.6,5633.15,1185.0,55457.75,8782.02,6164.46,4442.12,19388.6,74846.35 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,38650,63379.56,0.0,1884.13,65263.69,13905.49,3996.57,5208.66,23110.72,88374.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16703,14355.01,0.0,0.0,14355.01,0.0,3566.96,1112.83,4679.79,19034.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12221,82186.39,3561.57,6477.37,92225.33,16908.86,9079.44,1054.88,27043.18,119268.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,40805,86663.02,9419.32,2571.56,98653.9,18398.52,12424.49,7845.06,38668.07,137321.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,5743,143188.01,0.0,10685.84,153873.85,28819.16,12424.5,10336.61,51580.27,205454.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34941,16199.4,0.0,654.73,16854.13,3217.86,7024.62,1358.12,11600.6,28454.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,46768,31814.21,0.0,0.0,31814.21,5920.63,5172.89,2603.98,13697.5,45511.71 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,30681,7152.06,0.0,79.8,7231.86,1865.81,1588.91,571.62,4026.34,11258.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31961,66039.36,10278.62,1908.8,78226.78,18599.09,13014.9,6064.55,37678.54,115905.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48534,42189.45,3403.49,2183.51,47776.45,11514.69,13137.96,3581.64,28234.29,76010.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4539,119461.67,12141.84,15375.52,146979.03,23641.93,12424.51,2436.37,38502.81,185481.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,17698,42086.7,0.0,3000.0,45086.7,10006.38,11062.58,3730.41,24799.37,69886.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,22533,63887.0,1353.61,4546.44,69787.05,15330.59,12424.5,5735.78,33490.87,103277.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2996,"Rep, Human Rights Comm",173,3589.0,0.0,0.0,3589.0,0.0,477.86,278.57,756.43,4345.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28547,3428.96,0.0,0.0,3428.96,3704.09,0.0,1517.96,5222.05,8651.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",9841,82535.09,0.0,2669.81,85204.9,17253.13,12424.5,7020.08,36697.71,121902.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21400,13766.87,0.0,717.39,14484.26,0.0,3419.72,243.04,3662.76,18147.02 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",6175,112273.99,0.0,0.0,112273.99,22332.51,12424.5,15244.44,50001.45,162275.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",11700,84000.4,0.0,1000.0,85000.4,17519.04,11188.03,7553.46,36260.53,121260.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,35156,112726.0,0.0,14692.88,127418.88,22944.8,12424.5,9787.82,45157.12,172576.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39518,3714.86,0.0,45.83,3760.69,0.0,1233.49,291.89,1525.38,5286.07 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22067,56531.0,346.96,3617.95,60495.91,12401.03,12424.5,4992.49,29818.02,90313.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,21203,95053.05,11884.51,1943.84,108881.4,19633.31,12424.5,8727.95,40785.76,149667.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,1780,29319.28,0.0,1776.81,31096.09,6576.41,5737.37,2566.66,14880.44,45976.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,1897,26936.0,438.05,1014.92,28388.97,5201.67,4348.59,2281.32,11831.58,40220.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,4881,61428.09,376.76,1964.0,63768.85,13063.11,12424.51,5227.84,30715.46,94484.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16024,66485.91,19356.98,1635.46,87478.35,18659.23,13104.45,6785.38,38549.06,126027.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18219,71000.16,19868.26,10098.73,100967.15,16119.53,12558.9,7984.94,36663.37,137630.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,51520,61747.72,3328.72,1737.64,66814.08,13020.13,12376.71,5499.3,30896.14,97710.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22976,140333.97,0.0,19708.32,160042.29,28398.86,12417.04,5158.42,45974.32,206016.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,47678,42212.8,0.0,0.0,42212.8,10111.55,12424.5,3432.34,25968.39,68181.19 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,311C,Court Staff Attorney I,40408,9960.0,0.0,0.0,9960.0,2234.04,1433.6,842.79,4510.43,14470.43 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,48054,113672.0,0.0,8437.96,122109.96,24149.74,12424.5,9841.66,46415.9,168525.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,44354,8601.42,0.0,61.31,8662.73,0.0,0.0,685.11,685.11,9347.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,25395,101046.8,5865.25,0.0,106912.05,20826.0,12424.54,8514.71,41765.25,148677.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31074,112685.41,41403.32,17714.03,171802.76,22330.91,12424.5,2864.33,37619.74,209422.5 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,7419,71992.5,0.0,0.0,71992.5,15643.83,6929.04,5769.09,28341.96,100334.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1827,Administrative Services Mgr,20775,82833.87,0.0,0.0,82833.87,17036.79,12135.93,6475.86,35648.58,118482.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18747,3634.49,0.0,0.0,3634.49,0.0,1526.19,289.81,1816.0,5450.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32247,70245.0,0.0,2289.85,72534.85,14498.35,12424.5,5987.71,32910.56,105445.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51641,113222.99,31583.19,19882.43,164688.61,25107.62,15196.12,2807.24,43110.98,207799.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,36542,24369.32,20.12,3449.16,27838.6,6338.49,5894.83,2246.02,14479.34,42317.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40649,117091.05,0.0,29382.57,146473.62,27853.28,11016.59,8769.71,47639.58,194113.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,9803,47355.2,5885.96,1633.6,54874.76,11342.11,12424.5,4300.75,28067.36,82942.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,15143,99288.63,0.0,0.0,99288.63,20357.19,10473.61,8187.55,39018.35,138306.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,5902,49679.02,0.0,1504.05,51183.07,12065.35,12424.5,4238.23,28728.08,79911.15 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,33592,49713.91,1873.37,0.0,51587.28,11915.54,12424.5,4143.26,28483.3,80070.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",39244,13906.8,0.0,0.0,13906.8,0.0,3297.28,1021.98,4319.26,18226.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8121,Investigator/Transit Fare Supv,32758,73361.81,1561.4,1238.93,76162.14,15106.57,12424.5,6260.31,33791.38,109953.52 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,15415,106116.11,0.0,0.0,106116.11,21882.47,12424.5,8499.06,42806.03,148922.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,21248,101242.02,0.0,0.0,101242.02,20851.95,12424.51,7940.21,41216.67,142458.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,33681,61735.0,0.0,288.0,62023.0,12777.57,12424.5,5142.69,30344.76,92367.76 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,43459,27265.32,0.0,54.15,27319.47,6276.22,6150.97,2281.92,14709.11,42028.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,17868,10719.0,339.44,770.7,11829.14,2882.14,2580.47,898.24,6360.85,18189.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,21485,2701.45,0.0,11.66,2713.11,0.0,794.45,210.61,1005.06,3718.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,47339,107791.21,7614.95,12232.62,127638.78,22385.9,12424.5,2074.91,36885.31,164524.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44297,119463.82,47016.02,5794.91,172274.75,23633.49,12424.5,2928.36,38986.35,211261.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,20982,74660.81,17434.56,4605.22,96700.59,16080.81,12424.5,7867.68,36372.99,133073.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30151,112696.2,21284.01,11119.26,145099.47,22291.45,12424.5,2464.12,37180.07,182279.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,43728,56086.64,0.0,728.01,56814.65,11573.27,10898.08,4702.54,27173.89,83988.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,583,55741.9,218.11,0.0,55960.01,11479.86,12421.51,4485.59,28386.96,84346.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,49747,91685.8,0.0,3738.74,95424.54,19697.02,10736.86,7096.1,37529.98,132954.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,30988,52952.42,287.06,1766.0,55005.48,13073.08,12424.5,4385.52,29883.1,84888.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2117,5433.6,0.0,0.0,5433.6,1194.86,2293.76,431.36,3919.98,9353.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,23638,89995.45,3602.12,13032.01,106629.58,20139.69,12424.5,8686.7,41250.89,147880.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34664,119463.81,20270.6,10376.59,150111.0,23633.48,12424.52,2502.89,38560.89,188671.89 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,24078,78963.05,0.0,624.0,79587.05,16403.15,12424.5,5845.19,34672.84,114259.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,12733,56449.96,881.21,6398.55,63729.72,12308.93,12406.58,5212.37,29927.88,93657.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26876,2820.43,0.0,87.53,2907.96,0.0,1223.03,232.6,1455.63,4363.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29358,97763.63,35741.29,11644.48,145149.4,26593.36,12424.5,2441.16,41459.02,186608.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,10396,135839.83,0.0,13502.76,149342.59,26860.11,12388.66,1240.52,40489.29,189831.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,30518,79395.06,0.0,0.0,79395.06,16372.43,12424.51,6579.59,35376.53,114771.59 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,250,88296.01,0.0,4018.8,92314.81,18209.18,12424.5,8288.01,38921.69,131236.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,26696,58101.02,0.0,0.0,58101.02,11974.94,12424.5,4566.49,28965.93,87066.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15269,8171.5,0.0,145.92,8317.42,0.0,3113.6,645.4,3759.0,12076.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,49503,26373.07,297.22,0.0,26670.29,3831.11,7923.61,2114.59,13869.31,40539.6 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1769,Media Production Supv,28843,46111.0,0.0,6834.62,52945.62,10482.91,6212.25,4485.8,21180.96,74126.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,30155,44915.3,2030.91,2507.27,49453.48,11132.24,11785.3,4013.9,26931.44,76384.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,32362,475.17,0.0,0.0,475.17,0.0,155.31,81.38,236.69,711.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35368,119467.39,60931.1,13072.05,193470.54,23620.98,12424.5,3244.08,39289.56,232760.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,32568,10523.77,0.0,180.0,10703.77,1991.98,1653.71,872.77,4518.46,15222.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23781,17057.88,0.0,53.43,17111.31,12644.37,0.0,498.18,13142.55,30253.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21994,164126.56,0.0,1500.0,165626.56,33311.18,12424.5,10653.33,56389.01,222015.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,34674,138624.69,11764.87,6939.63,157329.19,27434.17,12424.5,2634.75,42493.42,199822.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,35532,78026.25,1556.85,2011.25,81594.35,16530.38,11839.11,6551.69,34921.18,116515.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,25039,42613.29,0.0,2812.24,45425.53,10782.82,12094.11,3687.38,26564.31,71989.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,23155,14940.0,5705.74,1809.9,22455.64,3756.99,2867.18,1777.86,8402.03,30857.67 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,46020,35380.1,0.0,0.0,35380.1,6817.53,7120.2,602.07,14539.8,49919.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,51643,46996.31,234.28,737.96,47968.55,10013.52,9355.29,3953.38,23322.19,71290.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3402,Farmer,3825,43384.9,0.0,0.0,43384.9,8991.98,8128.67,3368.84,20489.49,63874.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26447,2465.85,0.0,0.0,2465.85,0.0,609.75,191.39,801.14,3266.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,28353,26956.33,2021.5,450.28,29428.11,6951.99,5831.99,2263.4,15047.38,44475.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,7189,6699.0,0.0,0.0,6699.0,1473.14,1672.52,535.53,3681.19,10380.19 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,49741,135199.02,0.0,0.0,135199.02,27179.29,12424.5,10112.3,49716.09,184915.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,53031,89028.01,0.0,0.0,89028.01,18349.03,12424.5,7057.86,37831.39,126859.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,26116,46420.4,0.0,0.0,46420.4,11130.36,12424.5,3676.31,27231.17,73651.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23537,68150.53,6872.6,5352.6,80375.73,20123.95,13428.5,6274.22,39826.67,120202.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,20482,214657.6,4967.54,7537.22,227162.36,44666.98,11200.33,11504.61,67371.92,294534.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",43024,131564.75,43483.88,19005.28,194053.91,29511.26,15196.12,3404.98,48112.36,242166.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18724,147352.3,2067.21,39349.78,188769.29,38084.38,12281.15,5293.12,55658.65,244427.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4040,63720.13,8065.54,2866.07,74651.74,18220.19,12556.52,5769.87,36546.58,111198.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5885,62579.95,12190.95,6237.03,81007.93,18818.4,12325.23,6270.99,37414.62,118422.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,51400,77181.24,0.0,1540.0,78721.24,16186.85,12324.99,6473.93,34985.77,113707.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,30488,0.0,0.0,5529.6,5529.6,0.0,0.0,423.02,423.02,5952.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,43834,1195.22,0.0,45.22,1240.44,0.0,55.25,96.28,151.53,1391.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,8552,78807.9,6636.45,154.0,85598.35,16289.51,12281.16,7073.25,35643.92,121242.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,17509,78950.72,5877.39,10821.8,95649.91,17801.99,12084.61,7692.44,37579.04,133228.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,38164,84973.0,0.0,624.0,85597.0,17641.99,12424.5,6953.82,37020.31,122617.31 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,13565,40903.11,22831.33,3884.36,67618.8,9941.23,12424.5,5395.79,27761.52,95380.32 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36519,40477.97,0.0,22031.37,62509.34,10091.63,5198.34,414.3,15704.27,78213.61 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,46803,76262.72,0.0,1385.0,77647.72,15964.31,12293.38,6428.71,34686.4,112334.12 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,2500,Med Therapy & Auxiliary,2576,Sprv Clincal Psychologist,15466,120449.09,0.0,0.0,120449.09,24240.62,12424.5,9543.54,46208.66,166657.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,23708,100169.64,0.0,0.0,100169.64,20638.61,12376.7,8231.28,41246.59,141416.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,44670,48573.09,0.0,0.0,48573.09,10817.55,10751.38,4056.99,25625.92,74199.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,26898,113682.52,0.0,0.0,113682.52,22854.58,12424.5,9147.7,44426.78,158109.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7413,55305.94,3936.2,2543.25,61785.39,15041.43,13173.79,4666.6,32881.82,94667.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,50010,56531.02,3356.17,2685.03,62572.22,11664.94,12424.5,5165.54,29254.98,91827.2 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,6462,44477.01,0.0,0.0,44477.01,8666.14,7645.84,3568.72,19880.7,64357.71 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,6371,2218.24,0.0,14.4,2232.64,418.48,0.0,176.37,594.85,2827.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10069,117140.95,9337.99,13642.07,140121.01,23164.17,12424.5,2379.41,37968.08,178089.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14776,116516.22,2405.67,6352.91,125274.8,0.0,10204.52,9446.35,19650.87,144925.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,619,56531.0,0.0,3257.1,59788.1,11788.47,12424.5,4693.71,28906.68,88694.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10351,27285.63,2600.22,897.77,30783.62,7283.48,8348.68,2287.54,17919.7,48703.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,45776,56140.8,6172.45,9478.92,71792.17,13662.7,6498.97,5736.78,25898.45,97690.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,2521,61823.07,0.0,59.0,61882.07,13142.72,8917.28,5100.25,27160.25,89042.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48430,17525.2,0.0,307.7,17832.9,4377.58,3374.5,1310.39,9062.47,26895.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,7117,101733.02,0.0,0.0,101733.02,20967.3,12424.5,8438.11,41829.91,143562.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",46762,4516.0,0.0,0.0,4516.0,1012.94,955.73,340.71,2309.38,6825.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24356,44039.25,6240.74,1000.98,51280.97,11687.5,13245.72,3675.62,28608.84,79889.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,53143,119467.39,661.07,2293.38,122421.84,23621.0,12424.5,2090.62,38136.12,160557.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,39959,65048.28,0.0,0.0,65048.28,8331.66,9103.33,5315.41,22750.4,87798.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,44718,138032.28,1221.73,820.64,140074.65,27288.31,12370.74,2249.26,41908.31,181982.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45564,13441.63,256.42,156.62,13854.67,0.0,3362.97,276.39,3639.36,17494.03 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,2577,68067.04,0.0,624.0,68691.04,14157.65,12424.5,5643.08,32225.23,100916.27 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,23844,138601.01,0.0,0.0,138601.01,27864.04,12424.5,18462.78,58751.32,197352.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,2018,27068.59,6930.28,7775.05,41773.92,4811.01,2389.33,698.55,7898.89,49672.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,39281,8514.15,0.0,0.0,8514.15,0.0,1111.03,660.84,1771.87,10286.02 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,6532,78963.05,0.0,624.0,79587.05,16403.15,12424.5,6401.54,35229.19,114816.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",14050,84312.54,0.0,0.0,84312.54,17128.58,9678.27,14538.63,41345.48,125658.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,21176,64463.71,31080.87,16503.13,112047.71,16038.45,12424.5,9110.64,37573.59,149621.3 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,49721,80570.01,0.0,0.0,80570.01,16605.95,12424.5,6359.87,35390.32,115960.33 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8146,District Attry's Investigator,5484,109563.01,0.0,6573.78,116136.79,26491.62,12424.5,1945.3,40861.42,156998.21 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,35480,67261.02,0.0,624.0,67885.02,13991.51,12424.5,5519.71,31935.72,99820.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23000,2721.1,0.0,435.94,3157.04,1115.32,195.03,87.75,1398.1,4555.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,39255,45300.1,20858.98,4291.78,70450.86,11351.69,12424.5,5375.54,29151.73,99602.59 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,680,33141.5,0.0,9816.71,42958.21,7433.67,4061.85,3415.58,14911.1,57869.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14937,877.1,0.0,4.3,881.4,0.0,292.71,68.4,361.11,1242.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1959,19583.2,0.0,0.0,19583.2,4306.33,4969.8,1582.13,10858.26,30441.46 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,17638,85067.87,0.0,0.0,85067.87,17664.37,11468.77,6735.37,35868.51,120936.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51514,44014.4,2995.37,5735.16,52744.93,11290.1,11898.85,4205.21,27394.16,80139.09 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,18808,8942.21,19.2,0.0,8961.41,0.0,2130.99,694.63,2825.62,11787.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28799,18814.89,0.0,5.9,18820.79,0.0,5084.78,1459.0,6543.78,25364.57 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,2631,107052.47,0.0,0.0,107052.47,22072.18,12424.5,8725.7,43222.38,150274.85 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),29150,113182.0,0.0,1125.0,114307.0,22614.52,10465.25,8375.92,41455.69,155762.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,34796,97424.13,0.0,724.0,98148.13,20229.15,12424.5,7927.92,40581.57,138729.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,25778,37259.45,2696.72,1857.5,41813.67,8773.94,5684.87,3355.81,17814.62,59628.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41441,65829.98,10563.32,2734.5,79127.8,18752.2,12973.63,6049.5,37775.33,116903.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1501,97178.58,20501.72,8104.98,125785.28,20242.12,12424.51,2092.95,34759.58,160544.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,1906,82412.21,0.0,0.0,82412.21,16948.79,12424.5,6639.82,36013.11,118425.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47841,119461.58,15415.71,5401.68,140278.97,23641.85,12424.5,2332.98,38399.33,178678.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,15483,5548.72,0.0,0.0,5548.72,0.0,1502.3,429.58,1931.88,7480.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",34899,82151.01,0.0,0.0,82151.01,16738.09,10990.9,13890.12,41619.11,123770.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42769,71669.95,558.1,12413.53,84641.58,15706.74,5973.31,5520.92,27200.97,111842.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,25726,3902.77,0.0,0.0,3902.77,0.0,1824.84,302.75,2127.59,6030.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16042,77071.01,18631.65,1732.8,97435.46,16234.7,12424.5,7951.92,36611.12,134046.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,19648,80570.01,0.0,192.0,80762.01,16649.07,12424.5,6698.47,35772.04,116534.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,30366,66102.0,2757.12,0.0,68859.12,13624.06,12424.49,5680.11,31728.66,100587.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15092,28836.7,9823.62,329.76,38990.08,6994.14,12358.8,3086.72,22439.66,61429.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,39222,41114.39,0.0,0.0,41114.39,0.0,0.0,3251.92,3251.92,44366.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21849,139748.68,0.0,11369.48,151118.16,28856.54,12372.36,8677.59,49906.49,201024.65 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,39614,6299.3,0.0,0.0,6299.3,0.0,2320.63,488.92,2809.55,9108.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,9009,16372.79,0.0,332.48,16705.27,3071.62,2637.76,1356.67,7066.05,23771.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,52840,86663.01,6285.83,3802.5,96751.34,18646.18,12424.5,7942.15,39012.83,135764.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,16545,96304.87,9430.53,17403.08,123138.48,26960.08,12237.5,2025.37,41222.95,164361.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18180,65690.43,0.0,13403.03,79093.46,552.15,0.0,7717.35,8269.5,87362.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,52874,75605.0,20685.73,12228.35,108519.08,17162.59,12424.5,8603.7,38190.79,146709.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,22855,58697.52,0.0,0.0,58697.52,12105.71,10833.45,4879.84,27819.0,86516.52 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,24807,63887.06,0.0,624.0,64511.06,13296.02,12424.5,5303.81,31024.33,95535.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,31277,81776.04,0.0,2219.0,83995.04,17308.05,12424.51,6311.69,36044.25,120039.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17681,9889.35,0.0,0.0,9889.35,0.0,4288.36,810.89,5099.25,14988.6 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,46856,19782.98,146.63,0.0,19929.61,4350.27,4913.05,1483.04,10746.36,30675.97 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,31588,56830.13,3644.74,696.09,61170.96,12871.06,12424.51,5011.05,30306.62,91477.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,29346,37348.87,0.0,0.0,37348.87,8107.47,3721.37,3059.58,14888.42,52237.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,35172,44720.06,3710.3,1254.58,49684.94,9572.32,8916.2,4103.31,22591.83,72276.77 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3706,93460.03,10189.98,22074.66,125724.67,27409.3,11881.52,2095.08,41385.9,167110.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,31006,9986.2,2153.28,2491.46,14630.94,0.0,2341.54,1233.16,3574.7,18205.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44528,65082.68,16705.57,1636.46,83424.71,18237.2,12823.04,6515.52,37575.76,121000.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,4648,137717.25,90475.13,6238.97,234431.35,27209.28,12424.49,3944.56,43578.33,278009.68 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,21710,39492.5,0.0,680.37,40172.87,8677.19,7170.24,3126.09,18973.52,59146.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28968,12338.8,788.15,158.91,13285.86,3207.02,3805.54,1015.74,8028.3,21314.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51973,10927.01,62.72,702.45,11692.18,2164.25,2341.54,957.26,5463.05,17155.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,28831,58782.12,4544.45,624.0,63950.57,12243.99,12424.5,5288.37,29956.86,93907.43 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,43673,118104.04,0.0,0.0,118104.04,23768.42,12424.5,9639.44,45832.36,163936.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10205,49083.12,0.0,840.0,49923.12,10163.58,10990.9,4046.77,25201.25,75124.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,14277,68610.03,0.0,0.0,68610.03,13769.29,9557.31,5459.21,28785.81,97395.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32308,66414.66,3417.0,4609.17,74440.83,19424.03,13085.98,5588.5,38098.51,112539.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26821,56531.01,0.0,1975.95,58506.96,11651.3,12424.5,4706.81,28782.61,87289.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,37063,97772.3,29309.83,11374.59,138456.72,26541.55,12424.5,2349.29,41315.34,179772.06 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,30798,50844.94,0.0,80.0,50924.94,12218.83,12330.18,4115.84,28664.85,79589.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,45918,87531.04,0.0,624.0,88155.04,18169.32,12424.5,7061.05,37654.87,125809.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5083,63750.09,11233.93,2093.51,77077.53,17972.9,12557.89,5973.77,36504.56,113582.09 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,4184,222341.06,0.0,6865.0,229206.06,45022.41,11949.62,7372.88,64344.91,293550.97 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4224,Pr Personal Property Auditor,37720,117680.91,0.0,480.0,118160.91,23804.89,12424.5,9282.0,45511.39,163672.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,5877,8037.0,0.0,0.0,8037.0,1495.68,1433.6,620.12,3549.4,11586.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,12071,78894.25,0.0,0.0,78894.25,15989.56,10517.11,6472.02,32978.69,111872.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41142,12879.63,0.0,406.76,13286.39,95.16,1135.11,898.48,2128.75,15415.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,35488,36626.21,3866.77,1001.63,41494.61,7748.59,7263.55,3500.52,18512.66,60007.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,11135,20360.0,0.0,857.35,21217.35,3846.7,1911.46,1663.35,7421.51,28638.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,29743,40830.71,515.14,310.2,41656.05,8106.63,8459.59,3326.77,19892.99,61549.04 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2453,Supervising Pharmacist,15010,165761.93,0.0,1200.0,166961.93,33291.54,11973.51,10437.12,55702.17,222664.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,28600,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5117.47,30394.59,92753.59 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,23493,22692.0,1782.18,2214.88,26689.06,4222.97,2867.19,2074.31,9164.47,35853.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,16609,30224.37,0.0,2805.96,33030.33,0.0,2210.12,2101.37,4311.49,37341.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29616,74668.01,0.0,0.0,74668.01,15144.08,10513.04,5542.71,31199.83,105867.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6584,37256.76,210.04,2995.97,40462.77,7737.31,9384.08,3314.57,20435.96,60898.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,47862,81942.03,2601.49,20853.98,105397.5,20493.4,12424.5,8611.48,41529.38,146926.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,27525,136466.03,598.53,15961.26,153025.82,36069.23,12424.5,2552.57,51046.3,204072.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,35991,56764.6,22341.02,11796.87,90902.49,14693.6,12424.5,7262.26,34380.36,125282.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34802,69434.03,13015.6,1799.29,84248.92,19503.56,13681.35,6447.34,39632.25,123881.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11345,8207.51,0.0,666.38,8873.89,1401.41,0.0,278.25,1679.66,10553.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,1963,5617.09,0.0,71.49,5688.58,0.0,1845.75,441.46,2287.21,7975.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8966,56531.0,0.0,2287.8,58818.8,11780.12,12424.5,4817.2,29021.82,87840.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35428,136071.09,0.0,3561.84,139632.93,28055.51,12424.5,10121.51,50601.52,190234.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51077,268.5,0.0,0.0,268.5,0.0,0.0,21.21,21.21,289.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50087,14470.0,0.0,1.21,14471.21,0.0,6212.27,1128.75,7341.02,21812.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36139,42441.8,0.0,0.0,42441.8,0.0,0.0,3356.95,3356.95,45798.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,28890,34047.81,0.0,0.0,34047.81,6635.23,7615.98,2739.04,16990.25,51038.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,34844,63887.01,0.0,1115.1,65002.11,13397.29,12424.49,5345.25,31167.03,96169.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",33921,136848.64,0.0,0.0,136848.64,27626.58,12424.5,25061.16,65112.24,201960.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4819,77071.02,25244.21,1832.8,104148.03,16255.64,12424.5,8525.64,37205.78,141353.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,6972,52772.62,0.0,1420.0,54192.62,12062.25,12316.99,4385.64,28764.88,82957.5 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,30752,93670.61,0.0,0.0,93670.61,19288.39,12424.5,15318.53,47031.42,140702.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,4289,88715.0,49149.81,9248.43,147113.24,19614.94,12663.45,10146.22,42424.61,189537.85 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,4969,47090.02,0.0,398.43,47488.45,9813.97,9482.63,3820.58,23117.18,70605.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,18206,83477.01,5169.87,295.0,88941.88,17225.3,12424.5,6915.05,36564.85,125506.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7891,66115.93,4028.59,1633.74,71778.26,18555.31,13028.52,5474.78,37058.61,108836.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,8089,96930.0,0.0,0.0,96930.0,19977.61,12424.5,7930.58,40332.69,137262.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,35928,62468.8,0.0,3665.1,66133.9,13562.52,12424.5,5448.06,31435.08,97568.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",799,130329.33,40204.93,17255.7,187789.96,28844.14,15052.76,3149.11,47046.01,234835.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45430,23074.06,488.21,749.27,24311.54,1791.2,9927.66,1951.19,13670.05,37981.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,21238,38761.29,0.0,9981.13,48742.42,8818.2,5160.95,3933.05,17912.2,66654.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25556,907.46,0.0,56.19,963.65,728.08,0.0,28.4,756.48,1720.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,22187,112209.06,0.0,0.0,112209.06,22870.16,12424.5,8832.88,44127.54,156336.6 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,44488,6600.61,0.0,123.92,6724.53,1251.43,1099.08,542.32,2892.83,9617.36 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,28127,20800.95,0.0,0.0,20800.95,4574.12,5767.24,1624.15,11965.51,32766.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,28701,45646.38,0.0,1240.0,46886.38,11292.59,11227.44,3632.33,26152.36,73038.74 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,50390,106605.0,0.0,4899.03,111504.03,21971.81,12424.51,9115.69,43512.01,155016.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21269,18143.38,951.9,123.14,19218.42,0.0,4527.78,1490.32,6018.1,25236.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,6876,56531.02,0.0,2920.2,59451.22,11780.12,12424.5,4883.02,29087.64,88538.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15887,119461.67,34599.1,11707.82,165768.59,23641.92,12424.5,2727.97,38794.39,204562.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7365,Senior Power House Operator,25522,87566.01,29755.98,12371.39,129693.38,19588.62,12424.5,9889.01,41902.13,171595.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,5602,14989.88,0.0,352.44,15342.32,0.0,3180.79,1187.8,4368.59,19710.91 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,49707,9463.59,0.0,4558.32,14021.91,0.0,12424.5,203.32,12627.82,26649.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",48886,94345.7,680.52,0.0,95026.22,19454.31,12424.5,7802.95,39681.76,134707.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30736,0.0,0.0,250.0,250.0,0.0,68.5,0.0,68.5,318.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,28634,57969.01,0.0,0.0,57969.01,12219.82,10035.18,4530.0,26785.0,84754.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,22765,69086.32,0.0,892.13,69978.45,14390.53,12424.5,5689.67,32504.7,102483.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,23326,69906.56,0.0,0.0,69906.56,14341.32,11956.67,5488.33,31786.32,101692.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41954,138828.16,4902.32,9903.39,153633.87,28000.29,12424.5,2562.98,42987.77,196621.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,8581,84470.17,8127.93,2196.58,94794.68,17534.3,12398.81,7639.04,37572.15,132366.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26005,67469.67,8226.63,972.48,76668.78,18726.7,13294.21,5764.43,37785.34,114454.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41121,78673.24,0.0,1682.97,80356.21,0.0,6863.34,6430.36,13293.7,93649.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,15974,16394.0,0.0,252.94,16646.94,3733.92,3345.06,1351.8,8430.78,25077.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,50679,102019.03,0.0,0.0,102019.03,21037.45,12424.5,8314.63,41776.58,143795.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,38697,23783.2,3635.72,1695.63,29114.55,4531.85,2962.77,2222.37,9716.99,38831.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22197,9103.19,0.0,459.37,9562.56,508.13,686.93,194.9,1389.96,10952.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,29162,61595.01,1421.07,0.0,63016.08,13760.0,12424.5,4705.99,30890.49,93906.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,35068,47180.9,4468.91,3737.23,55387.04,9822.47,8744.94,1456.28,20023.69,75410.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,30639,84791.47,11929.78,14251.01,110972.26,19780.79,9891.81,1851.45,31524.05,142496.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,51208,13614.3,2725.74,81.19,16421.23,2579.93,1433.59,313.38,4326.9,20748.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,34417,2888.0,0.0,0.0,2888.0,0.0,955.73,223.59,1179.32,4067.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,9946,152001.74,0.0,0.0,152001.74,30676.76,12090.0,10365.66,53132.42,205134.16 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0891,Mayoral Staff XI,38687,90587.81,0.0,0.0,90587.81,18635.66,12376.71,15775.76,46788.13,137375.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43332,144205.0,0.0,8955.33,153160.33,29458.92,12424.5,7083.12,48966.54,202126.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,1295,71298.53,0.0,0.0,71298.53,14681.3,12288.13,5651.48,32620.91,103919.44 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,11835,113416.8,0.0,0.0,113416.8,22817.54,12376.72,8859.24,44053.5,157470.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,25755,116931.0,27930.5,6183.87,151045.37,24147.59,12424.5,10256.96,46829.05,197874.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42134,59123.25,16974.99,7522.69,83620.93,18639.35,11698.03,6275.74,36613.12,120234.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8473,60285.13,0.0,1172.75,61457.88,11511.96,6370.54,4913.43,22795.93,84253.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25785,6597.45,0.0,290.9,6888.35,2030.94,502.0,333.56,2866.5,9754.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,38005,70791.07,6607.19,881.59,78279.85,14772.09,12424.5,6212.42,33409.01,111688.86 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,27578,82914.02,0.0,0.0,82914.02,17088.82,12424.5,6826.19,36339.51,119253.53 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,2721,21660.86,111.66,0.0,21772.52,0.0,5178.87,1688.17,6867.04,28639.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,3383,88342.2,10616.32,24.0,98982.52,18176.52,12424.5,8082.55,38683.57,137666.09 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,22566,24634.0,0.0,0.0,24634.0,4584.4,3822.92,1967.81,10375.13,35009.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,6942,61630.02,5752.25,1155.59,68537.86,13844.37,12424.5,5537.32,31806.19,100344.05 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,48223,396.0,18.56,0.0,414.56,0.0,95.58,32.18,127.76,542.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21811,6315.2,0.0,0.0,6315.2,1388.72,2676.05,504.47,4569.24,10884.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,2600,58871.81,13291.04,3537.42,75700.27,12339.07,12315.13,6093.63,30747.83,106448.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,7520,40325.0,0.0,535.96,40860.96,7882.44,7167.99,3307.02,18357.45,59218.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,14392,139757.22,18519.06,8607.38,166883.66,27644.82,12424.5,2724.59,42793.91,209677.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,785,76275.6,2243.44,617.52,79136.56,15833.52,12295.47,6404.56,34533.55,113670.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,13857,99502.2,29142.46,2132.89,130777.55,20657.25,12424.51,9817.66,42899.42,173676.97 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,42643,67261.01,0.0,0.0,67261.01,13862.82,12424.5,5578.58,31865.9,99126.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47121,38853.04,6404.52,1153.17,46410.73,10378.52,12145.3,3414.83,25938.65,72349.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,8169,97934.03,21820.32,6616.85,126371.2,21406.69,12424.5,9889.24,43720.43,170091.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15378,97758.24,14334.28,6851.55,118944.07,25430.63,12424.5,1971.13,39826.26,158770.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,27337,138624.67,74585.93,12578.05,225788.65,27434.17,12424.49,3805.15,43663.81,269452.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,25492,72699.0,1819.97,5894.04,80413.01,15852.09,12424.5,6595.44,34872.03,115285.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,28978,34392.11,0.0,202.85,34594.96,7634.28,6925.17,2959.52,17518.97,52113.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2842,313.0,0.0,0.0,313.0,56.75,47.79,24.3,128.84,441.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,40550,61428.0,0.0,1624.0,63052.0,12993.65,12424.5,5177.92,30596.07,93648.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27766,3706.59,0.0,18.63,3725.22,0.0,927.35,362.34,1289.69,5014.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,35754,98157.02,0.0,0.0,98157.02,20230.59,12424.5,7812.17,40467.26,138624.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,27344,112159.76,20135.94,15391.82,147687.52,24249.38,15052.75,2505.53,41807.66,189495.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3961,2409.88,0.0,40.02,2449.9,0.0,906.42,190.15,1096.57,3546.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,3960,160276.97,3757.36,10298.83,174333.16,32317.22,12424.5,2916.02,47657.74,221990.9 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8301,Sheriff's Property Keeper,33430,2039.75,0.0,0.0,2039.75,0.0,0.0,161.39,161.39,2201.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2292,Shelter Veterinarian,15613,62407.21,0.0,0.0,62407.21,12246.37,8028.14,4999.48,25273.99,87681.2 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,5326,75028.03,0.0,1627.96,76655.99,15805.72,12424.5,6307.17,34537.39,111193.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,10131,1599.5,0.0,0.0,1599.5,358.75,238.93,126.25,723.93,2323.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25500,56531.0,0.0,6027.85,62558.85,12327.28,12424.5,5164.77,29916.55,92475.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,36426,50853.68,1080.46,3300.38,55234.52,11333.6,10082.96,4392.33,25808.89,81043.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9141,Transit Manager 2,24459,119549.45,0.0,734.67,120284.12,24118.02,12108.63,9607.91,45834.56,166118.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,32885,96807.28,17643.07,1205.49,115655.84,20193.78,12328.92,9272.16,41794.86,157450.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,31508,52772.27,277.03,0.0,53049.3,11761.73,12420.8,4314.28,28496.81,81546.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,32614,7714.17,0.0,55.18,7769.35,0.0,0.0,614.44,614.44,8383.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,13203,63102.0,0.0,1233.57,64335.57,13260.78,12424.5,4977.3,30662.58,94998.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,5678,81157.01,33792.27,21582.68,136531.96,19835.08,12424.5,9980.83,42240.41,178772.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40642,63319.08,3713.8,1637.04,68669.92,17822.05,12472.65,5090.39,35385.09,104055.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,9395,"Property Manager, Port",45473,101004.93,0.0,0.0,101004.93,20905.03,11923.28,8262.35,41090.66,142095.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3310,69074.25,6013.74,3892.78,78980.77,20004.88,13612.3,5906.51,39523.69,118504.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,20702,48756.0,430.2,0.0,49186.2,10574.38,8123.69,3790.55,22488.62,71674.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1431,Senior Unit Clerk,46691,68212.03,674.52,200.0,69086.55,14058.6,12424.5,5556.69,32039.79,101126.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32055,15592.1,0.0,0.0,15592.1,4010.33,6564.68,1250.83,11825.84,27417.94 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,31442,101047.03,0.0,0.0,101047.03,20826.03,12424.5,8129.41,41379.94,142426.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10744,66470.39,12836.37,976.17,80282.93,18438.28,13096.68,6263.07,37798.03,118080.96 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,20861,89351.86,0.0,0.0,89351.86,18378.46,12145.25,7289.61,37813.32,127165.18 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,24192,14369.8,0.0,1064.03,15433.83,2600.44,2102.61,1214.52,5917.57,21351.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49876,40205.8,3285.12,1023.12,44514.04,11993.93,7995.65,3460.04,23449.62,67963.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,3.0,"Operating Engineers - Miscellaneous, Local 3",7200,Supervisory-Labor & Trade,9331,Piledriver Engine Operator,7886,49423.5,0.0,3754.69,53178.19,11360.49,6451.18,4236.52,22048.19,75226.38 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,13659,51541.96,0.0,4383.05,55925.01,10701.64,7252.68,4566.06,22520.38,78445.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49185,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,27308,100761.07,0.0,5054.62,105815.69,21808.17,12424.47,8501.93,42734.57,148550.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,25642,11364.0,0.0,0.0,11364.0,2114.84,1911.46,898.78,4925.08,16289.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48477,56531.0,0.0,3920.55,60451.55,11788.47,12424.5,4946.31,29159.28,89610.83 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,21142,71311.0,0.0,0.0,71311.0,14697.59,12424.5,5662.93,32785.02,104096.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52004,37543.34,5896.12,771.05,44210.51,10880.88,7440.48,3381.41,21702.77,65913.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11042,14059.84,1409.27,875.69,16344.8,4123.36,4438.17,1236.55,9798.08,26142.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19243,121100.63,573.28,4432.7,126106.61,25247.66,10724.2,9854.74,45826.6,171933.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,17952,49135.68,615.54,4365.21,54116.43,11261.12,10931.17,4367.15,26559.44,80675.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,14011,31620.6,2582.36,1878.08,36081.04,7513.74,4730.86,2882.22,15126.82,51207.86 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,5012,68067.17,0.0,1266.55,69333.72,14290.06,12424.5,5623.13,32337.69,101671.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,4217,112776.05,0.0,5638.81,118414.86,23831.38,12424.5,9453.82,45709.7,164124.56 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1750,Microphoto/Imaging Technician,40008,43631.93,0.0,0.0,43631.93,10450.97,12421.52,3219.55,26092.04,69723.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,45899,45624.35,0.0,0.0,45624.35,10944.14,10812.42,4035.67,25792.23,71416.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,3282,77071.03,0.0,0.0,77071.03,15884.7,12424.5,6392.91,34702.11,111773.14 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8169,Legislative Asst City Atty Ofc,36579,2758.0,0.0,0.0,2758.0,618.62,477.86,210.84,1307.32,4065.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23683,66734.87,9137.55,7424.21,83296.63,20274.21,13147.51,6512.92,39934.64,123231.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,8771,21619.55,20053.32,2994.94,44667.81,4194.53,6248.09,3539.74,13982.36,58650.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23717,68049.15,16372.38,1674.92,86096.45,19093.75,13412.02,6560.02,39065.79,125162.24 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,13541,192278.76,0.0,19314.58,211593.34,42382.71,12364.77,11318.15,66065.63,277658.97 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19838,97758.72,8629.03,9977.06,116364.81,26200.23,12424.5,1934.56,40559.29,156924.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,33768,97793.09,14401.51,4054.95,116249.55,20910.13,12424.5,9531.91,42866.54,159116.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,6660,110041.05,11957.88,864.68,122863.61,22175.49,12424.5,9820.83,44420.82,167284.43 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),26130,123583.51,0.0,1500.0,125083.51,25136.53,12424.5,9939.59,47500.62,172584.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,34462,93281.06,0.0,1288.0,94569.06,19489.24,12424.5,7835.05,39748.79,134317.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27917,6821.34,0.0,170.7,6992.04,0.0,2956.79,572.82,3529.61,10521.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",3090,25910.4,0.0,0.0,25910.4,0.0,5411.83,2011.07,7422.9,33333.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,16023,56186.67,0.0,447.21,56633.88,11268.62,8904.49,4431.37,24604.48,81238.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,46647,77071.01,0.0,624.0,77695.01,16013.39,12424.5,6328.37,34766.26,112461.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,39789,97934.01,0.0,0.0,97934.01,20179.57,12424.5,8119.87,40723.94,138657.95 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,35572,68181.92,0.0,0.0,68181.92,12361.37,5877.73,4427.24,22666.34,90848.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,34037,61473.5,526.55,974.37,62974.42,12839.49,11952.79,5197.02,29989.3,92963.72 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,11540,75927.02,531.42,0.0,76458.44,15648.74,12424.5,6016.72,34089.96,110548.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H006,"Invstgtor,Fire Dept",26352,135728.56,56670.78,16430.65,208829.99,29819.4,15196.11,3515.55,48531.06,257361.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,48919,57699.11,10206.8,4474.9,72380.81,12121.36,10890.97,5925.76,28938.09,101318.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15875,112159.77,13606.15,17724.63,143490.55,24941.36,15052.76,2389.09,42383.21,185873.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,2454,63952.81,8744.52,2394.41,75091.74,14063.39,10035.17,5985.43,30083.99,105175.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,33671,77071.01,3250.1,1260.0,81581.11,16144.44,12424.5,6638.31,35207.25,116788.36 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25841,97763.75,10384.24,9273.58,117421.57,26036.09,12424.5,1999.48,40460.07,157881.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,3917,10256.4,0.0,428.56,10684.96,2756.73,2007.04,896.92,5660.69,16345.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48110,29765.88,0.0,386.37,30152.25,0.0,2254.93,504.04,2758.97,32911.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1337,51848.6,0.0,7164.28,59012.88,13511.08,12424.5,4628.03,30563.61,89576.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48358,69058.67,16860.28,2419.89,88338.84,19559.13,13606.86,6688.79,39854.78,128193.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,48519,71973.01,0.0,1560.0,73533.01,15871.61,11468.76,5374.13,32714.5,106247.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,15597,96972.02,6530.42,932.0,104434.44,20196.26,11957.75,8572.08,40726.09,145160.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,9411,59303.0,675.37,370.63,60349.0,12284.67,12424.52,4612.29,29321.48,89670.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,16077,19564.2,4605.71,1813.83,25983.74,4630.54,5925.53,2060.6,12616.67,38600.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,44113,9186.47,0.0,0.0,9186.47,2020.12,3116.1,759.27,5895.49,15081.96 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,7842,192860.2,0.0,19286.02,212146.22,42691.3,12413.63,11326.77,66431.7,278577.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21268,6534.71,1443.02,286.33,8264.06,1853.07,2062.76,543.03,4458.86,12722.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4940,16712.52,0.0,145.32,16857.84,0.0,1305.17,1305.46,2610.63,19468.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,15123,61735.01,957.84,1699.0,64391.85,13074.47,12424.5,4893.15,30392.12,94783.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10012,77071.0,1606.33,1360.0,80037.33,16166.87,12424.5,6627.56,35218.93,115256.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,13010,92788.58,61.65,8923.34,101773.57,20296.45,12424.48,8128.58,40849.51,142623.08 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,29317,63123.68,4291.06,7853.54,75268.28,14393.86,11544.93,6215.19,32153.98,107422.26 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,738,72911.33,0.0,4067.61,76978.94,15342.17,10259.65,6423.52,32025.34,109004.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,41714,45892.6,0.0,5481.43,51374.03,12159.77,12421.52,4234.31,28815.6,80189.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",45271,8861.0,0.0,708.88,9569.88,2053.7,477.86,162.68,2694.24,12264.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25874,80957.63,7491.83,1758.77,90208.23,16550.76,12424.5,3364.44,32339.7,122547.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33515,38951.4,296.27,3785.6,43033.27,0.0,3163.17,3334.12,6497.29,49530.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7980,45742.0,9290.68,4815.88,59848.56,13392.13,8991.1,4617.3,27000.53,86849.09 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,32115,53087.18,0.0,880.58,53967.76,11561.2,9449.77,4315.44,25326.41,79294.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,8456,73903.14,0.0,494.4,74397.54,15336.78,9844.03,6008.31,31189.12,105586.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41063,138635.26,20591.8,5096.86,164323.92,27395.36,12424.5,417.08,40236.94,204560.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,32803,60759.78,0.0,2217.21,62976.99,12930.77,12289.33,5201.15,30421.25,93398.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,40259,93069.31,15105.69,5464.4,113639.4,19368.42,12567.87,9298.2,41234.49,154873.89 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,24260,99098.03,0.0,1040.0,100138.03,20637.97,12424.5,8107.55,41170.02,141308.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,46156,74624.84,0.0,1553.46,76178.3,15705.4,9939.6,6312.74,31957.74,108136.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3563,96721.41,0.0,8751.18,105472.59,0.0,7926.72,8175.64,16102.36,121574.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,14365,9544.46,0.0,291.22,9835.68,0.0,3479.46,761.96,4241.42,14077.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,17439,33562.66,15296.3,2728.59,51587.55,7780.25,4598.74,4222.69,16601.68,68189.23 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,23144,2841.0,0.0,0.0,2841.0,528.71,477.86,220.51,1227.08,4068.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25937,113233.59,32321.79,21159.71,166715.09,25556.78,15196.12,2831.87,43584.77,210299.86 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47392,45582.29,4270.06,4360.1,54212.45,11690.23,5853.85,916.89,18460.97,72673.42 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,48728,15740.42,0.0,0.0,15740.42,0.0,2638.72,1219.17,3857.89,19598.31 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,52673,45530.12,0.0,726.25,46256.37,11075.04,12324.63,3899.41,27299.08,73555.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42755,144706.01,0.0,250.0,144956.01,29122.17,12424.5,10177.52,51724.19,196680.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,19631,45810.04,3197.16,0.0,49007.2,9857.12,8601.57,3895.78,22354.47,71361.67 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,32118,57923.83,472.74,7436.0,65832.57,13494.62,10596.25,5175.17,29266.04,95098.61 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2912,Senior Social Worker,51991,76160.74,0.0,620.46,76781.2,15843.32,12353.9,6372.87,34570.09,111351.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42209,118878.54,28118.28,13249.55,160246.37,23560.24,12364.77,2665.73,38590.74,198837.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7358,22547.48,13.78,1103.81,23665.07,1791.37,9715.6,1909.7,13416.67,37081.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,30883,55650.81,0.0,1400.0,57050.81,12745.2,12424.5,4635.48,29805.18,86855.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,37799,56911.55,263.8,1962.07,59137.42,11980.64,10793.31,4639.65,27413.6,86551.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,8129,91542.57,0.0,17.05,91559.62,18832.29,12392.43,7062.32,38287.04,129846.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47967,117749.82,2573.47,7481.38,127804.67,24207.44,11081.7,9807.39,45096.53,172901.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",51586,11553.25,0.0,0.0,11553.25,0.0,2747.73,896.72,3644.45,15197.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9684,66130.82,15375.94,579.0,82085.76,18261.81,13031.45,6064.37,37357.63,119443.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,8256,5880.0,0.0,235.2,6115.2,1371.64,955.72,495.96,2823.32,8938.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,17113,67330.81,0.0,880.0,68210.81,13488.1,11946.63,5471.73,30906.46,99117.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33736,18623.25,0.0,620.81,19244.06,0.0,1361.44,1491.08,2852.52,22096.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,28029,21897.68,3654.36,4115.6,29667.64,4452.3,3819.93,2304.3,10576.53,40244.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,35932,72614.93,0.0,130.0,72744.93,14944.79,12424.5,5803.21,33172.5,105917.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,15964,82059.55,0.0,1063.7,83123.25,17158.31,12179.6,6897.38,36235.29,119358.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,24897,55002.97,0.0,700.0,55702.97,10545.35,3975.84,4508.54,19029.73,74732.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15050,119463.8,54775.46,6085.34,180324.6,24103.01,12424.5,416.99,36944.5,217269.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7069,413.25,0.0,816.1,1229.35,107.52,179.2,94.42,381.14,1610.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,3824,164581.65,0.0,0.0,164581.65,33122.15,12424.44,10535.96,56082.55,220664.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,12254,50312.96,478.36,4254.13,55045.45,10773.37,9845.77,4464.75,25083.89,80129.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,38319,21081.31,0.0,0.0,21081.31,5047.0,6182.39,2095.32,13324.71,34406.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46651,54728.5,0.0,7255.36,61983.86,14275.29,12424.5,4969.36,31669.15,93653.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,44171,96640.72,5131.32,0.0,101772.04,19917.21,12424.5,8129.24,40470.95,142242.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51397,102750.98,1570.88,17958.97,122280.83,21091.29,9100.35,4584.57,34776.21,157057.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,2816,76956.89,0.0,80.0,77036.89,16100.7,10674.32,6066.35,32841.37,109878.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30327,36777.37,0.0,158.66,36936.03,0.0,3046.27,2859.94,5906.21,42842.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",22026,130537.0,0.0,25040.0,155577.0,26833.17,10274.11,17242.6,54349.88,209926.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,43576,16719.03,0.0,0.0,16719.03,0.0,3707.4,1297.25,5004.65,21723.68 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,1778,109356.0,0.0,8117.58,117473.58,23232.86,12424.5,9706.5,45363.86,162837.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",22753,500.0,0.0,0.0,500.0,0.0,119.47,38.76,158.23,658.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1092,5214.0,0.0,0.0,5214.0,970.32,955.74,404.69,2330.75,7544.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,33377,73582.0,11943.9,4533.61,90059.51,15278.86,12089.99,7208.11,34576.96,124636.47 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,4753,23392.8,1035.62,1845.42,26273.84,5525.76,3440.63,2174.62,11141.01,37414.85 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,10568,50538.03,0.0,0.0,50538.03,10898.86,10035.18,4098.36,25032.4,75570.43 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,19437,403.76,355.8,0.0,759.56,0.0,119.47,58.95,178.42,937.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43833,0.0,0.0,0.0,0.0,0.0,0.0,-423.76,-423.76,-423.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43040,32572.56,31.46,1085.23,33689.25,8112.67,6709.29,2503.59,17325.55,51014.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,9896,73611.9,20120.91,107144.22,200877.03,16837.66,6546.76,255.96,23640.38,224517.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2416,Laboratory Technician II,31938,15592.53,0.0,0.0,15592.53,3081.13,3584.0,1244.82,7909.95,23502.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,26385,90053.1,23315.31,9830.89,123199.3,19220.47,12165.68,9793.31,41179.46,164378.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,12927,125284.05,0.0,0.0,125284.05,25227.49,12424.5,9865.74,47517.73,172801.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4374,102260.47,3051.5,12962.18,118274.15,0.0,7703.37,1982.64,9686.01,127960.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33108,119461.7,12856.7,6548.34,138866.74,23641.94,12424.5,2283.99,38350.43,177217.17 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,52359,20050.0,0.0,0.0,20050.0,0.0,3345.05,1566.07,4911.12,24961.12 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,10192,83032.54,0.0,39819.81,122852.35,18225.39,5408.72,9555.94,33190.05,156042.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1498,67903.43,22883.48,1664.21,92451.12,19057.56,13385.49,7179.51,39622.56,132073.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,14878,66865.81,1520.87,0.0,68386.68,13740.72,11647.67,5958.64,31347.03,99733.71 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,51304,5638.8,385.42,120.0,6144.22,829.64,1338.02,492.82,2660.48,8804.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,12786,126828.8,0.0,0.0,126828.8,25497.41,12424.5,9838.08,47759.99,174588.79 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2496,Radiologic Tech Sprv,7140,132210.83,22598.93,11014.45,165824.21,27959.43,12433.46,10518.8,50911.69,216735.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14035,73360.12,8634.99,7394.05,89389.16,16108.73,15196.12,1489.94,32794.79,122183.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46127,97530.93,0.0,5155.56,102686.49,20607.03,10033.33,8138.44,38778.8,141465.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21265,29233.41,4571.83,1291.76,35097.0,8698.52,5813.59,2513.4,17025.51,52122.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42764,77512.93,18846.29,2044.0,98403.22,16402.7,12424.5,7828.66,36655.86,135059.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7336,113233.6,0.0,21260.42,134494.02,25481.14,15196.12,2235.58,42912.84,177406.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32177,119821.36,67.05,32782.57,152670.98,26910.88,10608.55,4746.98,42266.41,194937.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,30466,9649.69,0.0,258.77,9908.46,0.0,2401.28,768.07,3169.35,13077.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37429,60054.21,514.27,13208.57,73777.05,13659.24,5318.71,3051.3,22029.25,95806.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,18568,19719.85,657.5,1103.0,21480.35,4857.9,4521.81,1664.73,11044.44,32524.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26878,128065.0,0.0,2516.64,130581.64,26236.09,12424.5,9911.11,48571.7,179153.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,20323,2772.0,0.0,0.0,2772.0,515.87,477.86,215.15,1208.88,3980.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,23427,68890.27,0.0,0.0,68890.27,13990.61,8503.03,5640.63,28134.27,97024.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33656,119461.62,16142.14,9529.95,145133.71,23641.9,12424.5,2429.08,38495.48,183629.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,39204,42548.35,18989.32,1527.35,63065.02,4316.65,10447.33,4923.08,19687.06,82752.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,32969,54124.02,10857.13,2197.65,67178.8,12250.26,12424.5,5455.0,30129.76,97308.56 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,48079,30464.77,0.0,437.19,30901.96,7414.33,7526.37,2538.13,17478.83,48380.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,30266,130845.85,94802.8,16548.71,242197.36,28971.47,15196.12,4095.29,48262.88,290460.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22556,19156.76,0.0,3792.89,22949.65,6.09,1634.72,1775.58,3416.39,26366.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,37443,42805.0,1386.0,0.0,44191.0,7965.99,5734.38,3442.69,17143.06,61334.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,48553,22242.5,181.69,2095.85,24520.04,5670.28,6212.25,1982.96,13865.49,38385.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13304,5565.1,0.0,885.59,6450.69,1435.78,2413.22,528.47,4377.47,10828.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37774,56531.0,0.0,4624.5,61155.5,12607.02,12424.5,5011.13,30042.65,91198.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31919,112685.44,29353.04,5479.23,147517.71,22330.91,12424.5,2466.79,37222.2,184739.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2919,Child Care Specialist,28128,41427.42,0.0,0.0,41427.42,9926.77,12376.71,3369.48,25672.96,67100.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31139,87650.5,1178.33,8212.63,97041.46,20048.53,7307.64,5043.93,32400.1,129441.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",28925,130329.33,34455.51,16291.26,181076.1,28844.14,15052.76,3031.46,46928.36,228004.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,23390,106704.06,0.0,13060.24,119764.3,23487.9,11705.97,1983.99,37177.86,156942.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,16842,118104.0,0.0,0.0,118104.0,23768.42,12424.5,9530.71,45723.63,163827.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48027,12673.03,0.0,0.0,12673.03,0.0,5495.46,764.55,6260.01,18933.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,43594,85090.61,301.55,13368.83,98760.99,19306.57,12424.5,8088.95,39820.02,138581.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,27912,69510.33,1701.0,2510.92,73722.25,14707.85,12328.92,5907.93,32944.7,106666.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,50419,97793.01,6539.62,16123.98,120456.61,22122.89,12424.5,9653.0,44200.39,164657.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,40639,11141.33,0.0,1084.47,12225.8,4283.32,812.37,501.33,5597.02,17822.82 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27516,54522.5,192.94,3271.26,57986.7,13854.32,12424.5,4703.53,30982.35,88969.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,23669,36852.51,339.81,946.55,38138.87,8725.87,8840.53,3053.15,20619.55,58758.42 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,41426,105521.58,0.0,0.0,105521.58,21728.8,12297.45,8642.1,42668.35,148189.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7581,120683.49,2013.82,1523.68,124220.99,23848.75,12424.5,2068.85,38342.1,162563.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,36637,138624.7,2397.35,7142.93,148164.98,27434.17,12424.5,2523.36,42382.03,190547.01 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,5880,1216.3,363.38,0.0,1579.68,0.0,359.89,122.61,482.5,2062.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11351,89057.71,19679.94,5903.76,114641.41,18185.85,9461.75,1837.87,29485.47,144126.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21441,3534.13,0.0,0.0,3534.13,0.0,1723.3,274.09,1997.39,5531.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42574,12011.92,0.0,333.39,12345.31,0.0,5155.86,1003.21,6159.07,18504.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,70,98365.51,11902.65,8731.78,118999.94,20413.57,12424.49,1984.58,34822.64,153822.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,331,62795.54,2229.94,2385.04,67410.52,13353.98,12421.52,5373.53,31149.03,98559.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50019,44375.16,3356.28,677.1,48408.54,11342.56,8953.47,3497.63,23793.66,72202.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,38074,82561.46,0.0,0.0,82561.46,16994.17,12406.58,6435.91,35836.66,118398.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,42560,51746.16,0.0,632.81,52378.97,10816.67,10417.47,4259.24,25493.38,77872.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6732,57807.39,5903.82,818.78,64529.99,15664.67,13243.27,4919.09,33827.03,98357.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7364,Power House Operator,15024,83384.3,25224.01,9195.77,117804.08,18751.86,12424.5,9334.94,40511.3,158315.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,3123,32059.24,0.0,500.0,32559.24,6328.57,6307.88,2597.96,15234.41,47793.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,40557,81942.01,0.0,1942.75,83884.76,17287.9,12424.52,6863.73,36576.15,120460.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,39683,92924.42,0.0,944.52,93868.94,19354.4,12376.72,7533.12,39264.24,133133.18 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",39033,68398.91,20789.35,7248.62,96436.88,17230.58,12240.82,1918.33,31389.73,127826.61 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,31727,75331.82,0.0,0.0,75331.82,9750.04,12424.5,6024.77,28199.31,103531.13 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,44430,69412.64,0.0,0.0,69412.64,4966.56,9633.47,5508.48,20108.51,89521.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,34585,0.0,0.0,840.12,840.12,0.0,0.0,64.27,64.27,904.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,40706,18208.86,412.69,2400.04,21021.59,3965.1,4886.17,1663.9,10515.17,31536.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6801,101291.71,867.6,8896.07,111055.38,13375.22,10971.79,8714.94,33061.95,144117.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,33668,53702.0,0.0,0.0,53702.0,12001.14,6690.12,4344.61,23035.87,76737.87 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,51363,78981.37,13459.25,10384.74,102825.36,21562.45,10106.32,1815.22,33483.99,136309.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,11740,90127.89,1398.61,253.71,91780.21,18573.52,12424.44,7342.2,38340.16,130120.37 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23051,15198.05,0.0,233.29,15431.34,3698.01,4575.56,1250.17,9523.74,24955.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1026,92655.2,0.0,14801.0,107456.2,897.41,0.0,8471.02,9368.43,116824.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,43201,12513.98,226.22,174.23,12914.43,2790.16,4300.78,1042.54,8133.48,21047.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,48467,93281.05,0.0,0.0,93281.05,19225.79,12424.5,7738.46,39388.75,132669.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,29831,61428.02,0.0,1500.0,62928.02,12968.68,12424.51,5057.2,30450.39,93378.41 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,50554,21480.2,2377.52,0.0,23857.72,0.0,4886.17,1849.53,6735.7,30593.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,9505,20499.0,7178.3,965.8,28643.1,4604.23,6212.25,2263.85,13080.33,41723.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,46546,71598.33,0.0,623.88,72222.21,14884.91,12422.11,5901.34,33208.36,105430.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21438,119175.84,31830.14,8846.36,159852.34,23579.89,12358.8,2724.15,38662.84,198515.18 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),7010,64977.89,19945.37,3898.68,88821.94,15038.69,7414.2,1391.21,23844.1,112666.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52970,5289.6,0.0,0.0,5289.6,0.0,2293.76,424.47,2718.23,8007.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,43373,96930.03,0.0,0.0,96930.03,19977.61,12424.5,7694.03,40096.14,137026.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49595,10925.04,0.0,1038.42,11963.46,0.0,905.14,926.21,1831.35,13794.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,31158,11760.0,0.0,852.6,12612.6,2637.76,1911.45,1016.52,5565.73,18178.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,17353,5523.3,228.45,0.0,5751.75,1238.88,812.37,445.12,2496.37,8248.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31116,3956.75,0.0,2.94,3959.69,0.0,1929.39,307.15,2236.54,6196.23 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1500,Administrative Secretarial,1551,"Secretary, Health Commission",25140,120333.93,0.0,0.0,120333.93,24215.37,12412.56,9660.01,46287.94,166621.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24900,356.5,0.0,17.36,373.86,0.0,137.38,28.97,166.35,540.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52794,1865.5,0.0,0.0,1865.5,0.0,857.17,144.67,1001.84,2867.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",4613,115809.92,0.0,0.0,115809.92,23256.96,12424.5,26777.39,62458.85,178268.77 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,1827,67519.56,12005.57,8339.62,87864.75,15003.96,12352.82,6959.25,34316.03,122180.78 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),34349,177252.59,0.0,1500.0,178752.59,35888.22,12328.92,10765.01,58982.15,237734.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,20472,96145.61,2550.74,3240.79,101937.14,24159.53,12223.38,1687.73,38070.64,140007.78 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,45121,5536.25,1003.41,0.0,6539.66,0.0,1373.86,507.58,1881.44,8421.1 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,40707,7590.26,0.0,0.0,7590.26,1554.52,2317.64,598.35,4470.51,12060.77 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4202,Assessment Clerk,24191,58101.02,0.0,624.0,58725.02,12103.58,12424.5,4822.71,29350.79,88075.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,50040,5515.46,0.0,0.0,5515.46,0.0,1223.03,427.0,1650.03,7165.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51501,96.43,0.0,2.34,98.77,0.0,41.82,7.66,49.48,148.25 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,25913,107769.4,0.0,10308.31,118077.71,21940.77,12424.5,9064.47,43429.74,161507.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,30011,67261.03,0.0,0.0,67261.03,13862.82,12424.5,5526.83,31814.15,99075.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,25204,61615.55,0.0,622.79,62238.34,12825.55,12400.31,5159.7,30385.56,92623.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,35709,77337.55,0.0,0.0,77337.55,15932.92,12167.11,6128.45,34228.48,111566.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1719,1659.89,0.0,0.0,1659.89,0.0,719.79,128.51,848.3,2508.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,46189,62811.01,31626.9,15742.33,110180.24,15203.09,12424.5,8946.63,36574.22,146754.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,44609,63887.04,3379.03,3256.64,70522.71,13485.68,12424.5,5571.7,31481.88,102004.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1957,52807.9,1106.33,4120.96,58035.19,0.0,0.0,4590.15,4590.15,62625.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,10205,6133.5,0.0,0.0,6133.5,1375.74,1385.81,510.34,3271.89,9405.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38861,2314.2,0.0,3.51,2317.71,0.0,1003.51,186.9,1190.41,3508.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5266,111854.64,2379.99,19673.76,133908.39,18762.57,11027.94,9671.63,39462.14,173370.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,47929,54684.9,1306.8,1366.7,57358.4,12464.35,12424.5,4655.11,29543.96,86902.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49138,93615.99,24250.75,14144.25,132010.99,20170.61,12269.93,2251.12,34691.66,166702.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,48126,63142.39,0.0,2637.94,65780.33,13596.91,8416.4,5128.69,27142.0,92922.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33679,112685.47,14424.06,16872.19,143981.72,22330.91,12424.5,2406.78,37162.19,181143.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,34522,50969.09,377.36,444.01,51790.46,11562.25,10901.43,4218.01,26681.69,78472.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,52073,116976.0,0.0,0.0,116976.0,23541.49,12424.51,9232.25,45198.25,162174.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36966,25622.08,0.0,3976.1,29598.18,0.0,1990.31,2294.49,4284.8,33882.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,470,1966.13,0.0,21.56,1987.69,0.0,958.72,154.2,1112.92,3100.61 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,43427,5171.2,0.0,0.0,5171.2,962.36,1146.88,419.5,2528.74,7699.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,23263,54444.81,0.0,0.0,54444.81,13036.17,12424.5,4616.69,30077.36,84522.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,37518,95259.4,0.0,9313.26,104572.66,20039.16,12424.5,8637.43,41101.09,145673.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,43996,13050.4,0.0,160.0,13210.4,2458.46,2389.33,1042.57,5890.36,19100.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,17452,76338.0,0.0,1716.21,78054.21,16089.02,12424.5,6418.3,34931.82,112986.03 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,19693,93126.6,34902.44,9719.46,137748.5,20741.36,12352.82,10067.31,43161.49,180909.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45912,120568.87,1023.91,5916.08,127508.86,0.0,8803.18,2013.69,10816.87,138325.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12092,30834.0,900.14,1866.12,33600.26,5988.67,4300.79,2670.04,12959.5,46559.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,6039,118047.67,0.0,0.0,118047.67,23756.04,12418.53,8990.2,45164.77,163212.44 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,39171,66988.87,6492.92,4992.11,78473.9,14321.93,12255.75,6216.18,32793.86,111267.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,23121,71311.05,488.42,624.0,72423.47,14826.41,12424.5,5784.24,33035.15,105458.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",35688,24068.95,0.0,0.0,24068.95,0.0,5662.7,1868.14,7530.84,31599.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,1675,37503.72,0.0,0.0,37503.72,6979.43,5241.59,2999.33,15220.35,52724.07 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2720,Janitorial Services Supervisor,1226,75605.09,3164.47,9769.83,88539.39,15808.82,12424.5,7240.33,35473.65,124013.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,44475,1445.0,0.0,0.0,1445.0,324.11,238.93,111.78,674.82,2119.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",49057,130329.28,17803.43,16291.26,164423.97,28844.13,15052.76,2640.65,46537.54,210961.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,48982,52971.01,7961.17,347.68,61279.86,10072.15,11779.38,4910.18,26761.71,88041.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11338,119463.82,33625.65,9512.85,162602.32,23633.48,12424.5,2700.85,38758.83,201361.15 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,49528,114907.62,0.0,0.0,114907.62,23104.4,12424.5,9416.45,44945.35,159852.97 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),50374,114391.3,0.0,24769.5,139160.8,23611.1,10990.9,10037.49,44639.49,183800.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,23567,47361.04,91.58,865.35,48317.97,10173.82,9240.07,3833.74,23247.63,71565.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,21454,82883.0,1330.56,3889.7,88103.26,17808.88,12424.5,7213.39,37446.77,125550.03 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,21519,2477.4,0.0,0.0,2477.4,543.54,167.26,191.8,902.6,3380.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,37955,96783.22,15869.48,18614.4,131267.1,28075.83,12298.46,2180.72,42555.01,173822.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,10978,64787.1,0.0,370.0,65157.1,13309.41,10489.12,5198.0,28996.53,94153.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,39370,58.58,0.0,0.0,58.58,0.0,17.92,4.55,22.47,81.05 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,1430,80075.11,6558.63,7657.53,94291.27,17621.99,9485.09,7812.47,34919.55,129210.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8689,54007.6,0.0,6565.38,60572.98,14038.77,12424.5,4844.92,31308.19,91881.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,19430,35574.0,3157.99,9618.54,48350.53,8695.63,5256.52,3958.64,17910.79,66261.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,15086,67239.54,0.0,0.0,67239.54,13857.99,12420.5,5525.13,31803.62,99043.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,9289,73352.99,8318.08,7185.9,88856.97,16135.34,15196.12,1434.0,32765.46,121622.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,862,23764.6,0.0,465.04,24229.64,0.0,5912.09,1878.42,7790.51,32020.15 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,2007,60510.18,0.0,611.54,61121.72,12581.73,12176.49,5040.56,29798.78,90920.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,15089,110354.0,11252.42,0.0,121606.42,22787.97,12424.51,9737.9,44950.38,166556.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,18415,68067.11,0.0,624.0,68691.11,14157.68,12424.5,5039.75,31621.93,100313.04 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,32083,111091.06,0.0,0.0,111091.06,25340.74,12424.5,1823.78,39589.02,150680.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,19814,41832.01,14930.09,4725.72,61487.82,9903.99,5734.38,4904.04,20542.41,82030.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,28334,61126.9,0.0,3154.17,64281.07,13143.1,12364.77,5052.46,30560.33,94841.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1995,18771.64,0.0,48.76,18820.4,0.0,0.0,1489.79,1489.79,20310.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11523,29180.92,3196.96,1070.93,33448.81,8040.68,5692.45,2676.7,16409.83,49858.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,11331,88831.02,95.51,600.0,89526.53,18420.39,12424.5,7373.67,38218.56,127745.09 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,26040,10514.55,0.0,0.0,10514.55,2358.42,1709.02,857.24,4924.68,15439.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2747,112680.08,41426.62,9635.94,163742.64,22350.66,12424.5,2744.67,37519.83,201262.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1827,Administrative Services Mgr,45349,103075.01,0.0,0.0,103075.01,21240.41,12424.5,8465.33,42130.24,145205.25 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,44541,88296.02,0.0,4982.4,93278.42,18337.86,12424.5,7742.56,38504.92,131783.34 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,37437,48010.0,6371.13,3782.01,58163.14,11925.08,12424.5,4531.86,28881.44,87044.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35219,64667.98,3052.0,2243.06,69963.04,18275.22,12740.79,5444.83,36460.84,106423.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29892,3161.28,0.0,587.74,3749.02,553.96,0.0,1249.02,1802.98,5552.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24206,10596.75,1796.75,226.24,12619.74,3049.85,3345.0,911.93,7306.78,19926.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,23324,24543.66,0.0,209.27,24752.93,959.02,8046.06,1948.58,10953.66,35706.59 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28798,56140.4,3361.02,998.04,60499.46,11706.31,12338.13,4749.92,28794.36,89293.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,46829,1392.58,0.0,46.59,1439.17,0.0,343.48,111.58,455.06,1894.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2514,Orthopedic Technician 1,8560,64546.61,0.0,1250.0,65796.61,13499.7,12424.5,5142.01,31066.21,96862.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,3600,35209.12,2106.65,4036.32,41352.09,7284.72,6611.39,3381.06,17277.17,58629.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,38149,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5038.54,30315.66,92674.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40334,113233.6,40731.11,19940.73,173905.44,25068.58,15196.12,2952.7,43217.4,217122.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,32484,129895.03,0.0,0.0,129895.03,26141.5,12424.5,9988.92,48554.92,178449.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,22289,156746.09,0.0,3135.72,159881.81,32154.78,12424.5,10546.46,55125.74,215007.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,4143,Principal Real Property Ofc,47620,141182.01,0.0,0.0,141182.01,28413.37,12424.5,10172.2,51010.07,192192.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23402,69184.43,3006.56,6063.07,78254.06,14684.22,12235.75,6388.24,33308.21,111562.27 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,51548,61282.31,81.03,0.0,61363.34,12395.25,10106.86,4708.54,27210.65,88573.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),40473,23112.01,1006.64,2040.13,26158.78,4101.53,1911.46,441.02,6454.01,32612.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,34797,53917.7,2870.8,4643.45,61431.95,13436.72,12376.71,4869.17,30682.6,92114.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16974,22064.4,0.0,816.3,22880.7,2264.8,5925.53,1788.92,9979.25,32859.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9146,26936.0,7808.04,2903.86,37647.9,5362.38,4348.58,2968.57,12679.53,50327.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,424,65333.47,0.0,821.53,66155.0,13588.81,12375.22,5468.8,31432.83,97587.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3186,61526.09,750.2,7977.33,70253.62,14119.37,10883.4,5486.87,30489.64,100743.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",47377,45141.67,0.0,2920.48,48062.15,10268.64,4587.51,799.16,15655.31,63717.46 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,44144,120111.02,0.0,6030.66,126141.68,24172.55,12424.5,9885.78,46482.83,172624.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,26745,4545.95,0.0,48.5,4594.45,1019.66,526.25,393.82,1939.73,6534.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,7564,30016.0,0.0,0.0,30016.0,6732.56,3822.92,2439.12,12994.6,43010.6 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,17433,129895.05,0.0,99.3,129994.35,26141.5,12424.5,9936.66,48502.66,178497.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,1729,62811.03,0.0,1994.0,64805.03,13303.46,12424.5,5295.4,31023.36,95828.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,34495,138635.9,20277.68,14894.34,173807.92,27392.94,12424.51,2916.49,42733.94,216541.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42077,3087.75,0.0,7.16,3094.91,0.0,1030.4,240.04,1270.44,4365.35 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,39366,69247.04,0.0,624.0,69871.04,14400.86,12424.5,5797.32,32622.68,102493.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,50034,14644.0,0.0,842.03,15486.03,3284.64,1911.47,1242.95,6439.06,21925.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,49742,86663.0,5133.56,390.0,92186.56,17934.44,12424.5,7228.72,37587.66,129774.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3215,Aquatics Facility Supervisor,29896,74010.73,0.0,1628.01,75638.74,15611.94,12233.24,6220.78,34065.96,109704.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,24514,44587.28,0.0,452.4,45039.68,9626.09,9007.77,3727.92,22361.78,67401.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",19774,7282.05,0.0,0.0,7282.05,0.0,1541.12,563.78,2104.9,9386.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,9046,54124.12,0.0,2440.0,56564.12,12654.78,12424.5,4676.6,29755.88,86320.0 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2533,Emergency Med Svcs Agency Spec,22024,112720.4,2190.54,1302.68,116213.62,22807.92,12418.54,9579.24,44805.7,161019.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,16466,18178.63,54.83,360.0,18593.46,0.0,5937.48,1511.23,7448.71,26042.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10504,47267.6,1081.3,5559.71,53908.61,12023.11,12376.71,4339.53,28739.35,82647.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,11280,74438.96,0.0,1500.0,75938.96,15610.93,12424.51,6292.41,34327.85,110266.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7235,Transit Power Line Sprv1,10985,44369.96,22204.55,6228.85,72803.36,10562.21,4979.54,5803.44,21345.19,94148.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,45196,57219.45,0.0,5571.05,62790.5,12748.82,11325.35,5207.2,29281.37,92071.87 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,51677,97765.53,3416.06,14539.14,115720.73,27311.2,12424.51,1969.04,41704.75,157425.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35348,11491.9,0.0,0.0,11491.9,1751.61,4922.02,937.25,7610.88,19102.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31669,4574.65,0.0,13.13,4587.78,0.0,2272.85,355.72,2628.57,7216.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,29456,100761.07,108.31,2001.26,102870.64,20986.37,12424.51,8285.3,41696.18,144566.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,17578,17676.0,0.0,144.0,17820.0,3997.02,2867.19,1474.52,8338.73,26158.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51632,69923.95,16595.47,7687.44,94206.86,21300.74,13776.98,7151.81,42229.53,136436.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,8111,85368.02,189.51,0.0,85557.53,17594.59,12424.5,6844.77,36863.86,122421.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35877,9719.33,468.36,93.82,10281.51,2342.91,2972.68,777.56,6093.15,16374.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7635,51156.03,429.77,0.0,51585.8,8055.09,11812.78,4130.43,23998.3,75584.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4088,11275.08,621.77,2908.08,14804.93,3286.51,2754.78,1110.0,7151.29,21956.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10508,63642.85,0.0,815.62,64458.47,13280.26,12376.72,5091.97,30748.95,95207.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,48882,19230.0,101.29,1254.4,20585.69,3609.98,3345.05,1666.41,8621.44,29207.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,2437,15612.26,1235.89,2517.88,19366.03,2993.29,1911.46,1512.37,6417.12,25783.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,24042,67257.81,0.0,1743.97,69001.78,14221.32,12423.9,5464.46,32109.68,101111.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29029,7294.25,0.0,22.92,7317.17,0.0,2434.13,567.42,3001.55,10318.72 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,15135,10400.5,377.44,0.0,10777.94,1935.54,1481.39,864.96,4281.89,15059.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,28909,68067.05,0.0,624.0,68691.05,14157.65,12424.5,5602.29,32184.44,100875.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",339,94388.0,12664.59,721.2,107773.79,19494.18,12424.53,8850.43,40769.14,148542.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2935,"Sr Marriage, Fam & Cld Cnslr",16848,97039.63,0.0,2001.6,99041.23,20417.48,12376.71,8083.75,40877.94,139919.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7204,Chief Water Service Inspector,34286,129811.01,7368.62,24293.56,161473.19,28197.83,12424.5,10463.08,51085.41,212558.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,35010,118104.1,0.0,0.0,118104.1,23768.42,12424.5,9100.82,45293.74,163397.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52645,93357.79,34350.54,14550.45,142258.78,21031.34,12540.86,2334.19,35906.39,178165.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,10154,78959.97,2917.12,2151.94,84029.03,16388.34,11871.98,7831.37,36091.69,120120.72 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,9551,78963.11,0.0,624.0,79587.11,16403.16,12424.5,6543.04,35370.7,114957.81 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,24451,63354.27,0.0,0.0,63354.27,13038.84,12418.53,5112.11,30569.48,93923.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,182,128764.17,2083.16,16738.28,147585.61,27965.35,11056.61,10244.69,49266.65,196852.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46917,0.0,0.0,250.0,250.0,0.0,68.5,0.0,68.5,318.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8138,49274.32,2042.93,8824.28,60141.53,1841.69,0.0,5778.36,7620.05,67761.58 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,45550,2052.18,0.0,0.0,2052.18,282.72,128.42,99.3,510.44,2562.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,16282,36430.6,0.0,2635.02,39065.62,8742.95,8649.36,3175.85,20568.16,59633.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,781,56049.96,0.0,0.0,56049.96,12512.33,12418.52,4559.36,29490.21,85540.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14961,119465.57,21668.89,17407.09,158541.55,23627.21,12424.5,2702.92,38754.63,197296.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,23299,64685.0,0.0,0.0,64685.0,12981.46,9557.31,5061.15,27599.92,92284.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",55,130976.5,30563.46,7858.59,169398.55,27288.6,12424.5,2885.33,42598.43,211996.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,48085,64919.07,2053.19,10.0,66982.26,13360.59,12200.8,5300.31,30861.7,97843.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,21473,118026.8,0.0,0.0,118026.8,23747.16,12416.32,9455.49,45618.97,163645.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36993,67979.96,12311.97,1033.34,81325.27,18919.39,13397.68,6220.76,38537.83,119863.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,5841,73957.05,2941.86,0.0,76898.91,15242.92,12424.5,6086.2,33753.62,110652.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,26003,160332.32,0.0,1223.17,161555.49,32157.69,11137.73,10469.55,53764.97,215320.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,13175,54124.0,0.0,624.0,54748.0,12250.24,12424.5,4171.79,28846.53,83594.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,10651,101104.05,36512.46,19518.97,157135.48,21188.4,9079.44,2673.08,32940.92,190076.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,14461,93281.03,2432.99,2619.67,98333.69,19587.43,12424.5,8133.72,40145.65,138479.34 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,13611,72752.87,0.0,3000.0,75752.87,14973.72,12424.5,6294.34,33692.56,109445.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34982,67642.23,25021.64,6526.95,99190.82,20317.0,13328.57,7756.92,41402.49,140593.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,46043,47698.3,4040.16,4780.71,56519.17,9906.62,8840.51,1486.79,20233.92,76753.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21097,122701.02,2107.99,20239.43,145048.44,26903.54,10862.42,9482.97,47248.93,192297.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,6950,119279.32,0.0,5052.4,124331.72,24982.88,9939.61,9774.84,44697.33,169029.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,14394,75698.22,955.81,2014.78,78668.81,15967.4,12439.91,6444.22,34851.53,113520.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50972,5670.5,0.0,104.32,5774.82,0.0,1887.57,447.66,2335.23,8110.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7200,Supervisory-Labor & Trade,7208,Heavy Equipment Ops Sprv,12343,20940.01,0.0,22905.74,43845.75,5053.65,2389.33,3468.56,10911.54,54757.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22205,15383.27,0.0,677.39,16060.66,577.98,6646.75,1319.35,8544.08,24604.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,8245,112707.92,3932.33,15125.65,131765.9,24930.62,12366.68,2197.91,39495.21,171261.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",33874,17498.8,864.66,308.48,18671.94,0.0,2317.67,1445.59,3763.26,22435.2 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),53002,98998.8,0.0,5730.01,104728.81,21659.75,7120.2,8362.44,37142.39,141871.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31768,13761.64,0.0,2387.94,16149.58,1494.1,0.0,474.03,1968.13,18117.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,51124,11912.61,0.0,595.61,12508.22,0.0,3201.7,968.72,4170.42,16678.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45279,2076.39,0.0,0.0,2076.39,0.0,1012.48,161.09,1173.57,3249.96 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,6407,2797.8,230.4,0.0,3028.2,0.0,661.55,235.03,896.58,3924.78 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8436,Chief Adult Probation Officer,15156,5742.77,0.0,32815.84,38558.61,1264.56,334.51,571.5,2170.57,40729.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51075,113233.6,39819.46,16939.07,169992.13,24759.46,15196.12,2854.2,42809.78,212801.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,41152,58782.03,631.97,0.0,59414.0,12115.29,12424.5,4785.88,29325.67,88739.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,28104,44435.03,0.0,840.0,45275.03,10498.17,10226.32,3726.96,24451.45,69726.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,21266,11782.04,0.0,0.0,11782.04,2590.86,2858.24,936.8,6385.9,18167.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45043,46994.4,16588.09,5677.21,69259.7,12062.88,12424.5,5433.37,29920.75,99180.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22730,34865.6,0.0,1247.3,36112.9,0.0,3058.22,1396.1,4454.32,40567.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,645,43256.8,18126.29,5522.09,66905.18,10354.49,5909.88,5449.13,21713.5,88618.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22670,12238.0,0.0,1988.72,14226.72,6478.91,956.21,456.84,7891.96,22118.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40595,15758.6,41.33,1515.32,17315.25,3118.78,6833.48,1392.79,11345.05,28660.3 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,47286,93681.01,29700.84,7190.09,130571.94,20040.54,12424.5,9944.89,42409.93,172981.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19709,38818.49,2412.76,920.52,42151.77,10393.48,12119.26,2981.28,25494.02,67645.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,37393,138704.83,13686.42,15601.02,167992.27,27975.91,12424.5,2851.79,43252.2,211244.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9321,52447.52,2168.17,2577.51,57193.2,14178.5,11872.5,4364.49,30415.49,87608.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,23193,61735.01,0.0,0.0,61735.01,12724.01,12424.5,5119.87,30268.38,92003.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,31406,13135.0,935.87,0.0,14070.87,2946.2,2389.33,1117.98,6453.51,20524.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50796,37820.3,0.0,0.0,37820.3,7057.55,5782.18,2916.07,15755.8,53576.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8597,0.0,0.0,350.32,350.32,0.0,68.5,7.67,76.17,426.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",720,131577.13,53581.54,18317.13,203475.8,29443.16,15196.12,3468.73,48108.01,251583.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,378,128691.34,103575.22,8361.18,240627.74,26989.59,14947.22,3865.45,45802.26,286430.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46286,0.0,0.0,250.0,250.0,0.0,34.25,0.0,34.25,284.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,7385,2639.29,0.0,871.53,3510.82,609.89,1144.49,286.48,2040.86,5551.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,26819,96374.04,0.0,0.0,96374.04,19382.56,10668.36,7903.87,37954.79,134328.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,18071,108038.0,7718.79,14937.38,130694.17,24510.14,12424.5,9881.09,46815.73,177509.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,5952,18920.0,3772.43,192.0,22884.43,4286.8,3822.92,1886.75,9996.47,32880.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18728,74759.77,0.0,605.28,75365.05,15525.13,12051.47,6258.03,33834.63,109199.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,13106,13229.81,2082.86,9295.33,24608.0,3344.46,2633.1,2010.22,7987.78,32595.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",47377,105092.33,7779.28,11320.25,124191.86,21829.96,10608.62,2083.39,34521.97,158713.83 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0964,Dept Head IV,19281,243305.49,0.0,0.0,243305.49,48905.59,12424.5,19162.15,80492.24,323797.73 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,42099,18343.5,108.55,0.0,18452.05,0.0,4390.39,1430.44,5820.83,24272.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,48207,4028.0,0.0,0.0,4028.0,749.61,477.86,317.18,1544.65,5572.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,31923,81210.3,11850.39,3757.86,96818.55,17347.41,10990.9,7713.52,36051.83,132870.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,39899,866.7,0.0,8.26,874.96,0.0,288.21,67.87,356.08,1231.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,13606,69866.26,0.0,1080.0,70946.26,14619.93,12418.11,5628.65,32666.69,103612.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16728,135821.83,0.0,8156.63,143978.46,26055.87,11656.93,9889.57,47602.37,191580.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,22241,34084.97,960.07,1813.64,36858.68,6054.98,3345.05,631.54,10031.57,46890.25 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,10287,106920.52,0.0,0.0,106920.52,22030.51,12424.5,8535.07,42990.08,149910.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,25475,10663.05,0.0,65.93,10728.98,0.0,3152.42,879.17,4031.59,14760.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31598,109763.57,3441.3,26016.5,139221.37,0.0,0.0,2383.56,2383.56,141604.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",17821,90695.39,8605.36,7255.63,106556.38,20461.63,7645.85,1776.9,29884.38,136440.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,39952,85368.02,25595.64,1664.0,112627.66,17936.75,12424.5,9188.62,39549.87,152177.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,3748,195530.2,0.0,0.0,195530.2,39350.73,12424.5,19436.15,71211.38,266741.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6454,112906.25,473.1,16491.15,129870.5,0.0,0.0,9448.61,9448.61,139319.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4846,112692.99,404.44,11815.16,124912.59,22303.27,12424.5,1759.87,36487.64,161400.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34660,51477.0,1972.51,3675.5,57125.01,13224.54,12424.5,4669.61,30318.65,87443.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45765,34127.89,3752.79,1220.75,39101.43,9073.85,10649.16,2983.51,22706.52,61807.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,15667,95879.4,0.0,0.0,95879.4,19759.05,12424.51,7556.45,39740.01,135619.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,44891,11787.3,764.3,5915.41,18467.01,3141.54,3010.55,1470.89,7622.98,26089.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,23042,32064.0,0.0,0.0,32064.0,7191.96,5734.39,2593.49,15519.84,47583.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31915,1263.2,0.0,0.0,1263.2,1007.06,95.58,50.5,1153.14,2416.34 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,4921,91392.23,0.0,0.0,91392.23,18370.42,10145.68,6868.54,35384.64,126776.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,15046,46321.03,0.0,0.0,46321.03,2987.68,9796.23,3705.47,16489.38,62810.41 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,52784,91221.24,0.0,0.0,91221.24,18761.72,12418.53,7352.55,38532.8,129754.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21131,2853.98,0.0,0.0,2853.98,458.06,215.04,88.93,762.03,3616.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30595,1969.51,0.0,9875.53,11845.04,589.47,391.67,873.18,1854.32,13699.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,21336,67729.0,25.05,0.0,67754.05,13959.24,12424.5,5501.39,31885.13,99639.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,11362,77967.51,0.0,0.0,77967.51,16037.4,12424.5,6394.79,34856.69,112824.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,34487,1340.81,0.0,20.97,1361.78,0.0,397.23,226.02,623.25,1985.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,16802,7129.75,0.0,0.0,7129.75,0.0,2359.46,553.1,2912.56,10042.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,14235,53989.0,0.0,0.0,53989.0,11127.6,6212.25,4225.17,21565.02,75554.02 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,52698,113623.05,0.0,0.0,113623.05,22866.77,12424.5,9194.91,44486.18,158109.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,30739,8081.71,0.0,185.45,8267.16,2028.09,2413.22,667.61,5108.92,13376.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45414,10384.2,0.0,692.31,11076.51,0.0,859.62,857.78,1717.4,12793.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3201,2148.9,0.0,63.23,2212.13,570.73,931.84,180.83,1683.4,3895.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,13761,54803.74,6846.74,1295.95,62946.43,12304.73,12328.93,4889.37,29523.03,92469.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,35873,140547.13,2468.58,10956.36,153972.07,27776.81,12424.5,2623.81,42825.12,196797.19 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,15009,42318.21,1068.66,1452.31,44839.18,10136.9,10314.42,3586.01,24037.33,68876.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,19670,58413.01,1103.46,660.0,60176.47,13168.17,12424.5,4887.86,30480.53,90657.0 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,18155,193809.51,0.0,0.0,193809.51,39004.56,12424.5,18338.39,69767.45,263576.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28192,11998.0,0.0,235.89,12233.89,0.0,3349.53,948.67,4298.2,16532.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27056,149099.01,0.0,9683.03,158782.04,31900.19,12424.5,10431.08,54755.77,213537.81 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,5624,96930.03,0.0,0.0,96930.03,19974.08,12424.5,7968.2,40366.78,137296.81 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,33456,67261.02,0.0,0.0,67261.02,13862.82,12424.5,5250.66,31537.98,98799.0 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,39001,99654.02,940.35,0.0,100594.37,22731.77,12424.5,247.41,35403.68,135998.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7933,18515.2,0.0,3000.28,21515.48,5935.64,0.0,3125.38,9061.02,30576.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7555,127804.3,0.0,5314.25,133118.55,0.0,11115.1,9577.88,20692.98,153811.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24082,64539.6,23646.14,634.34,88820.08,17828.49,12718.81,6684.84,37232.14,126052.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,50777,37862.71,0.0,0.0,37862.71,7046.24,5782.18,2977.76,15806.18,53668.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30133,663.0,0.0,0.0,663.0,0.0,358.4,51.32,409.72,1072.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,47680,117135.32,32913.38,12017.78,162066.48,23184.68,12424.5,2715.42,38324.6,200391.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29027,1764.0,0.0,0.0,1764.0,0.0,860.16,136.85,997.01,2761.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,41230,62498.48,5922.97,3250.71,71672.16,13317.79,12430.47,5592.46,31340.72,103012.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,19260,136466.0,3353.2,20998.34,160817.54,36064.55,12424.5,2729.24,51218.29,212035.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2005,25478.88,10717.71,308.22,36504.81,6248.51,10987.92,3185.42,20421.85,56926.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8159,Child Support Officer III,31104,93281.02,0.0,0.0,93281.02,19225.75,12424.5,7140.18,38790.43,132071.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,47334,112582.0,2907.9,0.0,115489.9,22703.36,12424.42,9086.79,44214.57,159704.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,48185,49432.82,1193.16,5.14,50631.12,11858.64,11850.03,4103.95,27812.62,78443.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,43692,59777.74,24.97,539.54,60342.25,12448.12,10742.71,4987.56,28178.39,88520.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24938,17887.2,0.0,917.33,18804.53,0.0,4730.87,1459.53,6190.4,24994.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10071,73360.13,29882.03,6019.69,109261.85,16108.73,15196.12,1827.75,33132.6,142394.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39434,97307.93,21738.62,3884.68,122931.23,20216.79,12424.5,2004.71,34646.0,157577.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,37995,27965.88,0.0,0.0,27965.88,6335.02,6923.08,2215.28,15473.38,43439.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15049,16868.33,1335.7,31169.25,49373.28,3304.03,1414.42,2705.29,7423.74,56797.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1663,Patient Accounts Supervisor,40800,87531.03,3732.89,0.0,91263.92,18040.64,12424.5,7556.37,38021.51,129285.43 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,13462,44825.0,0.0,0.0,44825.0,10054.22,5256.52,3693.97,19004.71,63829.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,23792,16427.5,0.0,574.84,17002.34,0.0,2389.33,1319.65,3708.98,20711.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,31244,6947.52,0.0,679.16,7626.68,1814.34,1689.56,644.54,4148.44,11775.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",12708,135109.1,23479.1,13510.9,172099.1,29211.82,12424.5,2933.88,44570.2,216669.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",655,13322.2,0.0,0.0,13322.2,0.0,2819.41,1033.58,3852.99,17175.19 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,42136,118411.0,0.0,0.0,118411.0,23830.24,12424.5,9200.26,45455.0,163866.0 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,13516,73947.84,0.0,1200.0,75147.84,15492.35,12200.14,5711.15,33403.64,108551.48 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,2217,87408.14,3495.37,0.0,90903.51,19949.62,12424.5,1546.04,33920.16,124823.67 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,28050,9463.59,0.0,2886.96,12350.55,0.0,0.0,179.08,179.08,12529.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42593,45892.15,3446.98,2303.1,51642.23,257.85,4043.46,3706.75,8008.06,59650.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,38024,117140.94,4894.66,9553.92,131589.52,23164.17,12424.5,2240.38,37829.05,169418.57 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,50470,79249.71,0.0,0.0,79249.71,16331.86,12424.5,6572.68,35329.04,114578.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42533,9426.55,0.0,462.96,9889.51,0.0,4026.02,796.13,4822.15,14711.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37985,56531.0,0.0,4118.4,60649.4,11659.55,12424.5,4713.67,28797.72,89447.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,21666,62370.57,268.5,4786.24,67425.31,13151.57,11032.72,5304.15,29488.44,96913.75 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,31654,111625.4,36220.63,31273.77,179119.8,24311.42,12299.06,10744.74,47355.22,226475.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,27450,45167.98,0.0,1161.18,46329.16,10910.77,10910.27,3865.9,25686.94,72016.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50987,39029.96,1840.44,1452.36,42322.76,866.08,3435.25,3230.34,7531.67,49854.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22770,70245.0,4090.65,4013.75,78349.4,14910.17,12424.5,6196.04,33530.71,111880.11 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2785,Asst General Services Manager,27841,62064.31,0.0,2946.47,65010.78,13200.93,10242.15,13241.06,36684.14,101694.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,12556,1543.5,0.0,0.0,1543.5,287.25,238.93,127.45,653.63,2197.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,7360,51547.7,0.0,6344.94,57892.64,13482.25,12424.5,4731.01,30637.76,88530.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,52887,18290.0,8161.93,3310.5,29762.43,4102.45,2389.34,2431.14,8922.93,38685.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,3452,82935.03,0.0,0.0,82935.03,17093.22,12424.5,6629.0,36146.72,119081.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1861,70696.69,0.0,14017.21,84713.9,0.0,0.0,6702.49,6702.49,91416.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,19228,51332.02,0.0,0.0,51332.02,9657.12,6212.25,4123.04,19992.41,71324.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25965,49888.5,61.55,2583.37,52533.42,9467.81,5256.52,4220.53,18944.86,71478.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3436,Arborist Technician Supervisor,4445,91653.02,3752.46,6107.76,101513.24,18889.85,12424.52,8130.98,39445.35,140958.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8260,67254.95,19991.26,6418.95,93665.16,20202.99,13252.82,7325.19,40781.0,134446.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27825,66102.01,482.82,284.3,66869.13,13689.37,12424.5,5441.91,31555.78,98424.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7597,52328.1,0.0,0.0,52328.1,0.0,4539.72,882.04,5421.76,57749.86 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35824,7167.6,0.0,0.0,7167.6,1576.16,2305.7,580.67,4462.53,11630.13 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,50194,48192.02,0.0,1280.0,49472.02,10792.17,7645.85,3968.01,22406.03,71878.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7146,42845.74,1557.63,1555.81,45959.18,11650.15,10297.76,3756.48,25704.39,71663.57 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2551,Mental Hlth Treatment Spec,37588,91968.68,0.0,0.0,91968.68,19034.85,11910.8,7386.58,38332.23,130300.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,9381,56155.05,0.0,200.0,56355.05,11411.13,10268.14,4616.55,26295.82,82650.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39729,24374.32,0.0,1742.64,26116.96,6262.17,6200.3,2232.99,14695.46,40812.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,40228,84997.85,8211.16,1929.81,95138.82,17228.79,10035.17,727.87,27991.83,123130.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,36777,16732.0,0.0,320.0,17052.0,0.0,4061.86,1373.66,5435.52,22487.52 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,374C,Admin Analyst 3,13992,78488.54,0.0,4821.5,83310.04,16051.38,10216.41,6742.53,33010.32,116320.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,31892,170970.0,0.0,250.0,171220.0,34407.98,12424.5,10498.61,57331.09,228551.09 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,35556,21097.37,0.0,0.0,21097.37,4020.34,2829.86,1770.91,8621.11,29718.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,22386,63887.03,2072.81,1439.11,67398.95,13474.34,12424.5,5563.68,31462.52,98861.47 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,9577,28843.76,0.0,0.0,28843.76,803.52,7544.3,2235.23,10583.05,39426.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11748,18325.0,0.0,0.0,18325.0,0.0,4300.79,1472.77,5773.56,24098.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,50457,74165.08,0.0,624.0,74789.08,15414.46,12424.5,6156.12,33995.08,108784.16 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48602,56531.0,273.73,624.0,57428.73,11788.47,12424.5,4709.49,28922.46,86351.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15195,3691.7,0.0,0.0,3691.7,0.0,1600.85,293.28,1894.13,5585.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,35998,9815.2,0.0,0.0,9815.2,2158.37,2580.47,754.17,5493.01,15308.21 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42474,19442.0,0.0,0.0,19442.0,4275.3,4778.65,1544.89,10598.84,30040.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27169,42838.35,0.0,4469.87,47308.22,0.0,0.0,3744.09,3744.09,51052.31 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,40859,81116.01,0.0,0.0,81116.01,16718.53,12424.5,6621.83,35764.86,116880.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27091,119467.34,3472.56,7630.14,130570.04,24090.21,12424.51,1621.7,38136.42,168706.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,4496,59732.82,24552.05,12163.66,96448.53,14331.48,11814.93,7869.41,34015.82,130464.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,46122,119438.34,0.0,3731.06,123169.4,24642.06,12424.5,27304.18,64370.74,187540.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,27891,2120.65,0.0,0.0,2120.65,0.0,991.57,164.59,1156.16,3276.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8214,64008.48,19771.96,6873.15,90653.59,19422.82,12609.2,7081.34,39113.36,129766.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21539,5470.31,0.0,15.19,5485.5,0.0,1884.57,425.71,2310.28,7795.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,49297,53842.15,43825.09,2558.85,100226.09,11326.31,7635.38,7620.02,26581.71,126807.8 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,4859,25154.04,0.0,679.1,25833.14,6199.3,6212.25,2004.65,14416.2,40249.34 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,20007,55972.14,0.0,1020.0,56992.14,11685.18,11331.26,4603.58,27620.02,84612.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26104,22036.76,0.0,417.48,22454.24,0.0,5610.44,1740.67,7351.11,29805.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,47243,88150.91,0.0,5068.97,93219.88,18254.09,12404.07,7503.85,38162.01,131381.89 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,43683,144601.06,0.0,0.0,144601.06,28951.87,12424.5,17479.85,58856.22,203457.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,51396,53973.0,14293.27,3145.21,71411.48,12947.83,12424.5,5806.06,31178.39,102589.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34471,51239.68,0.0,3122.06,54361.74,10153.61,5582.3,4543.43,20279.34,74641.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,16709,57042.69,4673.19,2210.34,63926.22,12215.7,9557.31,5372.62,27145.63,91071.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3518,145911.81,0.0,8398.88,154310.69,31064.83,12356.76,10336.98,53758.57,208069.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,39598,74671.81,8973.99,2789.09,86434.89,16055.89,11468.77,6825.66,34350.32,120785.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,40852,45536.58,912.34,2917.04,49365.96,10924.99,12400.55,3935.7,27261.24,76627.2 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8169,Legislative Asst City Atty Ofc,49985,2627.0,0.0,0.0,2627.0,589.24,477.86,203.39,1270.49,3897.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,10279,83670.42,0.0,11860.49,95530.91,19039.5,9603.66,7649.62,36292.78,131823.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,32411,92834.15,0.0,0.0,92834.15,19136.44,12365.79,7410.27,38912.5,131746.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,14932,31305.02,119.59,11037.37,42461.98,5553.18,2389.33,95.06,8037.57,50499.55 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,3434,38935.69,2666.09,2737.22,44339.0,7868.9,7343.48,3704.19,18916.57,63255.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,4007,31842.04,704.83,77541.42,110088.29,7283.92,2867.19,88.19,10239.3,120327.59 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,26297,59065.8,2353.66,6851.31,68270.77,13126.17,11946.63,5428.82,30501.62,98772.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22189,12773.98,0.0,506.07,13280.05,0.0,3706.41,1028.14,4734.55,18014.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3334,64410.58,0.0,2124.03,66534.61,0.0,4999.67,1114.69,6114.36,72648.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,53059,4172.2,0.0,0.0,4172.2,0.0,1099.09,323.83,1422.92,5595.12 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14886,97582.69,42985.34,13654.87,154222.9,27074.39,12400.61,2583.81,42058.81,196281.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7079,62348.35,4171.18,8116.19,74635.72,13902.57,11029.73,5874.6,30806.9,105442.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7254,Automotive Machinist Sprv 1,35623,107816.0,12203.95,12382.07,132402.02,24546.88,12424.5,9946.87,46918.25,179320.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,34972,176257.16,0.0,0.0,176257.16,35465.51,12424.5,10772.01,58662.02,234919.18 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",30605,56943.03,0.0,11192.67,68135.7,12165.57,9079.44,5583.55,26828.56,94964.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,15055,9790.33,0.0,0.0,9790.33,0.0,3628.8,793.6,4422.4,14212.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",17609,92924.54,0.0,1480.0,94404.54,19446.15,12376.71,7534.53,39357.39,133761.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,3071,84644.03,11628.49,4796.9,101069.42,17787.13,12424.5,8126.2,38337.83,139407.25 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,1446,5784.19,2604.19,242.25,8630.63,0.0,1726.29,669.88,2396.17,11026.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,47714,24741.0,0.0,0.0,24741.0,0.0,4014.06,1868.33,5882.39,30623.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,37578,29587.15,7100.19,5294.65,41981.99,7890.91,7919.72,3382.82,19193.45,61175.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2924,Medical Social Work Supervisor,5598,64453.06,0.0,0.0,64453.06,12866.87,7645.85,5292.75,25805.47,90258.53 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1830,Perf Analyst III Project Mgr,39813,129696.41,0.0,0.0,129696.41,26041.27,12322.95,9991.82,48356.04,178052.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20100,39339.06,90.03,1739.5,41168.59,10050.08,7866.45,3122.92,21039.45,62208.04 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,39477,93634.8,1790.2,7631.4,103056.4,19881.45,0.0,8517.91,28399.36,131455.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18811,33648.11,13009.59,368.32,47026.02,8158.69,12377.43,3755.76,24291.88,71317.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,48068,41715.67,0.0,725.99,42441.66,8759.84,6848.41,3340.33,18948.58,61390.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,45648,81863.47,0.0,0.0,81863.47,16870.2,12424.5,6408.64,35703.34,117566.81 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,28198,65592.01,0.0,3347.86,68939.87,13885.58,12424.5,5453.22,31763.3,100703.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,46045,70216.79,30622.6,10225.28,111064.67,15531.92,12419.54,9034.3,36985.76,148050.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8204,Institutional Police Officer,18980,72308.72,31549.69,6444.93,110303.34,17960.21,12208.03,531.25,30699.49,141002.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3557,3683.19,834.06,298.39,4815.64,1046.24,1162.65,347.16,2556.05,7371.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35166,61214.8,0.0,5923.55,67138.35,12005.4,6269.59,4973.41,23248.4,90386.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,1850,62811.0,68.98,6132.09,69012.07,13662.34,12424.5,5580.77,31667.61,100679.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40369,145708.1,0.0,250.0,145958.1,29308.35,12142.62,10216.99,51667.96,197626.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43754,3641.6,0.0,37.47,3679.07,0.0,1529.17,293.26,1822.43,5501.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6275,85612.91,0.0,5785.22,91398.13,18141.78,7816.39,7540.78,33498.95,124897.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12672,17521.8,30.99,3.51,17556.3,484.92,7598.07,1375.58,9458.57,27014.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,10580,43982.4,18974.32,25330.09,88286.81,10963.99,6498.97,7074.74,24537.7,112824.51 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8259,Criminalist I,5186,83072.01,8791.48,0.0,91863.49,17097.97,12424.51,7366.69,36889.17,128752.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,15443,39496.33,0.0,0.0,39496.33,1335.87,7592.09,3123.79,12051.75,51548.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,19906,78181.1,4843.04,1981.2,85005.34,16014.05,11420.99,6694.36,34129.4,119134.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,51605,45440.0,0.0,0.0,45440.0,10843.46,11468.77,3689.27,26001.5,71441.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51203,71424.23,28217.99,10319.71,109961.93,22425.15,14073.86,8575.03,45074.04,155035.97 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),34775,155098.62,0.0,1562.5,156661.12,31459.48,12424.5,10412.7,54296.68,210957.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,23643,113653.62,0.0,0.0,113653.62,23035.63,11277.6,9155.65,43468.88,157122.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,3836,8670.0,1345.66,219.64,10235.3,1993.94,1433.6,845.16,4272.7,14508.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,8317,56531.0,0.0,5357.15,61888.15,12278.19,12424.5,5066.72,29769.41,91657.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H006,"Invstgtor,Fire Dept",29380,15446.74,3809.12,926.8,20182.66,2889.93,1720.32,344.75,4955.0,25137.66 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,46510,47854.13,0.0,5171.82,53025.95,10733.68,6546.76,8424.21,25704.65,78730.6 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,44038,14968.64,0.0,0.0,14968.64,0.0,5558.18,1160.83,6719.01,21687.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51356,11257.15,0.0,616.14,11873.29,9916.05,898.09,4168.41,14982.55,26855.84 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,8222,72369.35,0.0,0.0,72369.35,14900.35,12394.64,5566.93,32861.92,105231.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37004,102315.7,223.8,19450.21,121989.71,22171.88,10847.55,9294.87,42314.3,164304.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,31130,66102.02,829.18,946.58,67877.78,13694.15,12424.5,5486.01,31604.66,99482.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39888,5668.41,0.0,168.02,5836.43,0.0,2458.02,466.8,2924.82,8761.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25742,7355.49,0.0,118.98,7474.47,8293.45,609.28,199.7,9102.43,16576.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,14142,6518.79,0.0,409.33,6928.12,1496.75,808.91,600.85,2906.51,9834.63 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,11250,91786.65,16918.13,2674.62,111379.4,19196.73,11924.36,9144.29,40265.38,151644.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11064,27119.15,2601.79,994.75,30715.69,7046.28,8438.75,2361.14,17846.17,48561.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33658,112680.09,92422.65,34568.66,239671.4,22350.66,12424.51,4003.95,38779.12,278450.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,37276,74165.05,0.0,0.0,74165.05,15285.76,12424.5,6151.71,33861.97,108027.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,7726,142654.57,1419.99,13880.37,157954.93,28236.09,12364.77,2636.44,43237.3,201192.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,35852,142362.71,0.0,0.0,142362.71,28635.64,12424.5,10114.61,51174.75,193537.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,47064,55051.3,0.0,0.0,55051.3,11437.91,11350.03,4272.05,27059.99,82111.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,21160,8597.96,202.91,0.0,8800.87,0.0,2735.78,695.89,3431.67,12232.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,39390,15210.06,0.0,156.83,15366.89,0.0,3661.65,1195.95,4857.6,20224.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45845,2621.76,0.0,333.15,2954.91,67.25,198.61,687.24,953.1,3908.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41132,56314.9,0.0,4673.41,60988.31,12573.95,12376.71,4988.76,29939.42,90927.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18182,24940.32,0.0,182.34,25122.66,5391.31,2762.66,424.25,8578.22,33700.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1226,Chf Payroll & Personnel Clerk,18921,88368.03,6054.38,3139.71,97562.12,18287.63,12424.5,7683.06,38395.19,135957.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,34808,0.0,0.0,121.57,121.57,0.0,68.5,9.3,77.8,199.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,51890,68300.15,0.0,0.0,68300.15,0.0,5767.24,5285.11,11052.35,79352.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12905,148067.49,881.56,38725.84,187674.89,34646.22,12422.54,6057.05,53125.81,240800.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4493,144369.32,11696.74,19012.45,175078.51,29330.71,12424.5,2938.46,44693.67,219772.18 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,6438,18495.02,0.0,8279.85,26774.87,4268.04,3583.99,2178.33,10030.36,36805.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,15236,38122.7,0.0,731.53,38854.23,8036.74,7669.77,3189.23,18895.74,57749.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33162,29576.45,1501.48,646.99,31724.92,6946.7,8455.23,2528.64,17930.57,49655.49 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,41975,20.19,0.0,0.0,20.19,0.0,5.97,1.57,7.54,27.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35905,147380.08,969.72,18679.74,167029.54,19796.36,12283.47,4661.03,36740.86,203770.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3190,5712.0,0.0,330.53,6042.53,0.0,1529.17,468.99,1998.16,8040.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,86,112170.34,23178.5,18537.01,153885.85,24779.32,15052.76,2567.45,42399.53,196285.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,4856,81157.0,2348.24,1265.45,84770.69,16968.9,12424.5,6808.79,36202.19,120972.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,24353,107978.0,9839.55,1080.0,118897.55,22496.9,12424.5,9155.51,44076.91,162974.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,19501,105748.35,5899.93,11196.28,122844.56,21023.41,10990.91,2850.45,34864.77,157709.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7249,Automotive Mechanic Sprv 1,41771,107816.05,15239.09,17957.04,141012.18,24541.12,12424.5,10140.87,47106.49,188118.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2919,Child Care Specialist,7025,48848.19,0.0,613.5,49461.69,11848.29,12215.43,3850.25,27913.97,77375.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,42235,75605.0,17966.65,2892.85,96464.5,15593.65,0.0,7906.18,23499.83,119964.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,164.0,Physicians and Dentists - Miscellaneous,2500,Med Therapy & Auxiliary,2598,Asst Med Examiner,21707,161367.51,3429.06,88929.08,253725.65,34069.05,8362.64,11666.23,54097.92,307823.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48835,115724.73,69.39,15352.54,131146.66,18586.25,10892.35,10092.95,39571.55,170718.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7314,Aprnt Stationary Engineer I,30338,10894.3,736.09,0.0,11630.39,2395.65,2389.33,888.32,5673.3,17303.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,41074,160759.38,17056.24,4608.79,182424.41,31705.5,12424.5,3011.77,47141.77,229566.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,22159,19893.01,0.0,4899.44,24792.45,5204.83,4539.72,1974.18,11718.73,36511.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19896,70305.59,56086.31,8065.72,134457.62,21498.3,13858.95,9581.12,44938.37,179395.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,25352,81157.01,3110.43,15785.68,100053.12,19582.71,12424.5,7991.57,39998.78,140051.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,45601,213721.68,0.0,0.0,213721.68,42998.73,12424.5,18700.17,74123.4,287845.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,12780,56531.0,0.0,8116.26,64647.26,13753.23,12424.5,5358.77,31536.5,96183.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33956,58091.4,7753.83,3940.33,69785.56,16695.44,11429.1,5098.02,33222.56,103008.12 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8435,"Div Director, Adult Probation",31547,126507.08,0.0,0.0,126507.08,28870.27,12424.5,10945.07,52239.84,178746.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,5629,90100.01,0.0,755.72,90855.73,18674.97,11946.64,7055.02,37676.63,128532.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2139,1184.65,0.0,35.13,1219.78,0.0,513.71,94.43,608.14,1827.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,11037,64946.42,3236.14,1596.85,69779.41,13585.87,10710.16,5623.15,29919.18,99698.59 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,30544,93135.37,21121.89,13466.82,127724.08,21043.24,12352.82,9887.02,43283.08,171007.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52299,69860.39,17045.21,2992.36,89897.96,19948.69,13762.23,6987.81,40698.73,130596.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24083,23552.4,0.0,0.0,23552.4,5167.39,3631.78,1810.58,10609.75,34162.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,25299,79867.01,778.88,4318.74,84964.63,17232.78,12424.5,6893.56,36550.84,121515.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",33830,12292.88,0.0,0.0,12292.88,3171.58,2926.91,958.67,7057.16,19350.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,15833,143188.0,0.0,3509.15,146697.15,28816.76,12424.5,10272.34,51513.6,198210.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,15106,71189.65,0.0,10.0,71199.65,14655.85,12424.5,5797.33,32877.68,104077.33 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,15059,87377.7,0.0,6972.2,94349.9,19454.39,12376.72,7515.28,39346.39,133696.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45222,2644.0,0.0,11.78,2655.78,0.0,1018.93,205.61,1224.54,3880.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,30236,62533.7,0.0,595.0,63128.7,12818.12,8320.84,4995.84,26134.8,89263.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30442,7321.41,0.0,0.0,7321.41,0.0,3174.82,589.24,3764.06,11085.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43554,6979.05,0.0,232.66,7211.71,0.01,0.0,1162.05,1162.06,8373.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,28988,0.0,0.0,0.0,0.0,0.0,0.0,-3.1,-3.1,-3.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37010,119107.08,9026.07,8068.52,136201.67,23609.59,12388.66,2274.2,38272.45,174474.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,793.0,"SEIU - Firefighter Paramedics, Local 1021",H000,Fire Services,H001,Fire Rescue Paramedic,22175,124049.83,56854.33,7543.16,188447.32,25867.1,12424.5,3223.21,41514.81,229962.13 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,7417,213954.52,0.0,0.0,213954.52,42967.84,12185.57,11387.29,66540.7,280495.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9407,3720.0,0.0,0.0,3720.0,0.0,1433.6,288.73,1722.33,5442.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50782,34566.3,0.0,0.0,34566.3,6939.88,5304.3,2662.26,14906.44,49472.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,6305,39467.01,2844.25,648.66,42959.92,8123.3,7645.85,3464.25,19233.4,62193.32 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,22184,225435.35,0.0,8557.5,233992.85,45312.05,12298.94,11707.97,69318.96,303311.81 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,4933,114827.17,0.0,0.0,114827.17,22910.17,11332.88,8813.04,43056.09,157883.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,28783,58983.81,0.0,614.68,59598.49,12182.11,11759.86,4835.47,28777.44,88375.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27905,112680.18,12764.2,4883.93,130328.31,22350.74,12424.5,2173.95,36949.19,167277.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,28682,56531.0,0.0,3983.77,60514.77,12469.34,12424.5,4958.13,29851.97,90366.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,18885,112288.92,14755.21,15445.12,142489.25,23166.48,10035.18,2382.21,35583.87,178073.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,44156,29020.0,258.46,0.0,29278.46,6509.2,4778.65,2325.49,13613.34,42891.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33637,4401.11,0.0,0.0,4401.11,1135.48,1908.47,348.2,3392.15,7793.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26172,54625.5,0.0,8330.91,62956.41,14252.58,12424.5,5143.43,31820.51,94776.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",45620,148809.28,2242.98,21401.12,172453.38,33329.4,15052.76,2893.62,51275.78,223729.16 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,26778,181536.41,0.0,0.0,181536.41,36312.55,11928.71,19135.51,67376.77,248913.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,39853,78160.0,0.0,1040.0,79200.0,16321.53,12417.45,6286.16,35025.14,114225.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36090,8627.8,58.0,196.88,8882.68,0.0,2879.14,688.86,3568.0,12450.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,15240,21583.02,0.0,0.0,21583.02,0.0,4826.44,1609.77,6436.21,28019.23 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,6090,74165.01,0.0,0.0,74165.01,15285.75,12424.5,6109.09,33819.34,107984.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,125,138062.34,4081.58,15455.97,157599.89,27285.51,12364.77,2512.05,42162.33,199762.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,31001,45135.3,0.0,5769.95,50905.25,11804.87,12424.5,4072.78,28302.15,79207.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,36106,28077.83,26.42,1069.35,29173.6,6115.17,4727.88,2446.21,13289.26,42462.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,23587,7084.25,1124.42,1202.68,9411.35,1441.02,1027.41,725.96,3194.39,12605.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,37266,73739.55,641.1,3145.12,77525.77,15241.08,12422.95,6415.88,34079.91,111605.68 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7368,Senior Comm Systems Technican,36247,62328.0,551.81,24.0,62903.81,11423.42,6212.25,5090.17,22725.84,85629.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,9650,84516.19,7692.38,1521.25,93729.82,17643.28,12114.85,7394.19,37152.32,130882.14 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,6171,18016.95,0.0,0.0,18016.95,3352.97,3799.03,1450.32,8602.32,26619.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,13631,54576.51,45.76,6731.15,61353.42,13425.84,12140.83,5021.82,30588.49,91941.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26770,58565.16,0.0,6616.95,65182.11,13569.33,5546.22,5089.49,24205.04,89387.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,51562,54124.0,0.0,624.0,54748.0,12250.24,12424.5,4492.56,29167.3,83915.3 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,41665,108376.45,35434.57,16491.3,160302.32,30389.56,12424.5,2725.29,45539.35,205841.67 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,250.0,"SEIU - Health Workers, Local 1021",3300,Park & Zoo,3375,Animal Health Technician,32377,8224.23,59.81,0.0,8284.04,0.0,2355.99,642.98,2998.97,11283.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,2912,202786.0,0.0,0.0,202786.0,40585.69,11946.64,28217.02,80749.35,283535.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,34971,5516.0,0.0,0.0,5516.0,1026.52,955.73,439.26,2421.51,7937.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,17752,93766.5,2394.71,9719.17,105880.38,20497.37,12663.43,8308.97,41469.77,147350.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22129,17595.7,0.0,0.0,17595.7,644.39,7580.14,1438.98,9663.51,27259.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45690,17757.2,2459.47,709.12,20925.79,4427.11,5483.21,1603.61,11513.93,32439.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38802,75580.38,18945.92,4368.18,98894.48,16135.38,15196.12,1647.57,32979.07,131873.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9515,112696.21,29342.78,12839.44,154878.43,22291.44,12424.5,2593.11,37309.05,192187.48 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21077,73837.2,0.0,750.0,74587.2,14802.33,8697.15,6037.71,29537.19,104124.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,279,1381.8,0.0,0.0,1381.8,0.0,286.72,107.26,393.98,1775.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21220,11861.35,0.0,272.21,12133.56,0.0,3935.94,940.53,4876.47,17010.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23215,9050.18,0.0,0.0,9050.18,0.0,3924.47,719.01,4643.48,13693.66 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8152,"Srclaimsinvstgtor,Cty Atty Ofc",4175,115838.05,0.0,0.0,115838.05,23312.72,12424.5,9056.59,44793.81,160631.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,8836,54876.24,0.0,0.0,54876.24,11308.29,12424.5,4427.41,28160.2,83036.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,31519,69818.77,5665.97,4970.06,80454.8,15447.58,12258.15,6343.05,34048.78,114503.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,51766,38839.5,7521.79,10657.65,57018.94,8903.41,6546.76,4607.73,20057.9,77076.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51339,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3378.43,18204.28,61971.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51841,4692.92,312.23,15.14,5020.29,1302.96,1481.39,384.23,3168.58,8188.87 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,30210,27486.57,0.0,600.0,28086.57,5226.93,4747.11,2165.22,12139.26,40225.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,6762,56037.83,2266.37,2690.3,60994.5,16071.05,10594.27,4863.44,31528.76,92523.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,28160,75550.35,8190.8,70.0,83811.15,15558.7,12424.5,6868.31,34851.51,118662.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37447,60471.67,18949.55,4187.39,83608.61,17488.42,11895.21,6276.34,35659.97,119268.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45258,7156.11,0.0,0.0,7156.11,0.0,3103.14,576.44,3679.58,10835.69 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",6836,74372.2,7129.9,8584.58,90086.68,18915.67,12424.5,1593.34,32933.51,123020.19 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,22223,97765.28,8167.08,13455.8,119388.16,26334.25,12424.52,1986.52,40745.29,160133.45 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,7160,16873.62,0.0,0.0,16873.62,0.0,2368.42,1307.8,3676.22,20549.84 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,12722,55829.93,0.0,0.0,55829.93,10121.98,4539.72,7299.19,21960.89,77790.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,51864,46313.51,0.0,0.0,46313.51,11100.64,12424.5,3397.35,26922.49,73236.0 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,8300,Correction & Detention,8590,Chief Adult Prob Offcr (SFERS),9323,50864.55,0.0,0.0,50864.55,0.0,2962.77,3940.53,6903.3,57767.85 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,21182,51897.01,0.0,0.0,51897.01,10074.72,7167.99,4157.16,21399.87,73296.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17910,124233.0,402.3,0.0,124635.3,25323.24,10990.9,9803.43,46117.57,170752.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,25274,99098.04,0.0,0.0,99098.04,20424.58,12424.5,7889.87,40738.95,139836.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17782,20110.21,0.0,0.0,20110.21,5188.41,5256.52,1629.85,12074.78,32184.99 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,9032,69692.28,0.0,0.0,69692.28,14392.84,9387.37,5600.61,29380.82,99073.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7196,8920.3,0.0,99.25,9019.55,0.0,2947.83,699.64,3647.47,12667.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,46543,97934.0,0.0,624.0,98558.0,20313.5,12424.5,7921.98,40659.98,139217.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32056,68180.79,13131.86,2117.41,83430.06,16045.06,13435.55,6718.62,36199.23,119629.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23956,25154.02,0.0,846.31,26000.33,6238.48,6212.25,1898.59,14349.32,40349.65 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,11910,44127.03,0.0,520.0,44647.03,8801.46,9079.44,3588.66,21469.56,66116.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40478,108168.95,513.42,24242.14,132924.51,14993.16,10984.93,9107.9,35085.99,168010.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,9395,"Property Manager, Port",23173,41075.39,0.0,0.0,41075.39,0.0,4841.37,3184.3,8025.67,49101.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7503,44300.01,5798.1,3409.85,53507.96,12438.59,0.0,4201.04,16639.63,70147.59 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,9152,85531.11,0.0,0.0,85531.11,17608.49,12424.5,6671.4,36704.39,122235.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3849,64199.13,4631.13,3577.96,72408.22,18656.77,12664.03,5313.01,36633.81,109042.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,48216,57177.93,0.0,0.0,57177.93,0.0,4742.81,4620.37,9363.18,66541.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2183,112159.76,27961.72,14779.9,154901.38,24231.46,15052.76,2510.97,41795.19,196696.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13401,56531.0,0.0,3600.02,60131.02,12312.9,12424.5,4923.22,29660.62,89791.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43028,2826.75,0.0,67.71,2894.46,1012.94,0.0,45.0,1057.94,3952.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48566,91741.85,514.46,5426.98,97683.29,18737.9,9557.31,1660.77,29955.98,127639.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,22698,74574.62,0.0,0.0,74574.62,15345.43,12424.5,6067.26,33837.19,108411.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,7532,49505.06,2575.61,4511.07,56591.74,11404.47,10324.88,4502.69,26232.04,82823.78 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,15957,67261.02,0.0,0.0,67261.02,13862.82,12424.5,5405.73,31693.05,98954.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,44594,0.0,0.0,1293.64,1293.64,0.0,34.25,98.97,133.22,1426.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31087,5165.48,0.0,152.8,5318.28,0.0,2239.94,426.68,2666.62,7984.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,7541,61255.02,0.0,296.21,61551.23,12616.65,12116.1,5044.92,29777.67,91328.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52731,110976.36,0.0,6713.92,117690.28,23158.4,9824.91,6685.01,39668.32,157358.6 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,33043,56120.07,0.0,0.0,56120.07,12556.81,12424.51,4653.78,29635.1,85755.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29234,559.5,0.0,0.0,559.5,0.0,0.0,0.0,0.0,559.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5801,117103.2,0.0,12550.71,129653.91,21434.25,10374.46,6615.16,38423.87,168077.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,39664,117137.5,8677.74,3129.75,128944.99,23176.47,12424.5,2196.65,37797.62,166742.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,32234,129481.6,0.0,14777.24,144258.84,26028.73,12328.92,10172.75,48530.4,192789.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48697,9642.5,0.0,0.0,9642.5,0.0,4181.33,776.4,4957.73,14600.23 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,2456,76294.01,0.0,0.0,76294.01,15716.64,12424.5,6023.5,34164.64,110458.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,23940,6886.79,0.0,180.75,7067.54,0.0,2278.82,619.45,2898.27,9965.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,8622,70245.0,3377.85,3723.1,77345.95,14616.8,12424.5,6322.98,33364.28,110710.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,21413,138888.98,30778.83,15069.09,184736.9,27480.8,12424.5,3150.21,43055.51,227792.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,20647,71311.01,5052.19,0.0,76363.2,14697.59,12424.5,6141.83,33263.92,109627.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21932,31514.83,0.0,7141.7,38656.53,4108.8,0.0,4691.77,8800.57,47457.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23856,64025.24,16553.81,4991.16,85570.21,19046.05,12640.98,6634.32,38321.35,123891.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,502,7499.6,0.0,0.0,7499.6,0.0,1481.38,582.09,2063.47,9563.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46034,72016.0,50.29,1675.82,73742.11,14782.67,6375.32,3416.62,24574.61,98316.72 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7203,Bldg & Grounds Maint Sprv,32950,105773.06,12587.43,170.56,118531.05,21800.16,12424.5,9670.4,43895.06,162426.11 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,40405,73074.57,0.0,0.0,73074.57,15065.66,10845.94,5892.5,31804.1,104878.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,17424,44220.36,0.0,409.03,44629.39,7819.68,8843.5,2644.35,19307.53,63936.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24716,7852.25,0.0,226.68,8078.93,0.0,3013.55,626.55,3640.1,11719.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,10480,163305.46,0.0,10433.41,173738.87,32947.96,12424.5,2961.3,48333.76,222072.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,573,112159.75,36987.72,18008.61,167156.08,24704.17,15052.75,2808.97,42565.89,209721.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",27701,131564.79,37135.66,13749.55,182450.0,28540.27,15196.12,3101.52,46837.91,229287.91 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,3397,56276.02,0.0,624.0,56900.02,12731.53,12424.5,4557.9,29713.93,86613.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2719,Janitorial Svcs Asst Sprv,48350,74326.0,292.97,8686.84,83305.81,16716.72,12424.5,6875.47,36016.69,119322.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",32408,145893.96,55119.96,12361.98,213375.9,30436.23,14025.35,3496.43,47958.01,261333.91 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38329,6030.5,0.0,294.0,6324.5,0.0,2573.01,489.72,3062.73,9387.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,13082,97934.0,0.0,2024.0,99958.0,20598.5,12424.5,8232.77,41255.77,141213.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,13295,66102.04,0.0,200.0,66302.04,13664.37,12424.5,5485.67,31574.54,97876.58 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,9641,127129.03,0.0,0.0,127129.03,25584.69,12424.5,17209.36,55218.55,182347.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52471,35.8,0.0,2.86,38.66,0.0,11.94,2.99,14.93,53.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,52135,83528.03,2982.12,0.0,86510.15,17215.61,12424.49,7096.75,36736.85,123247.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43002,31518.15,10984.61,478.14,42980.9,9301.83,6253.76,3236.83,18792.42,61773.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,23693,63310.4,34187.52,5362.66,102860.58,14876.59,12424.5,8177.75,35478.84,138339.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24307,73048.16,8935.63,5371.74,87355.53,16012.74,14861.62,1378.92,32253.28,119608.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31694,27619.85,663.37,5227.14,33510.36,6179.97,4258.98,736.68,11175.63,44685.99 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",26867,0.0,0.0,5183.89,5183.89,0.0,0.0,396.57,396.57,5580.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,37528,45543.2,23174.23,2402.2,71119.63,11113.0,12328.92,5748.52,29190.44,100310.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,36252,79497.83,3200.81,9388.45,92087.09,18100.48,12427.49,7338.89,37866.86,129953.95 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,6713,1658.77,18.56,0.0,1677.33,0.0,409.17,130.06,539.23,2216.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,12341,22133.7,0.0,0.0,22133.7,0.0,4832.41,1717.93,6550.34,28684.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",23330,42808.0,0.0,0.0,42808.0,7761.1,3297.27,5283.6,16341.97,59149.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,764,881.6,0.0,0.0,881.6,219.06,382.3,75.9,677.26,1558.86 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,374C,Admin Analyst 3,42495,83079.83,0.0,4913.0,87992.83,16747.33,10042.64,6756.03,33546.0,121538.83 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),48018,119201.91,0.0,1562.5,120764.41,24256.43,12424.5,9464.62,46145.55,166909.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,8773,22266.61,654.9,4060.11,26981.62,5744.75,4874.23,2189.27,12808.25,39789.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,28043,116976.0,5536.63,4067.7,126580.33,23541.49,12424.5,9839.55,45805.54,172385.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,11821,66984.75,0.0,0.0,66984.75,13679.95,10011.28,5170.77,28862.0,95846.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,21467,60059.01,0.0,528.0,60587.01,12714.53,10513.04,4814.73,28042.3,88629.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16744,8831.46,0.0,1137.55,9969.01,1612.66,3802.02,810.6,6225.28,16194.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23218,61712.73,3182.37,1866.61,66761.71,15432.03,13050.26,5096.59,33578.88,100340.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35831,113233.59,13346.04,19120.53,145700.16,25036.02,15196.12,2428.54,42660.68,188360.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,10015,85598.6,0.0,0.0,85598.6,17676.1,12424.51,6901.38,37001.99,122600.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,26552,104811.01,0.0,0.0,104811.01,21601.92,12424.5,8625.26,42651.68,147462.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,34231,66881.11,3403.7,9972.22,80257.03,15954.34,9784.18,1325.08,27063.6,107320.63 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,24239,53655.2,0.0,0.0,53655.2,10349.1,7167.99,4736.49,22253.58,75908.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",51360,130868.66,0.0,0.0,130868.66,25781.86,10035.18,14356.66,50173.7,181042.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,12945,17325.45,0.0,0.0,17325.45,3224.28,3655.68,1395.37,8275.33,25600.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7254,Automotive Machinist Sprv 1,7233,50122.03,3239.64,600.0,53961.67,9439.4,5734.39,4312.84,19486.63,73448.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,31331,106953.0,9845.44,1473.95,118272.39,21828.54,12424.47,9222.79,43475.8,161748.19 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,7116,24467.34,657.53,0.0,25124.87,0.0,5855.35,1947.81,7803.16,32928.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23075,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1772.21,10185.99,34189.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,4143,19487.52,0.0,0.0,19487.52,3626.63,3345.06,1490.75,8462.44,27949.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48956,113233.6,34855.61,24560.37,172649.58,25254.84,15196.12,2888.76,43339.72,215989.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,44208,81175.43,0.0,0.0,81175.43,16722.23,12424.5,6531.93,35678.66,116854.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42673,2424.4,0.0,0.0,2424.4,0.0,1051.3,195.17,1246.47,3670.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,20532,64858.34,15450.05,2791.76,83100.15,14226.34,10031.59,6266.39,30524.32,113624.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40001,66683.55,17392.75,1770.4,85846.7,18722.57,13137.71,6702.5,38562.78,124409.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43249,118895.84,37796.92,8926.05,165618.81,23497.51,12364.77,2823.1,38685.38,204304.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,41583,84644.0,75168.13,7820.28,167632.41,17803.1,12424.51,10469.3,40696.91,208329.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,27495,62290.57,4718.45,1500.0,68509.02,13115.15,12389.55,5550.1,31054.8,99563.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,13604,74896.67,7805.62,920.0,83622.29,15570.47,11946.63,6869.54,34386.64,118008.93 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50154,97779.21,32563.06,8769.96,139112.23,25915.16,12424.5,2362.32,40701.98,179814.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,42419,67911.0,1242.81,650.0,69803.81,14071.26,12424.5,5762.59,32258.35,102062.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45775,19233.83,0.0,343.95,19577.78,4783.14,1498.83,2238.72,8520.69,28098.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7083,37165.39,0.0,1930.4,39095.79,0.0,2992.69,3027.52,6020.21,45116.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12130,87418.6,48912.94,12724.25,149055.79,19742.72,12472.29,10112.46,42327.47,191383.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,3783,101531.0,0.0,0.0,101531.0,20926.02,12424.53,8092.91,41443.46,142974.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14601,41232.64,0.0,0.0,41232.64,0.0,2831.35,3196.14,6027.49,47260.13 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,12987,48003.33,0.0,3000.0,51003.33,9677.58,9891.81,4202.03,23771.42,74774.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,14455,75183.08,0.0,0.0,75183.08,15465.44,12418.51,5930.18,33814.13,108997.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,21398,81542.0,2822.19,0.0,84364.19,16806.13,12424.5,6880.25,36110.88,120475.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,19549,100094.6,3623.52,8376.39,112094.51,20771.91,12424.5,1865.32,35061.73,147156.24 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,48481,11102.78,83.29,0.0,11186.07,2864.53,2388.85,921.56,6174.94,17361.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,21489,30380.0,341.87,0.0,30721.87,5915.87,6690.11,2438.0,15043.98,45765.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,26101,29600.0,6772.54,3378.85,39751.39,5895.57,0.0,3223.54,9119.11,48870.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,2814,29347.5,0.0,250.0,29597.5,6641.64,7024.62,2234.49,15900.75,45498.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11852,9507.29,0.0,485.41,9992.7,2610.45,0.0,3792.58,6403.03,16395.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,23504,27271.01,0.0,0.0,27271.01,5075.12,3345.07,2236.92,10657.11,37928.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,20437,94073.97,1371.6,8046.4,103491.97,19491.45,12424.51,1734.69,33650.65,137142.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44001,98666.34,11973.21,5158.31,115797.86,20487.49,12424.5,1869.21,34781.2,150579.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22927,48613.59,5758.96,2897.19,57269.74,14425.8,9612.74,4439.65,28478.19,85747.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6281,Fire Safety Inspector 2,32526,114149.88,830.62,6848.99,121829.49,24493.9,10497.39,9848.9,44840.19,166669.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,30873,37132.5,0.0,520.0,37652.5,7085.59,5973.32,3046.07,16104.98,53757.48 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,45050,63102.03,796.68,3196.8,67095.51,13152.85,12424.5,5497.49,31074.84,98170.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47608,14191.8,0.0,0.0,14191.8,0.0,6092.79,1146.3,7239.09,21430.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,19492,93766.5,47806.62,13117.66,154690.78,32709.45,12663.43,10452.62,55825.5,210516.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,33719,119066.04,14133.08,14047.26,147246.38,31500.75,12424.5,2453.52,46378.77,193625.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,18281,102019.04,0.0,0.0,102019.04,21022.55,12424.5,8378.1,41825.15,143844.19 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,25652,72699.06,0.0,970.67,73669.73,15162.57,12424.5,6106.75,33693.82,107363.55 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,19597,93884.01,0.0,0.0,93884.01,19350.03,12424.51,7673.85,39448.39,133332.4 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,18997,5742.0,0.0,0.0,5742.0,0.0,1433.6,445.69,1879.29,7621.29 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,20275,67911.04,8262.34,5409.04,81582.42,14609.65,12424.5,6461.64,33495.79,115078.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,31710,16895.0,0.0,0.0,16895.0,3144.15,3345.05,1277.0,7766.2,24661.2 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,11899,62519.12,0.0,1040.0,63559.12,13092.13,12424.5,5043.1,30559.73,94118.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,16276,52732.4,9789.05,3585.35,66106.8,12649.9,12281.13,5072.15,30003.18,96109.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4405,115160.61,63.18,7411.35,122635.14,21206.14,11172.49,9325.62,41704.25,164339.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,42314,91198.52,0.0,7881.24,99079.76,20421.58,12424.5,7373.25,40219.33,139299.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,28495,46908.0,17551.82,4514.54,68974.36,10127.34,4300.79,1169.4,15597.53,84571.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,50754,73815.5,183.75,0.0,73999.25,15202.41,12424.47,5955.11,33581.99,107581.24 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2551,Mental Hlth Treatment Spec,25146,95497.52,0.0,1000.0,96497.52,19903.1,12364.77,7720.53,39988.4,136485.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12508,119386.98,6775.94,19751.23,145914.15,0.0,8446.33,2444.81,10891.14,156805.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,32310,62182.57,0.0,4441.16,66623.73,13725.76,11779.08,5505.76,31010.6,97634.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,23469,56993.09,3403.99,0.0,60397.08,12703.56,12421.52,4842.27,29967.35,90364.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9147,Traf Signal Electrician Sup I,16770,120048.21,16488.63,10046.83,146583.67,24157.7,12412.56,10189.33,46759.59,193343.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4567,40671.84,2961.52,792.8,44426.16,10774.13,7967.26,3404.36,22145.75,66571.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,22219,57006.41,1048.39,0.0,58054.8,12706.99,12424.5,4641.12,29772.61,87827.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),33125,11556.0,1157.41,1309.45,14022.86,2173.14,955.73,37.61,3166.48,17189.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,36096,82076.74,0.0,24383.37,106460.11,18007.69,6546.77,8578.95,33133.41,139593.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43744,77071.05,0.0,624.0,77695.05,16013.39,12424.5,6067.07,34504.96,112200.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,38378,92595.22,0.0,882.63,93477.85,19260.08,12281.15,7636.42,39177.65,132655.5 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,2245,101531.06,0.0,0.0,101531.06,20926.04,12424.5,8253.4,41603.94,143135.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,34443,114569.39,0.0,1381.47,115950.86,23380.8,12175.42,9532.18,45088.4,161039.26 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,1532,29329.84,0.0,0.0,29329.84,5458.29,3339.08,3451.36,12248.73,41578.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33168,56331.11,0.0,3254.88,59585.99,11743.13,12380.3,4925.05,29048.48,88634.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38123,66352.1,824.42,5670.15,72846.67,12838.4,7553.86,1139.16,21531.42,94378.09 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,35032,99654.03,0.0,0.0,99654.03,22731.78,12424.5,254.3,35410.58,135064.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,16631,127124.9,0.0,0.0,127124.9,25554.01,12424.5,9919.44,47897.95,175022.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,25543,81523.81,2629.9,0.0,84153.71,16799.23,12245.3,6901.55,35946.08,120099.79 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,3348,76941.0,0.0,3581.7,80522.7,14855.46,8123.71,6064.14,29043.31,109566.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,48210,83694.03,0.0,0.0,83694.03,17249.65,12424.5,6735.8,36409.95,120103.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,31493,79395.08,0.0,5.0,79400.08,16364.71,12424.51,6586.18,35375.4,114775.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51152,11373.65,0.0,0.0,11373.65,0.0,4869.75,924.04,5793.79,17167.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,46442,26365.67,34.38,125.0,26525.05,4913.16,4778.65,2060.3,11752.11,38277.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,21659,72224.05,0.0,0.0,72224.05,15450.37,7645.85,5809.26,28905.48,101129.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6333,360.0,0.0,0.0,360.0,0.0,134.4,27.94,162.34,522.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,31052,62952.03,7024.5,250.0,70226.53,12976.92,11134.27,5484.81,29596.0,99822.53 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,39550,56276.0,81.26,1945.2,58302.46,12731.53,12424.5,4827.04,29983.07,88285.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,30817,11153.22,0.0,33.75,11186.97,0.0,2685.01,867.47,3552.48,14739.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,3237,100002.54,3653.39,2000.03,105655.96,20737.79,11008.58,8667.68,40414.05,146070.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,37218,36366.26,0.0,0.0,36366.26,0.0,5931.5,2906.72,8838.22,45204.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,32805,27072.6,0.0,2614.15,29686.75,0.0,0.0,2347.1,2347.1,32033.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",35505,0.0,0.0,205.79,205.79,0.0,68.5,15.74,84.24,290.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,52913,90456.5,0.0,0.0,90456.5,18542.87,12424.49,6659.42,37626.78,128083.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25047,6934.84,0.0,225.86,7160.7,0.0,2302.71,554.87,2857.58,10018.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43872,67920.09,46686.07,8093.87,122700.03,20831.66,13384.54,9426.54,43642.74,166342.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23156,54397.86,3272.89,2860.13,60530.88,12124.85,12098.36,4886.46,29109.67,89640.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3621,786.27,0.0,0.0,786.27,2606.41,0.0,1009.55,3615.96,4402.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,46746,23177.13,0.0,19.2,23196.33,5582.19,6794.68,1876.46,14253.33,37449.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",18879,93738.0,11831.86,3269.51,108839.37,19752.28,12424.51,8719.13,40895.92,149735.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,3421,39882.0,0.0,6356.88,46238.88,9648.05,6594.55,3789.65,20032.25,66271.13 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8068,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1581.37,9995.15,33999.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,10665,81114.72,8742.8,5660.84,95518.36,16863.24,12424.5,1590.67,30878.41,126396.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,32486,61428.0,4561.24,9308.4,75297.64,13883.49,12424.5,5923.87,32231.86,107529.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,5838,82717.01,1102.37,4194.93,88014.31,17925.43,12424.5,7235.53,37585.46,125599.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,53119,102019.01,0.0,2678.92,104697.93,21237.3,12424.49,8370.92,42032.71,146730.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,20185,70245.0,17822.48,9550.27,97617.75,15588.34,12424.5,7971.16,35984.0,133601.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,33022,55138.43,10875.06,6055.41,72068.9,13372.81,12086.11,5552.96,31011.88,103080.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27122,98708.67,1622.48,5313.76,105644.91,20513.31,12424.51,1126.08,34063.9,139708.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52233,31000.53,3458.4,820.45,35279.38,8183.89,9663.69,2686.96,20534.54,55813.92 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39920,96787.76,48428.12,13918.87,159134.75,26937.87,12298.58,2673.34,41909.79,201044.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42080,0.0,0.0,877.61,877.61,0.0,68.5,67.14,135.64,1013.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7759,70211.44,0.0,652.75,70864.19,14470.3,12418.53,5810.53,32699.36,103563.55 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,27181,60332.02,0.0,0.0,60332.02,7590.2,11946.64,4822.65,24359.49,84691.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,15251,52770.3,5414.64,1771.99,59956.93,12879.01,12233.36,4600.0,29712.37,89669.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,48121,54178.33,0.0,10176.76,64355.09,12152.23,6510.91,5284.03,23947.17,88302.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,20896,49278.56,687.19,0.0,49965.75,11233.35,10990.92,4009.8,26234.07,76199.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,32759,35549.3,0.0,0.0,35549.3,26.17,6039.02,2753.29,8818.48,44367.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,49382,187.63,804.83,262.08,1254.54,48.41,56.75,155.92,261.08,1515.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21295,49601.0,1164.78,2444.73,53210.51,12380.41,12424.5,4313.48,29118.39,82328.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,49779,62152.72,1081.37,0.0,63234.09,12798.53,12424.5,5140.03,30363.06,93597.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30420,63389.59,99.05,3743.43,67232.07,18347.04,12491.16,5228.69,36066.89,103298.96 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4825,9242.01,0.0,636.63,9878.64,2172.31,2437.11,707.67,5317.09,15195.73 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,39672,72803.03,0.0,0.0,72803.03,14994.18,12424.5,5923.24,33341.92,106144.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18539,56531.0,0.0,2604.0,59135.0,11796.81,12424.5,4889.36,29110.67,88245.67 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,17387,63003.29,2448.4,7232.53,72684.22,13975.82,12405.09,5955.59,32336.5,105020.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,50170,106605.04,0.0,0.0,106605.04,21971.81,12424.5,8691.15,43087.46,149692.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44235,68020.61,633.06,3183.41,71837.08,16210.28,13402.99,5486.19,35099.46,106936.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33184,5894.98,0.0,123.16,6018.14,0.0,1953.46,466.62,2420.08,8438.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H006,"Invstgtor,Fire Dept",20088,15446.74,3041.62,1930.84,20419.2,3067.14,1720.32,348.82,5136.28,25555.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,51178,70931.0,0.0,250.0,71181.0,14619.09,12424.5,5631.46,32675.05,103856.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27967,56531.0,0.0,1975.95,58506.95,11651.3,12424.5,4801.28,28877.08,87384.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,51722,56531.01,27.01,1965.6,58523.62,11667.81,12424.5,4845.57,28937.88,87461.5 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,29190,63705.02,0.0,0.0,63705.02,13129.84,12424.5,5164.7,30719.04,94424.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,25644,70245.0,32615.49,10145.74,113006.23,15798.55,12424.5,9138.36,37361.41,150367.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29142,59449.08,393.56,52815.19,112657.83,13100.88,6212.25,1763.02,21076.15,133733.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33545,54036.21,14224.68,925.56,69186.45,13121.57,10660.17,5245.22,29026.96,98213.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,23702,109251.83,0.0,0.0,109251.83,22162.43,11517.04,8610.38,42289.85,151541.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),24033,23595.64,0.0,0.0,23595.64,3866.74,6779.72,1875.6,12522.06,36117.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8636,59663.92,81.3,1000.0,60745.22,13524.63,12424.5,4892.25,30841.38,91586.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19001,30806.97,1936.03,899.44,33642.44,8770.92,7398.55,2493.01,18662.48,52304.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,13566,1774.45,0.0,29.31,1803.76,0.0,549.55,139.65,689.2,2492.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,7924,54030.44,0.0,1193.41,55223.85,11548.32,8629.54,4585.15,24763.01,79986.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52566,6074.78,0.0,0.0,6074.78,909.8,2634.24,466.93,4010.97,10085.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39989,2204.0,506.23,0.0,2710.23,568.64,955.74,221.6,1745.98,4456.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9340,24250.39,0.0,4030.57,28280.96,627.61,0.0,753.23,1380.84,29661.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,21260,80978.91,24784.3,6827.73,112590.94,18045.83,12277.57,8930.6,39254.0,151844.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52194,5741.16,0.0,138.29,5879.45,0.0,0.0,100.02,100.02,5979.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,11290,21181.82,0.0,0.0,21181.82,0.0,3927.45,1642.03,5569.48,26751.3 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6043,56531.02,1836.85,2140.99,60508.86,11755.23,12424.5,4750.71,28930.44,89439.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34413,64223.57,2965.67,766.95,67956.19,17760.54,12653.52,5184.43,35598.49,103554.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17266,75550.3,9696.54,1400.0,86646.84,15831.66,12424.5,7143.65,35399.81,122046.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,46420,3223.76,0.0,0.0,3223.76,0.0,1151.36,257.38,1408.74,4632.5 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,13334,11122.5,291.97,0.0,11414.47,2016.5,1194.67,865.41,4076.58,15491.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,13922,172503.38,4864.56,17267.04,194634.98,36409.16,11296.74,11037.3,58743.2,253378.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,43774,181945.03,0.0,0.0,181945.03,36616.95,12424.5,10869.27,59910.72,241855.75 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,43585,35448.69,0.0,0.0,35448.69,6832.92,7142.9,595.22,14571.04,50019.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,44233,3263.0,0.0,16315.0,19578.0,731.89,477.86,1505.88,2715.63,22293.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18117,120613.9,813.45,3848.78,125276.13,0.0,10560.06,9365.16,19925.22,145201.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52744,75442.37,17907.81,4809.64,98159.82,15959.31,15196.12,1637.29,32792.72,130952.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,19286,47500.38,3626.77,4095.14,55222.29,9901.43,8792.73,1464.12,20158.28,75380.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,42890,56120.02,0.0,624.0,56744.02,12696.57,12424.5,4658.19,29779.26,86523.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34862,0.0,0.0,654.45,654.45,0.0,68.5,50.07,118.57,773.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,10447,75014.23,0.0,9650.36,84664.59,17037.12,6481.05,6766.49,30284.66,114949.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,35862,89028.05,0.0,4415.23,93443.28,19268.64,12424.52,7448.12,39141.28,132584.56 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,13724,130018.46,0.0,18662.35,148680.81,26113.48,12289.15,10236.65,48639.28,197320.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24479,121091.36,705.94,26495.84,148293.14,27271.75,11057.81,5859.34,44188.9,192482.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,41755,49679.0,0.0,1451.7,51130.7,11930.06,12424.5,4177.78,28532.34,79663.04 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1750,Microphoto/Imaging Technician,40177,44402.0,0.0,0.0,44402.0,10649.63,12424.5,3414.04,26488.17,70890.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43380,62526.18,13453.47,1019.89,76999.54,15462.57,13230.84,5876.36,34569.77,111569.31 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17573,102019.01,0.0,0.0,102019.01,21026.26,12424.5,8123.21,41573.97,143592.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,18171,66102.0,6354.82,3438.41,75895.23,14284.62,12424.5,6215.4,32924.52,108819.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,42173,71379.03,0.0,0.0,71379.03,15059.52,8959.98,5604.16,29623.66,101002.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40825,68531.24,19438.84,8041.0,96011.08,21011.81,13499.94,7471.18,41982.93,137994.01 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,46,8918.47,0.0,0.0,8918.47,0.0,1096.1,692.22,1788.32,10706.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,43361,89754.8,0.0,0.0,89754.8,18505.21,12424.5,7118.03,38047.74,127802.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19974,113233.59,43892.84,17920.97,175047.4,24937.47,15196.12,2973.19,43106.78,218154.18 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,37119,22718.83,0.0,484.67,23203.5,0.0,0.0,1834.22,1834.22,25037.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",43181,151837.57,55738.91,10373.0,217949.48,32236.32,12808.83,3715.75,48760.9,266710.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50978,57813.32,12877.29,1736.97,72427.58,16064.62,11373.38,5453.53,32891.53,105319.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,17255,88144.03,0.0,0.0,88144.03,18178.02,12424.5,7242.23,37844.75,125988.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,8339,32610.0,0.0,0.0,32610.0,7154.64,2867.19,2635.48,12657.31,45267.31 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),33799,184289.03,0.0,3354.34,187643.37,37728.83,12424.5,10425.28,60578.61,248221.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7276,Electrician Supervisor 2,48804,122476.02,2877.04,14012.46,139365.52,24763.26,12424.5,10119.69,47307.45,186672.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,9341,63375.01,21593.43,6343.28,91311.72,13725.73,9257.81,1474.87,24458.41,115770.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,33626,85490.41,8071.74,1250.0,94812.15,17863.04,12424.5,7782.37,38069.91,132882.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44424,44342.07,0.0,144.28,44486.35,8712.21,6796.8,3401.73,18910.74,63397.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45932,69125.34,33944.86,6105.3,109175.5,20605.37,13621.51,8096.81,42323.69,151499.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10723,16737.4,0.0,544.73,17282.13,0.0,4170.87,1339.56,5510.43,22792.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,3772,55844.4,20350.97,6730.95,82926.32,13208.55,12424.5,6584.78,32217.83,115144.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40235,10829.23,0.0,0.0,10829.23,675.24,4695.92,838.39,6209.55,17038.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,2305,101276.0,33319.75,4168.16,138763.91,21318.34,12424.5,10078.39,43821.23,182585.14 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,17296,12914.11,0.0,0.0,12914.11,0.0,0.0,1020.21,1020.21,13934.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46042,56163.3,434.04,105.15,56702.49,10885.46,8601.58,3960.18,23447.22,80149.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,2596,209576.0,0.0,0.0,209576.0,42259.56,12424.51,18639.26,73323.33,282899.33 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,38777,77068.44,0.0,0.0,77068.44,15682.49,10853.52,5581.12,32117.13,109185.57 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,39318,64320.62,417.95,4632.97,69371.54,14320.83,11783.33,5695.96,31800.12,101171.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1937,Supervising Parts Storekeeper,44375,79722.05,16361.8,3491.63,99575.48,16430.89,12424.5,7931.76,36787.15,136362.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,45151,63567.36,0.0,611.85,64179.21,13252.55,12182.58,5280.19,30715.32,94894.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45343,67302.49,27256.92,689.63,95249.04,18625.45,13266.56,7234.63,39126.64,134375.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48646,6068.06,1603.89,35.61,7707.56,1529.5,1915.47,589.04,4034.01,11741.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,43817,11406.0,0.0,0.0,11406.0,2122.65,1433.6,904.45,4460.7,15866.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3613,51184.18,5968.9,3303.37,60456.45,15549.06,10178.9,4607.82,30335.78,90792.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21881,97269.44,20836.76,8888.9,126995.1,20208.16,12424.5,2111.45,34744.11,161739.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,43657,5518.8,165.58,174.75,5859.13,0.0,2580.47,454.45,3034.92,8894.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,880,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1780.95,10194.72,34198.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,47388,65529.6,11792.9,7207.58,84530.08,13985.96,12424.47,6920.26,33330.69,117860.77 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,17917,111436.0,0.0,6557.58,117993.58,23674.78,12424.5,9752.53,45851.81,163845.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,40110,100761.04,386.3,8770.89,109918.23,22576.92,12424.52,9045.54,44046.98,153965.21 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,38323,133087.0,0.0,9618.01,142705.01,26783.95,12424.5,10221.1,49429.55,192134.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,19860,27738.99,0.0,200.0,27938.99,5380.68,5232.45,2324.8,12937.93,40876.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,6366,51714.16,0.0,0.0,51714.16,11564.25,11867.91,3922.93,27355.09,79069.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48898,42779.2,0.0,4514.2,47293.4,10830.02,11420.99,3685.74,25936.75,73230.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22659,148529.1,0.0,11146.32,159675.42,18280.68,12376.71,4890.58,35547.97,195223.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,13799,65439.49,0.0,394.63,65834.12,13560.65,12422.11,5268.81,31251.57,97085.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,43612,61874.99,7830.09,2064.15,71769.23,12881.26,12424.5,5914.7,31220.46,102989.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4078,61834.52,13885.61,3258.31,78978.44,17799.49,12176.92,5906.31,35882.72,114861.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,22398,57867.33,32711.52,2849.05,93427.9,13212.95,12373.73,7949.17,33535.85,126963.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,2413,66682.01,0.0,17112.16,83794.17,14670.59,5256.52,169.75,20096.86,103891.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37682,11162.2,29.89,512.02,11704.11,0.0,4778.65,936.65,5715.3,17419.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,6826,8860.0,464.69,1315.61,10640.3,2031.06,2867.19,839.72,5737.97,16378.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,13298,49287.03,0.0,2591.1,51878.13,11836.64,0.0,4297.68,16134.32,68012.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,459,69746.05,0.0,0.0,69746.05,14374.93,12424.5,5784.9,32584.33,102330.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,18262,119066.0,27254.63,20294.74,166615.37,33866.53,12424.5,2794.2,49085.23,215700.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,3411,56524.26,0.0,6517.23,63041.49,12621.58,12423.01,4946.79,29991.38,93032.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26625,46122.01,7922.58,3910.05,57954.64,14403.32,9163.01,4503.78,28070.11,86024.75 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,49822,75927.05,719.28,624.0,77270.33,15777.43,12424.5,6703.76,34905.69,112176.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,46449,83148.02,0.0,0.0,83148.02,17137.11,12424.48,6789.72,36351.31,119499.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,35322,39582.01,0.0,8923.0,48505.01,9532.25,8601.58,3903.39,22037.22,70542.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,36589,12991.6,0.0,0.0,12991.6,0.0,0.0,1027.22,1027.22,14018.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,196.0,Court Unrepresented Managers,SCRT,SF Superior Court,899C,Court Executive Officer,26825,222534.01,0.0,7279.5,229813.51,44812.93,12424.5,33753.87,90991.3,320804.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44,41216.87,212.35,1642.46,43071.68,10103.66,10851.13,3484.94,24439.73,67511.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6341,7324.17,0.0,890.83,8215.0,1889.62,3176.02,672.53,5738.17,13953.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,22980,239146.0,0.0,0.0,239146.0,48271.07,12424.5,29285.63,89981.2,329127.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52304,1873.54,0.0,0.0,1873.54,0.0,812.43,152.88,965.31,2838.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,53205,112696.19,44670.92,8925.18,166292.29,22291.43,12364.77,2788.65,37444.85,203737.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14948,80949.9,5293.43,2320.74,88564.07,16584.79,12424.5,3350.19,32359.48,120923.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,27184,67261.0,0.0,0.0,67261.0,13862.82,12424.5,5526.83,31814.15,99075.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,52007,344.13,0.0,0.0,344.13,0.0,113.49,26.71,140.2,484.33 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,16883,67704.92,1355.61,0.0,69060.53,13931.73,12424.5,5335.28,31691.51,100752.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10633,14964.7,103.59,1582.87,16651.16,0.0,3488.41,1292.39,4780.8,21431.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,37742,158367.0,6826.88,12096.41,177290.29,31259.76,12424.5,3019.66,46703.92,223994.21 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,8775,49645.23,7841.3,5026.7,62513.23,11883.02,10738.3,5038.24,27659.56,90172.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,3479,20682.91,0.0,0.0,20682.91,4639.16,3201.7,1708.04,9548.9,30231.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,37324,135421.01,0.0,0.0,135421.01,27253.5,12424.5,10017.42,49695.42,185116.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,42576,20948.6,0.0,112.62,21061.22,0.0,4408.31,1634.03,6042.34,27103.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,52735,129062.3,0.0,0.0,129062.3,26031.1,12748.32,9975.37,48754.79,177817.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,13791,175358.82,0.0,0.0,175358.82,35271.97,11851.06,9547.98,56671.01,232029.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,27510,32999.16,0.0,0.0,32999.16,3979.67,10889.36,2646.08,17515.11,50514.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,44678,55304.91,0.0,789.12,56094.03,10737.37,10975.97,4202.11,25915.45,82009.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25092,96350.0,20851.7,17343.6,134545.3,21671.26,12929.84,2248.35,36849.45,171394.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2640,55101.24,11954.84,1964.79,69020.87,15573.19,10849.64,5324.55,31747.38,100768.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25719,4438.99,0.0,108.9,4547.89,0.0,1924.9,359.57,2284.47,6832.36 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,52228,55104.01,1869.24,24.0,56997.25,10734.31,7645.86,4649.15,23029.32,80026.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7473,Wireropecable Maint Mech Train,18714,2769.0,970.88,276.9,4016.78,566.84,477.86,316.29,1360.99,5377.77 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),9762,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,10933.48,61488.62,250963.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21879,112159.74,51605.4,19657.37,183422.51,25206.96,15052.76,2683.26,42942.98,226365.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,27294,1719.12,0.0,0.0,1719.12,0.0,376.32,133.43,509.75,2228.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,23299,17077.51,0.0,0.0,17077.51,3830.5,2867.19,1347.85,8045.54,25123.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,50,16170.0,557.87,4099.11,20826.98,3460.6,2389.33,1593.58,7443.51,28270.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,53144,12157.39,0.0,85.84,12243.23,0.0,0.0,968.29,968.29,13211.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35091,61544.87,11238.55,5285.38,78068.8,18616.36,12179.23,6096.43,36892.02,114960.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,25886,23522.28,0.0,0.0,23522.28,2762.98,7114.22,1883.82,11761.02,35283.3 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,18170,98754.61,0.0,4600.0,103354.61,20722.71,7454.7,8514.79,36692.2,140046.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43253,0.0,0.0,668.78,668.78,0.0,68.5,51.16,119.66,788.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,13274,60207.8,87.45,0.0,60295.25,12394.61,12424.5,4831.99,29651.1,89946.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,50174,70013.23,9494.59,4913.78,84421.6,14531.82,11500.01,6939.55,32971.38,117392.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,40755,27934.0,0.0,0.0,27934.0,414.07,6116.71,2168.12,8698.9,36632.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,46924,119787.88,32572.57,10080.07,162440.52,23674.37,12424.49,2667.25,38766.11,201206.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24969,5893.3,0.0,0.0,5893.3,0.0,430.07,371.91,801.98,6695.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16231,728.0,0.0,14.08,742.08,0.0,271.77,57.59,329.36,1071.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",21987,106540.94,7320.75,4726.95,118588.64,22507.63,12424.5,9731.96,44664.09,163252.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9100,Street Transit,9196,Sr Light Rail Veh Equip Eng,13187,156746.08,0.0,0.0,156746.08,31545.23,12424.5,10494.01,54463.74,211209.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,3600,25828.01,0.0,600.0,26428.01,5927.77,5256.52,2205.32,13389.61,39817.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,41848,56764.61,10559.4,12899.29,80223.3,14659.39,12424.5,6435.94,33519.83,113743.13 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,5035,62092.68,0.0,0.0,62092.68,12791.31,12046.69,5013.99,29851.99,91944.67 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,53173,22080.2,4215.37,892.29,27187.86,5696.69,4822.38,2089.55,12608.62,39796.48 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),8471,104973.62,0.0,1500.0,106473.62,22028.42,9440.83,8843.54,40312.79,146786.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,38824,137976.39,0.0,3295.31,141271.7,28217.94,11468.68,9268.38,48955.0,190226.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4952,3179.08,794.77,0.0,3973.85,899.68,1003.51,307.66,2210.85,6184.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,17565,61174.21,0.0,0.0,61174.21,11894.31,6757.74,4765.21,23417.26,84591.47 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41909,3349.5,0.0,294.0,3643.5,0.0,1429.12,282.08,1711.2,5354.7 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",18441,69082.64,367.33,7377.04,76827.01,17437.47,12364.82,1583.98,31386.27,108213.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32415,119461.68,257.23,1339.93,121058.84,23641.93,12424.5,1596.91,37663.34,158722.18 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,23205,55827.54,0.0,20332.72,76160.26,12522.08,6546.76,6161.9,25230.74,101391.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8219,Parking Enforcement Admin,34096,95029.91,20990.1,8311.6,124331.61,19570.72,12388.66,9800.15,41759.53,166091.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,25159,71427.13,5197.68,2155.0,78779.81,14906.39,12424.5,6189.26,33520.15,112299.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,52341,80727.26,0.0,0.0,80727.26,16355.57,10407.72,6419.36,33182.65,113909.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",50085,106212.0,24981.61,3672.86,134866.47,22382.67,12424.5,10019.14,44826.31,179692.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,42373,76728.06,16251.02,2120.0,95099.08,16252.9,12424.48,7781.74,36459.12,131558.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14578,149099.0,0.0,1104.85,150203.85,25717.12,12424.5,5775.52,43917.14,194120.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,30372,106723.81,0.0,0.0,106723.81,21790.81,12233.35,8776.38,42800.54,149524.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,53215,36324.34,0.0,6013.44,42337.78,0.0,0.0,719.74,719.74,43057.52 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42334,19442.0,0.0,0.0,19442.0,4275.3,4778.65,1556.78,10610.73,30052.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,18875,72699.01,2191.81,1978.81,76869.63,15248.08,12424.5,6255.63,33928.21,110797.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,5525,34405.0,0.0,0.0,34405.0,6560.54,6690.11,2694.61,15945.26,50350.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,31909,182921.24,0.0,2779.48,185700.72,37237.22,11413.82,10883.44,59534.48,245235.2 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,24979,9742.73,0.0,0.0,9742.73,1813.12,1155.83,751.17,3720.12,13462.85 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,24511,85016.38,0.0,22776.66,107793.04,18652.59,5256.52,12026.43,35935.54,143728.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,6344,5321.5,0.0,262.41,5583.91,0.0,1385.81,433.41,1819.22,7403.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34166,991.8,0.0,880.36,1872.16,227.45,430.07,144.31,801.83,2673.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18360,5909.5,0.0,0.0,5909.5,0.0,2562.56,488.54,3051.1,8960.6 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,34772,234796.0,0.0,4860.0,239656.0,47237.06,12424.5,11780.84,71442.4,311098.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33356,119450.1,4891.54,4265.57,128607.21,23683.69,12424.5,2182.0,38290.19,166897.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38066,18887.58,0.0,202.11,19089.69,2655.28,4689.06,758.52,8102.86,27192.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6281,Fire Safety Inspector 2,17885,135109.0,4946.48,8106.54,148162.02,28837.04,0.0,10354.69,39191.73,187353.75 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,49103,97764.81,2675.2,8769.96,109209.97,25911.55,12424.5,1857.84,40193.89,149403.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,31059,56510.17,0.0,40.0,56550.17,11638.83,12093.76,4479.77,28212.36,84762.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,44135,138635.93,29764.9,16336.14,184736.97,27392.94,12424.5,3149.5,42966.94,227703.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41597,138633.93,19846.86,8246.98,166727.77,27400.21,12424.51,2830.83,42655.55,209383.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24342,3058.05,0.0,969.83,4027.88,813.44,1326.08,325.97,2465.49,6493.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16605,11818.0,0.0,0.0,11818.0,2598.77,2867.19,949.9,6415.86,18233.86 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,312,86061.62,0.0,0.0,86061.62,17686.01,12137.78,6889.6,36713.39,122775.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,20581,82538.44,0.0,0.0,82538.44,16996.54,12251.86,6612.96,35861.36,118399.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,53113,75796.54,161.66,0.0,75958.2,15674.92,8401.89,6106.18,30182.99,106141.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7543,19371.6,0.0,1095.16,20466.76,1639.21,8386.54,1652.77,11678.52,32145.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,46908,45836.0,17885.36,6298.43,70019.79,9448.13,6690.13,5439.44,21577.7,91597.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31968,102274.12,569.73,21634.8,124478.65,23489.64,9617.52,9004.61,42111.77,166590.42 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,23618,70169.48,0.0,802.52,70972.0,12789.06,5734.38,7533.67,26057.11,97029.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",14953,148823.33,56709.28,13679.39,219212.0,31777.69,15052.76,3728.77,50559.22,269771.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,52998,293.3,0.0,11.73,305.03,0.0,47.79,23.61,71.4,376.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,37899,9416.48,0.0,0.0,9416.48,0.0,2813.43,782.54,3595.97,13012.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41427,97769.96,24300.69,17734.56,139805.21,27381.14,12424.5,2335.23,42140.87,181946.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,7774,58466.41,16675.42,27230.68,102372.51,13398.6,6260.04,8234.24,27892.88,130265.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10547,577.08,0.0,34.79,611.87,0.0,283.73,47.48,331.21,943.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,38043,96823.36,25969.31,9326.13,132118.8,20234.59,11935.89,9940.23,42110.71,174229.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,12537,108589.46,0.0,0.0,108589.46,21567.89,10615.71,8325.09,40508.69,149098.15 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,32627,97780.84,17727.32,19254.52,134762.68,27654.43,12424.5,2284.41,42363.34,177126.02 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,5430,83034.03,0.0,0.0,83034.03,17145.19,12424.5,6505.38,36075.07,119109.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52885,68857.13,18154.8,7566.06,94577.99,20915.72,0.0,7438.47,28354.19,122932.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23235,22663.5,0.0,877.9,23541.4,4268.04,2078.72,1859.77,8206.53,31747.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25694,77071.09,6812.03,1560.0,85443.12,16200.66,12424.5,7046.74,35671.9,121115.02 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,27682,98157.0,0.0,0.0,98157.0,20230.58,12424.5,7904.81,40559.89,138716.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,16958,18512.67,0.0,0.0,18512.67,0.0,4078.95,1436.17,5515.12,24027.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31473,57596.12,9407.16,867.05,67870.33,15167.78,13191.78,5970.1,34329.66,102199.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,13432,36295.01,475.88,0.0,36770.89,7469.23,8123.71,2813.79,18406.73,55177.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,30265,83938.51,0.0,0.0,83938.51,16892.75,9318.38,6843.09,33054.22,116992.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,2563,87854.41,0.0,0.0,87854.41,18087.23,12424.49,7217.53,37729.25,125583.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18235,16190.1,0.0,2698.42,18888.52,730.49,0.0,4692.99,5423.48,24312.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24338,75614.84,28723.24,7880.95,112219.03,16576.61,15196.11,1826.62,33599.34,145818.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32140,65191.68,5120.0,1682.09,71993.77,18276.3,0.0,5650.88,23927.18,95920.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14250,6240.0,0.0,0.0,6240.0,0.0,1863.67,483.1,2346.77,8586.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,723,1839.15,0.0,65.34,1904.49,0.0,997.54,147.45,1144.99,3049.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12020,111500.01,11515.93,17714.28,140730.22,24834.36,14288.19,2215.69,41338.24,182068.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,35023,71189.64,1715.9,1260.0,74165.54,14908.67,12424.5,6022.63,33355.8,107521.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,19091,87713.03,0.0,0.0,87713.03,18078.18,12424.5,7166.84,37669.52,125382.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,8927,70245.0,27241.27,9331.95,106818.22,15627.47,12424.5,8696.54,36748.51,143566.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,14509,59315.42,0.0,1383.3,60698.72,12954.88,8826.65,4831.36,26612.89,87311.61 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,36174,64451.59,0.0,509.31,64960.9,13681.18,10140.78,5440.95,29262.91,94223.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7780,14058.47,0.0,19.12,14077.59,0.0,1090.13,1092.4,2182.53,16260.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25119,4336.13,967.2,4.96,5308.29,0.0,1671.03,411.71,2082.74,7391.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,29757,96546.61,0.0,366.08,96912.69,19967.5,11108.7,8041.01,39117.21,136029.9 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,30020,97587.32,7755.51,9759.67,115102.5,26132.3,12400.61,1904.53,40437.44,155539.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,43540,97934.02,8091.21,3166.2,109191.43,20605.19,12424.5,9628.78,42658.47,151849.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2470,Diagnostic Imaging Tech IV,2782,125295.3,609.17,3377.27,129281.74,25360.23,12400.6,9943.16,47703.99,176985.73 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,4075,29524.01,871.52,6593.88,36989.41,5494.41,3345.06,2725.39,11564.86,48554.27 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,23539,100554.04,0.0,2200.0,102754.04,21157.17,12424.5,8268.64,41850.31,144604.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",51578,149556.25,55147.09,20170.04,224873.38,33006.92,14407.64,3173.67,50588.23,275461.61 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,19851,157250.35,0.0,0.0,157250.35,31506.95,12424.5,17635.36,61566.81,218817.16 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),13208,184289.08,0.0,1500.0,185789.08,37388.9,0.0,10915.49,48304.39,234093.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48316,50336.42,0.0,2712.38,53048.8,10517.8,11061.93,4413.01,25992.74,79041.54 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,1297,75899.59,0.0,0.0,75899.59,15417.83,9796.24,6079.31,31293.38,107192.97 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,31140,47789.59,0.0,0.0,47789.59,9819.69,9828.79,3843.63,23492.11,71281.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,15317,95205.11,4920.65,2043.7,102169.46,19710.58,12076.2,8459.62,40246.4,142415.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,18227,92349.9,26495.95,11784.62,130630.47,20607.68,12472.29,9876.61,42956.58,173587.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36505,38476.51,4630.05,1080.02,44186.58,10520.52,12041.79,3139.28,25701.59,69888.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,48127,74740.03,0.0,0.0,74740.03,15370.78,12424.5,6147.28,33942.56,108682.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",31466,3135.95,0.0,0.0,3135.95,0.0,746.67,242.78,989.45,4125.4 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",4100,Property Administration,4119,Events & Facilities Specialist,40563,18738.0,0.0,0.0,18738.0,0.0,3345.06,1487.84,4832.9,23570.9 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,3510,62285.43,0.0,0.0,62285.43,12835.28,12424.5,5066.7,30326.48,92611.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19248,77071.01,9084.56,0.0,86155.57,15884.7,12424.5,7111.51,35420.71,121576.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,28161,138629.96,10777.55,14082.92,163490.43,27414.76,12424.51,2784.47,42623.74,206114.17 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,39978,34495.02,0.0,0.0,34495.02,6419.55,4778.66,2779.67,13977.88,48472.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11370,43597.74,2503.58,2097.41,48198.73,11861.0,13401.55,3652.89,28915.44,77114.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27565,67589.28,9023.93,4240.17,80853.38,19692.14,13319.48,6189.2,39200.82,120054.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,24500,38917.1,5783.76,2868.83,47569.69,9418.64,10871.44,3827.92,24118.0,71687.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22299,16591.8,680.25,272.1,17544.15,1595.6,4444.15,1334.69,7374.44,24918.59 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,12515,24934.06,0.0,0.0,24934.06,6432.98,6212.25,1885.34,14530.57,39464.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49429,6067.9,0.0,875.81,6943.71,1565.51,2631.25,566.66,4763.42,11707.13 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),567,184289.01,0.0,1500.0,185789.01,37388.84,12424.5,10937.52,60750.86,246539.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,46100,0.0,0.0,2715.94,2715.94,0.0,0.0,207.77,207.77,2923.71 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,45575,101047.04,0.0,0.0,101047.04,20826.03,12424.5,8743.52,41994.05,143041.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,41047,75927.03,2449.43,1320.15,79696.61,15648.75,12424.5,6595.89,34669.14,114365.75 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,41547,40697.38,10235.46,1768.91,52701.75,10110.81,9685.49,4012.22,23808.52,76510.27 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,6889,21532.47,0.0,0.0,21532.47,0.0,4896.62,1669.28,6565.9,28098.37 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,16570,1802.06,164.38,0.0,1966.44,0.0,433.07,152.62,585.69,2552.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1628,112692.91,0.0,4089.49,116782.4,22303.27,12424.5,1982.08,36709.85,153492.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,32183,6287.54,0.0,0.0,6287.54,1170.11,1400.74,487.47,3058.32,9345.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,44479,63887.0,1060.48,3986.84,68934.32,13998.56,12424.5,5668.28,32091.34,101025.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9553,16876.5,0.0,0.0,16876.5,400.4,7255.79,1369.06,9025.25,25901.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",31171,180314.38,97782.52,27305.16,305402.06,40610.7,15196.12,4627.67,60434.49,365836.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34444,20321.22,0.0,0.0,20321.22,0.0,5062.99,1611.05,6674.04,26995.26 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46616,5521.0,0.0,312.5,5833.5,1279.87,477.86,460.85,2218.58,8052.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33835,2066.25,0.0,84.3,2150.55,0.0,896.0,181.44,1077.44,3227.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6629,12709.79,41.33,377.04,13128.16,0.0,5511.4,1037.84,6549.24,19677.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,31781,139103.24,1202.37,13704.51,154010.12,27503.98,12424.5,2577.54,42506.02,196516.14 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,46593,84047.29,0.0,0.0,84047.29,17308.46,12424.5,6525.75,36258.71,120306.0 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,42473,6835.33,155.07,145.95,7136.35,0.0,1678.5,553.9,2232.4,9368.75 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,39939,34658.92,3641.3,1347.17,39647.39,7404.56,6403.39,3196.65,17004.6,56651.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51588,140334.01,0.0,1215.52,141549.53,28417.42,12424.5,9952.15,50794.07,192343.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,42171,17635.0,0.0,0.0,17635.0,0.0,5256.51,1400.76,6657.27,24292.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2248,97307.91,11298.93,9054.45,117661.29,20111.75,12424.5,2195.98,34732.23,152393.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,18547,10249.8,0.0,73.58,10323.38,0.0,0.0,816.46,816.46,11139.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,18349,113232.45,8321.89,14979.35,136533.69,25057.25,12424.5,2324.28,39806.03,176339.72 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,26682,74412.04,0.0,3624.0,78036.04,15474.54,12424.5,6482.7,34381.74,112417.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",20880,16056.0,395.13,0.0,16451.13,4142.48,3822.94,1300.87,9266.29,25717.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,25814,46634.43,5792.81,1290.33,53717.57,11435.1,12362.56,4324.93,28122.59,81840.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,1000,98157.01,0.0,7667.23,105824.24,20230.58,12424.5,8624.4,41279.48,147103.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,10578,92176.7,17084.4,15211.34,124472.44,21244.36,12558.9,2118.19,35921.45,160393.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44682,79767.25,469.88,7163.78,87400.91,17747.82,7283.33,6736.15,31767.3,119168.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49259,56418.9,0.0,4518.35,60937.25,12556.82,12399.72,4991.52,29948.06,90885.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33797,3062.51,0.0,0.0,3062.51,0.0,1493.33,237.6,1730.93,4793.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7199,117415.12,92.32,2190.73,119698.17,24004.55,12368.35,9590.91,45963.81,165661.98 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,41922,20438.63,0.0,0.0,20438.63,0.0,3510.53,1585.32,5095.85,25534.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11969,122960.31,1805.9,0.0,124766.21,0.0,10752.03,9829.17,20581.2,145347.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,49019,85368.01,0.0,624.0,85992.01,17723.28,12424.5,6879.12,37026.9,123018.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44608,121926.0,0.0,20988.76,142914.76,28729.81,11133.25,6131.6,45994.66,188909.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,41271,135421.01,0.0,0.0,135421.01,27253.5,12424.52,10128.14,49806.16,185227.17 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),32198,184289.01,0.0,5248.28,189537.29,38144.36,12424.5,11053.34,61622.2,251159.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,34926,54909.02,3668.57,1804.0,60381.59,12688.59,12424.51,4934.39,30047.49,90429.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40173,46871.82,9131.78,625.0,56628.6,11372.58,12424.5,4567.57,28364.65,84993.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17525,6772.75,0.0,0.0,6772.75,0.0,2879.14,548.56,3427.7,10200.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,14215,54418.75,324.15,2613.9,57356.8,11231.59,11960.2,4708.24,27900.03,85256.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23315,65221.23,18534.3,643.41,84398.94,18034.77,12852.02,6335.33,37222.12,121621.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,48566,32160.0,402.0,11176.17,43738.17,5709.66,2867.19,730.54,9307.39,53045.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3260,11604.84,0.0,0.0,11604.84,2415.58,4969.8,946.02,8331.4,19936.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6116,Sprv Wastewater Cont Inspector,5541,105576.07,302.7,0.0,105878.77,21762.56,12424.5,8499.96,42687.02,148565.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",17921,33001.5,1915.21,5098.41,40015.12,6547.06,4922.02,3175.44,14644.52,54659.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",50089,53135.47,20422.22,4613.76,78171.45,10773.07,7971.58,6163.57,24908.22,103079.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8293,8570.55,0.0,1049.54,9620.09,1737.77,3691.51,783.26,6212.54,15832.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,4975,47583.02,408.66,0.0,47991.68,11540.28,10990.9,3908.47,26439.65,74431.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34351,67950.98,17576.45,4002.17,89529.6,19701.13,13388.17,6992.42,40081.72,129611.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19354,45587.7,4408.9,2177.8,52174.4,10900.58,11895.86,4210.22,27006.66,79181.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50380,63732.51,857.86,2395.07,66985.44,18076.33,12557.58,5001.55,35635.46,102620.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3544,Curator 3,33363,82914.02,0.0,0.0,82914.02,17084.27,12424.5,6585.12,36093.89,119007.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,38617,64935.2,62.68,3597.66,68595.54,14069.05,12299.6,5410.08,31778.73,100374.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,18604,43613.56,0.0,250.0,43863.56,9807.82,9894.8,4215.93,23918.55,67782.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23233,6265.6,0.0,52.12,6317.72,0.0,549.55,489.72,1039.27,7356.99 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,5524,59737.7,0.0,0.0,59737.7,13313.81,12424.5,4745.72,30484.03,90221.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47467,6054.48,0.0,144.7,6199.18,0.0,3055.35,480.55,3535.9,9735.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,43284,154.3,0.0,0.0,154.3,0.0,47.79,11.95,59.74,214.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39767,22392.78,271.48,0.0,22664.26,5777.32,4988.68,1786.84,12552.84,35217.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,4927,70791.0,1430.86,4308.11,76529.97,15469.2,12424.51,5884.04,33777.75,110307.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42821,55974.02,0.0,1188.0,57162.02,12206.41,9079.44,4740.79,26026.64,83188.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,16598,68722.05,0.0,0.0,68722.05,14164.02,12424.52,5421.35,32009.89,100731.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7258,Maintenance Machinist Sprv 1,36812,94411.5,0.0,600.0,95011.5,19838.32,10910.43,7607.76,38356.51,133368.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17444,69050.18,20531.61,2032.87,91614.66,19473.78,13608.72,6946.98,40029.48,131644.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,20881,15978.62,0.0,0.0,15978.62,0.0,5265.48,1313.52,6579.0,22557.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,11788,65101.17,4817.74,3845.77,73764.68,13768.4,12400.61,6063.08,32232.09,105996.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29961,2771.97,0.0,6.76,2778.73,0.0,1436.58,215.38,1651.96,4430.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26177,77856.3,720.11,3577.53,82153.94,15750.04,11946.64,4391.17,32087.85,114241.79 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,7706,22012.19,0.0,192.95,22205.14,4871.81,1911.46,2723.33,9506.6,31711.74 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,47184,49605.64,0.0,0.0,49605.64,0.0,5199.77,3845.57,9045.34,58650.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,1852,138637.93,17220.26,10675.57,166533.76,27385.65,12424.51,2837.75,42647.91,209181.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40235,661.2,0.0,0.0,661.2,170.59,286.72,58.67,515.98,1177.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50682,56531.0,0.0,5488.09,62019.09,12358.18,12424.5,5077.18,29859.86,91878.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24095,29444.55,0.0,1128.7,30573.25,256.25,7744.41,2385.01,10385.67,40958.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,2971,973.0,0.0,0.0,973.0,213.95,238.93,78.2,531.08,1504.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28040,112159.76,1707.41,23528.78,137395.95,26522.94,15052.75,2285.31,43861.0,181256.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,40499,97793.02,46491.23,21782.92,166067.17,23014.65,12424.5,10561.23,46000.38,212067.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49401,34566.3,0.0,0.0,34566.3,6939.88,5304.3,2659.64,14903.82,49470.12 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",15248,198139.02,0.0,1500.0,199639.02,40176.58,12424.5,11142.6,63743.68,263382.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38128,10214.99,0.0,0.0,10214.99,983.52,4429.57,820.73,6233.82,16448.81 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,556.0,Elected Officials,4300,Revenue,4390,Treasurer,160,179823.99,0.0,0.0,179823.99,36166.65,12424.5,17623.9,66215.05,246039.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",33549,82535.01,29321.89,4713.67,116570.57,17198.87,12424.5,9501.6,39124.97,155695.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,42870,116976.01,40203.24,17685.24,174864.49,25562.47,12424.5,10717.04,48704.01,223568.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,12430,71612.1,477.06,0.0,72089.16,14759.42,12424.5,5874.75,33058.67,105147.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14616,8637.86,0.0,1700.52,10338.38,551.47,0.0,2254.32,2805.79,13144.17 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,51785,65117.0,0.0,0.0,65117.0,14334.46,11229.84,5296.31,30860.61,95977.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23937,65860.84,2782.72,1228.72,69872.28,18373.69,12979.3,5199.29,36552.28,106424.56 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,1870,58101.0,0.0,0.0,58101.0,11974.94,12424.5,4773.35,29172.79,87273.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49894,81130.98,0.0,17032.81,98163.79,2375.24,0.0,8159.27,10534.51,108698.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,32162,43982.41,16316.35,8920.74,69219.5,10811.46,6498.97,5598.39,22908.82,92128.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,14859,40861.0,0.0,0.0,40861.0,9789.73,12281.15,3182.1,25252.98,66113.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13160,2039.63,0.0,0.0,2039.63,0.0,994.55,158.08,1152.63,3192.26 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,47909,52765.45,0.0,80.0,52845.45,10895.26,9703.64,4014.62,24613.52,77458.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8816,125016.94,20997.98,12529.64,158544.56,24746.31,12424.5,2694.16,39864.97,198409.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,40734,69247.02,4323.46,1033.82,74604.3,14272.16,12424.5,6007.29,32703.95,107308.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,3204,59332.75,0.0,1360.0,60692.75,12678.88,10281.93,4404.38,27365.19,88057.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8153,46713.84,0.0,6949.64,53663.48,12153.33,12343.87,4338.61,28835.81,82499.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,4641,100761.0,43390.92,6084.68,150236.6,20905.7,12424.5,10190.9,43521.1,193757.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,47357,54754.91,0.0,0.0,54754.91,12209.04,11839.12,4468.92,28517.08,83271.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,16044,5157.15,0.0,38.33,5195.48,0.0,1711.36,403.19,2114.55,7310.03 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,33788,74412.06,0.0,4624.0,79036.06,15680.5,12424.5,7064.73,35169.73,114205.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,37373,21145.02,0.0,0.0,21145.02,4649.76,5256.52,1690.24,11596.52,32741.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,45001,63887.0,94.54,0.0,63981.54,13167.4,12424.5,5293.47,30885.37,94866.91 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,16829,1330.0,0.0,1076.3,2406.3,298.32,238.93,185.31,722.56,3128.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45685,34618.68,0.0,2466.27,37084.95,0.0,2867.07,2862.09,5729.16,42814.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",52043,148809.28,20909.32,19863.87,189582.47,33057.11,15052.76,3177.75,51287.62,240870.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,29859,62205.69,1871.09,793.66,64870.44,12999.35,12281.15,5018.25,30298.75,95169.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,21686,70885.73,0.0,1480.0,72365.73,14887.65,12424.51,5836.51,33148.67,105514.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,45013,40878.35,1453.22,2643.4,44974.97,9836.23,10926.51,2911.53,23674.27,68649.24 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,42266,10456.0,343.09,0.0,10799.09,1945.88,1911.46,852.38,4709.72,15508.81 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,15973,58678.5,0.0,0.0,58678.5,13116.67,12424.5,4742.97,30284.14,88962.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9322,73914.89,9980.57,8945.47,92840.93,14889.38,7645.85,1574.84,24110.07,116951.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,32551,49679.0,0.0,6843.8,56522.8,13029.76,12424.5,4615.55,30069.81,86592.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38767,66569.01,9692.15,2200.29,78461.45,18827.36,13114.84,6122.72,38064.92,116526.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,6112,88535.03,0.0,0.0,88535.03,18210.73,12424.52,7127.93,37763.18,126298.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17125,123763.79,536.4,15514.38,139814.57,25208.29,10958.65,4299.0,40465.94,180280.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50969,149099.01,1186.1,42806.27,193091.38,22924.41,12424.5,5446.27,40795.18,233886.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,32655,97762.43,6182.39,11702.11,115646.93,25904.2,12424.51,1960.49,40289.2,155936.13 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,2786,99791.58,0.0,0.0,99791.58,22770.94,12374.86,1642.29,36788.09,136579.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,43942,92964.81,0.0,2210.5,95175.31,19596.49,12328.92,7060.76,38986.17,134161.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,46385,84644.02,15712.04,13481.21,113837.27,19599.6,12424.5,9037.64,41061.74,154899.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,15357,65592.0,0.0,2580.9,68172.9,13851.82,12424.5,5572.02,31848.34,100021.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21562,36702.4,60.95,2684.64,39447.99,761.69,0.0,4576.52,5338.21,44786.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,35202,32249.27,551.35,1438.53,34239.15,7701.92,7593.58,2747.6,18043.1,52282.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22171,0.0,0.0,250.0,250.0,0.0,68.5,534.86,603.36,853.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,553,47443.2,4860.0,2990.2,55293.4,11371.83,12424.5,4401.67,28198.0,83491.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,40491,61004.81,3717.54,0.0,64722.35,12567.5,12390.16,5179.82,30137.48,94859.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,22482,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8510.09,42906.4,149511.41 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,27618,61735.04,0.0,624.0,62359.04,12852.63,12424.5,5169.23,30446.36,92805.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,20212,62541.67,1816.12,12007.13,76364.92,14213.79,11062.58,6011.65,31288.02,107652.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,7055,93681.01,0.0,1696.26,95377.27,19655.57,12424.5,7729.96,39810.03,135187.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50271,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3355.45,18181.3,61948.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,20886,32463.95,0.0,794.82,33258.77,7459.91,5472.1,2685.19,15617.2,48875.97 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,8828,193028.0,0.0,34150.05,227178.05,44308.03,12424.5,2861.35,59593.88,286771.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45428,70245.0,27055.82,12042.44,109343.26,16006.04,12424.5,8890.07,37320.61,146663.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35459,7964.6,0.0,128.03,8092.63,0.0,3392.84,643.54,4036.38,12129.01 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8217,Comm Pol Svcs Aide Supervisor,44830,78152.15,15335.26,5822.12,99309.53,16578.31,12352.82,7961.03,36892.16,136201.69 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,46598,72097.06,0.0,0.0,72097.06,15422.52,7632.41,5681.55,28736.48,100833.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25427,82191.79,20707.91,5611.57,108511.27,16889.13,9079.44,1809.12,27777.69,136288.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,42084,7542.5,0.0,0.0,7542.5,0.0,1672.51,583.94,2256.45,9798.95 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,32218,209344.91,0.0,41616.75,250961.66,48368.15,12424.5,11924.02,72716.67,323678.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30866,8375.2,0.0,0.0,8375.2,0.0,3631.78,648.41,4280.19,12655.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,53204,39992.0,0.0,0.0,39992.0,9618.96,12018.31,2851.49,24488.76,64480.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,11679,61554.21,932.66,13747.78,76234.65,15188.23,10889.36,6001.11,32078.7,108313.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,52771,58532.72,0.0,1060.0,59592.72,12286.47,12424.5,4812.05,29523.02,89115.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28530,63887.0,93.06,1908.68,65888.74,13563.37,12424.5,5444.3,31432.17,97320.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32301,56531.0,0.0,6883.34,63414.34,12415.09,12424.5,5180.65,30020.24,93434.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",37906,60911.04,843.26,754.03,62508.33,13379.82,8123.7,5158.26,26661.78,89170.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3555,114558.1,931.73,19203.62,134693.45,25005.73,11110.96,9881.0,45997.69,180691.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21730,126248.7,214.56,444.45,126907.71,23322.73,11177.28,6129.01,40629.02,167536.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",10093,68133.0,0.0,26205.0,94338.0,14948.44,6212.25,11304.13,32464.82,126802.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,32107,71612.02,3051.26,3555.15,78218.43,14888.01,12424.5,6417.57,33730.08,111948.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",50111,133778.68,0.0,14841.16,148619.84,29179.96,12520.08,2361.09,44061.13,192680.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,24472,87110.09,0.0,0.0,87110.09,17732.29,9870.91,6505.18,34108.38,121218.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,5974,69634.83,0.0,0.0,69634.83,14347.22,12376.71,5776.74,32500.67,102135.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,8257,129874.84,88431.45,17835.2,236141.49,29061.03,15052.77,3920.16,48033.96,284175.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,52075,55474.32,1115.81,6170.95,62761.08,13462.57,10778.24,4840.77,29081.58,91842.66 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,20832,208032.0,0.0,1500.0,209532.0,42167.46,12424.5,11402.59,65994.55,275526.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,2408,27482.95,93.36,0.0,27576.31,6169.24,6688.62,2237.14,15095.0,42671.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1061,IS Program Analyst-Assistant,4377,66805.82,380.53,0.0,67186.35,13750.73,12424.5,5120.32,31295.55,98481.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,22389,131816.34,0.0,0.0,131816.34,26443.07,11573.48,20330.97,58347.52,190163.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29184,825.05,0.0,0.0,825.05,0.0,346.45,64.03,410.48,1235.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25801,74435.95,1750.48,8005.14,84191.57,0.0,5596.88,1705.06,7301.94,91493.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9129,56531.0,0.0,1651.8,58182.8,11651.3,12424.5,4818.63,28894.43,87077.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39770,13449.87,0.0,735.32,14185.19,0.0,3660.15,1099.33,4759.48,18944.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,4228,0.0,0.0,1559.5,1559.5,0.0,68.5,119.3,187.8,1747.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,840,93.37,0.0,0.0,93.37,0.0,50.47,7.23,57.7,151.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22435,2920.3,0.0,0.0,2920.3,0.0,1266.34,226.09,1492.43,4412.73 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,472C,Fiscal Technician,50258,42786.76,0.0,3000.0,45786.76,8617.1,9576.73,3743.99,21937.82,67724.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51180,2929.5,0.0,0.0,2929.5,0.0,1128.96,227.28,1356.24,4285.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,52985,85004.0,723.57,3968.0,89695.57,18337.17,12424.5,7330.84,38092.51,127788.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,40273,24706.33,0.0,1451.27,26157.6,0.0,1990.61,2027.06,4017.67,30175.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1172,147814.1,142.33,39664.82,187621.25,35602.06,12318.36,4505.24,52425.66,240046.91 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7389,Metalsmith,44502,74165.06,0.0,0.0,74165.06,15285.75,12424.5,6116.32,33826.57,107991.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8833,327.18,0.0,9.67,336.85,0.0,137.38,26.15,163.53,500.38 +Calendar,2015,1,Public Protection,POL,Police,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45507,183561.72,0.0,1500.0,185061.72,37256.99,12376.71,10891.24,60524.94,245586.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,19402,127316.36,0.0,0.0,127316.36,25622.54,12424.5,17171.85,55218.89,182535.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,51535,54779.05,0.0,836.2,55615.25,12443.99,12424.5,4608.65,29477.14,85092.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50245,13109.21,0.0,628.22,13737.43,2999.87,0.0,1769.68,4769.55,18506.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,51593,73749.0,0.0,3721.15,77470.15,15519.8,12424.5,6411.48,34355.78,111825.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,12937,75835.23,0.0,1842.84,77678.07,16105.08,8028.13,6126.97,30260.18,107938.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,29502,97530.14,0.0,0.0,97530.14,20088.97,12372.95,8092.53,40554.45,138084.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39526,50386.17,9895.69,1871.95,62153.81,11302.9,11213.47,4967.22,27483.59,89637.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,17279,64549.97,3151.0,281.55,67982.52,13357.13,12424.48,5516.63,31298.24,99280.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6246,Senior Plumbing Inspector,4704,124338.11,185.37,6809.12,131332.6,26381.95,12424.5,9964.07,48770.52,180103.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,34121,117071.17,17587.71,45854.64,180513.52,23691.69,12377.07,10819.43,46888.19,227401.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21755,119467.48,4637.28,15377.96,139482.72,24090.22,12424.5,2336.26,38850.98,178333.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19961,56531.0,0.0,6352.2,62883.2,12311.23,12424.5,5190.39,29926.12,92809.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,5721,102019.01,0.0,0.0,102019.01,21026.27,12424.51,8306.04,41756.82,143775.83 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,39956,95968.0,0.0,142.05,96110.05,19779.21,12424.51,8357.02,40560.74,136670.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41031,138635.92,15516.58,5838.16,159990.66,27392.94,12424.51,2547.13,42364.58,202355.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,1714,526.8,0.0,0.0,526.8,0.0,143.3,40.79,184.09,710.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27386,97766.83,1210.1,8769.96,107746.89,25912.06,12424.5,1834.01,40170.57,147917.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,7410,14800.0,0.0,444.0,15244.0,2836.91,2389.33,1105.84,6332.08,21576.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1944,Materials Coordinator,36960,34392.0,0.0,0.0,34392.0,7545.6,3822.93,2844.3,14212.83,48604.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,43928,65471.38,304.44,993.6,66769.42,13808.64,11514.33,5287.72,30610.69,97380.11 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,18847,31473.84,0.0,0.0,31473.84,6905.34,2867.19,4238.76,14011.29,45485.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46603,124393.91,0.0,250.0,124643.91,25105.82,10367.89,9786.13,45259.84,169903.75 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,35796,74412.02,0.0,5055.0,79467.02,15474.52,12424.5,6592.18,34491.2,113958.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24976,139484.04,0.0,5554.25,145038.29,21519.44,12424.5,7085.63,41029.57,186067.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,3431,14366.2,1044.18,10.8,15421.18,3709.27,4778.68,1248.06,9736.01,25157.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2935,"Sr Marriage, Fam & Cld Cnslr",44143,97424.04,0.0,0.0,97424.04,20079.54,12424.51,7944.53,40448.58,137872.62 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9989,6356.37,0.0,993.9,7350.27,1758.74,1708.37,597.62,4064.73,11415.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,19688,1053.5,0.0,12.5,1066.0,0.0,312.1,8.59,320.69,1386.69 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17301,20234.51,579.99,0.0,20814.5,1047.35,5399.88,1689.01,8136.24,28950.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2083,63828.56,20218.85,562.29,84609.7,17604.64,12577.84,6603.21,36785.69,121395.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,32195,82883.0,475.2,600.0,83958.2,17194.05,12424.51,6885.28,36503.84,120462.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,1532,72229.04,0.0,0.0,72229.04,15432.0,8852.46,5620.12,29904.58,102133.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1871,56531.01,0.0,2614.35,59145.36,11780.12,12424.5,5476.88,29681.5,88826.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,45521,44358.01,0.0,0.0,44358.01,8458.47,6690.11,3538.0,18686.58,63044.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,17839,83148.05,0.0,0.0,83148.05,17137.11,12424.53,6823.58,36385.22,119533.27 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,19685,48448.81,3472.55,578.65,52500.01,10907.6,10475.66,4348.9,25732.16,78232.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,19118,28067.43,0.0,22156.84,50224.27,6157.99,2962.77,5987.47,15108.23,65332.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,23477,97424.01,0.0,672.0,98096.01,20211.67,12424.49,8100.17,40736.33,138832.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,39175,28347.85,0.0,13.44,28361.29,0.0,2520.74,1427.58,3948.32,32309.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,17425,82717.01,6696.05,10675.81,100088.87,18410.6,12424.5,7983.56,38818.66,138907.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,32519,15038.47,0.0,0.0,15038.47,3299.43,1624.74,2144.61,7068.78,22107.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,18528,35534.01,206.15,0.0,35740.16,6923.67,7645.85,2882.93,17452.45,53192.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2013,94680.73,22569.72,11188.37,128438.82,19663.77,12424.51,2144.68,34232.96,162671.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,19008,143188.01,0.0,0.0,143188.01,28816.77,12424.5,10209.93,51451.2,194639.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51963,45818.39,1339.94,6233.57,53391.9,8583.43,4677.71,4280.75,17541.89,70933.79 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,5240,76900.01,0.0,0.0,76900.01,15653.58,10883.44,5957.86,32494.88,109394.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17129,45170.46,5433.72,1349.74,51953.92,12035.04,13315.13,3948.76,29298.93,81252.85 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",29815,59363.62,18151.12,9743.68,87258.42,15763.79,10620.08,1707.77,28091.64,115350.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,20308,44178.17,0.0,0.0,44178.17,8221.53,5549.22,3501.49,17272.24,61450.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,21232,97764.64,12335.69,14143.42,124243.75,27217.59,12424.5,2068.73,41710.82,165954.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,15514,10775.0,0.0,0.0,10775.0,0.0,2389.32,835.89,3225.21,14000.21 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,47664,77030.94,0.0,125.0,77155.94,15876.07,12418.05,6385.18,34679.3,111835.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26559,55059.18,2039.69,3809.53,60908.4,12611.72,12246.38,4663.83,29521.93,90430.33 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,51559,58897.53,0.0,3598.29,62495.82,13986.36,12251.76,5073.08,31311.2,93807.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16137,64783.04,31744.59,7406.57,103934.2,19664.21,12756.62,7882.76,40303.59,144237.79 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33931,4690.0,0.0,136.5,4826.5,0.0,2001.06,373.66,2374.72,7201.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3435,Urban Forestry Inspector,32052,35112.01,0.0,0.0,35112.01,7875.6,5734.38,2900.35,16510.33,51622.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5979,97755.87,13317.65,13635.03,124708.55,27084.75,12424.5,2119.57,41628.82,166337.37 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,10054,78833.56,0.0,0.0,78833.56,16210.4,12120.88,6079.26,34410.54,113244.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,18270,31382.8,0.0,0.0,31382.8,4512.42,9491.6,2496.09,16500.11,47882.91 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,5090,125815.11,0.0,0.0,125815.11,25316.37,12424.5,9923.74,47664.61,173479.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48651,87932.09,0.0,1025.0,88957.09,0.0,7703.85,6736.91,14440.76,103397.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10052,31370.06,306.23,799.2,32475.49,4841.61,7391.15,2619.88,14852.64,47328.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40948,77025.25,0.0,6197.74,83222.99,0.0,5131.08,6425.45,11556.53,94779.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9104,Transit Car Cleaner Asst Sprv,1803,68867.0,9568.4,14930.4,93365.8,16165.79,12424.5,7650.45,36240.74,129606.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8944,27024.62,3308.07,482.84,30815.53,6889.13,8408.97,2377.71,17675.81,48491.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,11724,7224.66,0.0,122.48,7347.14,1615.65,2138.45,589.34,4343.44,11690.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,16604,82103.0,2863.42,880.2,85846.62,17104.35,12424.5,6677.78,36206.63,122053.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,22056,117139.19,16559.95,13197.21,146896.35,23170.33,12424.5,2457.03,38051.86,184948.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13616,80468.18,2752.3,17111.15,100331.63,17860.04,7268.64,6246.52,31375.2,131706.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,9297,135421.0,0.0,0.0,135421.0,27253.5,12424.53,10072.48,49750.51,185171.51 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,16186,37565.43,0.0,3000.0,40565.43,7570.45,6764.18,3418.55,17753.18,58318.61 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),3736,184289.01,0.0,1562.5,185851.51,37402.56,12424.5,10992.94,60820.0,246671.51 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",38729,52541.0,0.0,0.0,52541.0,10829.02,6212.25,4331.71,21372.98,73913.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33196,14465.51,497.99,1544.36,16507.86,2797.32,1764.87,281.16,4843.35,21351.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,28006,149099.02,0.0,5978.0,155077.02,31159.66,12424.5,10306.75,53890.91,208967.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,47604,116384.06,0.0,0.0,116384.06,23386.76,12424.52,9575.12,45386.4,161770.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47764,20252.8,0.0,0.0,20252.8,1176.08,8721.05,1570.22,11467.35,31720.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,5769,153919.8,0.0,250.0,154169.8,30965.99,11182.06,10221.9,52369.95,206539.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,29941,74105.43,0.0,0.0,74105.43,15240.2,12424.5,5861.42,33526.12,107631.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30597,11547.9,0.0,0.0,11547.9,794.54,4945.9,941.61,6682.05,18229.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,875,25820.0,13398.19,299.05,39517.24,6425.34,9557.31,3047.86,19030.51,58547.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,43480,3203.0,0.0,36.0,3239.0,602.78,477.86,251.4,1332.04,4571.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,44587,18214.14,0.0,0.0,18214.14,0.0,4533.75,1411.89,5945.64,24159.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",23451,82535.0,6783.99,7572.68,96891.67,17706.25,12424.5,7650.41,37781.16,134672.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",2018,5060.0,1043.63,280.59,6384.22,898.66,477.86,109.4,1485.92,7870.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,52678,1119.11,497.11,66.78,1683.0,0.0,370.34,130.3,500.64,2183.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49561,657.48,0.0,41.55,699.03,0.0,355.41,54.11,409.52,1108.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,12727,4516.3,0.0,71.31,4587.61,1019.95,906.63,337.14,2263.72,6851.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13921,45422.7,0.0,3506.0,48928.7,1623.15,0.0,5378.59,7001.74,55930.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7385,11047.55,0.0,110.68,11158.23,1342.78,4790.6,893.75,7027.13,18185.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,51966,45129.88,0.0,4.03,45133.91,766.12,3374.93,3434.8,7575.85,52709.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26461,69696.31,16900.43,4869.99,91466.73,20429.03,13729.79,6935.81,41094.63,132561.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44506,66929.79,4932.29,5883.8,77745.88,19959.88,13188.72,6066.19,39214.79,116960.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15871,6210.99,0.0,27.79,6238.78,0.0,1553.05,483.93,2036.98,8275.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",33161,93281.06,0.0,0.0,93281.06,19225.75,12424.5,7738.47,39388.72,132669.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,16763,19767.71,0.0,2471.0,22238.71,4772.44,2293.76,375.69,7441.89,29680.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,21856,0.0,0.0,1677.93,1677.93,0.0,0.0,128.36,128.36,1806.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30392,55734.22,1523.38,2105.98,59363.58,15755.82,10982.6,4517.29,31255.71,90619.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43682,73805.6,0.0,3.5,73809.1,0.0,6451.0,5724.89,12175.89,85984.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50786,97298.31,18218.88,21022.05,136539.24,28777.15,12364.77,2279.91,43421.83,179961.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14905,7080.67,0.0,74.78,7155.45,0.0,2350.51,554.37,2904.88,10060.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17180,67218.38,5950.18,1843.57,75012.13,18920.74,0.0,5890.07,24810.81,99822.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,21016,52710.0,31969.88,5888.1,90567.98,11428.75,9557.31,7341.7,28327.76,118895.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37026,124805.0,888.41,25120.08,150813.49,25564.27,11049.74,10119.45,46733.46,197546.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1802,Research Assistant,35329,63783.2,0.0,0.0,63783.2,13119.78,12424.5,5189.14,30733.42,94516.62 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,22914,67261.0,25708.51,4376.37,97345.88,14333.0,12424.5,7696.71,34454.21,131800.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q037,Assistant Inspector 3,17607,138635.26,35642.42,18985.49,193263.17,27395.36,12424.5,3405.98,43225.84,236489.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),19712,11034.9,0.0,0.0,11034.9,0.0,3201.7,856.49,4058.19,15093.09 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8452,Criminal Justice Specialist 2,34330,95968.0,0.0,1040.0,97008.0,19992.61,12424.5,8030.53,40447.64,137455.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,11575,61451.82,0.0,0.0,61451.82,12660.48,12367.16,4860.05,29887.69,91339.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,9325,113233.61,7487.53,15627.39,136348.53,24474.74,15196.12,2267.55,41938.41,178286.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,24607,72141.36,0.0,20.0,72161.36,14826.86,10492.07,5927.63,31246.56,103407.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12381,71319.52,0.0,7378.49,78698.01,0.0,6110.65,6099.81,12210.46,90908.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32383,17031.69,0.0,1976.26,19007.95,641.79,0.0,3963.48,4605.27,23613.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,40657,85368.05,0.0,1460.0,86828.05,17899.2,12424.5,6549.78,36873.48,123701.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23171,12539.34,0.0,71.78,12611.12,1003.69,0.0,2074.85,3078.54,15689.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25342,8382.1,0.0,774.84,9156.94,1373.59,3634.76,741.82,5750.17,14907.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,11224,75605.0,0.0,3281.25,78886.25,15722.38,12424.5,6530.9,34677.78,113564.03 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,14623,107562.01,0.0,5068.5,112630.51,21660.43,12424.5,31954.35,66039.28,178669.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,48629,19305.0,0.0,0.0,19305.0,4141.63,4300.78,1568.53,10010.94,29315.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,6293,90357.01,0.0,1614.4,91971.41,18933.82,12424.5,7398.86,38757.18,130728.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",28231,47736.28,240.71,16377.29,64354.28,10980.79,6396.95,5255.19,22632.93,86987.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12162,83289.31,74383.59,5719.13,163392.03,18027.09,12424.5,10447.44,40899.03,204291.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18564,34690.3,0.0,0.0,34690.3,6490.08,5304.3,2676.74,14471.12,49161.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31397,54052.33,13800.89,3302.01,71155.23,16258.22,10749.28,5555.86,32563.36,103718.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13900,735.5,0.0,0.0,735.5,0.0,0.0,12.17,12.17,747.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,38122,37590.0,0.0,1956.6,39546.6,8486.12,6690.11,3150.81,18327.04,57873.64 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,43931,46241.0,0.0,5302.6,51543.6,11159.79,3106.13,4180.18,18446.1,69989.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",40958,94466.09,2331.84,5181.28,101979.21,20056.43,12298.94,8340.54,40695.91,142675.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1032,IS Trainer-Journey,52922,87713.02,0.0,0.0,87713.02,18078.18,12424.5,7200.7,37703.38,125416.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,32209,0.0,0.0,5553.79,5553.79,0.0,0.0,80.53,80.53,5634.32 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,37286,59684.27,266.78,678.47,60629.52,12371.88,11020.29,4999.45,28391.62,89021.14 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,46671,61748.18,0.0,605.32,62353.5,12890.86,12052.49,5045.5,29988.85,92342.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9392,44466.39,1189.88,2903.12,48559.39,11205.3,10918.27,3905.13,26028.7,74588.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,45240,52197.02,0.0,1893.45,54090.47,12467.2,11810.39,4357.71,28635.3,82725.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6364,118822.04,312.36,22219.67,141354.07,16112.01,10527.61,5117.23,31756.85,173110.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,26235,117129.71,8716.96,8521.35,134368.02,23205.21,12424.5,2288.75,37918.46,172286.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,20480,29505.02,964.21,0.0,30469.23,6688.38,7167.99,2430.21,16286.58,46755.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,13138,101323.03,15014.53,1523.0,117860.56,21197.96,12424.5,9620.7,43243.16,161103.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,47364,81394.65,59.85,1335.74,82790.24,17058.88,12202.54,6575.17,35836.59,118626.83 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8147,Sr District Atty Investigator,12477,119046.01,0.0,7142.76,126188.77,28784.44,12424.51,2092.94,43301.89,169490.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8159,Child Support Officer III,41352,93281.01,0.0,624.0,93905.01,19354.57,12424.5,7742.87,39521.94,133426.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,8251,17564.94,0.0,0.0,17564.94,0.0,3840.83,1402.92,5243.75,22808.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,2938,66580.0,0.0,0.0,66580.0,13722.34,12424.5,5416.74,31563.58,98143.58 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,46061,95968.0,0.0,0.0,95968.0,19779.2,12424.5,7909.68,40113.38,136081.38 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,29322,20369.02,386.33,0.0,20755.35,0.0,4641.28,1609.17,6250.45,27005.8 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,47628,61735.0,0.0,631.08,62366.08,12854.21,12424.5,5046.39,30325.1,92691.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,48360,58492.1,0.0,3687.73,62179.83,11975.91,9115.29,4892.87,25984.07,88163.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26572,812.55,0.0,63.06,875.61,0.0,203.09,67.81,270.9,1146.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48894,124248.49,301.73,22991.12,147541.34,27111.5,11000.17,9289.78,47401.45,194942.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,7024,14259.67,0.0,1006.14,15265.81,0.0,3763.19,1184.87,4948.06,20213.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,6785,57928.33,8123.21,12141.83,78193.37,13738.26,12424.5,6231.39,32394.15,110587.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,50467,67172.3,287.87,623.17,68083.34,13971.43,12408.01,5643.67,32023.11,100106.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2915,Program Specialist Supervisor,18339,98812.02,0.0,0.0,98812.02,20360.14,12424.51,8196.68,40981.33,139793.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7484,Sr Power Generation Tech,3413,109181.98,21751.03,6435.63,137368.64,23094.79,12197.51,10037.9,45330.2,182698.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,23724,76393.01,0.0,0.0,76393.01,15629.99,11468.77,6150.98,33249.74,109642.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,19279,138635.26,21755.13,3607.85,163998.24,27395.36,12424.5,2785.22,42605.08,206603.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,25444,7270.19,0.0,49.02,7319.21,0.0,531.62,567.68,1099.3,8418.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,4679,166171.0,15878.57,1905.3,183954.87,33441.88,12424.5,10877.99,56744.37,240699.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,8750,0.0,0.0,1039.24,1039.24,0.0,0.0,79.5,79.5,1118.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39343,56163.3,69.69,1472.08,57705.07,10885.46,8601.58,3973.38,23460.42,81165.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,15695,92919.57,0.0,175.0,93094.57,19176.25,12424.5,7428.57,39029.32,132123.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,19580,80371.81,11075.54,13458.16,104905.51,18929.58,12187.96,8561.02,39678.56,144584.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,39552,53480.1,24695.03,5008.62,83183.75,12820.75,7311.34,6614.85,26746.94,109930.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41118,67959.06,28437.83,9223.86,105620.75,21148.02,13390.04,8055.94,42594.0,148214.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,32953,8664.33,0.0,61.31,8725.64,0.0,3140.48,676.29,3816.77,12542.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10895,65878.41,8410.98,7602.76,81892.15,20086.56,12979.07,6394.43,39460.06,121352.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,37242,62468.82,20286.5,3546.2,86301.52,13162.27,12424.5,6791.37,32378.14,118679.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",51319,9733.95,94.08,0.0,9828.03,0.0,2317.65,762.44,3080.09,12908.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17893,98731.62,520.1,13976.55,113228.27,20928.96,8881.97,9160.6,38971.53,152199.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,38608,88867.06,0.0,1680.0,90547.06,18362.66,12424.5,6940.15,37727.31,128274.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,27287,23904.0,0.0,0.0,23904.0,0.0,3345.06,1896.85,5241.91,29145.91 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,17160,2571.0,0.0,40.0,2611.0,585.65,477.86,197.0,1260.51,3871.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,50074,101380.25,0.0,100.0,101480.25,20211.71,11247.4,8058.4,39517.51,140997.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,41603,84644.0,40031.5,7992.18,132667.68,17827.0,12424.5,9892.1,40143.6,172811.28 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8147,Sr District Atty Investigator,52494,118135.82,0.0,7088.15,125223.97,28555.97,12328.92,1257.94,42142.83,167366.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,8571,6237.0,116.94,110.0,6463.94,1188.12,1433.6,519.31,3141.03,9604.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,23238,102019.07,10017.45,1335.26,113371.78,21026.26,12424.5,9308.08,42758.84,156130.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18950,1280.13,0.0,0.0,1280.13,0.0,624.21,99.32,723.53,2003.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,31287,117135.27,22347.8,6018.51,145501.58,23184.68,12424.5,2461.42,38070.6,183572.18 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,11520,180520.03,0.0,18052.0,198572.03,39962.93,12424.51,11047.36,63434.8,262006.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,43389,62465.23,38186.28,8902.87,109554.38,13860.68,12424.5,8831.94,35117.12,144671.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,CFC,Children and Families Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,38980,113852.0,0.0,0.0,113852.0,22913.02,12424.5,9392.15,44729.67,158581.67 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,40137,3772.0,0.0,0.0,3772.0,829.46,955.73,292.58,2077.77,5849.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,13244,5336.26,0.0,41.31,5377.57,1201.79,1057.22,457.18,2716.19,8093.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37321,89687.98,6707.45,11267.03,107662.46,0.0,7089.85,8344.83,15434.68,123097.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,33324,32746.57,0.0,1893.55,34640.12,8198.43,7521.9,2683.61,18403.94,53044.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37132,17931.31,2941.11,915.21,21787.63,4826.2,5535.95,1678.97,12041.12,33828.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,47670,103084.4,76182.96,17419.57,196686.93,23547.36,11851.07,11089.32,46487.75,243174.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,36711,58128.78,0.0,624.3,58753.08,12108.79,12430.47,4869.88,29409.14,88162.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,33313,115098.5,27987.86,443.56,143529.92,23854.21,12424.5,10179.29,46458.0,189987.92 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,18716,71997.0,0.0,48.0,72045.0,14847.78,12424.5,5923.73,33196.01,105241.01 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),22769,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11013.5,61568.64,251043.42 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,12397,84972.99,0.0,624.0,85596.99,17641.99,12424.5,7046.47,37112.96,122709.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,23532,66102.03,0.0,30.0,66132.03,14798.5,12424.73,5366.19,32589.42,98721.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",800,13446.9,0.0,0.0,13446.9,0.0,3201.71,35.58,3237.29,16684.19 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5074,44652.03,462.57,3099.12,48213.72,11231.07,5734.39,791.51,17756.97,65970.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31478,76725.08,8430.33,6374.87,91530.28,16359.2,10354.93,1344.84,28058.97,119589.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,41366,31520.79,0.0,0.0,31520.79,4720.31,9491.6,2498.79,16710.7,48231.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,24719,68991.02,0.0,52829.64,121820.66,15189.59,6212.25,1928.58,23330.42,145151.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,969,128123.69,67228.97,15413.37,210766.03,28256.22,14880.91,3598.44,46735.57,257501.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,52264,2847.0,0.0,0.0,2847.0,529.83,477.86,167.9,1175.59,4022.59 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,34139,68901.96,0.0,3577.8,72479.76,14290.55,11504.49,6041.48,31836.52,104316.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,43986,62570.9,56740.02,12514.23,131825.15,14988.8,12376.71,9846.4,37211.91,169037.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35487,3060.49,0.0,186.36,3246.85,0.0,1012.48,251.77,1264.25,4511.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33976,138710.79,34402.64,25010.58,198124.01,27408.68,12424.5,3371.41,43204.59,241328.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,19858,151575.37,0.0,0.0,151575.37,30470.68,12424.5,17641.32,60536.5,212111.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31692,64560.23,5020.39,1316.84,70897.46,14946.18,12719.22,5372.67,33038.07,103935.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,3100,140334.0,0.0,4878.0,145212.0,29174.27,12424.5,10184.54,51783.31,196995.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,49522,84354.22,4706.65,3058.73,92119.6,17420.1,12328.94,7393.17,37142.21,129261.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48322,69367.35,0.0,1500.0,70867.35,14682.34,11190.71,5849.93,31722.98,102590.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39495,7703.67,0.0,0.0,7703.67,0.0,3340.58,596.42,3937.0,11640.67 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,42905,41122.1,0.0,8.26,41130.36,9093.0,7140.56,3369.09,19602.65,60733.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39314,77856.3,4730.42,1719.06,84305.78,15750.04,11946.64,4378.91,32075.59,116381.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,12750,176257.05,0.0,0.0,176257.05,35471.94,12424.53,10753.64,58650.11,234907.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,275,12520.0,0.0,0.0,12520.0,2269.88,1911.46,960.18,5141.52,17661.52 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,48920,160115.01,0.0,30256.61,190371.62,34973.98,12424.5,9824.26,57222.74,247594.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35880,246.51,0.0,16.76,263.27,0.0,59.74,20.44,80.18,343.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,42157,100554.0,0.0,0.0,100554.0,20724.83,12424.47,7983.97,41133.27,141687.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33102,67349.83,5574.38,4978.46,77902.67,19836.57,13273.25,5738.88,38848.7,116751.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,49063,11471.2,0.0,841.6,12312.8,0.0,2293.76,954.47,3248.23,15561.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",27207,104114.79,0.0,0.0,104114.79,21472.35,12424.5,8531.05,42427.9,146542.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,42558,18376.31,0.0,0.0,18376.31,3419.83,4539.72,1459.73,9419.28,27795.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,44332,116976.05,0.0,0.0,116976.05,23541.49,12424.5,9618.36,45584.35,162560.4 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",9915,105082.02,0.0,0.0,105082.02,21657.95,12424.5,8385.72,42468.17,147550.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,24705,3225.6,0.0,0.0,3225.6,723.5,477.86,254.82,1456.18,4681.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51998,68064.52,1409.48,5183.4,74657.4,20094.32,13411.66,5771.18,39277.16,113934.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49566,1850.32,0.0,17.2,1867.52,0.0,462.93,144.59,607.52,2475.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,13722,116601.48,7566.24,11739.61,135907.33,23486.5,12424.5,2213.83,38124.83,174032.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,46105,56531.02,0.0,2277.45,58808.47,11796.81,12424.5,4827.74,29049.05,87857.52 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10604,19004.56,0.0,0.0,19004.56,4179.11,4671.13,1522.82,10373.06,29377.62 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,31802,24988.15,0.0,339.74,25327.89,6076.12,6188.18,2097.22,14361.52,39689.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,11373,145200.06,0.0,0.0,145200.06,29260.89,12424.5,10285.9,51971.29,197171.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,16278,63589.66,464.47,606.22,64660.35,13240.92,12070.58,5113.92,30425.42,95085.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,25114,154943.23,542.31,4046.6,159532.14,32082.09,11747.37,10352.03,54181.49,213713.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48232,77102.19,21170.74,12787.44,111060.37,17882.83,15196.12,1797.02,34875.97,145936.34 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O035,Management Assistant II (OCII),17141,65180.0,0.0,0.0,65180.0,13153.6,10035.18,5242.83,28431.61,93611.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12192,8158.35,0.0,0.0,8158.35,0.0,3476.47,656.72,4133.19,12291.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,718.0,"Glaziers, Metal, and Glass Workers, Local 718",7300,Journeyman Trade,7326,Glazier,48187,87531.02,4541.39,4307.85,96380.26,18607.22,12424.5,7874.19,38905.91,135286.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6445,140319.25,789.16,40951.62,182060.03,33912.38,12423.19,10223.56,56559.13,238619.16 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,14279,187198.9,0.0,21930.05,209128.95,41269.26,12424.5,11295.59,64989.35,274118.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,9253,138732.36,3130.52,10163.26,152026.14,27405.91,12424.5,2544.0,42374.41,194400.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,11516,5631.6,0.0,0.0,5631.6,0.0,1863.67,437.1,2300.77,7932.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,39048,80570.01,0.0,0.0,80570.01,16605.95,12424.5,6555.84,35586.29,116156.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2611,67290.95,1565.46,13886.3,82742.71,13877.12,5642.39,6693.24,26212.75,108955.46 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,42044,14646.0,0.0,0.0,14646.0,2655.33,1433.59,1117.32,5206.24,19852.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23886,10996.58,0.0,0.0,10996.58,0.0,4748.79,890.58,5639.37,16635.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,33891,25800.27,0.0,17862.47,43662.74,5937.49,3010.55,253.73,9201.77,52864.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,40802,50581.11,0.0,1020.0,51601.11,11420.67,11103.03,4151.81,26675.51,78276.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,6078,45252.0,0.0,0.0,45252.0,9737.09,8601.58,3703.7,22042.37,67294.37 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,47421,105335.21,0.0,4607.61,109942.82,22158.14,8583.96,14235.28,44977.38,154920.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,26913,21660.3,44.21,785.64,22490.15,5198.67,6212.25,1812.51,13223.43,35713.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,19657,76332.35,0.0,0.0,76332.35,15645.58,11687.33,6272.29,33605.2,109937.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18546,6143.65,0.0,0.0,6143.65,0.0,2664.1,496.37,3160.47,9304.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,53221,14532.0,2381.44,1637.13,18550.57,2898.28,1911.46,1419.88,6229.62,24780.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48637,5730.4,0.0,0.0,5730.4,0.0,2484.9,458.59,2943.49,8673.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52943,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.23,5147.57,17667.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,680,25598.6,0.0,0.0,25598.6,0.0,3058.33,2038.7,5097.03,30695.63 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,41717,72906.15,0.0,0.0,72906.15,15229.38,9170.54,5758.26,30158.18,103064.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23966,41876.2,0.0,7031.73,48907.93,488.85,0.0,5412.44,5901.29,54809.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,27683,104854.09,0.0,0.0,104854.09,21587.8,12275.82,8283.45,42147.07,147001.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27665,67798.07,4018.58,2913.42,74730.07,19391.41,13358.85,5570.38,38320.64,113050.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2802,87416.58,0.0,23774.46,111191.04,181.99,0.0,2608.23,2790.22,113981.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,238,119326.3,0.0,5004.97,124331.27,24925.57,11182.06,9377.29,45484.92,169816.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,2965,62454.07,1958.36,1879.6,66292.03,13106.06,12421.52,5414.8,30942.38,97234.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,7922,67261.07,259.5,624.0,68144.57,13991.51,12424.5,5394.29,31810.3,99954.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7213,Plumber Supervisor 1,45857,113369.05,1968.4,5664.26,121001.71,23956.03,12424.51,9769.84,46150.38,167152.09 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,24239,36948.52,0.0,0.0,36948.52,8287.51,5256.52,3289.54,16833.57,53782.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,35342,79145.0,6858.78,0.0,86003.78,16282.63,12376.71,6852.64,35511.98,121515.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1249,Personnel Trainee,39106,32755.5,0.0,0.0,32755.5,7234.84,6929.05,2559.83,16723.72,49479.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,35968,79585.25,10812.97,3343.02,93741.24,17069.79,12440.93,7685.86,37196.58,130937.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6076,39868.31,418.39,9367.06,49653.76,8775.56,4179.83,3554.81,16510.2,66163.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,31842,99181.25,15599.16,1820.95,116601.36,20816.84,12424.5,9604.17,42845.51,159446.87 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9157,Claims Adjuster,3320,13219.5,0.0,0.0,13219.5,2460.15,1672.53,990.32,5123.0,18342.5 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,21927,85004.0,5702.13,4391.25,95097.38,18361.63,12424.5,7774.39,38560.52,133657.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1160,277.14,0.0,63.53,340.67,70.15,0.0,26.91,97.06,437.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,27558,6309.0,0.0,0.0,6309.0,1143.82,716.79,477.77,2338.38,8647.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,26948,10573.5,0.0,0.0,10573.5,2371.65,1911.46,814.4,5097.51,15671.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20304,55823.01,406.73,1853.99,58083.73,0.0,4918.01,4496.83,9414.84,67498.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29396,11848.13,649.16,384.46,12881.75,2815.47,2249.85,924.52,5989.84,18871.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,53015,32541.81,0.0,1339.65,33881.46,7205.02,7167.99,2808.99,17182.0,51063.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30219,97110.83,8502.11,11950.52,117563.46,20190.71,12424.5,1960.46,34575.67,152139.13 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,4592,403.76,340.66,0.0,744.42,0.0,119.47,57.78,177.25,921.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41686,70245.0,8637.12,9547.66,88429.78,15923.25,12424.5,7195.51,35543.26,123973.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10007,77071.0,10903.47,0.0,87974.47,15884.7,12424.5,7003.56,35312.76,123287.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,21518,158264.01,2784.01,622.0,161670.02,31973.22,12424.5,10438.07,54835.79,216505.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",38308,83257.74,638.22,0.0,83895.96,11182.66,11026.74,6712.83,28922.23,112818.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,6938,78769.8,0.0,2348.95,81118.75,16497.3,8314.86,12168.29,36980.45,118099.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,12878,67893.0,0.0,0.0,67893.0,13701.01,10035.18,5456.64,29192.83,97085.83 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7430,Asst Electronic Main Tech,37159,93281.02,4713.81,0.0,97994.83,19225.75,12424.5,7818.86,39469.11,137463.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,40191,51600.35,0.0,640.0,52240.35,12508.01,12424.5,3696.24,28628.75,80869.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43194,107782.66,0.0,19385.08,127167.74,0.0,9383.49,9476.14,18859.63,146027.37 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,5297,19748.36,98.63,0.0,19846.99,0.0,4493.43,1538.63,6032.06,25879.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,35094,45876.94,1636.2,0.0,47513.14,9148.22,8968.59,3759.83,21876.64,69389.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,35490,691.43,0.0,55.32,746.75,0.0,188.16,57.81,245.97,992.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42564,11562.62,0.0,0.0,11562.62,1573.32,4951.88,942.75,7467.95,19030.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,14742,9963.6,0.0,27.08,9990.68,0.0,3297.27,817.52,4114.79,14105.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,41174,2743.21,0.0,143.78,2886.99,0.0,433.07,224.07,657.14,3544.13 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,50523,67667.63,9775.75,6714.84,84158.22,15152.25,12379.7,6705.34,34237.29,118395.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24655,5200.8,0.0,186.92,5387.72,0.0,0.0,363.79,363.79,5751.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,49558,15201.83,0.0,23.18,15225.01,0.0,5026.54,1180.4,6206.94,21431.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",50253,131493.74,0.0,10193.78,141687.52,27802.79,13523.59,1911.86,43238.24,184925.76 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),38905,118747.03,0.0,1500.0,120247.03,23138.22,12424.5,9274.88,44837.6,165084.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5687,85653.15,1007.82,8068.79,94729.76,0.0,7478.29,7347.89,14826.18,109555.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9104,Transit Car Cleaner Asst Sprv,17668,62441.26,115.04,7122.07,69678.37,14421.14,11276.07,5730.65,31427.86,101106.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,33374,56531.0,0.0,2289.75,58820.75,11667.81,12424.5,4617.29,28709.6,87530.35 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,43005,58782.07,297.02,624.0,59703.09,12243.99,12424.5,4902.7,29571.19,89274.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,10931,75000.82,0.0,3000.03,78000.85,16542.79,9557.31,5965.18,32065.28,110066.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4231,Senior Estate Investigator,51040,91191.04,0.0,0.0,91191.04,18794.99,12424.5,7442.31,38661.8,129852.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,4027,34583.04,0.0,0.0,34583.04,7545.73,4856.31,2832.35,15234.39,49817.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,33257,71330.01,0.0,0.0,71330.01,14649.86,11946.64,5695.11,32291.61,103621.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,1762,82200.5,2067.93,1588.5,85856.93,17274.93,12472.27,6814.1,36561.3,122418.23 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,29531,64511.0,0.0,624.0,65135.0,13424.78,12424.5,5404.24,31253.52,96388.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17845,39658.39,0.0,3391.63,43050.02,612.83,0.0,998.77,1611.6,44661.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,6515,106812.1,15843.27,677.5,123332.87,22104.91,12424.5,9805.56,44334.97,167667.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",43366,106090.0,6114.33,4752.33,116956.66,22434.64,12424.5,9386.01,44245.15,161201.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,41150,90480.02,0.0,1314.65,91794.67,18815.68,11468.77,7555.08,37839.53,129634.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2298,94896.0,0.0,936.08,95832.08,13941.84,9748.46,7146.23,30836.53,126668.61 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,11151,64035.0,0.0,0.0,64035.0,13151.5,11946.64,5176.77,30274.91,94309.91 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,31262,33471.54,0.0,869.31,34340.85,7121.76,5718.31,2601.79,15441.86,49782.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24011,39042.65,0.0,4494.19,43536.84,10099.88,8978.74,3334.6,22413.22,65950.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12910,71275.14,1246.56,15499.03,88020.73,15116.54,7784.43,6893.0,29793.97,117814.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5959,17886.78,2439.13,500.63,20826.54,4408.61,5522.65,1594.06,11525.32,32351.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28465,10827.15,0.0,888.76,11715.91,2125.24,4695.03,936.11,7756.38,19472.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,49586,40881.2,20768.07,2852.51,64501.78,10134.3,12400.61,4884.25,27419.16,91920.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9299,119465.59,31158.09,3678.17,154301.85,23627.22,12424.5,2618.71,38670.43,192972.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,34841,96540.98,0.0,0.0,96540.98,19891.06,12374.32,7931.41,40196.79,136737.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,1549,52613.19,0.0,126.09,52739.28,11049.89,10634.36,4387.32,26071.57,78810.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10478,77102.17,3557.98,7377.75,88037.9,16849.56,15196.12,1467.1,33512.78,121550.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6036,56531.0,0.0,648.3,57179.3,12649.07,12424.5,4273.56,29347.13,86526.43 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8152,"Srclaimsinvstgtor,Cty Atty Ofc",18101,9140.0,0.0,0.0,9140.0,1700.96,955.73,649.98,3306.67,12446.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,29465,81996.81,0.0,1084.89,83081.7,17054.71,12360.65,6354.23,35769.59,118851.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,27921,117140.98,18508.44,8403.96,144053.38,23164.17,12424.49,2327.45,37916.11,181969.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,43,30192.0,10132.27,2005.26,42329.53,5744.1,4874.23,3325.07,13943.4,56272.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28876,7180.86,0.0,9.8,7190.66,0.0,3604.9,557.51,4162.41,11353.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17122,68696.7,19618.24,7787.37,96102.31,20976.02,13537.93,7262.8,41776.75,137879.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,36167,23247.81,0.0,0.0,23247.81,5214.5,2849.28,1916.62,9980.4,33228.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,32110,13648.47,0.0,600.0,14248.47,3173.02,2082.42,1384.8,6640.24,20888.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,30202,56531.0,0.0,2930.55,59461.55,11796.81,12424.5,4919.8,29141.11,88602.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,49426,2254.0,0.0,0.0,2254.0,0.0,1099.09,174.89,1273.98,3527.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,11097,1393.85,0.0,360.85,1754.7,0.0,509.23,135.56,644.79,2399.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,48249,48744.1,0.0,3.73,48747.83,11690.61,12424.5,3920.2,28035.31,76783.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32981,40214.24,146.94,8124.83,48486.01,7213.55,0.0,6650.44,13863.99,62350.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37161,53997.86,11995.81,886.4,66880.07,12491.7,10650.08,4896.27,28038.05,94918.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,47641,139465.75,32747.84,25519.13,197732.72,27564.93,12424.51,3326.12,43315.56,241048.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33652,4852.41,0.0,81.48,4933.89,0.0,1852.04,382.5,2234.54,7168.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2370,97352.2,46100.56,16040.31,159493.07,27472.92,12424.51,2668.15,42565.58,202058.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8673,975.15,0.0,32.51,1007.66,0.0,71.68,67.06,138.74,1146.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,42361,4704.6,0.0,7800.55,12505.15,1055.24,955.73,974.85,2985.82,15490.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,15322,49083.1,0.0,0.0,49083.1,9998.81,10990.9,3968.49,24958.2,74041.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,53071,18004.95,0.0,3274.18,21279.13,1977.82,0.0,5317.02,7294.84,28573.97 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4267,Pr Real Property Appraiser,28413,116384.03,0.0,2920.0,119304.03,23987.15,12424.5,9662.24,46073.89,165377.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12721,113233.59,62265.45,19235.67,194734.71,25036.02,15196.12,3276.19,43508.33,238243.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24549,68147.67,12524.97,3227.35,83899.99,17526.37,13514.86,6420.4,37461.63,121361.62 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44218,97759.59,10920.24,16313.18,124993.01,27020.12,12424.5,2073.22,41517.84,166510.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,48491,31870.04,0.0,0.0,31870.04,7148.44,4778.65,2529.12,14456.21,46326.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16277,75553.16,325.18,1520.0,77398.34,15853.35,12424.5,6381.52,34659.37,112057.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,20635,5146.88,267.3,528.23,5942.41,1328.81,1415.68,487.24,3231.73,9174.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,44993,100554.02,0.0,0.0,100554.02,20724.83,12424.47,8019.6,41168.9,141722.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,385,84644.02,1557.31,9737.87,95939.2,19439.53,12424.5,7873.61,39737.64,135676.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37577,138501.36,8075.0,22015.23,168591.59,29686.6,12264.24,4661.71,46612.55,215204.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28057,66570.04,6099.33,2155.46,74824.83,18790.92,13114.96,5829.3,37735.18,112560.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,13283,8842.95,0.0,32.39,8875.34,0.0,2731.3,687.92,3419.22,12294.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,2208,9912.0,0.0,929.25,10841.25,1844.64,1911.46,871.69,4627.79,15469.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6292,98795.01,534.04,23076.89,122405.94,19525.53,9877.48,8046.64,37449.65,159855.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29013,39928.55,0.0,237.29,40165.84,8619.58,3595.34,643.64,12858.56,53024.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45438,113233.61,20268.36,15883.71,149385.68,24474.75,15196.11,2547.3,42218.16,191603.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49231,113233.59,1707.41,18522.5,133463.5,25071.88,15196.11,2175.41,42443.4,175906.9 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,49507,13530.0,0.0,0.0,13530.0,3034.8,2389.33,1059.21,6483.34,20013.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1440,Medical Transcriber Typist,22929,65592.0,0.0,874.0,66466.0,13647.34,12424.5,5489.41,31561.25,98027.25 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,14504,7842.0,0.0,0.0,7842.0,1459.41,1433.6,604.16,3497.17,11339.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1944,Materials Coordinator,37903,0.0,0.0,9215.59,9215.59,0.0,0.0,705.0,705.0,9920.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,33981,18302.5,0.0,0.0,18302.5,4024.7,4539.72,1468.09,10032.51,28335.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",46635,21473.49,0.0,0.0,21473.49,0.0,5101.21,1596.39,6697.6,28171.09 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,32005,91756.22,5216.3,5292.15,102264.67,19293.76,12167.65,8242.43,39703.84,141968.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,16943,137366.15,0.0,1385.76,138751.91,27813.6,9394.6,9956.29,47164.49,185916.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,6274,3668.63,469.5,0.0,4138.13,0.0,1111.03,321.4,1432.43,5570.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,15252,138629.95,13922.64,8661.62,161214.21,27959.85,12424.5,2701.98,43086.33,204300.54 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,8431,0.0,0.0,1489.49,1489.49,0.0,34.25,113.95,148.2,1637.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,32339,77976.35,0.0,960.0,78936.35,16329.12,11946.62,6090.02,34365.76,113302.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,23725,75243.49,0.0,871.08,76114.57,15640.99,12366.26,6173.04,34180.29,110294.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,7398,85368.03,11909.58,160.0,97437.61,17627.43,12424.5,7991.3,38043.23,135480.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,25357,113369.01,40726.13,22482.86,176578.0,24057.61,12424.48,10748.76,47230.85,223808.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,5212,23526.74,0.0,0.0,23526.74,912.33,7050.01,1824.83,9787.17,33313.91 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,25984,127157.11,0.0,19073.58,146230.69,29370.6,7460.68,10178.92,47010.2,193240.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,44085,61735.01,0.0,624.0,62359.01,12849.21,12424.5,5160.11,30433.82,92792.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,30115,0.0,0.0,14894.73,14894.73,0.0,0.0,215.97,215.97,15110.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16811,73210.49,432.34,8627.74,82270.57,16967.6,6693.94,4305.58,27967.12,110237.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,35358,107984.62,6748.79,3715.49,118448.9,22264.16,12418.53,9463.02,44145.71,162594.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38084,49018.71,68.84,8168.55,57256.1,0.0,3808.76,4438.08,8246.84,65502.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,36868,26266.74,0.0,772.58,27039.32,6502.37,6487.02,2223.44,15212.83,42252.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,21699,100761.03,1619.68,2032.0,104412.71,21192.08,12424.51,8352.82,41969.41,146382.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,38934,73063.06,0.0,0.0,73063.06,15058.73,12424.5,5541.16,33024.39,106087.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,15402,76338.0,0.0,692.88,77030.88,15876.6,12424.5,6335.1,34636.2,111667.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,5306,66102.02,0.0,504.29,66606.31,13669.24,12424.5,5270.48,31364.22,97970.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,1392,34475.04,0.0,0.0,34475.04,6415.79,5734.39,2764.78,14914.96,49390.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11509,37410.46,2246.62,2259.45,41916.53,11109.56,7437.91,3249.26,21796.73,63713.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,21035,49576.5,0.0,13169.03,62745.53,11094.63,5495.46,5101.75,21691.84,84437.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,41324,84644.01,27059.68,4571.2,116274.89,17576.63,12424.5,9453.03,39454.16,155729.05 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,48373,125815.02,0.0,0.0,125815.02,25320.88,12424.98,9904.58,47650.44,173465.46 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,11890,45711.84,119.9,450.0,46281.74,11039.39,11749.51,3771.61,26560.51,72842.25 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,24345,49394.93,334.25,5380.67,55109.85,10976.64,10978.96,4393.21,26348.81,81458.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,28293,102443.31,6265.1,10596.19,119304.6,21288.37,12424.5,1847.17,35560.04,154864.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,24989,108038.0,32882.81,12930.3,153851.11,24193.02,12424.51,10304.8,46922.33,200773.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,5869,63414.02,0.0,1664.0,65078.02,13405.03,12424.51,5390.94,31220.48,96298.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,41918,119066.01,2758.68,14221.33,136046.02,31541.69,12424.5,2262.37,46228.56,182274.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2487,Chemist III,26811,92785.01,0.0,263.4,93048.41,19088.45,9721.27,7586.82,36396.54,129444.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32737,149099.06,0.0,1475.0,150574.06,30254.14,12424.5,10308.59,52987.23,203561.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9332,Piledriver Supervisor 1,46886,103283.01,0.0,0.0,103283.01,21287.16,12424.51,8263.32,41974.99,145258.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50336,51182.0,2216.76,3843.16,57241.92,13196.35,12424.5,4727.99,30348.84,87590.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40779,17260.0,0.0,0.0,17260.0,3292.89,3822.92,1376.03,8491.84,25751.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,40953,6539.18,8012.46,1279.32,15830.96,0.0,1502.29,1227.51,2729.8,18560.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,3344,57290.81,0.0,0.0,57290.81,11638.83,10680.3,4623.38,26942.51,84233.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17750,140334.0,829.74,21360.7,162524.44,30463.98,12424.5,10415.69,53304.17,215828.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,9809,72126.81,0.0,0.0,72126.81,14865.16,12424.49,5798.95,33088.6,105215.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,162,36848.0,0.0,0.0,36848.0,8234.87,6690.11,2773.11,17698.09,54546.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2402,Laboratory Technician I,52325,30633.2,0.0,6327.12,36960.32,6944.8,6546.76,2904.31,16395.87,53356.19 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,7033,88183.9,0.0,0.0,88183.9,18267.25,10107.22,6946.71,35321.18,123505.08 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,6237,62367.5,0.0,0.0,62367.5,12835.2,12424.5,5014.32,30274.02,92641.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29434,49898.46,0.0,0.0,49898.46,11192.27,6115.61,3952.46,21260.34,71158.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,41660,72671.42,14462.09,6342.33,93475.84,15944.21,15052.75,1559.88,32556.84,126032.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,7677,1264.0,0.0,0.0,1264.0,0.0,382.3,97.86,480.16,1744.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7482,Power Generation Technician 2,705,102336.04,11865.49,14399.49,128601.02,21873.26,12131.81,9779.42,43784.49,172385.51 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,36405,64199.0,299.09,1432.15,65930.24,13535.85,12424.5,5209.56,31169.91,97100.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39915,6016.03,0.0,410.5,6426.53,209.24,0.0,1201.96,1411.2,7837.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21631,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,10872.29,61427.43,250902.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52828,147382.24,0.0,15527.33,162909.57,29797.96,12421.52,7362.65,49582.13,212491.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26808,325.05,0.0,65.01,390.06,0.0,0.0,28.0,28.0,418.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,22374,117017.57,33556.98,9352.46,159927.01,23180.98,12412.55,2652.41,38245.94,198172.95 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,45928,14756.01,0.0,0.0,14756.01,2746.08,1911.47,1048.92,5706.47,20462.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18467,175.6,0.0,14.05,189.65,0.0,47.79,14.67,62.46,252.11 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44962,97765.86,6722.58,15391.4,119879.84,27511.1,12424.51,1994.84,41930.45,161810.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29473,20453.4,0.0,116.21,20569.61,4487.47,3153.91,1582.82,9224.2,29793.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,14818,69825.04,0.0,0.0,69825.04,14283.37,11468.77,5649.42,31401.56,101226.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,31305,47549.14,1405.4,1347.59,50302.13,11636.53,11851.18,3983.23,27470.94,77773.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49026,56531.0,0.0,5654.45,62185.45,12373.34,12424.5,5135.3,29933.14,92118.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27167,0.0,0.0,23147.66,23147.66,0.0,0.0,335.64,335.64,23483.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50880,66102.0,379.05,170.8,66651.85,13660.43,12424.49,5513.3,31598.22,98250.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,9863,50815.5,808.92,3521.58,55146.0,12533.18,12281.15,4306.54,29120.87,84266.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,36899,3646.41,0.0,25.86,3672.27,0.0,1212.58,284.85,1497.43,5169.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3874,13453.8,0.0,428.7,13882.5,1959.02,1051.55,1617.73,4628.3,18510.8 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,31109,95968.0,0.0,0.0,95968.0,19779.21,12424.5,7757.86,39961.57,135929.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36583,1756.32,0.0,0.0,1756.32,0.0,761.6,135.97,897.57,2653.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,22515,35932.01,591.56,3901.86,40425.43,9391.98,10990.9,3274.72,23657.6,64083.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4530,140525.5,39237.4,9500.13,189263.03,27758.32,12424.5,3217.28,43400.1,232663.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,18760,89210.11,0.0,1480.0,90690.11,18685.52,12424.5,6870.33,37980.35,128670.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,33162,9987.3,1370.63,0.0,11357.93,0.0,3264.42,904.53,4168.95,15526.88 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,27669,109356.0,0.0,8117.58,117473.58,23232.86,12424.5,9706.5,45363.86,162837.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,37317,48412.02,3417.94,5951.2,57781.16,12193.67,6212.25,4539.81,22945.73,80726.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22888,3404.88,0.0,20.48,3425.36,0.0,1303.69,265.85,1569.54,4994.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,11093,5090.0,0.0,0.0,5090.0,922.82,477.86,284.16,1684.84,6774.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1789,534.3,0.0,0.0,534.3,0.0,0.0,981.55,981.55,1515.85 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,5443,97539.81,0.0,4891.0,102430.81,20115.25,12422.95,31313.88,63852.08,166282.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2177,67309.77,37280.52,7200.91,111791.2,20415.13,13262.93,8541.98,42220.04,154011.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,4808,92924.41,0.0,20.0,92944.41,19150.26,12376.71,7632.78,39159.75,132104.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10441,8709.6,0.0,1518.65,10228.25,4064.0,717.28,2295.73,7077.01,17305.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,13768,27520.4,0.0,1156.69,28677.09,6451.14,6242.12,1808.1,14501.36,43178.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,43574,72005.14,4600.5,196.0,76801.64,14801.73,11220.81,6373.62,32396.16,109197.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0964,Dept Head IV,5206,229272.42,0.0,0.0,229272.42,46087.1,12424.5,18891.67,77403.27,306675.69 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,7470,93499.0,0.0,0.0,93499.0,19270.58,12424.5,7665.26,39360.34,132859.34 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),31132,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10916.92,60730.25,246519.25 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,41397,38053.35,0.0,6598.62,44651.97,6442.79,0.0,8428.95,14871.74,59523.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30572,7126.91,1778.99,1208.52,10114.42,1065.75,0.0,3605.73,4671.48,14785.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,18753,35075.01,0.0,18156.48,53231.49,8334.9,5973.32,4263.61,18571.83,71803.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2838,50630.53,0.0,488.24,51118.77,11385.72,11350.74,4680.82,27417.28,78536.05 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2496,Radiologic Tech Sprv,10309,131924.68,31590.65,2617.46,166132.79,26766.42,12406.58,10511.92,49684.92,215817.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,23661,116413.66,0.0,868.11,117281.77,23592.28,12307.12,9591.82,45491.22,162772.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15928,136071.01,0.0,2901.82,138972.83,27588.89,12424.5,9774.45,49787.84,188760.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,36854,67417.0,3042.42,2630.96,73090.38,14438.77,12424.49,6026.48,32889.74,105980.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,28322,90744.31,1825.96,0.0,92570.27,18707.63,11794.66,7613.91,38116.2,130686.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24118,67319.9,23095.75,3360.4,93776.05,19372.3,13266.39,6970.26,39608.95,133385.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9300,Port Operation,9393,Maritime Marketing Repr,36518,96650.5,0.0,0.0,96650.5,19867.36,10274.11,7898.31,38039.78,134690.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,10211,154204.0,0.0,37962.63,192166.63,31033.6,12424.5,11097.3,54555.4,246722.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,31183,47345.2,7834.22,4388.09,59567.51,3018.68,7215.77,4626.68,14861.13,74428.64 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,50787,93811.32,0.0,0.0,93811.32,17985.41,8123.71,11850.65,37959.77,131771.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",37098,131577.1,0.0,22493.42,154070.52,30122.46,15196.12,2624.81,47943.39,202013.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,31582,88831.05,5752.52,4339.27,98922.84,18464.22,12424.5,8163.96,39052.68,137975.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,983,81001.11,0.0,678.16,81679.27,16836.35,12308.14,6780.33,35924.82,117604.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,34792,109045.0,6329.35,1367.22,116741.57,22696.63,12424.51,9184.03,44305.17,161046.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50220,65174.56,8496.82,7067.92,80739.3,19823.04,12844.25,6263.09,38930.38,119669.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,33376,14041.22,0.0,200.16,14241.38,3131.68,2472.94,1143.7,6748.32,20989.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,30669,3486.5,0.0,899.15,4385.65,831.25,907.93,340.39,2079.57,6465.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,38566,136520.6,16098.51,4919.06,157538.17,26985.97,12424.5,2677.56,42088.03,199626.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32753,3939.65,0.0,40.99,3980.64,0.0,1708.37,323.59,2031.96,6012.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42873,75614.84,0.0,6593.19,82208.03,16576.61,15196.12,1391.59,33164.32,115372.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,17443,51079.59,0.0,7605.61,58685.2,10989.78,8365.03,4870.29,24225.1,82910.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5532,149069.08,0.0,23901.41,172970.49,20851.83,12422.0,3913.64,37187.47,210157.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3436,Arborist Technician Supervisor,33908,91653.0,7767.67,939.6,100360.27,19083.88,12424.5,7999.03,39507.41,139867.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,42590,79536.94,0.0,8613.36,88150.3,17641.65,12422.29,7040.89,37104.83,125255.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,1080,6672.0,1016.44,334.8,8023.24,0.0,2293.75,644.72,2938.47,10961.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29644,67352.72,3845.78,2295.36,73493.86,15815.51,13267.93,5397.28,34480.72,107974.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,36121,10746.0,0.0,0.0,10746.0,2410.33,2150.39,859.24,5419.96,16165.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",19367,147149.0,0.0,0.0,147149.0,29613.71,12424.5,17551.71,59589.92,206738.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,25883,86663.02,20194.62,4372.5,111230.14,18763.21,12424.5,8662.6,39850.31,151080.45 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),22657,116880.0,0.0,1125.0,118005.0,23109.29,9557.31,9447.03,42113.63,160118.63 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,47838,53490.42,0.0,0.0,53490.42,11947.0,12424.5,4341.0,28712.5,82202.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10049,66609.81,20203.55,4410.09,91223.45,19448.68,13122.6,6916.24,39487.52,130710.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,5984,54460.27,268.27,0.0,54728.54,12161.74,12057.98,3967.94,28187.66,82916.2 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,51756,8727.65,0.0,281.26,9008.91,2011.44,1819.65,775.11,4606.2,13615.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,29993,80570.03,0.0,0.0,80570.03,16605.95,12424.5,6390.48,35420.93,115990.96 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,36697,176048.2,32194.9,5467.05,213710.15,35673.24,12424.5,11439.3,59537.04,273247.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,16603,24075.61,0.0,0.0,24075.61,0.0,5889.69,1866.3,7755.99,31831.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,4896,12660.05,0.0,626.21,13286.26,2877.67,2888.1,919.89,6685.66,19971.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,16975,81399.3,9551.58,2905.07,93855.95,17326.33,12424.5,7702.98,37453.81,131309.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25087,119461.58,1128.72,10069.79,130660.09,23641.88,12424.5,1838.51,37904.89,168564.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9104,Transit Car Cleaner Asst Sprv,44772,36754.0,11603.7,8110.51,56468.21,8520.25,7645.84,4513.63,20679.72,77147.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8139,Industrial Injury Investigator,48537,77071.1,0.0,240.0,77311.1,15938.52,12424.5,6131.84,34494.86,111805.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31926,113233.58,17781.22,14105.98,145120.78,24022.96,15196.12,2417.31,41636.39,186757.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,22442,81542.0,0.0,0.0,81542.0,16806.13,12424.5,6696.81,35927.44,117469.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38621,100479.0,0.0,3662.05,104141.05,20266.86,10990.9,8295.7,39553.46,143694.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,18156,53742.96,0.0,163.63,53906.59,11791.21,6003.25,4431.97,22226.43,76133.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49108,3416.2,0.0,0.0,3416.2,0.0,1481.39,271.95,1753.34,5169.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8708,58921.97,8658.5,688.93,68269.4,16171.64,11600.12,5295.94,33067.7,101337.1 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",22169,1196.0,0.0,0.0,1196.0,0.0,71.44,92.72,164.16,1360.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,47433,32160.0,2238.22,2405.4,36803.62,5709.66,2867.19,627.44,9204.29,46007.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48413,8061.04,0.0,869.3,8930.34,999.26,627.38,627.24,2253.88,11184.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,50008,18382.18,358.45,1996.79,20737.42,3484.34,5655.25,1650.68,10790.27,31527.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,52053,20622.8,0.0,0.0,20622.8,4504.11,2054.82,1589.21,8148.14,28770.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33182,1950.3,0.0,0.0,1950.3,-1472.85,0.0,1003.59,-469.26,1481.04 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0116,"Brd Comm Mbr, M=$200/Mtg",50395,10000.0,0.0,0.0,10000.0,0.0,244.9,775.3,1020.2,11020.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,50412,7742.0,0.0,0.0,7742.0,0.0,2341.54,600.49,2942.03,10684.03 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,52535,91535.59,8967.6,9292.08,109795.27,19829.87,12138.2,9047.31,41015.38,150810.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,11052,42529.2,288.01,4855.49,47672.7,10260.67,5829.95,3908.26,19998.88,67671.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,23443,143.7,0.0,0.0,143.7,0.0,47.79,11.12,58.91,202.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49436,64943.28,3971.03,1624.39,70538.7,18241.05,12799.93,5375.75,36416.73,106955.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,17427,85368.06,183.54,288.0,85839.6,17643.56,12424.5,7109.78,37177.84,123017.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49414,56531.0,0.0,7349.07,63880.07,12788.62,12424.5,5269.37,30482.49,94362.56 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,6013,111495.0,0.0,0.0,111495.0,25429.69,12424.5,1896.66,39750.85,151245.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51296,147389.32,0.0,15031.0,162420.32,30525.14,12281.15,10359.68,53165.97,215586.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,28965,27708.0,0.0,45.0,27753.0,6225.01,5734.39,2263.99,14223.39,41976.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45061,16694.32,0.0,155.05,16849.37,6075.24,1371.35,748.97,8195.56,25044.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38524,111266.3,0.0,5900.97,117167.27,17468.56,11229.84,9547.31,38245.71,155412.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13638,77071.07,0.0,0.0,77071.07,15881.88,12424.51,6109.51,34415.9,111486.97 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,2.0,Management Unrepresented Employees,8100,Legal & Court,AB44,"Cfdntal Chf Atty 2,(Cvl&Crmnl)",16123,83157.51,0.0,0.0,83157.51,15076.46,4444.15,12650.76,32171.37,115328.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4352,140334.0,0.0,11810.53,152144.53,28948.14,12424.5,10291.37,51664.01,203808.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2900,Human Services,2966,Welfare Fraud Investigator,22013,99602.03,0.0,0.0,99602.03,20524.64,12424.5,8016.33,40965.47,140567.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10646,38835.0,0.0,2330.1,41165.1,8834.04,4300.79,692.83,13827.66,54992.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,43404,61428.05,0.0,1253.92,62681.97,12921.18,12424.5,5193.57,30539.25,93221.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,41886,22120.8,6963.57,5757.23,34841.6,4850.69,3297.27,2749.46,10897.42,45739.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,37927,1465.2,0.0,18.32,1483.52,332.75,0.0,117.2,449.95,1933.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,51102,40768.71,0.0,0.0,40768.71,8774.66,6642.33,3229.1,18646.09,59414.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,18337,2976.75,334.88,0.0,3311.63,667.69,477.86,256.38,1401.93,4713.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",52830,35960.42,0.0,1179.62,37140.04,8065.89,3718.39,5404.03,17188.31,54328.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,13920,106401.44,20419.78,7888.19,134709.41,21190.91,11289.57,2116.75,34597.23,169306.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4204,117726.24,0.0,18984.29,136710.53,23112.74,10489.98,5085.78,38688.5,175399.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6312,2656.04,0.0,117.33,2773.37,0.0,643.61,215.26,858.87,3632.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,14310,0.0,0.0,1099.18,1099.18,0.0,68.5,84.09,152.59,1251.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38193,142986.69,294.75,19212.26,162493.7,19462.43,11912.11,10046.76,41421.3,203915.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7450,Shade And Drapery Worker,38177,60570.36,90.3,613.76,61274.42,12603.02,12220.57,5082.9,29906.49,91180.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20720,17614.96,151.38,12358.65,30124.99,5252.72,3503.05,2308.65,11064.42,41189.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,41530,7271.6,181.71,776.12,8229.43,1620.88,2341.54,643.37,4605.79,12835.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,34046,76513.39,0.0,1040.0,77553.39,15959.68,12154.21,6233.11,34347.0,111900.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10473,70437.4,28697.19,737.4,99871.99,19500.58,13883.91,7559.4,40943.89,140815.88 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,14740,0.0,0.0,3171.33,3171.33,0.0,0.0,242.6,242.6,3413.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8161,47133.2,0.0,5602.05,52735.25,12344.16,12424.5,4222.5,28991.16,81726.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,12115,48290.2,7258.02,2286.61,57834.83,11728.84,12424.5,4671.18,28824.52,86659.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,38106,121817.97,0.0,0.0,121817.97,24492.1,12424.5,17057.24,53973.84,175791.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6200,Public Safety Inspection,6220,"Inspector, Weights & Measures",6282,67417.0,0.0,0.0,67417.0,13894.95,12424.5,5454.05,31773.5,99190.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,6788,41074.47,1710.18,500.0,43284.65,9951.33,12240.11,3262.33,25453.77,68738.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,34953,85887.19,0.0,0.0,85887.19,17780.98,10405.52,6919.14,35105.64,120992.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25866,112159.75,1127.03,18601.69,131888.47,24704.17,15052.77,2245.13,42002.07,173890.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5148,7824.2,0.0,865.35,8689.55,2018.62,3392.84,694.36,6105.82,14795.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,663,119467.41,14602.48,10434.58,144504.47,23620.99,12424.51,2415.8,38461.3,182965.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4009,71180.81,15506.54,5124.78,91812.13,15331.37,9079.45,1529.16,25939.98,117752.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,51858,28561.0,0.0,0.0,28561.0,5315.18,4587.51,2297.94,12200.63,40761.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,34712,74165.01,0.0,624.0,74789.01,15414.45,12424.5,6201.07,34040.02,108829.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",25290,94092.8,14341.19,5386.65,113820.64,19897.2,12424.5,9010.85,41332.55,155153.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,22809,45809.0,9139.65,14697.68,69646.33,0.0,5734.39,5445.88,11180.27,80826.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,49331,7860.5,0.0,1550.77,9411.27,2028.01,2377.38,750.34,5155.73,14567.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,17890,167914.99,0.0,15243.37,183158.36,33644.09,12424.5,3067.97,49136.56,232294.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11780,96858.98,0.0,18479.67,115338.65,0.0,7193.6,8940.49,16134.09,131472.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",51057,11993.65,0.0,0.0,11993.65,0.0,2843.31,929.42,3772.73,15766.38 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,52723,72699.01,0.0,624.0,73323.01,15112.3,12424.5,5995.94,33532.74,106855.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13272,94481.33,31860.96,8143.57,134485.86,19582.65,12412.55,2245.24,34240.44,168726.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,5101,3026.07,0.0,13.72,3039.79,0.0,893.02,164.29,1057.31,4097.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21906,2431.63,0.0,0.0,2431.63,0.0,1185.71,188.66,1374.37,3806.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,7332,79722.02,6632.47,3004.0,89358.49,17045.4,12424.5,7313.17,36783.07,126141.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,11997,30192.0,11958.05,2164.38,44314.43,5806.09,4874.23,3362.96,14043.28,58357.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19595,14109.15,0.0,0.0,14109.15,0.0,6056.94,1139.88,7196.82,21305.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6920,67604.87,12800.45,2853.14,83258.46,19304.24,13322.41,6462.32,39088.97,122347.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14682,8836.4,0.0,1495.83,10332.23,0.0,0.0,315.65,315.65,10647.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,16065,159964.96,1393.8,9157.04,170515.8,31572.21,12424.5,2906.42,46903.13,217418.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45191,93135.86,2841.63,17007.94,112985.43,21588.69,9874.62,9066.22,40529.53,153514.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5115,114296.83,47478.02,19147.1,180921.95,25292.73,15339.47,3076.64,43708.84,224630.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6048,119467.4,34146.38,17903.01,171516.79,23620.98,12424.49,2869.42,38914.89,210431.68 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7430,Asst Electronic Main Tech,15311,41430.2,3613.19,0.0,45043.39,2744.56,6642.33,3481.3,12868.19,57911.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,43195,67261.02,0.0,624.0,67885.02,13991.51,12424.5,5348.24,31764.25,99649.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22444,66142.44,20463.98,526.96,87133.38,18239.19,13032.04,6594.32,37865.55,124998.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40671,108810.72,1767.73,9523.05,120101.5,22360.83,9634.53,9693.68,41689.04,161790.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25936,109656.88,63981.0,18254.31,191892.19,25392.37,15196.12,3152.58,43741.07,235633.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4282,2246.23,0.0,36.97,2283.2,0.0,725.76,177.21,902.97,3186.17 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,48939,54178.76,21443.66,2959.84,78582.26,11180.64,10667.15,6176.0,28023.79,106606.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,219,61807.8,0.0,1200.0,63007.8,12926.66,12424.5,5105.48,30456.64,93464.44 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,48580,13528.9,0.0,237.32,13766.22,0.0,2870.78,1065.79,3936.57,17702.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,8611,158351.71,2748.21,11345.36,172445.28,31938.12,12424.5,2883.74,47246.36,219691.64 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,38783,143488.82,0.0,0.0,143488.82,29691.18,8069.95,8262.64,46023.77,189512.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,41555,76342.49,35329.9,12452.15,124124.54,17692.68,15052.76,2025.34,34770.78,158895.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,8412,54219.6,3930.83,2923.5,61073.93,13133.98,12424.5,4925.03,30483.51,91557.44 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,36150,25094.14,0.0,317.07,25411.21,6092.57,6197.08,2103.83,14393.48,39804.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,411,0.0,0.0,1231.65,1231.65,0.0,0.0,17.86,17.86,1249.51 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,1212,13220.01,0.0,0.0,13220.01,2460.24,2867.19,978.53,6305.96,19525.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38675,92251.37,0.0,16892.44,109143.81,0.0,6872.42,7954.3,14826.72,123970.53 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,25562,69341.6,0.0,0.0,69341.6,13907.18,9557.31,5440.17,28904.66,98246.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36543,119404.92,605.29,13710.85,133721.06,25513.98,11021.91,9778.21,46314.1,180035.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50683,59468.64,189.53,0.0,59658.17,12389.62,11170.1,4930.56,28490.28,88148.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,33796,54506.99,5586.09,1361.69,61454.77,11563.35,10646.48,5081.63,27291.46,88746.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,28697,87531.04,0.0,120.0,87651.04,18062.98,12424.5,7270.69,37758.17,125409.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,40480,96930.04,2639.82,0.0,99569.86,19977.61,12424.5,8124.99,40527.1,140096.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,32749,84997.11,25938.38,11461.86,122397.35,19279.68,12423.49,9324.72,41027.89,163425.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,41206,2654.0,0.0,7.96,2661.96,495.39,477.86,206.44,1179.69,3841.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,10704,12084.0,0.0,0.0,12084.0,2190.84,1433.6,1281.03,4905.47,16989.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51639,8955.98,0.0,789.66,9745.64,7437.47,741.11,212.85,8391.43,18137.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19074,60297.54,2756.98,1360.0,64414.52,12716.44,12003.69,5192.76,29912.89,94327.41 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35809,172.3,0.0,0.0,172.3,44.45,47.79,14.65,106.89,279.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50631,792.06,0.0,20.49,812.55,0.0,343.47,62.91,406.38,1218.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7475,7530.72,391.98,29.62,7952.32,1786.63,2269.86,568.95,4625.44,12577.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,13479,7830.02,3641.13,1047.6,12518.75,1468.9,955.74,210.32,2634.96,15153.71 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9912,Public Service Aide-Technical,34512,3462.0,0.0,53.92,3515.92,0.0,1612.8,282.69,1895.49,5411.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,16882,47376.0,0.0,20128.99,67504.99,10713.69,5734.39,5454.28,21902.36,89407.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,43761,112209.02,0.0,0.0,112209.02,22578.23,12424.5,8950.31,43953.04,156162.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,23435,5213.6,0.0,52.0,5265.6,0.0,669.01,408.47,1077.48,6343.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,26677,22970.0,0.0,0.0,22970.0,4834.5,5495.46,1850.65,12180.61,35150.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12710,1871.56,0.0,0.0,1871.56,0.0,912.61,145.05,1057.66,2929.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",9691,130329.28,40587.48,16853.84,187770.6,28943.42,15052.76,3146.97,47143.15,234913.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38969,34264.34,0.0,0.0,34264.34,8310.09,10990.9,2786.52,22087.51,56351.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,9042,54558.04,15707.2,1384.5,71649.74,12003.21,4300.79,1197.6,17501.6,89151.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,39911,74165.0,0.0,624.0,74789.0,15414.44,12424.5,6201.07,34040.01,108829.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36829,42315.19,3056.88,1219.81,46591.88,11625.99,13032.27,3488.33,28146.59,74738.47 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0902,Mayoral Staff XIV,21670,114797.35,0.0,0.0,114797.35,23056.76,11519.54,16931.73,51508.03,166305.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,17652,97748.58,35974.61,11117.51,144840.7,26479.37,12421.52,2413.16,41314.05,186154.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5178,31461.1,0.0,9560.11,41021.21,2310.85,0.0,6884.71,9195.56,50216.77 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2555,Physical Therapist Assistant,25813,89631.02,0.0,100.0,89731.02,18473.3,12424.5,7365.16,38262.96,127993.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,9062,47734.81,5029.25,1054.37,53818.43,9563.47,8848.45,1369.7,19781.62,73600.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41890,119455.85,2580.15,12381.41,134417.41,24132.87,12424.5,2289.68,38847.05,173264.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,34047,136236.8,7905.4,3963.52,148105.72,26911.78,12406.58,2477.64,41796.0,189901.72 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,27903,43982.43,0.0,5063.24,49045.67,9997.28,6498.97,3982.42,20478.67,69524.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42962,62461.1,12163.06,980.0,75604.16,13046.66,12424.5,6054.68,31525.84,107130.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,37981,9665.78,0.0,0.0,9665.78,1752.41,913.92,704.08,3370.41,13036.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,52308,100554.04,0.0,0.0,100554.04,20724.83,12424.5,8051.21,41200.54,141754.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,46223,75550.32,0.0,1520.0,77070.32,15855.51,12424.51,6303.05,34583.07,111653.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,20549,3632.5,0.0,0.0,3632.5,0.0,1303.68,292.56,1596.24,5228.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,51986,52736.01,1644.23,1652.0,56032.24,10365.75,6690.12,4485.66,21541.53,77573.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,4787,75605.0,2193.45,5288.8,83087.25,15722.38,12424.5,6843.38,34990.26,118077.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,42012,68507.25,546.15,0.0,69053.4,14124.06,12385.44,5726.14,32235.64,101289.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38847,70010.45,21812.75,7033.36,98856.56,21116.66,13794.9,7729.81,42641.37,141497.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,34717,103276.01,50390.02,6958.6,160624.63,21633.83,12424.5,10474.41,44532.74,205157.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35847,8154.75,0.0,0.0,8154.75,0.0,3476.47,644.51,4120.98,12275.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",17712,1061.45,0.0,0.0,1061.45,0.0,137.38,82.29,219.67,1281.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,48083,42419.89,0.0,553.73,42973.62,10372.51,10620.56,3491.5,24484.57,67458.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,3460,15877.0,634.47,1890.1,18401.57,3306.46,2867.19,1411.72,7585.37,25986.94 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,37238,102019.03,0.0,0.0,102019.03,21020.69,12424.5,8199.62,41644.81,143663.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34824,11604.81,0.0,0.0,11604.81,1388.73,4969.79,938.55,7297.07,18901.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,5588,132610.54,0.0,0.0,132610.54,26623.85,12424.5,17271.81,56320.16,188930.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,41356,44138.0,0.0,0.0,44138.0,8416.45,6690.11,3475.19,18581.75,62719.75 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42265,8281.0,0.0,0.0,8281.0,300.7,3533.21,664.81,4498.72,12779.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,9131,28757.0,1015.69,361.8,30134.49,5419.0,4300.79,2408.11,12127.9,42262.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,25757,62570.91,26043.96,15087.52,103702.39,14811.37,12376.73,8443.33,35631.43,139333.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21172,2848.16,0.0,42.9,2891.06,0.0,755.62,224.39,980.01,3871.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,7139,123115.11,0.0,253.87,123368.98,25465.07,9820.16,9847.89,45133.12,168502.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,45964,96077.08,0.0,0.0,96077.08,19795.63,12391.64,7685.14,39872.41,135949.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,26695,56681.92,15165.23,4665.82,76512.97,12628.9,10697.78,6162.01,29488.69,106001.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10830,26435.1,0.0,7437.14,33872.24,0.0,2126.5,2625.18,4751.68,38623.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,37468,55964.02,0.0,2613.3,58577.32,11652.93,12299.37,4835.43,28787.73,87365.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,25473,90374.0,0.0,1520.0,91894.0,18907.75,12424.5,7425.97,38758.22,130652.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,17745,2677.9,0.0,3.51,2681.41,0.0,728.75,207.59,936.34,3617.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40332,21211.22,9250.01,1357.02,31818.25,6645.31,4218.24,2382.36,13245.91,45064.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,22048,62468.82,15568.61,1376.27,79413.7,13005.99,12424.5,6205.04,31635.53,111049.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,36768,71176.08,0.0,0.0,71176.08,14196.45,9079.44,5511.37,28787.26,99963.34 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),3826,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10856.71,60670.04,246459.04 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,18435,106990.0,0.0,0.0,106990.0,22025.65,12424.5,8541.66,42991.81,149981.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,45323,64463.71,41.6,12096.59,76601.9,15136.7,12424.5,6067.47,33628.67,110230.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29096,17699.65,30.04,478.57,18208.26,4468.14,3519.9,1348.11,9336.15,27544.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,31524,67261.01,0.0,0.0,67261.01,13862.82,12424.5,5526.83,31814.15,99075.16 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,48469,80887.6,30.8,993.52,81911.92,16846.18,12328.92,6748.67,35923.77,117835.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,8104,16203.23,55.76,446.76,16705.75,0.0,2705.91,1294.83,4000.74,20706.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,21625,78610.0,0.0,1460.0,80070.0,16502.71,12424.5,6579.85,35507.06,115577.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,30699,14516.0,0.0,452.67,14968.67,0.0,3631.77,1160.11,4791.88,19760.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,24331,59148.22,820.36,354.75,60323.33,12280.76,11429.71,4327.98,28038.45,88361.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,20441,170684.0,0.0,0.0,170684.0,34318.15,12376.71,17912.66,64607.52,235291.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42117,42171.98,9956.95,1453.26,53582.19,0.0,0.0,4237.04,4237.04,57819.23 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8564,"Counselor,Log Cabin Rnch SFERS",20452,23515.65,3847.25,859.28,28222.18,0.0,4748.79,2187.89,6936.68,35158.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,15377,139459.81,13952.58,2440.82,155853.21,27595.42,12424.5,2557.9,42577.82,198431.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12647,286.5,0.0,11.46,297.96,0.0,71.68,23.06,94.74,392.7 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,36716,68721.21,0.0,0.0,68721.21,14153.34,12424.5,5459.0,32036.84,100758.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1500,Administrative Secretarial,1548,"Sctry, Human Svcs Commission",31080,41540.8,0.0,0.0,41540.8,0.0,5352.09,3220.27,8572.36,50113.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,46084,157604.62,9563.72,10769.88,177938.22,31112.92,12364.77,2978.07,46455.76,224393.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,18144,67261.01,0.0,0.0,67261.01,13862.82,12424.5,5439.82,31727.14,98988.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",21422,9834.3,0.0,0.0,9834.3,0.0,2341.54,763.1,3104.64,12938.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,3027,84791.01,455.76,388.53,85635.3,17562.93,12424.51,7032.07,37019.51,122654.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,1135,70245.0,27430.09,4559.5,102234.59,14616.8,12424.5,8287.4,35328.7,137563.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,42446,87047.03,0.0,0.0,87047.03,17940.64,12424.5,15055.66,45420.8,132467.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,53141,25872.0,15310.99,2122.31,43305.3,5803.12,3822.92,3459.02,13085.06,56390.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,18725,71311.03,0.0,48.0,71359.03,14706.53,12424.5,5625.71,32756.74,104115.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29634,111818.62,1103.82,6562.46,119484.9,23472.43,10536.93,9573.44,43582.8,163067.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,7799,9740.0,0.0,0.0,9740.0,1812.6,1911.46,763.54,4487.6,14227.6 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,41588,3075.3,0.0,5467.45,8542.75,696.66,609.28,698.19,2004.13,10546.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,46356,41964.07,752.89,3961.74,46678.7,10553.63,11931.71,3714.95,26200.29,72878.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,119,77071.1,0.0,2144.0,79215.1,16324.48,12424.5,6562.52,35311.5,114526.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,28166,98673.17,0.0,0.0,98673.17,20324.23,12087.42,8006.52,40418.17,139091.34 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,7045,79009.03,18887.67,3258.07,101154.77,16215.94,10469.68,8304.53,34990.15,136144.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45564,23242.51,1564.01,1503.51,26310.03,5198.13,3583.99,622.54,9404.66,35714.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,4169,81157.01,2145.71,14317.62,97620.34,18876.54,12424.5,7628.64,38929.68,136550.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,21120,34524.05,0.0,700.0,35224.05,8765.93,8601.58,2810.54,20178.05,55402.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,15062,177.75,0.0,0.0,177.75,0.0,53.76,13.77,67.53,245.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",28758,118427.02,0.0,0.0,118427.02,23833.76,12424.5,18117.64,54375.9,172802.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8210,Head Park Patrol Officer,7899,43029.67,0.0,1845.55,44875.22,9132.06,6836.45,3770.36,19738.87,64614.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,17670,117129.75,4003.89,6844.62,127978.26,23205.21,12424.5,2132.76,37762.47,165740.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11915,143686.3,0.0,250.0,143936.3,25140.84,12400.61,6968.69,44510.14,188446.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,20136,7798.0,0.0,0.0,7798.0,1749.1,955.73,629.2,3334.03,11132.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32034,150832.64,0.0,21465.96,172298.6,30413.91,12424.5,5595.42,48433.83,220732.43 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,13351,47397.0,0.0,17734.38,65131.38,10398.89,5017.58,5275.74,20692.21,85823.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26748,75580.35,10199.98,6625.42,92405.75,16568.39,15196.12,1519.67,33284.18,125689.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7484,Sr Power Generation Tech,33833,18610.0,5777.53,0.0,24387.53,4083.02,1911.46,1961.05,7955.53,32343.06 +Calendar,2015,4,Community Health,DPH,Public Health,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,2421,51223.28,438.43,0.0,51661.71,10401.44,9626.0,4208.08,24235.52,75897.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7148,36154.01,4962.56,275.36,41391.93,9423.43,11292.57,2965.21,23681.21,65073.14 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,30358,108034.15,0.0,0.0,108034.15,21994.36,12424.5,8848.66,43267.52,151301.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43798,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3372.94,18198.79,61966.09 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,43401,37679.31,0.0,387.84,38067.15,9101.2,11020.77,3033.29,23155.26,61222.41 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,17140,58875.82,0.0,1600.0,60475.82,13458.29,12424.5,4834.23,30717.02,91192.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,22040,146806.8,7293.19,3830.53,157930.52,29454.0,12424.5,2684.12,44562.62,202493.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,47617,45275.73,2015.53,2053.34,49344.6,10110.52,10160.8,3922.72,24194.04,73538.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,40769,85697.57,7444.39,13553.1,106695.06,18791.93,12179.47,1805.17,32776.57,139471.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",16529,68787.78,0.0,0.0,68787.78,14856.56,7167.98,10011.13,32035.67,100823.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,7432,45808.2,0.0,0.0,45808.2,10664.44,10035.18,4168.53,24868.15,70676.35 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,26288,90598.52,0.0,0.0,90598.52,19002.88,10513.04,7248.3,36764.22,127362.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24066,61163.09,121033.29,35757.52,217953.9,17416.06,7836.99,3616.1,28869.15,246823.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31197,73360.11,12558.18,7544.81,93463.1,16108.73,15196.12,1556.49,32861.34,126324.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,8862,84644.01,14533.66,9980.99,109158.66,18157.98,12424.5,8536.52,39119.0,148277.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,19934,3219.0,0.0,84.0,3303.0,614.69,477.86,259.34,1351.89,4654.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38309,27968.4,0.0,2226.25,30194.65,889.87,0.0,4675.22,5565.09,35759.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,25359,77836.44,0.0,1015.37,78851.81,16261.57,12249.24,6489.39,35000.2,113852.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,1647,6212.81,0.0,0.0,6212.81,1393.52,1403.73,516.47,3313.72,9526.53 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,33509,58881.04,0.0,0.0,58881.04,13133.67,12424.5,4789.47,30347.64,89228.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38191,91741.81,8842.62,2175.97,102760.4,18737.84,9557.3,1712.13,30007.27,132767.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,11715,5972.74,0.0,112.42,6085.16,0.0,1953.28,472.34,2425.62,8510.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7256,Electric Motor Repair Sprv 1,19978,108038.0,18093.86,3819.13,129950.99,22266.23,12424.5,9949.5,44640.23,174591.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,31369,5687.14,0.0,0.0,5687.14,3052.02,0.0,88.68,3140.7,8827.84 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8564,"Counselor,Log Cabin Rnch SFERS",1088,7937.48,1866.12,246.47,10050.07,0.0,1601.81,779.61,2381.42,12431.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,17131,3225.6,0.0,0.0,3225.6,723.5,477.86,254.82,1456.18,4681.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,50805,100639.91,0.0,0.0,100639.91,20745.75,12424.51,8063.73,41233.99,141873.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,12480,120111.07,0.0,637.02,120748.09,24172.55,12424.5,9688.07,46285.12,167033.21 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,37178,136279.1,0.0,0.0,136279.1,27373.64,12258.38,17276.82,56908.84,193187.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,48486,6844.0,0.0,0.0,6844.0,1535.11,1385.81,580.29,3501.21,10345.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,39972,116580.47,65770.57,7815.71,190166.75,23043.05,12364.78,3095.13,38502.96,228669.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,27375,18479.11,0.0,416.86,18895.97,0.0,4448.63,1465.38,5914.01,24809.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,24487,59430.83,0.0,0.0,59430.83,13247.87,12424.5,4595.98,30268.35,89699.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40309,98802.7,11796.82,9411.31,120010.83,20530.81,12424.5,2001.73,34957.04,154967.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43251,4325.35,0.0,0.0,4325.35,0.0,1875.63,339.42,2215.05,6540.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",42152,16542.1,0.0,0.0,16542.1,0.0,3906.54,1283.34,5189.88,21731.98 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,27323,10560.0,0.0,0.0,10560.0,1965.21,1433.6,812.27,4211.08,14771.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6272,Senior Housing Inspector,7301,124338.04,178.24,28.29,124544.57,25023.46,12424.5,9904.12,47352.08,171896.65 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,48434,67911.03,4965.5,7302.07,80178.6,14759.38,12424.5,6602.58,33786.46,113965.06 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,40586,88296.06,0.0,5144.0,93440.06,18648.96,12424.5,7460.52,38533.98,131974.04 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,22201,92536.4,22302.86,3649.02,118488.28,19611.68,11946.64,9668.87,41227.19,159715.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,23659,125489.77,39708.2,24377.39,189575.36,25290.6,12294.1,3204.84,40789.54,230364.9 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,34949,109356.01,0.0,8117.58,117473.59,23232.86,12424.5,9706.5,45363.86,162837.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,25486,69933.05,0.0,5535.0,75468.05,14252.09,7363.61,5969.44,27585.14,103053.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9410,94599.08,7661.37,7517.73,109778.18,19663.58,12424.5,1830.01,33918.09,143696.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45916,80957.65,3186.45,3084.4,87228.5,16556.63,12424.5,3325.25,32306.38,119534.88 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,20293,10070.01,0.0,0.0,10070.01,2598.05,2389.33,813.83,5801.21,15871.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,9712,93281.08,0.0,624.0,93905.08,19354.57,12424.5,7783.25,39562.32,133467.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",41405,178604.31,80345.1,24296.8,283246.21,39897.25,15052.76,4777.64,59727.65,342973.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,44192,54490.0,0.0,0.0,54490.0,10900.01,9222.79,4321.56,24444.36,78934.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50936,1024.2,0.0,32.65,1056.85,0.0,430.07,82.03,512.1,1568.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",7161,93738.1,19465.95,1236.15,114440.2,19319.85,12424.52,9339.22,41083.59,155523.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",20559,52405.12,0.0,0.0,52405.12,9859.09,6212.25,11066.89,27138.23,79543.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,12599,160176.77,0.0,0.0,160176.77,32235.75,12424.5,25484.64,70144.89,230321.66 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,36065,85854.61,0.0,480.0,86334.61,17775.55,12424.5,6825.42,37025.47,123360.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,1165,77071.0,0.0,1520.0,78591.0,16197.41,12424.5,6406.49,35028.4,113619.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14620,9938.12,0.0,125.02,10063.14,0.0,3291.29,780.7,4071.99,14135.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,19994,110869.2,5852.93,26840.29,143562.42,22832.82,12308.5,10188.0,45329.32,188891.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,12947,46311.9,0.0,496.65,46808.55,9506.68,9888.47,3667.67,23062.82,69871.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,40004,80762.05,0.0,0.0,80762.05,16645.31,12424.51,6461.98,35531.8,116293.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,47892,10330.54,0.0,0.0,10330.54,0.0,2290.77,801.81,3092.58,13423.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,52574,66580.01,4039.67,2315.1,72934.78,13722.35,12424.5,6024.73,32171.58,105106.36 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,8975,2397.92,36.54,0.0,2434.46,0.0,594.34,188.76,783.1,3217.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48912,967.75,0.0,14.7,982.45,0.0,471.89,76.25,548.14,1530.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,1653,13413.0,1474.6,337.05,15224.65,2496.18,2867.19,1208.48,6571.85,21796.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,44996,49679.0,0.0,5719.5,55398.5,12779.4,12424.5,4571.55,29775.45,85173.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,40120,62187.0,0.0,5384.82,67571.82,13926.88,12424.5,5290.56,31641.94,99213.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35204,73227.56,2870.96,3943.55,80042.07,14086.73,6867.22,6458.52,27412.47,107454.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",10775,131577.1,5932.41,22391.66,159901.17,30360.39,15196.12,2678.59,48235.1,208136.27 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,26518,141367.78,0.0,0.0,141367.78,28390.61,12484.23,27568.36,68443.2,209810.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42554,64037.65,14076.36,3072.43,81186.44,18488.76,12635.6,6089.9,37214.26,118400.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",45125,130329.31,94698.03,17192.69,242220.03,28844.14,15052.76,4096.11,47993.01,290213.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",43488,178604.34,29588.24,18734.54,226927.12,38731.63,15052.76,3817.16,57601.55,284528.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,49947,70033.19,430.69,0.0,70463.88,14759.49,9945.56,5655.92,30360.97,100824.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9124,Sr Transit Information Clerk,37155,2204.71,0.0,229.7,2434.41,572.3,467.83,210.86,1250.99,3685.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,16719,3283.19,0.0,55.19,3338.38,0.0,1535.13,258.86,1793.99,5132.37 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,28994,74412.0,0.0,5055.0,79467.0,15474.51,12424.5,6592.17,34491.18,113958.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,49787,53373.62,0.0,0.0,53373.62,11949.45,12076.86,4932.92,28959.23,82332.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,9140,39100.0,2324.99,3423.55,44848.54,10467.44,9557.31,3448.2,23472.95,68321.49 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,7786,97334.47,21454.28,11378.3,130167.05,26432.7,12424.51,2126.33,40983.54,171150.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,44276,28350.01,0.0,0.0,28350.01,6358.9,4778.65,2313.32,13450.87,41800.88 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,15210,74412.03,0.0,3000.0,77412.03,15345.94,12424.5,6376.06,34146.5,111558.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10910,29612.29,0.0,1755.63,31367.92,0.0,5722.43,2433.53,8155.96,39523.88 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,11851,83699.01,1371.4,624.0,85694.41,17379.24,12424.5,6972.34,36776.08,122470.49 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,39726,0.0,0.0,4352.87,4352.87,0.0,0.0,332.99,332.99,4685.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,35008,73957.01,4798.68,120.0,78875.69,15265.25,12424.5,6523.38,34213.13,113088.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33135,1322.4,0.0,0.0,1322.4,315.99,573.44,110.11,999.54,2321.94 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,43469,111918.0,0.0,1620.0,113538.0,22847.93,12424.5,9155.0,44427.43,157965.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39825,43545.05,0.0,5553.22,49098.27,323.74,0.0,4873.45,5197.19,54295.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27120,49376.82,9385.72,2417.69,61180.23,14495.66,9819.48,4766.78,29081.92,90262.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,32063,26501.04,0.0,3407.63,29908.67,5344.59,5274.44,2435.67,13054.7,42963.37 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,52274,49740.5,107.2,0.0,49847.7,10487.2,10035.18,4003.74,24526.12,74373.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,51183,106953.0,9979.62,2026.9,118959.52,22092.75,12424.49,9572.5,44089.74,163049.26 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,27286,220899.0,0.0,0.0,220899.0,44441.32,12424.5,11506.91,68372.73,289271.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,31045,82357.81,0.0,0.0,82357.81,17160.0,10990.91,6579.31,34730.22,117088.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12698,1160.0,0.0,28.16,1188.16,0.0,433.06,92.22,525.28,1713.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,11673,8357.72,0.0,0.0,8357.72,0.0,2477.43,648.69,3126.12,11483.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41022,2546.46,0.0,373.03,2919.49,0.0,1104.23,233.65,1337.88,4257.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17655,2393.64,0.0,8.82,2402.46,0.0,1257.38,186.15,1443.53,3845.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,53073,112737.23,0.0,0.0,112737.23,22959.63,12424.5,9268.19,44652.32,157389.55 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4197,26791.5,0.0,0.0,26791.5,4985.91,3106.13,2133.02,10225.06,37016.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,13120,1996.8,0.0,0.0,1996.8,0.0,381.69,154.59,536.28,2533.08 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",10103,69413.7,14945.14,9514.92,93873.76,18001.82,12423.55,1875.73,32301.1,126174.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10449,77071.07,0.0,624.0,77695.07,16021.89,12424.5,6442.27,34888.66,112583.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,28148,64160.66,4885.42,1735.8,70781.88,13524.22,12153.14,5843.01,31520.37,102302.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,30910,17203.01,0.0,120.0,17323.01,3223.82,2867.19,1408.93,7499.94,24822.95 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,8170,18002.5,248.72,0.0,18251.22,4644.65,4539.72,1433.16,10617.53,28868.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,29251,70300.24,0.0,0.0,70300.24,14484.87,12266.2,5471.15,32222.22,102522.46 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,29614,363.38,333.09,0.0,696.47,0.0,107.52,54.06,161.58,858.05 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,4830,96332.01,22454.39,6633.63,125420.03,21223.6,12424.5,9812.88,43460.98,168881.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,19563,118104.05,0.0,0.0,118104.05,23768.42,12424.5,9315.38,45508.3,163612.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,33907,60018.0,12754.55,10888.96,83661.51,13766.52,9079.44,6478.36,29324.32,112985.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,39139,48727.8,0.0,2547.61,51275.41,11716.39,11851.06,4167.67,27735.12,79010.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41674,119465.59,24964.82,4615.2,149045.61,23627.24,12424.5,2539.31,38591.05,187636.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,1153,5734.54,0.0,46.0,5780.54,0.0,1906.98,356.51,2263.49,8044.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",49862,12846.93,0.0,0.0,12846.93,583.22,3028.5,997.11,4608.83,17455.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,8745,31968.38,0.0,375.36,32343.74,6660.31,6433.26,2674.52,15768.09,48111.83 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,44603,67911.04,6853.21,4989.1,79753.35,14521.36,12424.5,6524.56,33470.42,113223.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38078,60009.17,0.0,14385.23,74394.4,587.87,0.0,7697.59,8285.46,82679.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3366,123018.34,442.53,20234.79,143695.66,25332.06,10894.14,9700.02,45926.22,189621.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,34329,200.0,0.0,0.0,200.0,0.0,0.0,15.82,15.82,215.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,3156,37450.8,0.0,3000.0,40450.8,8810.33,9844.03,3140.49,21794.85,62245.65 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,51743,21890.44,611.2,664.16,23165.8,2356.37,5104.2,1884.64,9345.21,32511.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,20147,89028.0,0.0,0.0,89028.0,18349.02,12424.5,7152.06,37925.58,126953.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1544,2386.06,0.0,5.74,2391.8,9377.67,185.35,82.95,9645.97,12037.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40249,119851.22,1040.2,13731.12,134622.54,24379.13,10962.23,5906.55,41247.91,175870.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33352,64733.94,22498.51,1595.12,88827.57,18123.36,12752.5,6903.88,37779.74,126607.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,24444,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,31259,139088.28,22356.56,2850.21,164295.05,27492.57,12424.5,2745.32,42662.39,206957.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,42570,77760.69,4104.15,1430.0,83294.84,16072.93,9517.36,6555.25,32145.54,115440.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,35460,117932.78,18405.86,0.0,136338.64,23192.97,0.0,2329.87,25522.84,161861.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,2991,139656.24,29595.27,6627.6,175879.11,27652.42,12424.5,2997.78,43074.7,218953.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,45761,89028.04,0.0,0.0,89028.04,18349.03,12424.5,7275.46,38048.99,127077.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,1260,81157.0,26695.45,19853.82,127706.27,19824.26,12424.51,9748.78,41997.55,169703.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,34676,43960.34,537.61,0.0,44497.95,10474.39,11420.99,3470.26,25365.64,69863.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,17996,96930.02,0.0,0.0,96930.02,19977.61,12424.5,7674.2,40076.31,137006.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,46633,101531.02,12802.15,1542.18,115875.35,21230.17,12424.5,9335.32,42989.99,158865.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,11414,25502.4,0.0,1252.92,26755.32,6555.88,6307.83,2139.58,15003.29,41758.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42060,67382.52,23126.13,2102.06,92610.71,19005.99,13275.04,7025.84,39306.87,131917.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12840,2803.87,0.0,106.48,2910.35,0.0,906.45,225.89,1132.34,4042.69 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,6634,105429.62,0.0,0.0,105429.62,21682.42,12424.5,8593.97,42700.89,148130.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,53127,49134.38,27821.29,1484.94,78440.61,10560.48,9365.63,6225.31,26151.42,104592.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44739,5117.88,0.0,15.77,5133.65,0.0,0.0,87.86,87.86,5221.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13824,30615.14,587.73,3452.84,34655.71,10551.3,0.0,5239.39,15790.69,50446.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,22633,97751.96,3328.08,2771.75,103851.79,20554.35,12401.26,8547.81,41503.42,145355.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17278,56531.0,7856.25,2930.55,67317.8,11780.12,12424.5,5532.93,29737.55,97055.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,17596,55227.5,1545.11,6207.86,62980.47,12065.68,12137.78,5198.08,29401.54,92382.01 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47504,2396.38,10.5,0.0,2406.88,0.0,1022.45,186.34,1208.79,3615.67 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,23374,18110.93,442.33,0.0,18553.26,0.0,4330.65,1438.26,5768.91,24322.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44321,40283.69,0.0,621.99,40905.68,82.13,0.0,5367.57,5449.7,46355.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,7758,143116.92,0.0,3416.38,146533.3,28893.79,12424.5,10281.29,51599.58,198132.88 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45930,101180.0,0.0,1125.0,102305.0,21004.06,11946.64,8165.52,41116.22,143421.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26146,56166.34,0.0,2289.75,58456.09,11586.02,12343.87,4774.79,28704.68,87160.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,23251,14800.0,484.89,410.71,15695.6,2830.71,2389.33,1217.06,6437.1,22132.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50511,53883.74,0.0,1601.23,55484.97,12403.95,12369.25,4344.03,29117.23,84602.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",36703,845.0,0.0,0.0,845.0,0.0,100.95,65.5,166.45,1011.45 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,38039,0.0,0.0,278.9,278.9,0.0,68.5,21.33,89.83,368.73 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,24935,81116.02,0.0,0.0,81116.02,16718.53,12424.5,6544.23,35687.26,116803.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,44904,146793.46,0.0,0.0,146793.46,29476.75,12424.5,10324.18,52225.43,199018.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36885,67772.92,7593.29,3720.11,79086.32,19645.23,13359.21,6026.26,39030.7,118117.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,39043,9237.36,0.0,61.31,9298.67,0.0,3338.78,720.83,4059.61,13358.28 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,52706,129895.05,0.0,0.0,129895.05,26141.51,12424.5,9903.44,48469.45,178364.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,53155,40798.61,6036.64,1683.2,48518.45,9900.31,12421.52,3915.88,26237.71,74756.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,3172,78132.03,0.0,33221.8,111353.83,17171.5,4874.23,1806.67,23852.4,135206.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34142,64529.42,2113.63,617.96,67261.01,17852.1,12717.56,4915.85,35485.51,102746.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,3779,112295.61,0.0,0.0,112295.61,22555.64,12424.5,9085.48,44065.62,156361.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,31958,45189.2,6931.67,4899.24,57020.11,8954.6,6594.55,4717.17,20266.32,77286.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,27422,28956.49,0.0,3688.47,32644.96,5860.24,5081.8,2654.07,13596.11,46241.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26419,5095.89,0.0,15.85,5111.74,1233.25,1576.95,396.76,3206.96,8318.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,833,60680.51,0.0,0.0,60680.51,12516.51,12387.16,4290.39,29194.06,89874.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16730,55662.98,8581.11,1919.29,66163.38,14923.78,13242.69,5040.09,33206.56,99369.94 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,15116,129308.02,0.0,0.0,129308.02,26023.61,12424.5,9933.77,48381.88,177689.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24421,49146.82,20403.65,3968.67,73519.14,15090.64,9773.36,5701.7,30565.7,104084.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,45960,77071.01,0.0,2239.0,79310.01,16344.43,12424.5,6518.28,35287.21,114597.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23348,112680.09,63445.69,10957.0,187082.78,22350.68,12424.5,3189.05,37964.23,225047.01 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,31562,38338.62,86.59,0.0,38425.21,7520.71,7857.89,3058.93,18437.53,56862.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,6798,49518.99,2774.01,1007.52,53300.52,12109.53,12406.59,4307.1,28823.22,82123.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,13533,136466.0,1113.76,20658.73,158238.49,38219.72,12424.5,2632.96,53277.18,211515.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,25579,84289.62,0.0,0.0,84289.62,17344.18,12424.5,6850.57,36619.25,120908.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,2932,77083.98,0.0,1622.97,78706.95,15924.23,8238.82,6312.45,30475.5,109182.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,19233,79395.07,0.0,1520.0,80915.07,16672.09,12424.51,6659.48,35756.08,116671.15 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,43893,136466.0,20943.47,24661.99,182071.46,39181.05,12424.5,3105.35,54710.9,236782.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3927,109785.29,6430.82,18172.67,134388.78,0.0,9608.08,2252.26,11860.34,146249.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5274,Landscape Architect,15823,135421.0,0.0,0.0,135421.0,27253.5,12424.51,10128.14,49806.15,185227.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51204,113233.59,56940.41,17785.09,187959.09,23700.77,15196.12,3109.49,42006.38,229965.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20605,42587.77,3871.71,2852.75,49312.23,11795.11,13265.54,3740.82,28801.47,78113.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,4116,135421.0,0.0,0.0,135421.0,27246.1,12424.49,10081.35,49751.94,185172.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30186,63519.32,28292.66,8827.88,100639.86,14292.52,11235.81,8157.29,33685.62,134325.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,51874,11110.14,0.0,0.0,11110.14,0.0,2452.04,862.33,3314.37,14424.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34208,7190.55,0.0,875.95,8066.5,1855.15,3118.07,661.06,5634.28,13700.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,10523,183433.39,0.0,0.0,183433.39,36766.59,12424.5,28362.05,77553.14,260986.53 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,40472,119979.13,0.0,0.0,119979.13,27098.21,12424.5,2001.17,41523.88,161503.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,4686,997.0,0.0,0.0,997.0,0.0,238.93,77.39,316.32,1313.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,10609,47719.05,71.06,1674.45,49464.56,11440.15,12454.37,4016.07,27910.59,77375.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9147,Traf Signal Electrician Sup I,48349,120163.06,16838.23,12066.96,149068.25,24182.91,12424.5,10332.25,46939.66,196007.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,35952,100761.01,16271.34,6942.78,123975.13,22040.98,12424.5,9849.56,44315.04,168290.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",9667,17151.01,2004.53,1715.1,20870.64,3329.88,1433.6,54.79,4818.27,25688.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,43049,70069.02,0.0,0.0,70069.02,14211.52,10513.03,5644.48,30369.03,100438.05 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",16864,74676.08,11833.53,3902.17,90411.78,17930.92,12423.01,526.53,30880.46,121292.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,1174,13295.85,17.46,1678.47,14991.78,0.0,3412.25,1271.99,4684.24,19676.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,25659,63887.03,2325.12,5061.35,71273.5,13519.29,12424.5,5755.1,31698.89,102972.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31270,42283.08,669.66,587.22,43539.96,12381.33,8408.76,3302.43,24092.52,67632.48 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,958,15064.0,0.0,0.0,15064.0,3886.48,3822.92,1187.7,8897.1,23961.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,41410,113233.59,28857.78,19122.05,161213.42,25036.03,15196.12,2693.14,42925.29,204138.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4795,80946.0,2724.98,1741.0,85411.98,16598.87,12424.51,3294.71,32318.09,117730.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,29424,28676.05,2102.74,190.26,30969.05,6874.43,9342.27,2512.73,18729.43,49698.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,27244,75586.94,0.0,3531.1,79118.04,15707.17,12421.52,6414.36,34543.05,113661.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22853,6540.37,0.0,185.01,6725.38,351.27,2836.13,535.63,3723.03,10448.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,24057,5142.0,48.21,0.0,5190.21,956.92,955.73,390.52,2303.17,7493.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,33395,38252.01,0.0,0.0,38252.01,9174.77,12424.5,3058.41,24657.68,62909.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44021,102077.4,0.0,250.0,102327.4,15412.9,10823.65,8278.33,34514.88,136842.28 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,25591,1852.5,0.0,0.0,1852.5,344.75,238.93,158.45,742.13,2594.63 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,30863,138255.3,0.0,0.0,138255.3,27824.01,12424.5,27249.95,67498.46,205753.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13593,3001.26,0.0,0.0,3001.26,0.0,1463.46,232.74,1696.2,4697.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,7134,4484.08,0.0,0.0,4484.08,0.0,991.57,371.14,1362.71,5846.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41411,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,34147,55089.0,0.0,0.0,55089.0,13196.06,12424.5,4435.75,30056.31,85145.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40596,113233.59,8168.89,18967.03,140369.51,25036.02,15196.12,2436.51,42668.65,183038.16 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",6668,63453.16,7292.38,2547.48,73293.02,15101.14,11351.99,1472.12,27925.25,101218.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25646,65589.63,0.0,5.0,65594.63,13488.79,12424.51,5109.39,31022.69,96617.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8573,149099.0,0.0,26098.96,175197.96,31473.22,12424.5,4660.53,48558.25,223756.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37502,229.46,0.0,0.0,229.46,1119.71,17.86,410.46,1548.03,1777.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29543,0.0,0.0,1587.2,1587.2,0.0,0.0,121.42,121.42,1708.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,36593,62187.01,0.0,6844.17,69031.18,13907.29,12424.5,5589.64,31921.43,100952.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32068,113233.59,25789.47,18854.59,157877.65,25036.02,15196.12,2680.63,42912.77,200790.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39615,40349.9,0.0,2486.6,42836.5,2044.77,0.0,5667.62,7712.39,50548.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,6201,3312.61,0.0,0.0,3312.61,0.0,910.93,257.11,1168.04,4480.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,13510,68067.03,0.0,0.0,68067.03,14029.01,12424.5,5393.67,31847.18,99914.21 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,46764,73704.84,0.0,3000.0,76704.84,15187.29,12424.5,6344.61,33956.4,110661.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4548,6968.49,0.0,261.54,7230.03,1957.17,1385.8,545.12,3888.09,11118.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,4324,159593.57,0.0,0.0,159593.57,32018.63,12424.5,17646.71,62089.84,221683.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33333,1244.83,0.0,0.0,1244.83,0.0,301.65,96.62,398.27,1643.1 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,29645,125815.1,0.0,0.0,125815.1,25334.68,12424.5,9888.31,47647.49,173462.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,11115,97934.03,0.0,624.0,98558.03,20324.33,12424.5,8117.49,40866.32,139424.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",31349,131564.76,33580.3,16545.17,181690.23,29167.05,15196.11,3042.76,47405.92,229096.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,17528,54124.01,16074.76,2530.2,72728.97,12250.25,12424.5,5955.29,30630.04,103359.01 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,47378,24640.0,0.0,3000.0,27640.0,4585.52,3822.92,2267.36,10675.8,38315.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,9433,22406.09,473.97,2193.16,25073.22,4428.52,4848.83,1975.91,11253.26,36326.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23736,25154.03,0.0,808.26,25962.29,6232.79,6212.25,2147.39,14592.43,40554.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,46752,81157.01,3889.48,20090.44,105136.93,19731.24,12424.5,8370.83,40526.57,145663.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,27963,24484.59,0.0,0.0,24484.59,5491.89,3345.06,1991.66,10828.61,35313.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,39770,8860.0,195.33,1390.18,10445.51,2046.22,2867.19,834.78,5748.19,16193.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,21200,71811.15,9075.74,1101.86,81988.75,14879.77,11951.53,6511.08,33342.38,115331.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15593,6746.32,0.0,138.29,6884.61,1608.39,2228.05,533.95,4370.39,11255.0 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,37898,93499.02,0.0,624.0,94123.02,19399.27,12424.5,7749.62,39573.39,133696.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38895,72315.5,2056.64,0.0,74372.14,14870.92,12424.5,6042.43,33337.85,107709.99 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,36911,113607.51,0.0,8434.41,122041.92,24137.4,12417.45,9849.17,46404.02,168445.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,45436,64378.0,0.0,16.87,64394.87,13000.65,0.0,5093.76,18094.41,82489.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41769,68575.12,3146.84,3357.22,75079.18,19727.06,13512.9,5736.41,38976.37,114055.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,26432,30745.26,1355.35,503.77,32604.38,6975.06,6365.58,2570.08,15910.72,48515.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,3297,84599.06,54642.61,13341.38,152583.05,19283.01,12424.5,10202.04,41909.55,194492.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,32193,54124.02,0.0,624.0,54748.02,12250.26,12424.5,4427.38,29102.14,83850.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40670,64757.98,1700.5,2695.51,69153.99,18445.22,12756.85,5386.87,36588.94,105742.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,31129,72918.22,3940.68,0.0,76858.9,15013.67,12424.5,6238.38,33676.55,110535.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35467,121271.72,4963.52,8961.61,135196.85,23267.85,11074.54,9320.59,43662.98,178859.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",38841,27479.45,0.0,0.0,27479.45,265.1,6510.91,2130.61,8906.62,36386.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4495,77022.83,1132.37,1460.0,79615.2,16172.35,12416.67,6589.49,35178.51,114793.71 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29154,3486.0,0.0,0.0,3486.0,0.0,1487.36,269.89,1757.25,5243.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32839,3117.63,0.0,4.9,3122.53,0.0,1520.21,242.25,1762.46,4884.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,29621,62468.8,30133.09,7637.03,100238.92,12891.79,12424.51,7820.7,33137.0,133375.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,44093,131688.22,0.0,0.0,131688.22,26461.93,12424.49,9901.64,48788.06,180476.28 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0884,Mayoral Staff IV,20736,56601.81,0.0,0.0,56601.81,12594.71,12424.5,12485.43,37504.64,94106.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9594,57327.01,0.0,5770.82,63097.83,7995.28,4488.53,2162.66,14646.47,77744.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,37979,63887.02,0.0,624.0,64511.02,13295.98,12424.5,5302.96,31023.44,95534.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,12544,57147.29,3889.18,2523.13,63559.6,15853.57,10766.85,5154.32,31774.74,95334.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,25905,39791.78,214.87,5665.25,45671.9,10279.24,10526.01,3681.13,24486.38,70158.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7848,69454.32,0.0,3234.96,72689.28,0.0,0.0,5293.93,5293.93,77983.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,19308,127123.64,0.0,0.0,127123.64,25532.66,12060.42,17215.35,54808.43,181932.07 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,25345,104182.35,0.0,360.0,104542.35,21507.79,12424.5,8424.05,42356.34,146898.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7228,Automotive Trnst Shop Sprv 1,7252,111720.97,18785.71,11264.89,141771.57,23546.36,11666.08,10146.96,45359.4,187130.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22817,108856.82,0.0,716.82,109573.64,21987.97,9939.6,8967.17,40894.74,150468.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45714,122820.74,129.45,18302.79,141252.98,24854.42,10875.02,6967.34,42696.78,183949.76 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21830,115614.21,0.0,1500.0,117114.21,23561.39,12424.5,9445.96,45431.85,162546.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49171,23878.05,0.0,3979.73,27857.78,7426.36,2007.57,1105.73,10539.66,38397.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,18678,8259.1,0.0,0.0,8259.1,0.0,2982.18,657.87,3640.05,11899.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,11881,28091.71,339.9,2135.86,30567.47,6234.94,5591.02,2412.19,14238.15,44805.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,37587,28326.45,398.09,2965.54,31690.08,6489.43,6853.79,2533.42,15876.64,47566.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",14454,10353.4,0.0,0.0,10353.4,0.0,2395.3,803.59,3198.89,13552.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16847,11453.93,0.0,0.0,11453.93,454.9,4966.81,916.64,6338.35,17792.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,15932,114771.61,0.0,0.0,114771.61,23037.3,12376.71,9256.88,44670.89,159442.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,19675,8565.0,0.0,0.0,8565.0,1593.96,1433.6,688.42,3715.98,12280.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6493,52634.91,2349.48,1749.38,56733.77,15420.51,10467.41,4114.45,30002.37,86736.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,20793,9923.25,0.0,206.48,10129.73,2613.46,2944.84,826.67,6384.97,16514.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27499,112685.5,6738.89,6080.51,125504.9,22330.93,12424.5,2128.77,36884.2,162389.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,2434,128787.91,0.0,1280.63,130068.54,26155.05,12424.5,17254.35,55833.9,185902.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,40928,0.0,0.0,99.96,99.96,0.0,68.5,7.65,76.15,176.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2488,Supv Chemist,35563,122445.36,0.0,0.0,122445.36,24699.1,12424.5,9820.64,46944.24,169389.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,18359,50751.74,442.1,2041.67,53235.51,10668.3,8551.76,4450.24,23670.3,76905.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29939,74239.93,5801.51,601.66,80643.1,15482.34,11979.63,6419.38,33881.35,114524.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,42640,79395.01,0.0,1000.0,80395.01,16569.71,12424.51,6664.88,35659.1,116054.11 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",6100,Health & Sanitation Inspection,6139,Senior Industrial Hygienist,18527,130910.05,0.0,0.0,130910.05,26346.51,12424.5,9880.2,48651.21,179561.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28611,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1767.81,10181.58,34185.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,25425,53917.12,0.0,3700.29,57617.41,12890.06,12376.71,4512.69,29779.46,87396.87 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16941,132999.71,0.0,2152.45,135152.16,27913.17,8983.87,10041.59,46938.63,182090.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,39577,47011.84,7519.48,2541.23,57072.55,11719.67,12092.74,4562.88,28375.29,85447.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,43733,69417.8,60.02,8897.8,78375.62,15430.0,12137.78,6352.83,33920.61,112296.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40846,67873.18,5561.03,3672.17,77106.38,19593.84,13372.82,5893.55,38860.21,115966.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34575,68539.61,35250.24,6806.4,110596.25,20658.48,13505.75,8655.51,42819.74,153415.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,8184,90374.92,24528.36,12057.93,126961.21,18649.44,12174.34,9837.84,40661.62,167622.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",7400,Skilled Labor,7412,Auto Svc Wrk Asst Sprv,38061,70880.11,8203.02,13801.16,92884.29,16642.12,12424.5,7532.94,36599.56,129483.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,43908,158367.0,2434.28,12412.75,173214.03,31259.76,12424.5,2897.47,46581.73,219795.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42713,66678.91,19614.64,4291.08,90584.63,19437.27,13139.51,7042.12,39618.9,130203.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,8337,53460.64,0.0,0.0,53460.64,10851.94,10593.68,4189.34,25634.96,79095.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,32086,80841.39,0.0,0.0,80841.39,16914.98,10704.78,6537.38,34157.14,114998.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48015,56531.0,0.0,7358.09,63889.09,12801.56,12424.5,5018.14,30244.2,94133.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,8652,71.6,0.0,4.3,75.9,0.0,23.88,5.88,29.76,105.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,18744,1215.31,0.0,0.0,1215.31,0.0,403.2,94.21,497.41,1712.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,5133,70791.01,1253.22,13.74,72057.97,14603.59,12424.5,5555.51,32583.6,104641.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,51236,62811.0,8052.55,12590.83,83454.38,14716.39,12424.5,6792.8,33933.69,117388.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,24392,72696.67,0.0,0.0,72696.67,14936.41,10410.0,5934.07,31280.48,103977.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20615,4103.03,0.0,70.01,4173.04,0.0,1031.9,323.64,1355.54,5528.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5400,Community Development,5408,Coord Of Citizen Involvement,52254,112146.02,0.0,2839.17,114985.19,22569.26,12424.5,9015.27,44009.03,158994.22 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,925,3564.2,0.0,0.0,3564.2,0.0,1317.13,276.64,1593.77,5157.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,10116,19663.6,0.0,0.0,19663.6,3564.99,1959.25,1562.79,7087.03,26750.63 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,3641,46418.87,1821.18,0.0,48240.05,9407.08,10411.49,3879.35,23697.92,71937.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,31176,116976.03,0.0,0.0,116976.03,23541.49,12424.51,9366.9,45332.9,162308.93 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),37930,184289.04,0.0,5248.28,189537.32,38144.35,12424.5,11015.16,61584.01,251121.33 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,12515,28937.02,0.0,80.0,29017.02,5510.71,6212.25,2210.31,13933.27,42950.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",28510,1605.6,0.0,0.0,1605.6,0.0,382.3,124.63,506.93,2112.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,15684,64547.5,3819.91,882.26,69249.67,13475.59,12135.11,5703.43,31314.13,100563.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,28815,79722.01,6398.7,0.0,86120.71,16430.89,12424.52,7118.81,35974.22,122094.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20648,6790.37,0.0,0.0,6790.37,374.46,3130.01,527.01,4031.48,10821.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,22140,5272.94,0.0,0.0,5272.94,1360.42,1427.62,404.27,3192.31,8465.25 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3549,Arts Program Assistant,27197,70931.02,0.0,0.0,70931.02,14619.09,12424.5,5608.1,32651.69,103582.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,11306,92282.05,0.0,0.0,92282.05,19016.14,12424.5,7615.97,39056.61,131338.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,42914,156746.01,0.0,1560.0,158306.01,31545.23,12424.5,10483.75,54453.48,212759.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,618,73957.01,1299.45,230.0,75486.46,15288.39,12424.44,6151.39,33864.22,109350.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,51369,529.1,0.0,25.11,554.21,0.0,155.31,43.02,198.33,752.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",7737,92613.81,3623.04,14733.77,110970.62,22242.93,9891.81,1870.44,34005.18,144975.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44088,11426.36,0.0,0.0,11426.36,0.0,4954.87,914.51,5869.38,17295.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45859,119455.92,30196.22,10507.29,160159.43,23501.49,12424.5,2729.66,38655.65,198815.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,46795,148918.2,2156.52,8798.5,159873.22,30059.89,12424.5,412.84,42897.23,202770.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,12090,117510.28,1588.02,5358.05,124456.35,23850.13,12423.78,9784.55,46058.46,170514.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32729,62079.26,4249.32,3376.09,69704.67,18040.55,12236.04,5432.41,35709.0,105413.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,48824,63714.48,4451.22,239.2,68404.9,13330.09,10662.97,5457.62,29450.68,97855.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8121,Investigator/Transit Fare Supv,5167,73356.5,0.0,5529.61,78886.11,16199.1,12424.5,6259.11,34882.71,113768.82 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28405,72534.53,15475.91,14680.14,102690.58,21273.0,9215.33,1727.2,32215.53,134906.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43460,56531.02,40.52,324.15,56895.69,11667.81,12424.5,4570.51,28662.82,85558.51 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,34590,72719.43,0.0,0.0,72719.43,15211.92,10757.59,5791.38,31760.89,104480.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7126,55855.0,0.0,4214.55,60069.55,12652.92,12424.5,4713.43,29790.85,89860.4 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,41076,87713.0,0.0,0.0,87713.0,18078.17,12424.5,7200.7,37703.37,125416.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,5592,80237.01,0.0,552.0,80789.01,16868.08,10990.91,6710.46,34569.45,115358.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,16192,48631.51,1503.15,2339.48,52474.14,11717.04,11516.55,4184.04,27417.63,79891.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,14010,97934.02,2590.89,1149.33,101674.24,20308.12,12424.5,8420.01,41152.63,142826.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,31374,31984.0,0.0,0.0,31984.0,5952.22,4300.79,2516.42,12769.43,44753.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q061,Lieutenant 2,40473,18958.0,40.42,589.35,19587.77,3362.78,1433.6,330.21,5126.59,24714.36 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,49104,40016.95,0.0,2422.88,42439.83,9684.18,9657.96,3497.65,22839.79,65279.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,40716,200917.81,0.0,5607.54,206525.35,39621.44,12424.5,3510.67,55556.61,262081.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2457,55641.5,302.48,3889.5,59833.48,12597.22,12376.71,4901.64,29875.57,89709.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36329,54875.4,13259.36,3898.99,72033.75,15748.16,10785.43,5363.36,31896.95,103930.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,15867,40802.5,0.0,950.0,41752.5,9750.3,9796.24,3147.67,22694.21,64446.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,27779,46313.55,3027.87,0.0,49341.42,11100.64,12424.5,3964.98,27490.12,76831.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36491,119467.37,43449.25,4594.6,167511.22,23621.0,12424.5,2838.38,38883.88,206395.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14239,135346.11,0.0,27239.93,162586.04,30199.4,12357.9,9702.01,52259.31,214845.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,472C,Fiscal Technician,12755,15026.03,0.0,1502.6,16528.63,3370.35,2389.33,1386.54,7146.22,23674.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3049,0.0,0.0,886.7,886.7,0.0,0.0,67.84,67.84,954.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48693,39152.16,3975.83,588.89,43716.88,10348.54,12033.14,3270.9,25652.58,69369.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33786,5343.0,0.0,890.5,6233.5,254.59,0.0,2489.91,2744.5,8978.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47919,112159.76,1707.41,18166.03,132033.2,24704.17,15052.76,2249.28,42006.21,174039.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,25554,27965.0,2939.34,5426.33,36330.67,7157.31,6690.13,2901.78,16749.22,53079.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3970,45317.49,131.7,2554.54,48003.73,10918.69,11980.33,3871.12,26770.14,74773.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45736,120689.33,5517.12,6935.5,133141.95,23836.68,12424.49,2213.39,38474.56,171616.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,42538,66381.9,0.0,414.21,66796.11,0.0,0.0,5284.09,5284.09,72080.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,42553,0.0,0.0,79.86,79.86,0.0,68.5,6.11,74.61,154.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7213,Plumber Supervisor 1,46427,113369.01,0.0,0.0,113369.01,22816.0,12424.5,9262.24,44502.74,157871.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,1853,72522.03,0.0,0.0,72522.03,14944.42,12424.62,5756.57,33125.61,105647.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,12672,15047.0,0.0,6.3,15053.3,3310.23,2867.18,1202.88,7380.29,22433.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,39630,83304.1,0.0,0.0,83304.1,17137.18,12185.56,6605.32,35928.06,119232.16 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,27410,54437.42,468.7,597.58,55503.7,11551.28,10074.3,4354.95,25980.53,81484.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,18638,114653.42,0.0,0.0,114653.42,23053.58,12424.5,9319.21,44797.29,159450.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,34454,79722.01,6969.22,1329.0,88020.23,16713.58,12424.51,7192.71,36330.8,124351.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,26507,81739.63,0.0,609.3,82348.93,16936.45,12131.81,6756.74,35825.0,118173.93 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0889,Mayoral Staff IX,7370,72412.2,0.0,0.0,72412.2,13683.58,12376.71,13788.02,39848.31,112260.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,40.0,"Roofers and Waterproofers, Local 40",7200,Supervisory-Labor & Trade,9343,Roofer,44427,80918.0,3595.61,2070.0,86583.61,17102.51,12424.5,6867.54,36394.55,122978.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4148,149099.03,0.0,8577.2,157676.23,31676.17,12424.5,10396.54,54497.21,212173.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52579,67441.98,22495.01,870.69,90807.68,18703.58,13289.08,7059.37,39052.03,129859.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",20135,131564.79,60904.76,22509.12,214978.67,30122.11,15196.12,551.47,45869.7,260848.37 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,27966,23834.0,0.0,200.0,24034.0,4472.72,3345.06,1947.99,9765.77,33799.77 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,16973,129308.04,0.0,0.0,129308.04,26023.63,12424.5,9955.57,48403.7,177711.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,43808,66580.03,932.83,5522.94,73035.8,13722.37,12424.5,5980.86,32127.73,105163.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2577,Med Examiner's Investigator I,12791,11889.14,147.44,0.0,12036.58,0.0,2177.28,934.23,3111.51,15148.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35633,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,30475,10547.73,0.0,98.1,10645.83,0.0,3819.93,825.1,4645.03,15290.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,27668,30886.3,3935.13,5163.47,39984.9,5789.02,3345.06,671.19,9805.27,49790.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41701,58070.34,13812.98,6823.67,78706.99,17560.31,11423.96,5830.05,34814.32,113521.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,50588,63663.88,190.28,621.81,64475.97,13245.45,12380.83,5293.43,30919.71,95395.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,50823,71612.0,0.0,612.0,72224.0,14885.78,12424.5,5936.43,33246.71,105470.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,33644,70715.39,2493.04,0.0,73208.43,7706.49,11444.89,5813.97,24965.35,98173.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,14248,150508.65,0.0,433.02,150941.67,30347.18,9987.39,10283.86,50618.43,201560.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34426,130870.05,0.0,0.0,130870.05,26258.19,11946.62,9951.94,48156.75,179026.8 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,42460,74412.0,0.0,5055.0,79467.0,15474.51,12424.5,6592.17,34491.18,113958.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",23834,56426.59,0.0,0.0,56426.59,11637.01,7478.59,4591.37,23706.97,80133.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45023,55025.28,3936.77,909.53,59871.58,14486.57,12567.38,4598.03,31651.98,91523.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,5998,11191.91,0.0,21252.43,32444.34,2529.39,1691.41,2626.13,6846.93,39291.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,44622,119066.02,0.0,18786.2,137852.22,31727.07,12424.5,1799.47,45951.04,183803.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,23973,61492.68,2432.06,1805.85,65730.59,12664.46,12284.91,5437.89,30387.26,96117.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,10262,43370.18,303.6,4736.09,48409.87,10840.66,10732.8,3928.92,25502.38,73912.25 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,9857,4765.6,90.96,0.0,4856.56,0.0,1338.02,376.94,1714.96,6571.52 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,16272,4672.8,0.0,98.22,4771.02,0.0,1409.71,369.38,1779.09,6550.11 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,9590,113623.02,7053.07,0.0,120676.09,23158.29,12424.51,9708.12,45290.92,165967.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,3668,62811.0,187.24,9647.37,72645.61,14759.54,12424.5,5987.16,33171.2,105816.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,12951,98382.57,7707.82,2862.93,108953.32,20389.57,12129.38,8539.67,41058.62,150011.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16180,72462.96,8373.09,5247.35,86083.4,15608.3,9079.45,1432.88,26120.63,112204.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,31020,66102.0,0.0,1560.19,67662.19,13915.96,12424.49,5564.48,31904.93,99567.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32280,34239.46,804.77,5457.04,40501.27,6864.04,3687.93,3220.42,13772.39,54273.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2536,Respiratory Care Practitioner,46201,23569.6,0.0,0.0,23569.6,0.0,0.0,1864.3,1864.3,25433.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,45533,96095.82,5605.77,14376.96,116078.55,18583.2,10035.18,1941.35,30559.73,146638.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52663,3773.0,0.0,0.0,3773.0,0.0,1839.78,292.62,2132.4,5905.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7738,605.54,227.08,0.0,832.62,171.37,0.0,65.77,237.14,1069.76 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,1412,72153.01,0.0,0.0,72153.01,14871.04,12424.49,5712.63,33008.16,105161.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,26322,20463.87,784.02,130.0,21377.89,0.0,5378.98,1551.05,6930.03,28307.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3279,113233.59,3504.81,11034.95,127773.35,23607.46,15196.12,2166.49,40970.07,168743.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,24622,80357.01,3718.84,0.0,84075.85,16562.14,12424.5,6918.15,35904.79,119980.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43661,69966.67,34140.02,8810.61,112917.3,21615.16,13785.7,8591.9,43992.76,156910.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52658,38810.8,2131.73,1155.7,42098.23,7860.88,8506.01,3451.32,19818.21,61916.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,40360,81157.03,26837.79,19736.11,127730.93,19623.8,12424.5,9784.54,41832.84,169563.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5644,Principal Environ Specialist,9965,85400.95,0.0,0.0,85400.95,17463.59,11014.8,6550.29,35028.68,120429.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,42395,59250.0,0.0,0.0,59250.0,11956.98,10035.17,4734.55,26726.7,85976.7 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,12104,128298.3,0.0,12903.22,141201.52,25791.14,12424.5,10120.57,48336.21,189537.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,19360,82717.02,0.0,624.0,83341.02,17177.09,12424.5,6910.94,36512.53,119853.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,7171,75592.7,13684.59,11939.89,101217.18,17023.37,12422.54,8277.31,37723.22,138940.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21848,24369.71,944.56,940.7,26254.97,6945.02,7692.63,1978.85,16616.5,42871.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,990.0,Executive Contract Employees,0900,Management,9989,Executive Contract Employee,15707,79995.67,0.0,137912.02,217907.69,17551.03,3918.5,13144.82,34614.35,252522.04 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,40971,192437.94,21487.88,5835.0,219760.82,38950.65,12382.93,11549.13,62882.71,282643.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,51045,107978.0,0.0,1604.0,109582.0,22585.24,12424.5,9054.39,44064.13,153646.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,873,3331.76,0.0,40.38,3372.14,0.0,898.99,261.73,1160.72,4532.86 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,9697,36063.28,1690.59,0.0,37753.87,8409.09,9061.53,3053.66,20524.28,58278.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,9631,150710.01,162.45,2450.4,153322.86,30648.3,12424.5,10319.44,53392.24,206715.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49415,41655.35,19695.17,3381.38,64731.9,13129.46,8283.93,4927.92,26341.31,91073.21 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,41035,85004.0,8963.73,5290.42,99258.15,18595.77,12424.5,7927.1,38947.37,138205.52 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,4936,94107.04,2127.77,1682.1,97916.91,19598.72,12424.5,7648.99,39672.21,137589.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2469,Diagnostic Imaging Tech III,13850,122495.76,1471.44,960.0,124927.2,24799.63,12332.7,9781.46,46913.79,171840.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,23226,63887.05,368.7,5494.41,69750.16,13509.53,12424.5,5659.46,31593.49,101343.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32459,61735.0,0.0,2014.0,63749.0,13087.7,12424.5,5259.4,30771.6,94520.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4900,8814.17,0.0,904.14,9718.31,1744.36,3796.64,716.61,6257.61,15975.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42480,51587.55,0.0,3329.19,54916.74,10738.14,0.0,5869.82,16607.96,71524.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,43746,15583.2,0.0,317.65,15900.85,3869.1,5157.96,1232.24,10259.3,26160.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,40.0,"Roofers and Waterproofers, Local 40",7200,Supervisory-Labor & Trade,9343,Roofer,8025,80918.0,0.0,1471.98,82389.98,16933.5,12424.5,6576.8,35934.8,118324.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2114,Medical Records Tech Sprv,27327,83699.01,2857.98,200.0,86756.99,17250.55,12424.5,6772.91,36447.96,123204.95 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,15333,133087.02,0.0,3422.38,136509.4,26783.95,12424.5,10093.6,49302.05,185811.45 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,19158,143188.0,0.0,11946.82,155134.82,28816.76,12424.5,10370.75,51612.01,206746.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,1312,46154.32,0.0,0.0,46154.32,9764.08,8989.85,3758.48,22512.41,68666.73 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,50964,63102.0,0.0,2058.69,65160.69,13134.24,12424.5,5103.41,30662.15,95822.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18592,52338.6,0.0,4816.54,57155.14,13540.96,12424.5,4585.62,30551.08,87706.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7472,Wire Rope Cable Maint Mechanic,13760,87521.13,11730.55,10208.73,109460.41,19833.4,12358.92,8718.58,40910.9,150371.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,36943,89661.14,5266.55,26.66,94954.35,18681.91,11468.77,7630.92,37781.6,132735.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9852,51037.03,0.0,90343.56,141380.59,11701.9,5256.52,144.41,17102.83,158483.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,6802,61735.01,3140.79,704.0,65579.8,12867.51,12424.5,5130.88,30422.89,96002.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,36207,116569.21,17629.33,7619.5,141818.04,23084.08,12364.77,2370.5,37819.35,179637.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,37737,61636.83,0.0,250.0,61886.83,12682.29,12424.5,5111.59,30218.38,92105.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,41725,12808.6,0.0,584.02,13392.62,2428.34,2341.54,1141.53,5911.41,19304.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,27362,156320.0,0.0,0.0,156320.0,31459.67,12424.52,10293.1,54177.29,210497.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,17469,111918.02,13859.27,2427.87,128205.16,23275.51,12424.49,9868.96,45568.96,173774.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,33685,7989.88,0.0,61.31,8051.19,0.0,2894.07,624.08,3518.15,11569.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,45554,3606.73,0.0,0.0,3606.73,0.0,1317.11,291.11,1608.22,5214.95 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18387,53913.76,326.55,1501.99,55742.3,11405.35,11845.75,4621.17,27872.27,83614.57 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8414,"Sprv Prob Ofc, Juv Court",11938,106738.86,0.0,0.0,106738.86,24382.39,11934.69,1770.31,38087.39,144826.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,47869,131963.0,0.0,0.0,131963.0,26497.67,12424.5,9696.22,48618.39,180581.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,4743,20220.0,3635.05,606.6,24461.65,4701.02,2389.33,2024.92,9115.27,33576.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,46456,33827.79,345.03,4822.32,38995.14,6004.01,2867.19,668.31,9539.51,48534.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",11730,350.0,0.0,0.0,350.0,0.0,0.0,27.67,27.67,377.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,12309,25107.2,0.0,0.0,25107.2,4672.43,4014.07,2023.39,10709.89,35817.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49498,56531.0,0.0,1631.1,58162.1,11659.55,12424.5,4760.63,28844.68,87006.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,7712,65592.0,1416.73,2364.0,69372.73,13963.03,12424.5,5673.69,32061.22,101433.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18057,103423.92,80991.49,16612.12,201027.53,23961.85,15004.97,3183.92,42150.74,243178.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17543,7352.16,472.75,31.79,7856.7,1744.93,2216.04,568.1,4529.07,12385.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,49542,37943.98,3376.76,56.28,41377.02,7061.4,4832.72,690.03,12584.15,53961.17 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",20331,53103.03,0.0,1213.38,54316.41,7534.39,8888.3,4416.52,20839.21,75155.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,2994,87531.03,0.0,624.0,88155.03,18169.31,12424.5,7017.73,37611.54,125766.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,44815,5934.96,0.0,8.13,5943.09,0.0,1978.65,460.99,2439.64,8382.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,53004,0.0,0.0,1943.23,1943.23,0.0,68.5,0.0,68.5,2011.73 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,39823,119101.62,0.0,8067.63,127169.25,23941.44,12424.51,9841.97,46207.92,173377.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,1053,71657.07,28157.94,8831.41,108646.42,15767.94,12411.01,8687.21,36866.16,145512.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31928,112159.75,44132.21,18488.18,174780.14,24704.16,15052.76,2924.78,42681.7,217461.84 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,42140,111967.78,1859.12,4665.46,118492.36,22848.51,12334.91,9507.05,44690.47,163182.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35695,66511.74,22515.84,4855.03,93882.61,19553.66,13105.86,7085.36,39744.88,133627.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,3720,77071.07,0.0,0.0,77071.07,15880.48,12424.5,6298.51,34603.49,111674.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29904,97788.0,30385.49,12259.96,140433.45,25934.67,12424.51,1801.42,40160.6,180594.05 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,33957,54918.77,0.0,0.0,54918.77,10677.27,7305.37,3850.72,21833.36,76752.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22786,80957.63,1531.64,1812.64,84301.91,16556.63,12424.51,3276.02,32257.16,116559.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,1629,36295.01,0.0,920.0,37215.01,7313.86,8123.71,2954.2,18391.77,55606.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11533,7920.63,0.0,0.0,7920.63,682.35,3434.66,627.11,4744.12,12664.75 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,41869,111236.0,0.0,8242.41,119478.41,23633.18,12424.5,9804.89,45862.57,165340.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10163,113000.42,12498.98,16026.7,141526.1,25941.26,14479.33,2246.75,42667.34,184193.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47399,70245.0,4808.12,3344.05,78397.17,14606.45,12424.5,6199.72,33230.67,111627.84 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,52894,93314.38,54416.3,4283.59,152014.27,19424.06,12376.71,10257.28,42058.05,194072.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,15590,67204.91,0.0,235.35,67440.26,13126.57,7813.1,5423.56,26363.23,93803.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,12453,61704.57,0.0,1000.0,62704.57,12922.74,12418.53,4994.02,30335.29,93039.86 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,26974,7398.0,0.0,0.0,7398.0,0.0,2455.04,572.76,3027.8,10425.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1944,Materials Coordinator,971,97346.8,0.0,0.0,97346.8,20059.96,12424.5,7590.64,40075.1,137421.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,25595,56152.55,290.48,520.0,56963.03,747.75,6857.32,4417.74,12022.81,68985.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30545,112692.9,101.11,23.79,112817.8,22142.01,12424.5,1846.27,36412.78,149230.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,6202,126994.0,0.0,0.0,126994.0,25557.71,12424.5,9928.71,47910.92,174904.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,13797,18564.0,0.0,0.0,18564.0,3454.77,2628.26,1412.51,7495.54,26059.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16914,144706.0,635.93,43852.96,189194.89,35501.85,12424.5,5656.58,53582.93,242777.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30601,43848.21,17082.18,3491.41,64421.8,13746.97,8710.83,5012.61,27470.41,91892.21 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,47958,102759.49,0.0,170.0,102929.49,21179.86,12179.78,8276.56,41636.2,144565.69 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,10085,47894.66,0.0,2233.23,50127.89,12052.45,11093.59,4091.24,27237.28,77365.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,16887,6799.09,0.0,0.0,6799.09,1265.31,845.23,515.85,2626.39,9425.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40210,148529.1,0.0,24783.14,173312.24,34796.73,12376.71,3882.26,51055.7,224367.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,2135,97934.05,0.0,17302.85,115236.9,21334.12,12424.5,9429.56,43188.18,158425.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50534,117140.98,958.88,5103.94,123203.8,23164.17,12424.5,2097.09,37685.76,160889.56 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,49600,68033.5,0.0,1547.37,69580.87,14524.91,10274.11,5589.53,30388.55,99969.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,31270,27232.0,1309.9,2385.49,30927.39,5343.62,4396.37,2455.86,12195.85,43123.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40230,10663.6,0.0,0.0,10663.6,575.57,4563.61,872.97,6012.15,16675.75 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,19121,213833.46,0.0,0.0,213833.46,43034.24,12424.5,18690.67,74149.41,287982.87 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),5278,178761.22,0.0,1562.5,180323.72,36226.56,12424.5,10793.43,59444.49,239768.21 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,33932,80570.0,0.0,624.0,81194.0,16734.65,12424.5,6732.67,35891.82,117085.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3089,112170.34,37729.92,19026.56,168926.82,25841.47,15052.76,2673.02,43567.25,212494.07 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,8354,22755.0,261.11,3111.75,26127.86,5673.1,2389.33,442.8,8505.23,34633.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26155,56531.0,0.0,7575.05,64106.05,13792.81,12424.5,5190.34,31407.65,95513.7 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,46980,67515.4,146.03,10086.79,77748.22,15428.88,12352.82,6287.78,34069.48,111817.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,44734,65136.97,13461.65,2523.88,81122.5,13945.71,12423.03,6653.63,33022.37,114144.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,520,117850.79,0.0,6105.19,123955.98,22808.68,7357.64,5681.5,35847.82,159803.8 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1370,Special Assistant 11,47713,44196.2,0.0,0.0,44196.2,9913.18,6546.76,3403.76,19863.7,64059.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1770,Photographer,41934,65824.97,0.0,0.0,65824.97,13564.55,12400.59,5285.7,31250.84,97075.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,35584,45300.0,0.0,0.0,45300.0,8212.91,3822.92,3583.46,15619.29,60919.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29375,56531.01,326.55,624.0,57481.56,11780.12,12424.5,4763.18,28967.8,86449.36 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,35061,14064.63,0.0,191.58,14256.21,2653.08,2210.12,1131.54,5994.74,20250.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,40646,54699.12,2263.77,2398.85,59361.74,12711.31,12376.72,4905.65,29993.68,89355.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,45193,108368.54,6956.5,15053.06,130378.1,29952.74,12424.5,2219.68,44596.92,174975.02 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,43400,108380.19,44951.6,12934.04,166265.83,29505.73,12424.51,2804.38,44734.62,211000.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12678,44371.44,536.4,5196.15,50103.99,8519.72,3885.04,3873.31,16278.07,66382.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40275,119450.17,606.24,9896.38,129952.79,23683.75,12424.5,2212.08,38320.33,168273.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,10189,48010.0,4806.47,210.53,53027.0,11565.79,12424.5,4232.5,28222.79,81249.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51837,28871.16,6580.38,2551.0,38002.54,6368.15,5649.68,3134.53,15152.36,53154.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1931,Senior Parts Storekeeper,16019,72319.02,129.56,7932.84,80381.42,14910.44,12424.5,5882.63,33217.57,113598.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,38259,98538.03,0.0,7684.76,106222.79,19679.51,10908.65,8751.95,39340.11,145562.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50396,125743.47,813.3,5134.5,131691.27,20629.64,11131.88,5689.05,37450.57,169141.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34793,9238.01,4364.33,221.86,13824.2,1641.64,955.73,227.85,2825.22,16649.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,16554,96384.61,10177.55,11011.06,117573.22,26092.94,12302.89,1960.77,40356.6,157929.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3386,14277.21,0.0,2125.25,16402.46,2280.89,1109.79,991.31,4381.99,20784.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20406,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1850.29,10264.07,34268.07 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,16535,65911.96,1393.07,0.0,67305.03,13572.53,12299.06,5428.2,31299.79,98604.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,5516,8831.91,0.0,61.31,8893.22,0.0,3201.7,689.26,3890.96,12784.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2820,Senior Health Program Planner,9484,100824.84,0.0,0.0,100824.84,20689.69,11836.13,7648.21,40174.03,140998.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,26792,143188.02,0.0,0.0,143188.02,28816.76,12424.51,10191.37,51432.64,194620.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,51377,63887.02,4712.61,1274.07,69873.7,13433.56,12424.5,5752.0,31610.06,101483.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,4875,59203.14,0.0,0.0,59203.14,12185.86,10088.33,4767.56,27041.75,86244.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,19992,88144.04,0.0,0.0,88144.04,18166.76,12424.51,7093.27,37684.54,125828.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,38843,61365.65,0.0,620.23,61985.88,12769.04,0.0,5144.32,17913.36,79899.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,31865,136364.32,9809.48,17105.25,163279.05,36318.6,12415.19,2779.12,51512.91,214791.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,6095,112376.53,0.0,0.0,112376.53,22902.04,12424.5,9066.93,44393.47,156770.0 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,12181,34824.01,0.0,0.0,34824.01,7811.04,5734.38,2896.57,16441.99,51266.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,23959,71382.62,0.0,0.0,71382.62,14695.1,12376.71,5772.41,32844.22,104226.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,42406,51405.0,303.96,2084.12,53793.08,12345.03,12424.5,4057.23,28826.76,82619.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17787,0.0,0.0,6168.98,6168.98,0.0,68.5,89.45,157.95,6326.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25173,2842.8,0.0,41.52,2884.32,0.0,237.44,222.15,459.59,3343.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15910,97779.59,46730.12,13981.85,158491.56,27180.37,12424.5,2654.99,42259.86,200751.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,14001,100761.0,19903.86,12909.18,133574.04,20987.5,12424.49,9957.15,43369.14,176943.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49890,14312.25,0.0,742.34,15054.59,0.0,5477.53,1167.06,6644.59,21699.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,52445,108371.6,2550.79,10283.29,121205.68,28725.71,12424.5,430.23,41580.44,162786.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,3299,73561.01,0.0,0.0,73561.01,15114.28,12137.78,5858.61,33110.67,106671.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,49785,47206.9,0.0,7074.83,54281.73,12273.33,11713.97,4370.04,28357.34,82639.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,49799,29600.0,349.57,1193.47,31143.04,5730.67,4778.65,2422.67,12931.99,44075.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2998,"Rep, Comm Status Of Women",26992,17685.01,0.0,120.0,17805.01,3993.65,2389.33,1466.5,7849.48,25654.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,18059,70791.03,4354.16,7490.07,82635.26,14836.41,12424.51,6791.01,34051.93,116687.19 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,44263,85902.81,0.0,0.0,85902.81,18017.02,10481.09,6761.28,35259.39,121162.2 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,30312,71573.44,351.24,0.0,71924.68,14724.64,12424.5,5850.9,33000.04,104924.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,37377,23109.0,0.0,762.01,23871.01,4325.11,2867.19,1908.73,9101.03,32972.04 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,28386,85749.08,4159.66,11256.49,101165.23,19253.89,11397.09,8363.23,39014.21,140179.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26221,94680.69,8429.44,11616.31,114726.44,19663.77,12424.5,2671.26,34759.53,149485.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,20533,91329.35,12846.71,7743.75,111919.81,19496.43,12448.4,1866.08,33810.91,145730.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,13230,56531.01,61.23,3594.0,60186.24,11788.47,12424.5,4725.25,28938.22,89124.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24001,9463.3,0.0,338.56,9801.86,448.52,0.0,2807.3,3255.82,13057.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44312,69286.1,25474.63,5197.23,99957.96,20453.64,13653.81,7747.82,41855.27,141813.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,61,35892.14,5438.7,791.59,42122.43,7532.59,7178.73,3488.55,18199.87,60322.3 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12742,92725.5,47.46,8366.87,101139.83,24631.48,11777.41,492.27,36901.16,138040.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41055,50140.4,294.0,3227.96,53662.36,12585.44,12424.5,4390.93,29400.87,83063.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",8967,475.0,0.0,0.0,475.0,0.0,113.49,36.77,150.26,625.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,25810,101986.78,33447.58,15079.78,150514.14,23015.04,11934.68,10204.65,45154.37,195668.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),35957,12023.1,46.32,0.0,12069.42,0.0,3488.42,936.45,4424.87,16494.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44112,113233.6,20409.89,18035.48,151678.97,24917.41,15196.12,2553.15,42666.68,194345.65 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,11947,95627.6,33000.09,260.0,128887.69,19727.57,12424.5,9868.94,42021.01,170908.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,1357,43534.01,0.0,0.0,43534.01,8101.66,5256.51,3488.46,16846.63,60380.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50669,10528.55,0.0,336.0,10864.55,0.0,4503.88,873.63,5377.51,16242.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,22620,101770.0,0.0,0.0,101770.0,20975.25,12424.5,8362.08,41761.83,143531.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,31412,45176.0,2465.7,3886.74,51528.44,11279.61,12400.61,4101.77,27781.99,79310.43 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,36081,2946.01,0.0,883.8,3829.81,660.79,477.86,296.5,1435.15,5264.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21701,130845.84,64709.13,16845.51,212400.48,29025.92,15196.12,3615.75,47837.79,260238.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,16113,33227.58,0.0,0.0,33227.58,0.0,6618.44,2625.59,9244.03,42471.61 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4511,125194.54,0.0,1500.0,126694.54,25447.74,12421.69,9831.78,47701.21,174395.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10588,112113.96,0.0,2192.82,114306.78,0.0,0.0,2733.84,2733.84,117040.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2470,Diagnostic Imaging Tech IV,52862,45678.9,0.0,2027.26,47706.16,10201.27,4776.44,3959.24,18936.95,66643.11 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1830,Perf Analyst III Project Mgr,32061,127717.03,0.0,0.0,127717.03,25703.36,12424.5,9962.95,48090.81,175807.84 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1430,Transcriber Typist,21277,59741.35,0.0,604.34,60345.69,12477.95,12033.25,5009.77,29520.97,89866.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,28778,181133.81,0.0,8092.8,189226.61,36827.87,12424.5,484.18,49736.55,238963.16 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16447,115496.52,0.0,1500.0,116996.52,23535.56,12424.5,9380.49,45340.55,162337.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,44914,66102.0,2621.01,123.2,68846.21,13649.72,12424.5,5680.91,31755.13,100601.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32784,112159.75,7725.17,15005.62,134890.54,24576.41,15052.76,2284.95,41914.12,176804.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",1095,137101.02,0.0,0.0,137101.02,27592.09,12424.5,18415.0,58431.59,195532.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,1047,156746.07,0.0,5297.15,162043.22,32614.27,12424.5,10573.38,55612.15,217655.37 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,49972,58235.58,3901.9,6963.43,69100.91,13049.77,11464.89,5708.11,30222.77,99323.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",23086,81871.32,12467.24,9120.92,103459.48,17786.11,12324.75,8468.39,38579.25,142038.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31880,42037.91,933.96,730.89,43702.76,9253.72,12424.5,3520.25,25198.47,68901.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,11677,32184.5,0.0,0.0,32184.5,5835.05,2389.31,2082.37,10306.73,42491.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,39699,61735.0,980.1,624.0,63339.1,12852.62,12424.5,5246.85,30523.97,93863.07 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),29934,184289.03,0.0,5116.22,189405.25,38120.43,12424.5,10973.98,61518.91,250924.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5500,14386.16,0.0,139.46,14525.62,3711.63,6056.94,1101.38,10869.95,25395.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,13276,92516.02,0.0,1140.0,93656.02,19290.89,12424.5,7617.13,39332.52,132988.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29996,59788.63,588.02,9559.15,69935.8,13252.03,10846.6,5496.54,29595.17,99530.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6555,118381.15,828.91,15154.4,134364.46,25444.68,10810.82,9994.83,46250.33,180614.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12974,52639.47,5903.91,1738.62,60282.0,14548.51,10317.47,4346.43,29212.41,89494.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9708,Employment & Training Spec 6,18843,90130.84,0.0,0.0,90130.84,18750.63,9292.93,7461.0,35504.56,125635.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42156,946.2,0.0,157.7,1103.9,0.0,71.68,69.74,141.42,1245.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",14709,93738.02,1652.89,1283.28,96674.19,19488.93,12424.51,7571.03,39484.47,136158.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33664,65438.03,11069.33,4579.58,81086.94,19205.48,12899.07,6114.09,38218.64,119305.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,9927,76728.0,3616.53,0.0,80344.53,15813.98,12424.5,6528.97,34767.45,115111.98 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,39905,85004.14,5005.17,10139.91,100149.22,18772.54,12424.5,8162.34,39359.38,139508.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16590,64288.89,0.0,0.0,64288.89,0.0,5599.99,4989.33,10589.32,74878.21 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",2800,Public Health,2806,Disease Control Investigator,19971,6680.0,0.0,1564.79,8244.79,1498.32,1194.67,675.32,3368.31,11613.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14617,13044.4,0.0,2377.11,15421.51,665.44,0.0,527.74,1193.18,16614.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",42895,15015.7,0.0,0.0,15015.7,0.0,3177.8,1164.23,4342.03,19357.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29060,113233.59,42098.47,25846.49,181178.55,26960.0,15196.11,3078.03,45234.14,226412.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33106,3253.8,0.0,542.31,3796.11,0.0,286.78,293.89,580.67,4376.78 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,43738,5892.0,55.24,0.0,5947.24,1321.58,955.73,485.3,2762.61,8709.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,8669,21444.02,0.0,0.0,21444.02,5532.6,5734.39,1733.29,13000.28,34444.3 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,15895,70931.02,0.0,0.0,70931.02,14619.09,12424.5,5666.63,32710.22,103641.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",40179,4415.4,0.0,0.0,4415.4,0.0,1051.3,341.84,1393.14,5808.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,22902,65212.71,8250.84,3401.66,76865.21,13415.67,12424.5,6159.74,31999.91,108865.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51712,4854.81,0.0,9.07,4863.88,0.0,1397.76,377.34,1775.1,6638.98 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,178,8282.13,211.74,0.0,8493.87,0.0,0.0,672.0,672.0,9165.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,6558,63603.0,0.0,0.0,63603.0,13012.94,11468.77,5164.57,29646.28,93249.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,8292,140334.04,0.0,5989.59,146323.63,29403.5,12424.5,10167.82,51995.82,198319.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38395,112159.76,3468.5,15190.0,130818.26,24231.47,15052.76,2225.0,41509.23,172327.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,36508,80319.43,0.0,0.0,80319.43,16987.98,9844.03,6424.39,33256.4,113575.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,28650,118922.64,17651.19,26212.67,162786.5,35297.56,12409.45,2775.05,50482.06,213268.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,52462,61735.04,0.0,624.0,62359.04,12859.45,12424.5,5051.98,30335.93,92694.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16877,113233.59,20928.44,19268.06,153430.09,25192.74,15196.12,2604.57,42993.43,196423.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,20228,8704.68,0.0,61.31,8765.99,0.0,0.0,693.27,693.27,9459.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,43446,64702.25,85.33,9525.88,74313.46,14536.01,12257.25,6056.93,32850.19,107163.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,20547,119166.81,6727.54,16423.31,142317.66,23564.79,12424.5,2423.4,38412.69,180730.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,34005,35844.91,0.0,0.0,35844.91,7205.42,4766.71,2987.88,14960.01,50804.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37842,11260.23,0.0,138.69,11398.92,0.0,4820.47,930.03,5750.5,17149.42 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,51329,69871.84,0.0,763.37,70635.21,11585.43,7093.02,6027.1,24705.55,95340.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7211,Cement Finisher Supervisor 2,13588,17292.0,0.0,0.0,17292.0,3135.04,1911.46,1020.54,6067.04,23359.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,47836,117404.74,391.24,14479.43,132275.41,25767.61,12412.56,9940.37,48120.54,180395.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",42548,94826.81,2418.53,978.03,98223.37,19538.61,12424.52,7723.71,39686.84,137910.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14722,91747.54,13944.56,3203.13,108895.23,18716.94,9557.31,1904.05,30178.3,139073.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10938,119467.39,21734.9,5469.63,146671.92,23620.97,12424.5,2487.86,38533.33,185205.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13155,75580.34,9352.63,6968.24,91901.21,16568.37,15196.12,1481.53,33246.02,125147.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,49632,102561.04,0.0,0.0,102561.04,21134.89,12424.5,8153.63,41713.02,144274.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16725,80957.65,2597.86,5053.55,88609.06,16556.63,12424.51,3220.07,32201.21,120810.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15720,3499.35,0.0,0.0,3499.35,0.0,1469.44,279.32,1748.76,5248.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48168,6397.79,717.76,2068.97,9184.52,1914.86,1272.32,669.4,3856.58,13041.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40022,30659.36,0.0,0.0,30659.36,0.0,2380.36,2376.29,4756.65,35416.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,14219,32794.48,4767.91,450.0,38012.39,7456.76,4778.65,3051.83,15287.24,53299.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,29143,182851.83,0.0,0.0,182851.83,36852.75,12424.5,19229.36,68506.61,251358.44 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,19234,129827.14,0.0,0.0,129827.14,26129.2,12418.17,9958.73,48506.1,178333.24 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,26064,84599.0,0.0,1196.8,85795.8,17682.66,12424.5,7034.88,37142.04,122937.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8808,7011.49,0.0,0.0,7011.49,0.0,3040.42,549.29,3589.71,10601.2 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,49048,101733.0,0.0,624.0,102357.0,21095.9,12424.5,8482.89,42003.29,144360.29 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20138,28056.7,0.0,0.0,28056.7,7145.3,7120.2,2282.48,16547.98,44604.68 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,10799,7920.0,0.0,0.0,7920.0,0.0,0.0,626.4,626.4,8546.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41334,125477.51,989.56,30562.07,157029.14,34506.32,10465.38,4231.46,49203.16,206232.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51097,1850.54,0.0,872.92,2723.46,430.72,802.45,225.35,1458.52,4181.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32597,70245.01,3907.68,9911.73,84064.42,15740.44,12424.5,6647.84,34812.78,118877.2 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,47390,9463.59,0.0,106.08,9569.67,0.0,12424.5,138.76,12563.26,22132.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,33510,79152.53,0.0,0.0,79152.53,14350.38,5734.38,9740.72,29825.48,108978.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,39268,82585.56,50690.33,5052.84,138328.73,17117.07,12120.33,9988.59,39225.99,177554.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4366,Collection Supervisor,11816,80762.0,0.0,0.0,80762.0,16645.3,12424.5,6654.3,35724.1,116486.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,4262,108373.12,12455.15,24322.15,145150.42,32284.83,12424.5,2426.78,47136.11,192286.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,47169,30243.2,0.0,2756.43,32999.63,8465.47,6690.11,2536.33,17691.91,50691.54 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,21135,129895.06,0.0,0.0,129895.06,26146.24,12424.5,10011.84,48582.58,178477.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,14674,36852.0,0.0,0.0,36852.0,0.0,3822.92,721.87,4544.79,41396.79 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,21227,72927.04,622.46,633.46,74182.96,15051.28,11468.77,6029.21,32549.26,106732.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,50404,39307.45,0.0,280.06,39587.51,8179.59,6761.8,2931.47,17872.86,57460.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14530,42474.87,4952.23,1391.43,48818.53,11407.88,13072.13,3700.76,28180.77,76999.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,3635,62468.82,5144.56,1385.49,68998.87,13006.24,12424.5,5421.86,30852.6,99851.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,49200,172224.97,1400.9,4274.1,177899.97,34475.07,12424.5,3198.9,50098.47,227998.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,37390,73554.74,3905.17,1852.43,79312.34,15372.18,12424.5,6532.1,34328.78,113641.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28898,131187.85,0.0,250.0,131437.85,26413.39,12346.85,9882.74,48642.98,180080.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45280,55407.76,960.75,2533.15,58901.66,12414.39,12325.94,4715.0,29455.33,88356.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,20375,58269.0,0.0,0.0,58269.0,11542.37,8601.58,4620.3,24764.25,83033.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,41612,60359.66,3122.12,613.08,64094.86,12551.7,12207.08,5305.47,30064.25,94159.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5580,5823.19,168.45,280.6,6272.24,1745.12,1158.05,447.51,3350.68,9622.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32252,68248.3,22683.7,5303.32,96235.32,20146.53,13447.15,7271.44,40865.12,137100.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6176,34607.25,0.0,5767.96,40375.21,8750.45,2509.45,1315.55,12575.45,52950.66 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,23247,4279.0,0.0,0.0,4279.0,796.32,477.86,320.21,1594.39,5873.39 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,20173,33345.52,0.0,918.0,34263.52,8578.45,8123.71,2700.82,19402.98,53666.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31188,77071.03,0.0,1804.0,78875.03,16262.0,12424.5,6535.58,35222.08,114097.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,48087,31473.51,0.0,9145.95,40619.46,7059.54,4539.72,3309.9,14909.16,55528.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,26616,97669.0,1942.85,0.0,99611.85,20130.42,12424.59,8181.4,40736.41,140348.26 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,12294,63830.15,65.68,600.0,64495.83,13416.05,9086.31,5358.33,27860.69,92356.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,32875,35567.0,0.0,0.0,35567.0,6619.0,5256.52,2928.81,14804.33,50371.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,34668,18078.21,0.0,360.0,18438.21,0.0,4396.35,1479.61,5875.96,24314.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,28258,87415.87,20355.51,11224.13,118995.51,20031.83,10319.98,9567.02,39918.83,158914.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5783,10474.97,0.0,0.0,10474.97,0.0,4479.87,832.18,5312.05,15787.02 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,34064,45904.0,0.0,817.2,46721.2,11006.68,12424.5,3693.72,27124.9,73846.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13936,64311.46,0.0,11266.21,75577.67,0.0,5414.52,1266.38,6680.9,82258.57 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,32836,70211.81,0.0,5994.51,76206.32,15264.51,12220.21,6172.14,33656.86,109863.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2656,Chef,21511,15041.4,3096.61,170.25,18308.26,0.0,3082.24,1419.7,4501.94,22810.2 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,16808,45465.55,337.87,411.95,46215.37,10530.9,10315.92,3560.69,24407.51,70622.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,52962,138038.9,864.98,1457.74,140361.62,27264.06,12370.74,2193.92,41828.72,182190.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,39552,44751.2,19625.04,5519.9,69896.14,9143.91,5256.52,3656.8,18057.23,87953.37 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2453,Supervising Pharmacist,31867,171974.03,0.0,0.0,171974.03,34610.4,12424.5,10499.26,57534.16,229508.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51210,57952.87,5975.36,1789.78,65718.01,12249.95,12424.5,5411.6,30086.05,95804.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,25761,56531.01,0.0,624.0,57155.01,11780.12,12424.5,4732.74,28937.36,86092.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,37261,46985.6,6930.6,6980.74,60896.94,12306.76,12424.5,4879.44,29610.7,90507.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,21460,72153.04,4343.85,2922.6,79419.49,14881.6,12424.5,6035.79,33341.89,112761.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17553,7935.97,1294.64,471.96,9702.57,2295.65,2505.09,719.61,5520.35,15222.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,47906,49076.18,675.28,1400.0,51151.46,10556.49,9752.94,3860.5,24169.93,75321.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,28222,110351.67,0.0,2207.73,112559.4,22511.58,11716.48,8546.24,42774.3,155333.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,15911,90692.78,923.29,1156.99,92773.06,18885.85,12424.5,7342.55,38652.9,131425.96 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,14242,24224.01,0.0,3090.9,27314.91,5326.9,5734.39,2249.21,13310.5,40625.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,46772,64943.7,0.0,0.0,64943.7,14097.07,8134.82,5234.01,27465.9,92409.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27938,286.4,0.0,0.0,286.4,0.0,95.58,22.23,117.81,404.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,10719,64234.24,4321.92,8695.19,77251.35,19604.18,12089.99,6279.42,37973.59,115224.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,28249,129308.02,0.0,0.0,129308.02,26023.62,12424.5,9977.67,48425.79,177733.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,12867,144869.68,73645.84,26671.91,245187.43,29230.57,12316.98,4102.59,45650.14,290837.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,12745,30480.46,181.52,628.8,31290.78,6535.96,4683.07,2433.61,13652.64,44943.42 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1041,IS Engineer-Assistant,35619,22060.0,0.0,0.0,22060.0,4105.39,2867.19,1760.59,8733.17,30793.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,12493,42955.91,864.94,2312.62,46133.47,8411.96,6403.41,3661.63,18477.0,64610.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1248,113233.6,1814.79,20827.96,135876.35,24876.27,15196.11,2379.87,42452.25,178328.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39801,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,15235,79440.76,11856.85,3244.87,94542.48,17026.25,12418.53,7342.13,36786.91,131329.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,24200,108038.0,65035.25,7471.24,180544.49,22558.04,12424.5,10809.31,45791.85,226336.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,40810,75135.64,11592.25,13957.01,100684.9,17185.6,11496.9,8177.21,36859.71,137544.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,39449,68196.0,32018.13,10258.05,110472.18,15065.36,12424.5,8755.61,36245.47,146717.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,11453,36373.45,0.0,0.0,36373.45,7323.83,4037.96,2707.66,14069.45,50442.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52815,73352.97,8421.74,5141.85,86916.56,15731.29,15196.12,1436.89,32364.3,119280.86 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,3480,93681.01,0.0,960.05,94641.06,19506.1,12424.5,7847.62,39778.22,134419.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",21351,130341.6,7916.41,17293.13,155551.14,28793.62,15052.76,2649.93,46496.31,202047.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,44981,66580.05,0.0,0.0,66580.05,13718.74,12424.5,5522.07,31665.31,98245.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,40246,138633.95,31952.61,820.04,171406.6,27400.21,12424.5,2874.93,42699.64,214106.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,24950,8872.76,0.0,49.05,8921.81,0.0,3215.44,691.5,3906.94,12828.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",24433,125.0,0.0,0.0,125.0,0.0,29.87,9.69,39.56,164.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,40804,71892.02,0.0,915.52,72807.54,15973.99,5734.37,5949.09,27657.45,100464.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,21882,13943.27,0.0,0.0,13943.27,0.0,4190.28,1080.9,5271.18,19214.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,6396,80357.0,0.0,1004.45,81361.45,16769.14,12424.5,6703.55,35897.19,117258.64 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,27403,808.6,0.0,80.86,889.46,398.39,0.0,779.99,1178.38,2067.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",29666,158270.97,0.0,0.0,158270.97,31844.73,12390.16,25415.09,69649.98,227920.95 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,13409,77071.04,0.0,1000.0,78071.04,16089.09,12424.5,6354.84,34868.43,112939.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,22862,22352.5,0.0,0.0,22352.5,4837.68,5973.32,1786.84,12597.84,34950.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36277,72671.42,4562.57,3201.29,80435.28,15383.59,15052.76,1314.18,31750.53,112185.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",50602,130341.59,12534.43,18601.32,161477.34,29341.89,15052.76,2696.58,47091.23,208568.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,11844,63887.0,457.87,1422.8,65767.67,13459.22,12424.5,5428.73,31312.45,97080.12 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,46930,3299.85,0.0,0.0,3299.85,2216.64,215.05,136.07,2567.76,5867.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,4193,70245.0,1077.32,2938.9,74261.22,14606.45,12424.5,5872.43,32903.38,107164.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23202,56531.0,352.48,4263.76,61147.24,12529.91,12424.5,5001.31,29955.72,91102.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,29450,11875.1,0.0,315.94,12191.04,2534.86,2699.94,1050.29,6285.09,18476.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,39579,74165.06,267.28,624.0,75056.34,15414.46,12424.5,6165.88,34004.84,109061.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18035,716.3,0.0,21.08,737.38,0.0,0.0,58.25,58.25,795.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3145,66282.34,7602.74,2954.55,76839.63,18967.35,13064.49,5727.58,37759.42,114599.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,31218,39516.43,0.0,0.0,39516.43,3818.72,10620.56,3099.08,17538.36,57054.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5120,Architectural Administrator,48950,119321.09,0.0,0.0,119321.09,24000.56,12424.52,9797.25,46222.33,165543.42 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,29802,125815.03,0.0,0.0,125815.03,25320.87,12424.5,9844.25,47589.62,173404.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,50299,56531.01,0.0,2906.55,59437.56,11791.4,12424.5,4872.95,29088.85,88526.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31135,40707.77,3079.06,1301.51,45088.34,10843.26,7971.22,3310.39,22124.87,67213.21 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,23694,22853.4,0.0,0.0,22853.4,0.0,6355.62,1844.06,8199.68,31053.08 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,40534,15175.0,0.0,0.0,15175.0,3021.15,2389.33,1181.61,6592.09,21767.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2974,67334.08,30608.26,11623.6,109565.94,13315.22,8123.71,1815.76,23254.69,132820.63 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,44793,81327.4,86.63,4540.0,85954.03,16746.89,12424.5,7133.76,36305.15,122259.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,18554,113358.89,21329.01,17435.71,152123.61,25001.6,15004.98,2309.8,42316.38,194439.99 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,20048,7402.04,0.0,0.0,7402.04,1758.56,0.0,585.61,2344.17,9746.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,47684,56531.0,0.0,6329.21,62860.21,12468.06,12424.5,4936.82,29829.38,92689.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2424,123570.9,0.0,25988.0,149558.9,27500.11,10629.52,4905.15,43034.78,192593.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11108,112696.16,14562.35,11968.47,139226.98,22291.43,12424.5,2324.55,37040.48,176267.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22511,21315.28,0.0,3831.58,25146.86,4844.12,0.0,2082.37,6926.49,32073.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",34817,87074.96,0.0,430.0,87504.96,17945.95,11346.31,7279.7,36571.96,124076.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,30291,147149.0,0.0,3192.64,150341.64,30258.04,12424.5,17606.31,60288.85,210630.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,49255,56147.44,0.0,1603.39,57750.83,11862.91,10916.24,4800.77,27579.92,85330.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45303,39179.73,5313.59,581.57,45074.89,9605.48,7791.59,3414.45,20811.52,65886.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,20453,2835.0,132.89,40.0,3007.89,644.86,477.86,237.62,1360.34,4368.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35095,68005.67,2802.05,4513.69,75321.41,16518.49,13400.24,5715.63,35634.36,110955.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,43365,186167.68,0.0,4368.84,190536.52,38311.0,12352.82,10976.52,61640.34,252176.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,4676,0.0,0.0,281.71,281.71,0.0,0.0,21.55,21.55,303.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,7634,7563.0,0.0,0.0,7563.0,1407.48,1433.6,604.27,3445.35,11008.35 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,11298,89413.11,0.0,0.0,89413.11,18438.35,12424.5,7094.69,37957.54,127370.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,7993,138633.91,3220.14,3592.72,145446.77,27945.01,12424.5,2422.93,42792.44,188239.21 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,7562,28054.01,0.0,3000.0,31054.01,6431.44,7374.06,2569.01,16374.51,47428.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26512,113222.99,26425.2,18688.06,158336.25,25079.49,15196.12,2689.4,42965.01,201301.26 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,20651,93230.58,5695.23,11314.22,110240.03,20829.03,12364.77,8598.59,41792.39,152032.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,46172,141898.13,0.0,0.0,141898.13,28537.2,12424.5,27609.04,68570.74,210468.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11259,21251.55,0.0,708.44,21959.99,216.46,0.0,2916.64,3133.1,25093.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13032,1023.6,0.0,0.0,1023.6,0.0,83.62,79.34,162.96,1186.56 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,39757,164502.02,0.0,1260.0,165762.02,31507.08,8123.71,10380.04,50010.83,215772.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",32194,89462.48,5179.15,6089.99,100731.62,19002.0,11680.23,8285.41,38967.64,139699.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,31729,1307.0,0.0,0.0,1307.0,243.23,238.93,101.44,583.6,1890.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,596,3704.5,0.0,12.4,3716.9,0.0,1427.61,288.3,1715.91,5432.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3428,Nursery Specialist,52597,76536.04,0.0,0.0,76536.04,15774.63,12424.5,6318.94,34518.07,111054.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34016,47808.35,2776.9,847.74,51432.99,13018.58,9399.85,3954.2,26372.63,77805.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,12431,72715.0,11840.95,8463.77,93019.72,15941.31,11946.64,7625.31,35513.26,128532.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",11361,79244.76,45506.83,5893.48,130645.07,16662.43,11926.15,9832.22,38420.8,169065.87 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,30259,92005.02,0.0,0.0,92005.02,18950.19,12424.5,7346.94,38721.63,130726.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,47791,8365.5,160.88,201.09,8727.47,1556.81,1863.67,690.1,4110.58,12838.05 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,14470,45171.05,362.98,0.0,45534.03,10525.14,10035.18,3608.36,24168.68,69702.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4565,119297.13,6489.48,20001.56,145788.17,23584.45,12424.5,2426.26,38435.21,184223.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40152,56531.0,0.0,5173.31,61704.31,12277.43,12424.5,4999.62,29701.55,91405.86 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,18959,19433.8,0.0,0.0,19433.8,3616.63,3297.27,1555.41,8469.31,27903.11 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,27968,93884.0,0.0,1260.0,95144.0,19610.51,12424.5,7443.12,39478.13,134622.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29972,86839.91,0.0,0.0,86839.91,17869.36,12424.5,6957.12,37250.98,124090.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38683,100479.0,0.0,4474.14,104953.14,20164.18,10990.9,8398.18,39553.26,144506.4 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,22348,84599.08,0.0,1401.59,86000.67,17725.31,12424.5,7017.28,37167.09,123167.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23783,67004.84,30941.7,7854.68,105801.22,20503.69,13203.06,8233.66,41940.41,147741.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,5016,45155.5,5256.02,3138.43,53549.95,11258.93,12400.61,4303.2,27962.74,81512.69 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8603,Emergency Services Coord III,14292,86504.27,0.0,3358.15,89862.42,17665.84,11352.77,7013.13,36031.74,125894.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,22250,91287.0,1018.57,0.0,92305.57,18800.49,10035.18,7423.8,36259.47,128565.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7276,Electrician Supervisor 2,46849,122476.02,0.0,0.0,122476.02,24648.28,12424.49,9815.13,46887.9,169363.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3025,38598.85,2812.83,303.76,41715.44,9159.26,10118.78,3340.99,22619.03,64334.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,20985,37056.7,5264.74,760.0,43081.44,9371.12,7645.85,3316.44,20333.41,63414.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,43274,68593.55,14521.52,4927.4,88042.47,15075.39,12543.97,1466.88,29086.24,117128.71 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,13934,88296.01,0.0,5322.0,93618.01,18337.86,12424.5,7768.54,38530.9,132148.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42733,51299.39,0.0,12762.53,64061.92,675.39,0.0,4364.38,5039.77,69101.69 +Calendar,2015,4,Community Health,DPH,Public Health,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,18703,24304.86,0.0,0.0,24304.86,0.0,5586.54,1883.29,7469.83,31774.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,48244,120615.67,0.0,7236.97,127852.64,25344.52,14014.24,206.17,39564.93,167417.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,42385,0.0,0.0,16.06,16.06,0.0,0.0,1.23,1.23,17.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",41338,1500.0,0.0,0.0,1500.0,0.0,0.0,118.66,118.66,1618.66 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12164,97338.88,3524.37,15876.75,116740.0,26824.63,12424.51,1946.6,41195.74,157935.74 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,33322,63658.41,1704.63,3000.0,68363.04,13117.09,12424.5,5481.85,31023.44,99386.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,13776,79639.39,47686.92,9172.79,136499.1,17730.52,11685.0,9948.12,39363.64,175862.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,2254,124977.85,0.0,0.0,124977.85,25169.1,12343.85,9689.01,47201.96,172179.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,19103,84644.02,47116.66,13951.15,145711.83,19487.02,12424.51,10148.81,42060.34,187772.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",8876,13293.98,0.0,0.0,13293.98,0.0,2813.45,1031.16,3844.61,17138.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,22350,48281.3,812.63,3072.58,52166.51,11642.32,12424.5,3976.06,28042.88,80209.39 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,31601,78803.4,0.0,950.27,79753.67,16420.77,11875.0,6339.34,34635.11,114388.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43074,97771.06,9040.75,12612.45,119424.26,26134.34,12424.5,2032.9,40591.74,160016.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,9708,45647.36,0.0,200.0,45847.36,9849.59,10063.25,3534.25,23447.09,69294.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,23314,107416.01,7005.18,36728.69,151149.88,22162.15,12424.51,10215.33,44801.99,195951.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,31745,7744.53,0.0,152.9,7897.43,0.0,2289.28,700.95,2990.23,10887.66 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1071,IS Manager,5646,170237.02,0.0,0.0,170237.02,34260.48,12424.5,19003.31,65688.29,235925.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",22103,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,20211,77854.46,0.0,1460.0,79314.46,16307.95,12065.15,6535.57,34908.67,114223.13 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,1222,85778.25,2064.91,0.0,87843.16,17716.86,12424.5,7278.87,37420.23,125263.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,43000,62950.5,4548.17,3357.72,70856.39,13570.0,12424.49,5394.57,31389.06,102245.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,50240,79821.26,0.0,0.0,79821.26,16434.32,12424.5,6312.12,35170.94,114992.2 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,2718,100554.01,0.0,480.0,101034.01,20824.84,12424.5,8231.57,41480.91,142514.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,36450,45929.2,7553.78,3503.3,56986.28,11353.83,12508.13,4523.53,28385.49,85371.77 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",SFRA,SF Redevelopment Agency,O535,DvlpmntServicesManager (OCII),5117,113430.01,0.0,0.0,113430.01,22341.51,10035.17,9207.92,41584.6,155014.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47125,124037.28,0.0,16353.84,140391.12,26078.66,10981.35,8426.43,45486.44,185877.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1051,50064.73,1324.9,938.67,52328.3,13703.54,9847.73,3874.61,27425.88,79754.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15253,16082.28,0.0,917.86,17000.14,4355.17,0.0,2060.24,6415.41,23415.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,36661,26173.1,0.0,0.0,26173.1,0.0,0.0,2069.7,2069.7,28242.8 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,20584,129895.02,0.0,0.0,129895.02,26141.49,12424.5,9877.09,48443.08,178338.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,47173,56732.05,278.83,0.0,57010.88,11607.28,11469.01,4668.37,27744.66,84755.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,8163,88517.55,0.0,0.0,88517.55,18234.54,12352.83,6935.51,37522.88,126040.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,11262,65901.0,0.0,15233.62,81134.62,14458.73,5256.52,6527.14,26242.39,107377.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14149,699.88,0.0,28.0,727.88,0.0,59.73,56.15,115.88,843.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,31725,1189.59,0.0,4.84,1194.43,0.0,352.42,99.56,451.98,1646.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33228,5247.68,520.41,201.28,5969.37,2805.66,0.0,51.32,2856.98,8826.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",51032,130978.15,71022.34,15890.76,217891.25,27281.76,13045.73,3716.88,44044.37,261935.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49091,57946.66,159.92,9610.66,67717.24,12642.08,6119.07,5414.68,24175.83,91893.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31544,108651.86,2294.22,28527.35,139473.43,25708.94,9664.84,7386.13,42759.91,182233.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2593,119463.8,15820.96,2234.89,137519.65,23633.47,12424.5,2287.25,38345.22,175864.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,34167,26205.01,0.0,6786.44,32991.45,5749.4,2389.33,3859.56,11998.29,44989.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,11828,61191.01,6069.75,240.0,67500.76,12254.36,9079.42,5233.63,26567.41,94068.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,11318,76713.18,0.0,0.0,76713.18,15804.56,10811.72,6176.83,32793.11,109506.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,2364,85368.02,21058.18,160.0,106586.2,17624.37,12424.5,8740.59,38789.46,145375.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,52555,119467.34,11727.97,9679.26,140874.57,23620.95,12424.5,1576.3,37621.75,178496.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38785,75550.3,14907.07,1675.0,92132.37,15888.97,12424.5,7254.55,35568.02,127700.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,21622,64463.72,20709.67,16858.69,102032.08,16024.73,12424.5,8079.26,36528.49,138560.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,30596,64463.71,25311.19,14510.26,104285.16,15192.04,12424.5,8257.01,35873.55,140158.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,35869,53627.06,0.0,0.0,53627.06,12034.73,11662.96,4215.15,27912.84,81539.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,36775,49679.0,0.0,5774.73,55453.73,12791.12,12424.5,4443.29,29658.91,85112.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,9049,83669.5,7703.99,10959.8,102333.29,18856.85,12352.82,8478.54,39688.21,142021.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,12939,5382.83,148.88,99.26,5630.97,0.0,1295.86,435.96,1731.82,7362.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,33150,110818.65,3952.7,17985.13,132756.48,31329.93,11569.54,2358.0,45257.47,178013.95 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,7419,57902.5,0.0,0.0,57902.5,10497.65,5495.45,4172.35,20165.45,78067.95 +Calendar,2015,5,Culture & Recreation,SCI,Academy of Sciences,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,3548,82865.23,3598.6,9548.86,96012.69,18280.2,12113.83,7690.54,38084.57,134097.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,607,53454.0,18660.93,1074.09,73189.02,10942.61,10513.04,5992.57,27448.22,100637.24 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,20173,0.0,0.0,360.69,360.69,0.0,0.0,27.59,27.59,388.28 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,1457,51405.0,111.43,3013.78,54530.21,12566.49,12424.5,4457.9,29448.89,83979.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12777,217.9,0.0,0.0,217.9,0.0,119.47,16.87,136.34,354.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,41644,145659.0,0.0,1851.7,147510.7,29709.95,12424.5,10264.55,52399.0,199909.7 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,32808,124142.33,0.0,0.0,124142.33,24562.31,9360.18,9572.7,43495.19,167637.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,4139,104148.23,14909.69,2657.71,121715.63,21739.37,12400.61,9569.9,43709.88,165425.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,45418,82770.84,0.0,526.8,83297.64,16887.04,10489.14,6909.35,34285.53,117583.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19368,77071.02,15660.53,2174.4,94905.95,15937.98,12424.5,6206.77,34569.25,129475.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47790,40095.45,6835.34,1193.08,48123.87,10712.89,12534.47,3677.81,26925.17,75049.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,14950,5608.24,38.33,176.28,5822.85,0.0,2622.29,451.56,3073.85,8896.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19528,1376.78,0.0,30.6,1407.38,0.0,0.0,23.93,23.93,1431.31 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,8598,28524.01,263.85,870.0,29657.86,6593.09,5734.39,2410.21,14737.69,44395.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3473,70245.0,8206.75,9386.31,87838.06,15815.25,12424.5,6946.66,35186.41,123024.47 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,48343,9191.48,61.16,0.0,9252.64,0.0,2741.76,718.15,3459.91,12712.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,50988,99255.66,277.45,250.0,99783.11,19727.17,8764.06,7725.15,36216.38,135999.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50042,118312.77,45132.71,4080.78,167526.26,23415.82,12305.03,2855.73,38576.58,206102.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3070,57162.54,1250.43,11368.33,69781.3,12541.5,5973.32,1134.26,19649.08,89430.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,588,133353.65,16566.5,865.35,150785.5,0.0,11158.21,9549.46,20707.67,171493.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,7938,71892.03,2008.79,20714.31,94615.13,15324.04,10513.04,7689.47,33526.55,128141.68 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,13749,4720.23,0.0,0.0,4720.23,0.0,1720.32,377.54,2097.86,6818.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,12502,15344.0,0.0,0.0,15344.0,2855.52,1911.46,1188.91,5955.89,21299.89 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,9167,9463.59,0.0,2496.96,11960.55,0.0,0.0,173.43,173.43,12133.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,1757,97765.57,3216.83,16144.65,117127.05,27702.55,12424.5,1993.17,42120.22,159247.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,18019,52023.2,0.0,0.0,52023.2,11634.5,5838.41,4118.67,21591.58,73614.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11901,122609.64,5092.52,9014.39,136716.55,16028.01,11533.69,4803.07,32364.77,169081.32 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0889,Mayoral Staff IX,50045,39119.0,0.0,0.0,39119.0,7280.01,5734.39,6631.45,19645.85,58764.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,40513,101104.69,42683.91,6122.01,149910.61,20772.9,9079.44,2511.44,32363.78,182274.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,17905,28250.0,0.0,28.0,28278.0,5262.54,3822.92,2178.01,11263.47,39541.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,12934,74664.7,1082.42,944.0,76691.12,15511.59,12424.5,6226.53,34162.62,110853.74 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,8761,3178.0,0.0,0.0,3178.0,591.43,477.86,246.48,1315.77,4493.77 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1280,Employee Relations Representat,1790,18976.5,0.0,0.0,18976.5,3531.55,2628.26,1494.19,7654.0,26630.5 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,2329,93858.56,0.0,0.0,93858.56,19362.69,11773.77,7172.35,38308.81,132167.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37572,56223.05,284.29,0.0,56507.34,11785.6,10599.95,4708.49,27094.04,83601.38 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,32013,100749.48,0.0,225.0,100974.48,20603.44,10861.94,8273.44,39738.82,140713.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51770,122165.44,124.61,33358.25,155648.3,27323.98,10817.39,4728.37,42869.74,198518.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,34297,9495.59,0.0,61.6,9557.19,0.0,1547.09,739.92,2287.01,11844.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,6731,52671.85,0.0,657.7,53329.55,11863.88,11341.72,4025.28,27230.88,80560.43 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,23617,95684.72,10723.67,13087.58,119495.97,19782.36,12406.58,9570.02,41758.96,161254.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31858,56531.0,0.0,1761.87,58292.87,12687.01,12424.5,4735.13,29846.64,88139.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,49993,51798.0,0.0,3034.35,54832.35,12589.53,12520.08,4533.53,29643.14,84475.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,40070,129872.5,0.0,1858.8,131731.3,29186.78,8106.98,-327.53,36966.23,168697.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26705,12290.43,0.0,504.09,12794.52,0.0,3303.24,991.16,4294.4,17088.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1760,Offset Machine Operator,24275,62655.0,15.9,5188.8,67859.7,13855.68,12424.5,5568.93,31849.11,99708.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44988,119455.26,6432.85,10714.03,136602.14,24132.04,12424.5,2286.7,38843.24,175445.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26285,66462.2,9247.51,4063.62,79773.33,19250.18,13093.1,6010.73,38354.01,118127.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,1370,8633.5,100.44,178.56,8912.5,0.0,3327.14,691.24,4018.38,12930.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50518,67161.61,12414.94,5119.58,84696.13,19802.42,13235.27,6399.61,39437.3,124133.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,34733,143506.71,2003.82,16761.15,162271.68,31187.31,12421.52,10419.19,54028.02,216299.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,33037,8158.6,0.0,0.0,8158.6,0.0,2699.94,19.99,2719.93,10878.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,18393,27933.39,0.0,0.0,27933.39,5198.42,4773.34,2193.95,12165.71,40099.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,34620,95881.2,33088.57,14507.59,143477.36,26835.54,12185.57,2398.55,41419.66,184897.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,17439,47592.0,16696.77,7422.41,71711.18,9605.25,5734.39,5565.25,20904.89,92616.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,41872,92408.83,0.0,6275.35,98684.18,19348.57,10560.78,7623.16,37532.51,136216.69 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,24659,42000.0,939.92,903.35,43843.27,10121.93,10035.18,3237.5,23394.61,67237.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,21859,84522.76,14323.71,5701.0,104547.47,17972.19,12406.58,8554.38,38933.15,143480.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,47048,72803.61,0.0,0.0,72803.61,15001.37,12403.53,6039.67,33444.57,106248.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,40880,31669.16,994.12,3344.64,36007.92,8553.03,7314.45,2832.1,18699.58,54707.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,21748,119572.99,25005.04,25347.29,169925.32,23636.44,12424.5,2772.39,38833.33,208758.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37974,26681.27,8039.91,277.94,34999.12,6461.34,11492.13,2768.74,20722.21,55721.33 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,46755,96665.64,0.0,0.0,96665.64,19806.56,0.0,7940.22,27746.78,124412.42 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,3804,62576.68,0.0,125.0,62701.68,12651.39,10074.41,4448.21,27174.01,89875.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,33219,79407.31,590.06,930.0,80927.37,16561.05,12376.75,5945.18,34882.98,115810.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,1760,56531.03,2571.58,2614.35,61716.96,11780.12,12424.5,5053.27,29257.89,90974.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,38377,68067.01,4622.11,580.0,73269.12,14138.48,12424.5,6056.64,32619.62,105888.74 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,21548,57853.92,3036.9,0.0,60890.82,12936.63,12421.52,4859.64,30217.79,91108.61 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,6653,113073.04,0.0,10.0,113083.04,22758.88,12424.5,9117.8,44301.18,157384.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,34763,56531.0,40.52,1415.0,57986.52,11651.3,12424.5,4548.49,28624.29,86610.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,24951,15807.0,0.0,0.0,15807.0,2941.68,1433.6,2422.09,6797.37,22604.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,34101,35063.58,0.0,0.0,35063.58,810.45,7273.12,2565.7,10649.27,45712.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,20748,66102.0,1753.12,980.0,68835.12,13843.84,12424.5,5446.57,31714.91,100550.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,43046,38160.02,252.9,764.89,39177.81,7584.46,7531.17,3269.07,18384.7,57562.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",15118,149525.13,26899.21,12651.02,189075.36,31729.22,12424.5,3214.04,47367.76,236443.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10174,6441.4,0.0,272.56,6713.96,1573.84,0.0,531.29,2105.13,8819.09 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,23055,88592.05,0.0,0.0,88592.05,18259.5,12424.5,7099.32,37783.32,126375.37 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),36669,46896.5,0.0,375.0,47271.5,8797.25,5495.46,3791.34,18084.05,65355.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34563,9238.08,0.0,0.0,9238.08,121.33,4005.94,745.09,4872.36,14110.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31420,64211.81,7545.7,621.71,72379.22,14714.66,12651.06,5475.74,32841.46,105220.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,46585,67946.82,147.77,0.0,68094.59,13990.14,12376.7,5478.53,31845.37,99939.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,16072,296.38,0.0,554.14,850.52,79.99,98.56,98.87,277.42,1127.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",16309,147858.33,25477.77,11828.67,185164.77,31387.15,12424.5,3158.16,46969.81,232134.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,39064,63887.02,0.0,633.77,64520.79,13298.18,12424.5,5296.93,31019.61,95540.4 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,9839,92282.02,0.0,0.0,92282.02,19019.5,12424.5,7525.03,38969.03,131251.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,13315,145200.04,0.0,0.0,145200.04,29221.73,12424.51,10263.4,51909.64,197109.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,18044,21110.22,0.0,195.4,21305.62,5103.11,5886.23,1734.11,12723.45,34029.07 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,43836,130792.58,0.0,0.0,130792.58,26448.38,11867.07,17229.62,55545.07,186337.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",48751,93738.17,10202.86,15333.59,119274.62,21296.98,12424.5,9721.02,43442.5,162717.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33224,109597.49,2875.01,9900.2,122372.7,23014.22,9704.54,8724.02,41442.78,163815.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,5685,51257.63,1842.74,4320.98,57421.35,12594.7,12388.66,4738.25,29721.61,87142.96 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,52281,97763.42,2719.61,3358.78,103841.81,24478.77,12424.5,1467.67,38370.94,142212.75 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),48102,107230.8,0.0,1500.0,108730.8,22367.82,12424.5,8340.23,43132.55,151863.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,28497,70245.0,10373.71,4154.35,84773.06,14616.8,12424.5,6919.34,33960.64,118733.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,9579,27244.0,0.0,0.0,27244.0,6110.83,5256.52,1950.88,13318.23,40562.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42471,8530.29,0.0,170.7,8700.99,0.0,3637.75,699.58,4337.33,13038.32 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,26642,19207.58,847.33,278.4,20333.31,4223.74,4557.64,1635.97,10417.35,30750.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,32004,1262.71,0.0,0.0,1262.71,277.67,430.07,98.0,805.74,2068.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,39293,59842.53,0.0,0.0,59842.53,12314.99,12313.4,4618.41,29246.8,89089.33 +Calendar,2015,4,Community Health,DPH,Public Health,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,13436,1560.65,194.49,148.86,1904.0,375.07,310.61,147.3,832.98,2736.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36087,9404.63,0.0,20.13,9424.76,0.0,3112.09,730.66,3842.75,13267.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,44781,65816.5,0.0,0.0,65816.5,13551.11,12281.15,5461.75,31294.01,97110.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48846,94090.42,1762.31,26436.52,122289.25,21348.13,9491.9,9750.8,40590.83,162880.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22478,11590.83,0.0,0.0,11590.83,0.0,4963.82,944.94,5908.76,17499.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,22938,40824.14,9602.35,2404.64,52831.13,9917.48,12424.5,4250.12,26592.1,79423.23 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,4957,75632.6,0.0,0.0,75632.6,15588.8,12424.5,6025.54,34038.84,109671.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,41967,92001.3,68344.97,15661.37,176007.64,20844.88,12424.5,10662.34,43931.72,219939.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,22918,62811.0,3511.64,1430.0,67752.64,13185.08,12424.5,5373.41,30982.99,98735.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,306,56531.01,5256.62,3394.11,65181.74,11686.83,12424.5,5322.44,29433.77,94615.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22683,77071.03,0.0,624.0,77695.03,16013.39,12424.5,6190.47,34628.36,112323.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38226,2849.63,0.0,0.0,2849.63,0.0,191.14,220.77,411.91,3261.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,53183,49760.83,22048.52,7428.29,79237.64,10990.15,9736.51,6319.92,27046.58,106284.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,27131,99674.62,4137.91,202.84,104015.37,20615.65,12424.46,8369.53,41409.64,145425.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,23672,2529.45,0.0,0.0,2529.45,0.0,1182.72,196.25,1378.97,3908.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,12049,21657.77,404.06,0.0,22061.83,0.0,4802.56,1708.03,6510.59,28572.42 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),1968,166207.97,0.0,1450.0,167657.97,33935.77,11209.53,10496.17,55641.47,223299.44 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",28582,1196.0,0.0,0.0,1196.0,0.0,71.44,92.72,164.16,1360.16 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,5867,74412.05,0.0,5055.0,79467.05,15474.55,12424.5,6592.18,34491.23,113958.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,33400,81942.0,2221.47,3356.0,87519.47,17336.1,12424.51,6517.36,36277.97,123797.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,24108,69902.01,2780.55,0.0,72682.56,14407.13,12424.5,5796.94,32628.57,105311.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,4604,5067.0,0.0,0.0,5067.0,0.0,716.79,391.68,1108.47,6175.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,12883,269.78,0.0,0.0,269.78,0.0,98.56,20.93,119.49,389.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50406,63998.46,10704.22,0.0,74702.68,13175.06,10530.72,5947.51,29653.29,104355.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34934,151.38,56.77,250.0,458.15,42.84,47.79,16.12,106.75,564.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,27933,142731.07,0.0,0.0,142731.07,28724.78,12424.5,25100.81,66250.09,208981.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11226,16611.41,0.0,161.02,16772.43,0.0,1453.01,1301.81,2754.82,19527.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34991,76875.25,8335.65,12606.74,97817.64,0.0,6695.49,4500.36,11195.85,109013.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23391,56531.0,0.0,6404.88,62935.88,12321.03,12424.5,5194.55,29940.08,92875.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",40367,32266.08,0.0,0.0,32266.08,5293.88,7615.94,2559.33,15469.15,47735.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,32335,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2414.98,12868.33,44168.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6872,2486.13,0.0,5.76,2491.89,0.0,936.33,193.41,1129.74,3621.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29164,44567.32,4343.16,1919.67,50830.15,12063.0,13418.4,3817.17,29298.57,80128.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,40643,46490.5,10592.34,2890.0,59972.84,11382.26,12154.81,4810.03,28347.1,88319.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,28616,48010.06,0.0,0.0,48010.06,11515.23,12424.5,3786.06,27725.79,75735.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,49806,102735.77,10792.41,12195.04,125723.22,21342.8,12424.5,2098.98,35866.28,161589.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,5942,4760.08,0.0,35.19,4795.27,0.0,1576.95,287.96,1864.91,6660.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,43085,11444.81,0.0,808.06,12252.87,0.0,985.6,951.01,1936.61,14189.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,25725,105363.05,0.0,0.0,105363.05,21710.31,12424.5,8658.92,42793.73,148156.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6408,18292.27,0.0,1721.57,20013.84,1452.6,7913.81,1617.69,10984.1,30997.94 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,957,68487.86,0.0,0.0,68487.86,14101.62,12334.91,5511.99,31948.52,100436.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,24418,7883.1,0.0,0.0,7883.1,0.0,1553.06,611.86,2164.92,10048.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32437,1761.94,0.0,84.96,1846.9,0.0,0.0,109.08,109.08,1955.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51391,503.75,0.0,22.94,526.69,0.0,194.14,40.77,234.91,761.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,42615,5994.0,0.0,0.0,5994.0,1115.48,955.73,462.1,2533.31,8527.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43255,77071.0,11280.05,2184.01,90535.06,16333.45,12424.5,7402.03,36159.98,126695.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25551,109789.75,3734.63,11378.03,124902.41,22545.4,12424.5,2084.93,37054.83,161957.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",32535,133348.47,1288.7,9367.98,144005.15,27042.56,12424.5,1660.4,41127.46,185132.61 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,26721,44921.4,0.0,0.0,44921.4,10765.45,12367.75,3658.44,26791.64,71713.04 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",51195,67975.67,9644.65,10708.0,88328.32,17934.22,12166.16,1726.62,31827.0,120155.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,23992,65337.02,0.0,0.0,65337.02,13185.11,10035.17,5213.37,28433.65,93770.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,44011,2800.0,0.0,0.0,2800.0,521.08,477.86,217.33,1216.27,4016.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38537,25926.2,765.53,3621.38,30313.11,7340.6,5353.59,2212.58,14906.77,45219.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21807,56531.0,0.0,5088.19,61619.19,12260.34,12424.5,5045.55,29730.39,91349.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,5896,62232.02,0.0,0.0,62232.02,12232.4,8123.71,4991.46,25347.57,87579.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50238,3728.2,0.0,0.0,3728.2,0.0,1003.51,289.37,1292.88,5021.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8684,26344.22,1053.46,783.37,28181.05,5540.22,5122.96,2138.51,12801.69,40982.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,39280,55308.21,3950.81,0.0,59259.02,12355.47,12424.5,4804.89,29584.86,88843.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23464,64704.95,26097.64,1617.24,92419.83,18139.55,12749.15,6969.7,37858.4,130278.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,37583,114720.01,0.0,0.0,114720.01,23087.61,12424.51,9180.49,44692.61,159412.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30198,66407.15,8793.0,991.46,76191.61,18426.98,13083.36,5903.43,37413.77,113605.38 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,11750,23605.0,0.0,0.0,23605.0,4392.9,5256.52,1903.23,11552.65,35157.65 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,47080,11088.0,0.0,204.34,11292.34,2796.31,3345.06,882.8,7024.17,18316.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40988,43194.17,0.0,0.0,43194.17,0.0,5178.87,3349.28,8528.15,51722.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,30406,41313.08,0.0,19.05,41332.13,9909.69,12424.5,3360.46,25694.65,67026.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,36407,19208.0,0.0,2840.7,22048.7,4014.23,3822.93,1804.35,9641.51,31690.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,31300,97424.01,7820.4,1040.0,106284.41,20304.76,12424.5,8321.5,41050.76,147335.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,35737,80953.77,4231.38,3238.6,88423.75,16570.71,12424.5,3345.44,32340.65,120764.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15382,53691.57,0.0,2023.57,55715.14,13462.68,6836.88,593.88,20893.44,76608.58 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,48368,106605.02,0.0,0.0,106605.02,21971.81,12424.5,8761.54,43157.85,149762.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,20962,22657.75,18152.33,1458.45,42268.53,5082.15,3338.25,3389.61,11810.01,54078.54 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33024,3825.0,0.0,0.0,3825.0,0.0,1523.19,296.13,1819.32,5644.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6231,Senior Street Inspector,23936,58559.0,0.0,0.0,58559.0,11679.99,9079.45,4752.45,25511.89,84070.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42778,12268.46,724.98,72.03,13065.47,2958.62,3784.34,997.44,7740.4,20805.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6012,15463.08,0.0,284.34,15747.42,0.0,5125.1,1220.92,6346.02,22093.44 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7257,Communication Line Sprv1,48494,108609.38,22070.09,18258.02,148937.49,22358.46,12424.5,10213.17,44996.13,193933.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,12022,135901.0,0.0,0.0,135901.0,27145.89,11468.78,26201.28,64815.95,200716.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,579,51405.0,297.15,3623.85,55326.0,12486.9,12424.5,4572.64,29484.04,84810.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,4449,21289.02,783.35,1351.48,23423.85,5680.52,4778.65,1894.87,12354.04,35777.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,20664,1575.92,0.0,21.13,1597.05,0.0,513.71,123.9,637.61,2234.66 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,38654,29233.8,1488.26,2613.6,33335.66,6932.36,4778.65,2547.87,14258.88,47594.54 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,48123,156320.0,0.0,0.0,156320.0,31459.67,12424.5,10429.18,54313.35,210633.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,40481,91004.05,8754.15,1137.5,100895.7,19010.12,12424.5,8296.11,39730.73,140626.43 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",4666,28119.01,0.0,0.0,28119.01,6307.08,3345.06,2274.8,11926.94,40045.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51094,119459.81,17162.56,10736.15,147358.52,23648.11,12424.5,2509.59,38582.2,185940.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,30332,97934.0,0.0,0.0,97934.0,20192.08,12424.5,8124.44,40741.02,138675.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,32370,60296.18,7299.04,1305.25,68900.47,12588.22,12006.37,5666.0,30260.59,99161.06 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,12686,58101.05,0.0,624.0,58725.05,12103.6,12424.5,4816.24,29344.34,88069.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45007,52892.47,0.0,3333.45,56225.92,11473.69,11636.92,4525.3,27635.91,83861.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,43205,27602.82,0.0,356.55,27959.37,6422.94,8279.02,2230.53,16932.49,44891.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,1075,111046.32,0.0,0.0,111046.32,22602.86,12424.5,16778.49,51805.85,162852.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,2381,81197.81,12754.3,3671.42,97623.53,17435.01,12424.5,7709.71,37569.22,135192.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",3486,14301.61,0.0,0.0,14301.61,0.0,3026.67,1085.44,4112.11,18413.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,49142,2868.0,0.0,0.0,2868.0,0.0,955.74,221.22,1176.96,4044.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13887,11122.27,0.0,0.0,11122.27,0.0,4806.61,937.24,5743.85,16866.12 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,27242,81116.0,0.0,0.0,81116.0,16718.52,12424.5,6611.73,35754.75,116870.75 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,15602,10177.83,1236.47,523.4,11937.7,0.0,2825.38,926.55,3751.93,15689.63 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,46466,57130.1,893.01,7769.26,65792.37,13302.38,10501.1,5403.99,29207.47,94999.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30049,67895.91,15693.48,5807.0,89396.39,20192.98,13378.86,6772.08,40343.92,129740.31 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,24140,0.0,0.0,481.28,481.28,0.0,0.0,36.82,36.82,518.1 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8228,Museum Sec Supv,21428,51167.0,4252.43,3872.92,59292.35,10882.78,10990.9,4740.18,26613.86,85906.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,45475,81506.01,18976.85,695.96,101178.82,16466.98,10035.16,8049.97,34552.11,135730.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6519,14115.71,0.0,0.0,14115.71,0.0,4680.09,1094.1,5774.19,19889.9 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,44510,56120.02,4528.13,0.0,60648.15,12556.8,12424.5,4746.06,29727.36,90375.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,45134,69388.01,0.0,0.0,69388.01,13904.08,9557.31,5650.29,29111.68,98499.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,47632,74356.66,0.0,267.38,74624.04,15458.44,11290.53,5972.86,32721.83,107345.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,36904,66586.74,31752.2,4856.45,103195.39,13981.19,12301.21,8927.3,35209.7,138405.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",30774,74013.54,5554.91,134736.31,214304.76,18557.51,6690.11,225.34,25472.96,239777.72 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,3810,106116.02,0.0,0.0,106116.02,21870.85,12424.5,8721.09,43016.44,149132.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7317,Senior Water Service Inspector,4652,87664.01,145.8,4128.43,91938.24,18665.49,10990.92,7205.47,36861.88,128800.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30277,64452.1,8613.55,5070.15,78135.8,19211.09,12720.36,5720.28,37651.73,115787.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49821,42803.71,0.0,3961.25,46764.96,3859.72,0.0,1152.98,5012.7,51777.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,23881,63887.01,91.58,1185.3,65163.89,13412.2,12424.52,5210.06,31046.78,96210.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,47826,116976.03,0.0,0.0,116976.03,23541.49,12424.51,9453.39,45419.39,162395.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,36100,49466.6,0.0,0.0,49466.6,631.07,7120.18,3990.1,11741.35,61207.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42541,113233.58,1761.1,19042.11,134036.79,25036.01,15196.12,2348.24,42580.37,176617.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40409,37216.96,2519.52,1299.75,41036.23,9964.03,11623.6,3121.92,24709.55,65745.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,12826,72061.55,0.0,1238.81,73300.36,15116.83,12316.98,5895.56,33329.37,106629.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,26916,57729.21,268.09,0.0,57997.3,12909.43,12424.5,4604.4,29938.33,87935.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,12702,3716.6,0.0,0.0,3716.6,0.0,1003.51,288.46,1291.97,5008.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,52756,70245.0,13498.66,10734.64,94478.3,15631.7,12424.5,7471.85,35528.05,130006.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,10709,9212.01,0.0,0.0,9212.01,2376.69,1911.46,730.94,5019.09,14231.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,15735,70245.01,3272.25,3645.0,77162.26,14646.73,12424.5,6080.71,33151.94,110314.2 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,26493,55214.29,93.01,718.99,56026.29,11393.62,10871.44,4591.19,26856.25,82882.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,6746,100761.0,15736.03,1227.49,117724.52,20884.2,12424.51,9634.4,42943.11,160667.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,52072,31307.5,0.0,219.3,31526.8,1517.72,10154.65,2532.27,14204.64,45731.44 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,48354,84900.01,0.0,3000.0,87900.01,17577.17,11946.64,7320.16,36843.97,124743.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,31526,64716.28,1576.78,848.96,67142.02,13487.48,12162.46,5313.01,30962.95,98104.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,42232,88831.0,2488.74,11911.47,103231.21,19959.16,12424.5,8292.95,40676.61,143907.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H050,Asst Chf Of Dept (Fire Dept),52483,103718.88,0.0,84811.48,188530.36,25619.86,7598.06,3028.02,36245.94,224776.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29736,56314.9,376.83,8465.59,65157.32,12616.49,12376.71,5370.24,30363.44,95520.76 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,38762,66208.57,0.0,447.83,66656.4,13682.54,10961.04,5226.33,29869.91,96526.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8989,101324.68,0.0,5534.67,106859.35,20752.19,9232.13,7934.33,37918.65,144778.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,3984,66102.0,0.0,0.0,66102.0,13624.06,12424.49,5230.61,31279.16,97381.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,9103,42638.4,65.85,2648.54,45352.79,10152.26,11373.2,3677.43,25202.89,70555.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22476,77856.3,2017.36,872.99,80746.65,15750.04,11946.64,4345.92,32042.6,112789.25 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,31607,76338.0,0.0,624.0,76962.0,15862.31,12424.5,6129.6,34416.41,111378.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,33809,43196.02,0.0,0.0,43196.02,9446.15,7645.85,3326.07,20418.07,63614.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3371,57399.03,16334.43,4061.53,77794.99,17216.9,11341.9,6067.82,34626.62,112421.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4276,138103.24,20510.01,29293.63,187906.88,27828.17,12376.71,3201.73,43406.61,231313.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9187,"Deputy Dir II, MTA",26654,230336.42,0.0,0.0,230336.42,46355.6,12424.5,18974.27,77754.37,308090.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5177,Safety Officer,50183,137450.09,0.0,0.0,137450.09,27759.92,12424.5,10072.07,50256.49,187706.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,50513,57557.91,2018.2,8499.05,68075.16,12717.72,11378.99,5333.71,29430.42,97505.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,36464,9833.9,0.0,0.0,9833.9,1830.1,1385.81,760.06,3975.97,13809.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,19895,54124.01,733.14,3854.54,58711.69,12598.92,12424.5,4851.12,29874.54,88586.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26651,47315.69,0.0,935.47,48251.16,0.0,4168.78,3735.18,7903.96,56155.12 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,21805,99654.03,3839.74,2006.23,105500.0,23175.71,12424.5,273.41,35873.62,141373.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1163,43399.88,874.02,292.95,44566.85,9267.61,9569.55,3496.68,22333.84,66900.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5199,119365.06,0.0,12567.52,131932.58,24598.94,10901.01,9343.27,44843.22,176775.8 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,42515,16285.32,116.04,41.27,16442.63,0.0,3769.17,1273.63,5042.8,21485.43 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,37463,91105.03,0.0,1767.1,92872.13,19158.16,12310.29,7437.24,38905.69,131777.82 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,26843,103988.15,26895.09,11028.56,141911.8,22830.82,12262.15,10113.27,45206.24,187118.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,16749,3545.39,0.0,0.0,3545.39,795.23,535.81,323.54,1654.58,5199.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,15688,79498.76,0.0,0.0,79498.76,16381.77,12424.5,6349.67,35155.94,114654.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,2449,40839.44,0.0,0.0,40839.44,9795.97,12385.02,3278.45,25459.44,66298.88 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,2025,2589.05,847.88,0.0,3436.93,0.0,766.07,266.76,1032.83,4469.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,35981,52795.45,0.0,0.0,52795.45,10578.06,12239.33,4245.29,27062.68,79858.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,49944,107565.23,0.0,1480.0,109045.23,22466.18,12376.71,8955.68,43798.57,152843.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H110,Marine Engineer Of Fire Boats,42144,148809.3,22484.51,18601.16,189894.97,32934.01,15052.76,3228.58,51215.35,241110.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35034,21911.76,2205.67,541.21,24658.64,5561.53,6821.84,1879.32,14262.69,38921.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23847,63630.25,20202.23,4391.24,88223.72,18541.46,12532.31,6678.97,37752.74,125976.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,41803,67878.59,19086.03,8306.63,95271.25,14956.2,12418.53,7776.66,35151.39,130422.64 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,22993,120195.3,0.0,0.0,120195.3,24165.17,12400.61,17104.71,53670.49,173865.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,30143,66102.0,1350.36,942.77,68395.13,13810.36,12424.47,5651.19,31886.02,100281.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32274,37020.06,0.0,6260.85,43280.91,988.14,0.0,6061.06,7049.2,50330.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29224,112692.91,7939.57,3279.04,123911.52,22303.28,12424.5,2102.82,36830.6,160742.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32903,5730.4,0.0,1048.69,6779.09,1518.33,2484.9,553.9,4557.13,11336.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51893,36612.28,1310.07,989.63,38911.98,1062.98,3126.61,2960.61,7150.2,46062.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51522,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1848.37,10262.15,34266.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,1882,68345.02,353.62,3745.6,72444.24,15114.47,10513.04,5952.57,31580.08,104024.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42920,66415.61,13527.96,5827.62,85771.19,19746.58,13083.9,6654.85,39485.33,125256.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,3.0,"Operating Engineers - Miscellaneous, Local 3",7200,Supervisory-Labor & Trade,7208,Heavy Equipment Ops Sprv,49615,20940.0,0.0,0.0,20940.0,4594.25,2389.32,1704.49,8688.06,29628.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,43075,4230.0,0.0,0.0,4230.0,1091.34,955.73,364.69,2411.76,6641.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,27776,112776.03,0.0,6548.81,119324.84,24013.61,12424.51,9769.84,46207.96,165532.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,46535,81157.0,22893.84,27590.19,131641.03,21079.14,12424.5,9897.17,43400.81,175041.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,6089,22674.0,0.0,0.0,22674.0,4219.61,2867.21,1860.92,8947.74,31621.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26884,2786.0,0.0,0.0,2786.0,0.0,1208.1,215.7,1423.8,4209.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,947,2813.56,0.0,0.0,2813.56,0.0,1220.05,217.82,1437.87,4251.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22563,56531.0,0.0,8644.76,65175.76,13792.81,12424.5,5219.16,31436.47,96612.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7282,Street Repair Supervisor 2,42978,103726.5,19346.26,4849.94,127922.7,21339.7,12424.49,9869.38,43633.57,171556.27 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),13951,109563.0,0.0,6573.78,116136.78,23670.78,12424.5,1943.33,38038.61,154175.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,19785,85437.91,26466.26,17471.05,129375.22,17529.59,9079.44,2193.68,28802.71,158177.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,29858,64530.8,0.0,1276.55,65807.35,13841.92,10285.21,5391.49,29518.62,95325.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,31024,95790.59,0.0,0.0,95790.59,19638.79,11965.22,7519.5,39123.51,134914.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,27090,60498.45,8211.55,4832.81,73542.81,7288.37,12409.57,5916.23,25614.17,99156.98 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48828,13074.15,0.0,0.0,13074.15,0.0,3231.56,1014.4,4245.96,17320.11 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,4815,89362.4,0.0,0.0,89362.4,18411.25,12424.5,7151.77,37987.52,127349.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36302,66552.04,21222.02,6719.64,94493.7,20063.33,13113.88,7133.9,40311.11,134804.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",34408,126668.86,0.0,0.0,126668.86,25483.78,12379.7,17095.53,54959.01,181627.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,46186,147149.01,0.0,1406.14,148555.15,29920.04,12424.5,27808.28,70152.82,218707.97 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,44367,28954.54,0.0,0.0,28954.54,0.0,1914.45,2244.44,4158.89,33113.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,11464,35221.8,0.0,0.0,35221.8,6790.24,7167.99,2783.25,16741.48,51963.28 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,13037,104559.82,0.0,0.0,104559.82,20959.31,11051.3,8597.23,40607.84,145167.66 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,52366,63102.0,25513.41,10326.45,98941.86,14313.59,12424.5,7775.83,34513.92,133455.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34987,4430.7,0.0,0.0,4430.7,0.0,1475.42,343.2,1818.62,6249.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24159,66602.92,2833.3,986.39,70422.61,15373.5,13122.66,5887.28,34383.44,104806.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,24606,84599.01,0.0,2847.82,87446.83,18021.03,12424.5,7104.73,37550.26,124997.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",31043,131577.09,37897.0,18599.56,188073.65,29518.04,15196.12,3049.3,47763.46,235837.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,12573,111051.6,0.0,6089.75,117141.35,23531.51,12233.36,9617.18,45382.05,162523.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,26163,119427.0,0.0,1716.6,121143.6,24352.11,12424.5,17107.15,53883.76,175027.36 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,34931,46258.19,0.0,2024.9,48283.09,10301.48,6509.19,4033.02,20843.69,69126.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,16493,28540.89,0.0,1222.15,29763.04,6634.16,5585.07,2467.42,14686.65,44449.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29800,137655.39,553.1,644.09,138852.58,27661.74,11815.34,9957.26,49434.34,188286.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48148,63875.52,9335.19,631.66,73842.37,14722.61,12593.61,5423.96,32740.18,106582.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",34784,93281.06,0.0,2064.0,95345.06,19649.3,12424.5,7531.28,39605.08,134950.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6805,10650.16,0.0,0.0,10650.16,0.0,4560.51,871.92,5432.43,16082.59 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,48503,3881.7,1800.4,306.45,5988.55,0.0,907.95,464.81,1372.76,7361.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,49346,117139.2,25574.5,1576.72,144290.42,23170.33,12424.5,2412.12,38006.95,182297.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8121,Investigator/Transit Fare Supv,14538,91090.93,0.0,470.7,91561.63,18976.07,12424.5,7550.48,38951.05,130512.68 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,4483,24296.77,483.85,0.0,24780.62,0.0,5838.92,1920.75,7759.67,32540.29 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0885,Mayoral Staff V,11792,56502.97,0.0,0.0,56502.97,12519.77,11677.84,12399.28,36596.89,93099.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,32991,56276.0,5537.55,322.65,62136.2,12607.26,12424.5,5085.59,30117.35,92253.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,16177,12226.34,0.0,85.84,12312.18,0.0,0.0,973.73,973.73,13285.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,30267,62806.36,0.0,12515.9,75322.26,14967.34,12423.61,6147.1,33538.05,108860.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,48794,36793.7,748.04,0.0,37541.74,6062.15,11086.48,2969.94,20118.57,57660.31 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,12468,145090.3,0.0,8404.53,153494.83,30402.63,8476.08,10290.43,49169.14,202663.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,11665,70413.0,0.0,0.0,70413.0,14858.62,10035.18,5542.07,30435.87,100848.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49797,10248.91,670.05,57.68,10976.64,3606.94,848.16,552.61,5007.71,15984.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17169,0.0,0.0,44085.41,44085.41,0.0,13.7,0.0,13.7,44099.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,5784,120347.55,3888.89,11672.11,135908.55,23759.61,12370.74,2260.14,38390.49,174299.04 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,40535,49577.3,0.0,701.2,50278.5,10919.3,6976.83,4057.74,21953.87,72232.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18224,14499.0,221.6,956.63,15677.23,1923.7,3869.7,1223.24,7016.64,22693.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,27827,85368.04,4677.91,624.0,90669.95,17723.32,12424.5,7492.12,37639.94,128309.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36380,45221.6,82.73,0.0,45304.33,10845.57,12046.75,3422.17,26314.49,71618.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,352.0,Municipal Executive Association - Fire,0900,Management,0140,"Chief, Fire Department",44444,303494.81,0.0,24279.58,327774.39,64401.62,12424.5,14243.86,91069.98,418844.37 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,7027,60229.94,0.0,0.0,60229.94,12490.45,11546.72,4910.78,28947.95,89177.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,27577,97910.15,0.0,3071.6,100981.75,20809.95,12421.46,8159.94,41391.35,142373.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,27241,70911.2,0.0,24750.99,95662.19,15557.86,6546.74,7572.54,29677.14,125339.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,4988,137934.99,3897.82,8747.68,150580.49,29370.5,11936.17,10191.69,51498.36,202078.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,24291,91970.42,0.0,1276.35,93246.77,19193.18,12364.77,7488.8,39046.75,132293.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38622,119460.45,2858.68,7212.14,129531.27,23646.05,12424.5,2199.85,38270.4,167801.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9064,96896.76,3121.36,6966.2,106984.32,25263.55,12313.1,1774.27,39350.92,146335.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50407,62964.68,2296.3,1773.58,67034.56,17720.21,12402.82,4897.39,35020.42,102054.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6174,60751.72,8192.09,500.0,69443.81,13693.57,12424.5,5570.3,31688.37,101132.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32982,73360.13,14746.72,7378.79,95485.64,16108.73,15196.11,1525.61,32830.45,128316.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,39832,17230.0,0.0,0.0,17230.0,3206.5,2389.33,1380.69,6976.52,24206.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,49261,26780.51,2178.72,1584.03,30543.26,5334.44,4660.09,2528.63,12523.16,43066.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11090,21324.63,0.0,299.65,21624.28,0.0,5988.23,1676.03,7664.26,29288.54 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,11113,49152.41,0.0,0.0,49152.41,10021.92,7077.97,3921.52,21021.41,70173.82 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,41610,5481.0,0.0,0.0,5481.0,1414.11,1433.6,439.83,3287.54,8768.54 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0905,Mayoral Staff XVII,43895,180389.37,0.0,0.0,180389.37,36298.85,12406.58,18112.94,66818.37,247207.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,46322,12664.62,0.0,0.0,12664.62,0.0,4139.51,1036.24,5175.75,17840.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32951,39176.45,2866.23,763.49,42806.17,10327.51,12195.3,3196.14,25718.95,68525.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,12340,40799.54,0.0,4252.01,45051.55,9322.1,5491.87,3654.68,18468.65,63520.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,24256,67049.68,0.0,0.0,67049.68,14710.72,3822.92,10274.97,28808.61,95858.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41501,7028.7,0.0,874.99,7903.69,1813.39,3047.89,633.51,5494.79,13398.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,9694,109154.68,5142.37,17753.04,132050.09,24976.82,12442.42,2205.19,39624.43,171674.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35244,53831.01,41.53,0.0,53872.54,12903.81,12424.5,4376.76,29705.07,83577.61 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,28273,213783.38,0.0,13680.0,227463.38,43001.11,12397.09,11480.85,66879.05,294342.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50861,6079.03,1165.22,424.49,7668.74,1756.7,1918.92,563.94,4239.56,11908.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,43881,42459.55,0.0,0.0,42459.55,0.0,5370.01,3293.37,8663.38,51122.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,2019,40148.54,0.0,0.0,40148.54,7278.92,3697.48,3230.33,14206.73,54355.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,1392,14845.01,0.0,0.0,14845.01,3329.75,2389.33,1196.38,6915.46,21760.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16849,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1850.29,10264.06,34268.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17118,63240.65,7167.87,1044.63,71453.15,15093.18,12457.53,5415.34,32966.05,104419.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,15103,97934.0,0.0,624.0,98558.0,20308.1,12424.5,7976.05,40708.65,139266.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1493,97353.19,22223.85,12525.1,132102.14,18856.67,10035.19,2194.89,31086.75,163188.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39266,21244.49,2421.26,800.38,24466.13,5333.52,6579.55,1870.61,13783.68,38249.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,11134,29757.04,0.0,0.0,29757.04,3151.67,8924.13,2349.01,14424.81,44181.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22695,66442.75,670.87,1961.36,69074.98,18761.67,13095.84,5270.95,37128.46,106203.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6177,420.0,0.0,0.0,420.0,0.0,125.44,32.52,157.96,577.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,43146,65239.8,12068.55,8107.33,85415.68,19552.21,12281.15,6891.54,38724.9,124140.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,3924,62373.17,0.0,1310.0,63683.17,13066.62,12337.35,5112.76,30516.73,94199.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,6405,127785.33,5899.52,7667.13,141351.98,26659.3,14841.79,2400.21,43901.3,185253.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45726,97763.69,9188.26,15995.75,122947.7,27678.7,12424.51,2047.72,42150.93,165098.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,27031,92001.31,49868.43,9021.84,150891.58,19734.63,12424.5,10266.12,42425.25,193316.83 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,35267,133724.5,0.0,0.0,133724.5,26851.27,12116.63,17338.19,56306.09,190030.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31713,64389.46,5062.72,849.71,70301.89,14782.89,12680.88,5151.02,32614.79,102916.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31142,61789.3,239.52,3069.51,65098.33,17654.31,12169.39,5070.68,34894.38,99992.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18751,66972.36,7717.22,642.25,75331.83,15373.01,13195.76,5704.74,34273.51,109605.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35040,77071.0,0.0,1236.8,78307.8,16130.93,12424.5,6439.04,34994.47,113302.27 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,43770,145202.83,0.0,0.0,145202.83,29162.36,12424.5,27667.64,69254.5,214457.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,51700,87988.17,0.0,2240.2,90228.37,18619.84,12424.5,6603.14,37647.48,127875.85 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,34013,106605.06,0.0,0.0,106605.06,21971.81,12424.5,8472.75,42869.06,149474.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,17558,0.0,0.0,6577.84,6577.84,0.0,68.5,95.38,163.88,6741.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49736,1816.85,0.0,56.56,1873.41,0.0,606.3,145.04,751.34,2624.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,29439,74165.01,79.73,0.0,74244.74,15285.75,12424.5,6107.92,33818.17,108062.91 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,41498,1885.56,37.13,0.0,1922.69,0.0,0.0,152.13,152.13,2074.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,32605,197.59,0.0,0.0,197.59,0.0,65.71,15.3,81.01,278.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,13220,129133.77,0.0,0.0,129133.77,25910.29,12424.5,17989.75,56324.54,185458.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40877,65058.46,6034.28,571.48,71664.22,14921.87,12819.64,5308.73,33050.24,104714.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9912,Public Service Aide-Technical,33575,3084.0,0.0,36.71,3120.71,0.0,1433.6,252.03,1685.63,4806.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11192,67373.78,24502.88,4575.28,96451.94,19669.41,13277.5,7541.6,40488.51,136940.45 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,33238,403.76,348.23,0.0,751.99,0.0,119.47,58.37,177.84,929.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,36785,50164.6,2960.08,4208.14,57332.82,12267.61,12122.85,4731.47,29121.93,86454.75 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8118,Legislation Clerk,5045,42908.43,117.45,2349.78,45375.66,9624.39,6546.76,3613.33,19784.48,65160.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,30737,111918.03,0.0,0.0,111918.03,23066.89,12424.51,9191.39,44682.79,156600.82 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,9201,50033.0,0.0,1472.47,51505.47,11538.76,11080.51,4055.46,26674.73,78180.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37073,119261.72,0.0,12156.27,131417.99,24066.38,12403.6,332.91,36802.89,168220.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37061,11036.6,0.0,143.49,11180.09,128.26,931.84,517.31,1577.41,12757.5 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,51971,115428.79,0.0,990.0,116418.79,23424.28,12413.09,9369.63,45207.0,161625.79 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,26510,80570.0,0.0,624.0,81194.0,16734.65,12424.5,6486.49,35645.64,116839.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,39808,88831.01,2615.9,9292.03,100738.94,20000.63,12424.5,8258.83,40683.96,141422.9 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,8472,61044.0,0.0,9105.73,70149.73,13393.08,5734.39,5643.95,24771.42,94921.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,31417,65042.37,0.0,5534.04,70576.41,14499.35,12319.91,5818.54,32637.8,103214.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,4327,2851.22,0.0,0.0,2851.22,0.0,925.86,221.3,1147.16,3998.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,26894,19435.01,0.0,780.0,20215.01,4223.58,4300.79,1515.04,10039.41,30254.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10159,0.0,0.0,3153.37,3153.37,0.0,68.5,0.0,68.5,3221.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33879,11516.24,0.0,2292.42,13808.66,342.01,0.0,2316.59,2658.6,16467.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25774,97774.6,39339.17,13811.15,150924.92,27155.84,12424.5,2563.4,42143.74,193068.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,13078,118395.37,0.0,0.0,118395.37,23438.36,10513.03,21715.47,55666.86,174062.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,20723,51982.81,357.29,976.89,53316.99,12634.03,12424.5,4279.38,29337.91,82654.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,16092,47698.3,6043.75,2948.58,56690.63,9925.03,8840.51,1490.42,20255.96,76946.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,37649,117129.7,8226.38,4772.03,130128.11,23205.2,12424.5,2160.86,37790.56,167918.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,26862,63887.0,2246.11,2698.76,68831.87,13722.14,12424.51,5438.0,31584.65,100416.52 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,36729,72502.67,1342.22,99.1,73943.99,14991.81,10595.65,5909.97,31497.43,105441.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32261,22450.42,0.0,0.0,22450.42,1853.19,9679.76,1778.69,13311.64,35762.06 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,45599,11083.1,1763.33,0.0,12846.43,0.0,2914.98,997.09,3912.07,16758.5 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,830,74626.66,0.0,3624.0,78250.66,15514.46,12424.5,7102.31,35041.27,113291.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49112,136090.02,0.0,2336.92,138426.94,0.0,10386.65,9667.65,20054.3,158481.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43605,5228.64,0.0,61.12,5289.76,0.0,1308.15,410.25,1718.4,7008.16 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,5957,93091.97,3294.81,8063.31,104450.09,19866.66,12346.85,9165.98,41379.49,145829.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,6619,3864.44,41.4,123.15,4028.99,0.0,1806.92,312.5,2119.42,6148.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,22096,51091.33,8598.82,816.8,60506.95,10809.41,10218.2,4759.04,25786.65,86293.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,7697,2847.96,0.0,59.68,2907.64,0.0,843.73,225.72,1069.45,3977.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16986,66336.57,16658.14,810.09,83804.8,18385.41,13072.6,6507.44,37965.45,121770.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,45297,31654.71,0.0,999.31,32654.02,7837.92,7822.06,2676.67,18336.65,50990.67 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,18028,64495.65,762.92,0.0,65258.57,13293.15,12421.52,5364.41,31079.08,96337.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8023,91720.03,0.0,12067.22,103787.25,12490.2,8632.04,4708.16,25830.4,129617.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28672,112159.74,27568.74,17188.67,156917.15,24822.79,15052.76,2598.35,42473.9,199391.05 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,13227,158707.06,0.0,0.0,158707.06,31940.4,12424.5,17725.16,62090.06,220797.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16679,8568.13,0.0,234.91,8803.04,0.0,2272.85,683.25,2956.1,11759.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,34658,138101.05,0.0,0.0,138101.05,27787.15,12424.5,17395.12,57606.77,195707.82 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,26581,16731.11,0.0,311.91,17043.02,3848.15,4071.24,1369.58,9288.97,26331.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,48881,21761.02,0.0,126.19,21887.21,0.0,5441.7,1696.29,7137.99,29025.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,18558,6978.0,0.0,0.0,6978.0,1565.16,1433.6,578.08,3576.84,10554.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,23796,100554.02,0.0,0.0,100554.02,20724.83,12424.51,8261.64,41410.98,141965.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,8024,112776.01,11075.87,6628.81,130480.69,24010.87,12424.5,9929.17,46364.54,176845.23 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28846,184289.0,0.0,1562.5,185851.5,37402.55,12424.5,10926.5,60753.55,246605.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,51378,61735.0,0.0,0.0,61735.0,12724.0,12424.5,5119.87,30268.37,92003.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,13387,166207.04,0.0,0.0,166207.04,33300.15,12424.5,28080.08,73804.73,240011.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,44580,72699.0,3962.93,7108.26,83770.19,15807.91,12424.5,6663.09,34895.5,118665.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46868,63193.64,6781.79,2359.04,72334.47,17904.93,12442.9,5640.05,35987.88,108322.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,38459,75028.02,0.0,0.0,75028.02,15463.61,12424.51,6102.33,33990.45,109018.47 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,15111,88700.32,0.0,0.0,88700.32,18446.06,11363.04,7276.58,37085.68,125786.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15042,119013.45,179.34,20350.47,139543.26,25839.53,11086.48,7146.35,44072.36,183615.62 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,17576,93681.0,0.0,959.11,94640.11,19506.78,12424.5,7732.96,39664.24,134304.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,8166,5997.2,0.0,0.0,5997.2,1116.08,1051.32,459.09,2626.49,8623.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12284,10812.01,0.0,0.0,10812.01,746.84,0.0,901.62,1648.46,12460.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,23186,79722.0,6142.71,3265.0,89129.71,17108.32,12424.48,7117.26,36650.06,125779.77 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0905,Mayoral Staff XVII,14773,176564.04,0.0,0.0,176564.04,35533.71,12424.5,17996.64,65954.85,242518.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17988,12149.55,0.0,1773.08,13922.63,3226.6,5268.47,1129.24,9624.31,23546.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,23215,18515.91,0.0,0.0,18515.91,2483.98,6054.85,1476.75,10015.58,28531.49 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,29376,100015.85,9590.61,0.0,109606.46,22813.03,12424.5,283.59,35521.12,145127.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36029,17754.26,0.0,406.07,18160.33,0.0,5895.64,1408.17,7303.81,25464.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31295,0.0,0.0,2385.43,2385.43,0.0,0.0,34.59,34.59,2420.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43256,64028.94,5467.47,1043.81,70540.22,17724.89,12608.78,5459.31,35792.98,106333.2 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,22432,10533.93,0.0,199.73,10733.66,2478.41,2469.98,865.35,5813.74,16547.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,26701,62811.02,0.0,1430.0,64241.02,13188.2,12424.5,5050.73,30663.43,94904.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,19708,87086.6,262.95,2962.0,90311.55,18535.98,12424.5,7448.67,38409.15,128720.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45827,113498.47,30223.67,19030.17,162752.31,25127.79,15148.33,2746.31,43022.43,205774.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,2477,49079.33,0.0,1625.78,50705.11,12090.1,12219.02,3849.23,28158.35,78863.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39092,7343.0,0.0,0.0,7343.0,0.0,3106.12,579.61,3685.73,11028.73 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,30838,24197.25,0.0,89.02,24286.27,5786.7,5976.59,2015.01,13778.3,38064.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38473,49413.9,29.74,1600.0,51043.64,10386.75,10943.11,3886.54,25216.4,76260.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,35105,83660.02,0.0,4955.5,88615.52,18005.7,10602.64,6858.87,35467.21,124082.73 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19217,97763.98,32489.04,10899.33,141152.35,26445.49,12424.5,2277.08,41147.07,182299.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1931,Senior Parts Storekeeper,9094,59494.0,5727.89,2233.8,67455.69,5274.09,12424.5,5403.72,23102.31,90558.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,18758,190528.29,0.0,4724.32,195252.61,37429.1,11827.17,3275.18,52531.45,247784.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9187,"Deputy Dir II, MTA",24230,201556.76,0.0,0.0,201556.76,40508.76,12281.15,28646.0,81435.91,282992.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),4580,82816.1,14220.2,7574.44,104610.74,18299.97,12424.51,1744.19,32468.67,137079.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45224,55855.0,0.0,4220.77,60075.77,12787.4,12424.5,4918.06,30129.96,90205.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,8076,67650.0,0.0,158.72,67808.72,13841.1,11468.77,5435.7,30745.57,98554.29 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,2841,55564.18,0.0,0.0,55564.18,11385.39,11650.96,4254.53,27290.88,82855.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,25688,84644.02,1913.87,13564.54,100122.43,19578.09,12424.51,7994.39,39996.99,140119.42 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,23142,113852.0,0.0,684.0,114536.0,23051.76,12424.51,9394.5,44870.77,159406.77 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,52639,35030.02,0.0,7562.54,42592.56,7857.22,4778.65,3388.68,16024.55,58617.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,35215,104034.62,0.0,0.0,104034.62,21403.08,12424.5,8515.74,42343.32,146377.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,28436,52388.0,732.33,9445.68,62566.01,12393.65,10355.0,5145.53,27894.18,90460.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9141,Transit Manager 2,49172,63705.01,0.0,16669.67,80374.68,13976.88,6546.76,6463.88,26987.52,107362.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32360,50428.71,3923.58,2603.52,56955.81,12692.45,12424.5,4697.5,29814.45,86770.26 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,22932,7424.11,0.0,0.0,7424.11,1183.85,0.0,2056.37,3240.22,10664.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37249,66102.01,1516.2,0.0,67618.21,13624.07,12424.5,5350.55,31399.12,99017.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6760,30584.0,1102.98,979.79,32666.77,7575.13,12424.5,2611.84,22611.47,55278.24 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,45569,171487.93,0.0,0.0,171487.93,34488.72,12424.5,17925.3,64838.52,236326.45 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1362,Special Assistant 3,37120,9168.62,0.0,0.0,9168.62,2056.52,1911.46,727.88,4695.86,13864.48 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,43534,106116.1,0.0,0.0,106116.1,21866.98,12424.5,8619.27,42910.75,149026.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,17817,17930.73,145.75,0.0,18076.48,4021.86,3857.93,1469.49,9349.28,27425.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28907,121750.0,0.0,10218.19,131968.19,24309.92,12424.5,8658.15,45392.57,177360.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,45202,35524.98,0.0,113.56,35638.54,7964.02,7487.55,2677.55,18129.12,53767.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26136,41918.9,1451.23,567.01,43937.14,11479.94,8220.18,3274.52,22974.64,66911.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11219,127840.09,1023.91,12427.85,141291.85,0.0,9336.11,2368.71,11704.82,152996.67 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,48091,18843.5,0.0,0.0,18843.5,0.0,2628.26,1490.75,4119.01,22962.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,45015,81855.4,0.0,0.0,81855.4,16859.78,12424.5,6498.47,35782.75,117638.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34619,59043.78,17488.37,2556.46,79088.61,15986.36,13498.07,6047.87,35532.3,114620.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,12247,55803.03,0.0,427.92,56230.95,11910.63,8520.28,4590.78,25021.69,81252.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34514,64378.97,776.3,867.2,66022.47,17857.2,12686.85,5139.87,35683.92,101706.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,11019,36718.29,370.82,991.1,38080.21,7963.83,7598.05,3165.37,18727.25,56807.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34157,4371.01,0.0,16.12,4387.13,0.0,1684.47,340.17,2024.64,6411.77 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,9181,97770.38,26746.79,9269.75,133786.92,26040.04,12424.5,2279.73,40744.27,174531.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,48346,56531.0,0.0,5255.65,61786.65,12445.88,12424.5,4805.62,29676.0,91462.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,42490,196584.01,0.0,0.0,196584.01,39562.78,12424.52,11111.7,63099.0,259683.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15100,18775.87,870.17,749.84,20395.88,4782.41,3733.92,1443.85,9960.18,30356.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,3440,127129.02,0.0,0.0,127129.02,25584.72,12424.5,24862.71,62871.93,190000.95 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,24676,19676.94,302.49,0.0,19979.43,0.0,0.0,1580.58,1580.58,21560.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,16900,4093.31,0.0,0.0,4093.31,0.0,567.47,317.71,885.18,4978.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,48186,2890.0,0.0,0.0,2890.0,537.83,477.86,224.32,1240.01,4130.01 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,23199,65201.8,0.0,0.0,65201.8,13433.9,12376.71,5113.54,30924.15,96125.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3086,138714.23,7658.36,18567.83,164940.42,27980.92,12424.5,2381.07,42786.49,207726.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,43602,90530.02,11765.56,396.25,102691.83,18772.34,12424.48,8477.66,39674.48,142366.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30473,7072.84,0.0,16.76,7089.6,123.74,0.0,176.97,300.71,7390.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,9449,44212.44,0.0,1508.2,45720.64,6203.38,11809.25,3453.93,21466.56,67187.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,47731,13415.73,0.0,0.0,13415.73,3009.14,1751.13,1043.23,5803.5,19219.23 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",43915,56009.54,1316.03,4570.87,61896.44,12156.78,10953.4,1306.8,24416.98,86313.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,43789,4616.4,0.0,0.0,4616.4,0.0,907.94,358.3,1266.24,5882.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39183,9323.77,0.0,0.0,9323.77,110.46,4043.1,751.72,4905.28,14229.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,31428,58907.09,0.0,0.0,58907.09,12129.64,12424.5,4697.35,29251.49,88158.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23666,6118.34,0.0,386.17,6504.51,1780.02,1520.92,464.64,3765.58,10270.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,41105,64228.54,2961.72,3344.58,70534.84,13468.87,12167.35,5830.97,31467.19,102002.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,44042,90531.07,0.0,4526.6,95057.67,19714.8,9557.31,7799.6,37071.71,132129.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,51103,52102.34,1494.8,165.0,53762.14,11690.76,11536.1,4422.15,27649.01,81411.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,51286,22120.0,0.0,0.0,22120.0,5688.9,6690.11,1737.43,14116.44,36236.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34591,53583.06,17453.51,2098.88,73135.45,14971.98,10538.49,5677.4,31187.87,104323.32 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2533,Emergency Med Svcs Agency Spec,41688,111806.05,0.0,665.52,112471.57,22479.51,12316.98,9100.58,43897.07,156368.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,21294,75927.09,0.0,0.0,75927.09,15648.74,12424.5,5983.2,34056.44,109983.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,12277,108038.0,9091.04,11022.65,128151.69,24286.36,12424.5,9911.11,46621.97,174773.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,6721,63887.08,39060.48,4561.5,107509.06,13649.88,12424.5,8497.87,34572.25,142081.31 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,18135,85004.0,4793.5,7069.27,96866.77,18767.8,12424.5,7948.56,39140.86,136007.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,18704,78912.0,518.4,15707.58,95137.98,17411.74,6546.76,7347.31,31305.81,126443.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35673,66073.39,32670.34,2060.86,100804.59,18630.39,13019.27,7632.99,39282.65,140087.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,33798,56076.42,0.0,0.0,56076.42,12519.15,12424.5,4404.74,29348.39,85424.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,37039,100645.51,23913.66,1918.75,126477.92,21097.41,12346.67,9880.86,43324.94,169802.86 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,31127,86233.78,0.0,0.0,86233.78,17746.44,12418.65,6947.28,37112.37,123346.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,10564,7025.43,0.0,184.8,7210.23,1617.24,1290.23,591.91,3499.38,10709.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30728,670.5,0.0,0.0,670.5,0.0,0.0,47.29,47.29,717.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,36135,79569.65,8253.04,1131.0,88953.69,16638.89,12400.66,6733.96,35773.51,124727.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,9256,20499.0,1519.06,250.0,22268.06,4604.23,6212.25,1792.8,12609.28,34877.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6563,31500.57,2773.11,507.02,34780.7,7865.49,6264.46,2618.83,16748.78,51529.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,19089,74933.82,0.0,0.0,74933.82,15467.85,11639.98,5890.27,32998.1,107931.92 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,24826,71648.77,0.0,4431.0,76079.77,14754.11,11963.12,6323.22,33040.45,109120.22 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,49338,26409.21,0.0,0.0,26409.21,4914.76,5256.53,2049.27,12220.56,38629.77 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,33717,86596.33,14606.0,10209.5,111411.83,17849.03,12424.5,9105.09,39378.62,150790.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8497,105870.1,14935.65,10684.99,131490.74,22017.9,14206.46,2194.3,38418.66,169909.4 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,43056,75081.01,0.0,0.0,75081.01,15441.1,12424.5,5895.37,33760.97,108841.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,49052,54909.0,0.0,624.0,55533.0,12425.86,12424.5,4545.5,29395.86,84928.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,27615,0.0,0.0,164.27,164.27,0.0,0.0,12.56,12.56,176.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50152,54124.06,0.0,0.0,54124.06,12110.46,12424.5,4236.35,28771.31,82895.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23835,58412.99,574.05,4482.8,63469.84,12410.72,10344.65,5072.0,27827.37,91297.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,22337,41196.77,0.0,0.0,41196.77,5831.16,12382.69,3152.76,21366.61,62563.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24091,99743.47,10767.75,10827.36,121338.58,19870.95,10990.9,2761.29,33623.14,154961.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,48988,61091.92,0.0,617.47,61709.39,12716.03,12294.28,5122.43,30132.74,91842.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,33255,3150.16,0.0,0.0,3150.16,0.0,952.74,243.88,1196.62,4346.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,26948,67387.08,0.0,0.0,67387.08,13667.56,10513.04,5171.86,29352.46,96739.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,19443,1272.77,0.0,101.82,1374.59,0.0,279.25,106.42,385.67,1760.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,24221,70245.0,0.0,2679.55,72924.55,14498.35,12424.5,5766.69,32689.54,105614.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43392,122645.96,1180.2,14032.81,137858.97,26021.02,10857.94,9543.39,46422.35,184281.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,29714,118104.14,0.0,0.0,118104.14,23761.97,12424.5,9665.82,45852.29,163956.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22020,33582.78,4634.79,1614.36,39831.93,9029.51,10481.07,3008.42,22519.0,62350.93 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,4044,26770.36,0.0,1910.98,28681.34,3455.82,5458.12,2366.45,11280.39,39961.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,341,106606.8,0.0,8541.15,115147.95,0.0,0.0,9106.95,9106.95,124254.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,9117,67574.31,0.0,0.0,67574.31,13904.38,12424.5,5435.93,31764.81,99339.12 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8251,Fingerprint Technician 3,19696,72319.0,8301.84,1471.65,82092.49,15033.79,12424.5,6726.67,34184.96,116277.45 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,44496,59942.21,0.0,0.0,59942.21,12346.0,12328.92,4700.01,29374.93,89317.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,30522,57278.99,4212.47,4695.93,66187.39,12560.98,11171.6,5244.04,28976.62,95164.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,14929,93281.03,0.0,624.0,93905.03,19354.57,12424.5,7674.37,39453.44,133358.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14891,119467.38,57246.86,1847.96,178562.2,23621.0,12424.5,2998.42,39043.92,217606.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,3169,8056.0,0.0,0.0,8056.0,1499.22,955.73,626.89,3081.84,11137.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18567,56531.01,0.0,6347.46,62878.47,12681.39,12424.5,4897.23,30003.12,92881.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14465,54426.43,643.98,6215.95,61286.36,0.0,4743.06,4714.64,9457.7,70744.06 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,23283,48117.94,1653.16,0.0,49771.1,11533.1,12412.54,3868.32,27813.96,77585.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,25160,116502.64,0.0,189.67,116692.31,23472.02,12373.9,9562.79,45408.71,162101.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,344,29600.0,268.51,1195.04,31063.55,5730.96,4778.65,2498.74,13008.35,44071.9 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,2636,111409.47,0.0,0.0,111409.47,25410.85,12424.5,1849.7,39685.05,151094.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45674,30048.0,0.0,0.0,30048.0,5447.71,4587.51,2313.8,12349.02,42397.02 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",14348,68017.73,14640.15,4766.13,87424.01,16615.4,12172.19,1765.71,30553.3,117977.31 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,16750,18131.28,0.0,403.8,18535.08,3874.02,0.0,1465.98,5340.0,23875.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,20626,113129.62,9279.07,6801.37,129210.06,23598.96,12413.51,2189.09,38201.56,167411.62 +Calendar,2015,1,Public Protection,SHF,Sheriff,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,18781,51984.01,0.0,3386.33,55370.34,11781.67,7645.85,4568.54,23996.06,79366.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38949,3157.95,0.0,0.0,3157.95,0.0,1326.08,246.46,1572.54,4730.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,15853,22279.0,38.3,0.0,22317.3,5747.95,5256.52,1803.35,12807.82,35125.12 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11568,97763.74,74.11,6814.98,104652.83,25435.88,12424.5,1772.52,39632.9,144285.73 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5080,72013.11,1918.61,1978.73,75910.45,18191.46,9318.38,1364.91,28874.75,104785.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33462,116710.1,0.0,12308.48,129018.58,24371.77,10984.63,9325.06,44681.46,173700.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,20546,197904.73,427.95,250.0,198582.68,39807.94,12407.42,11118.55,63333.91,261916.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,48578,116976.01,0.0,4547.12,121523.13,24442.88,12424.5,9544.23,46411.61,167934.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47387,3361.08,0.0,96.8,3457.88,0.0,1427.62,283.81,1711.43,5169.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20053,43311.01,18953.1,4370.27,66634.38,10987.65,11008.82,5428.25,27424.72,94059.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,31638,11831.47,0.0,82.44,11913.91,7217.31,0.0,3447.13,10664.44,22578.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36228,36759.97,4407.59,1270.22,42437.78,9830.08,11480.0,3272.1,24582.18,67019.96 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,48576,30867.5,0.0,1166.03,32033.53,6599.43,6212.25,2649.92,15461.6,47495.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,3276,125284.02,0.0,0.0,125284.02,25213.78,12424.5,9918.13,47556.41,172840.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,35804,29970.0,6866.89,1768.6,38605.49,5626.54,5256.52,3040.02,13923.08,52528.57 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,40567,78007.4,1686.71,7201.54,86895.65,17102.32,12424.5,7037.05,36563.87,123459.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,20813,81942.02,26453.36,17628.89,126024.27,19524.62,12424.5,9757.94,41707.06,167731.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,15561,32008.52,0.0,1059.76,33068.28,7252.2,6451.18,2710.11,16413.49,49481.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",19976,93738.0,16248.99,3592.1,113579.09,19871.84,12424.51,9130.69,41427.04,155006.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,39017,117137.5,37051.83,3626.04,157815.37,23176.47,12424.5,2643.64,38244.61,196059.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40410,41696.57,382.53,535.83,42614.93,8420.72,6686.48,3888.56,18995.76,61610.69 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),30035,128772.42,0.0,1562.5,130334.92,26211.54,12424.5,9986.23,48622.27,178957.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,30318,9986.2,882.72,2114.43,12983.35,2402.11,2341.54,1016.33,5759.98,18743.33 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,15169,88643.78,27342.58,10070.6,126056.96,19391.75,11753.46,9852.96,40998.17,167055.13 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,18991,113270.21,0.0,0.0,113270.21,22789.37,12385.67,8786.62,43961.66,157231.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,53148,3859.0,434.14,0.0,4293.14,718.16,477.86,338.59,1534.61,5827.75 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,14147,38899.52,0.0,4320.0,43219.52,9508.97,10224.83,3566.44,23300.24,66519.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39849,5909.47,0.0,0.0,5909.47,0.0,2562.56,472.45,3035.01,8944.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,23293,21354.0,0.0,0.0,21354.0,4810.05,5734.38,1740.84,12285.27,33639.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23628,114020.34,6198.95,15722.41,135941.7,25037.86,14335.96,2264.15,41637.97,177579.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,51843,140307.48,3027.72,5061.51,148396.71,27806.23,12364.77,2208.75,42379.75,190776.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,46874,54124.03,0.0,3683.18,57807.21,12926.91,12424.5,5321.99,30673.4,88480.61 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8435,"Div Director, Adult Probation",29073,126507.1,0.0,0.0,126507.1,28870.28,12424.5,9850.48,51145.26,177652.36 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,5896,19734.01,0.0,0.0,19734.01,4426.32,2867.19,1593.88,8887.39,28621.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,23498,97762.85,0.0,2904.99,100667.84,24484.95,12424.5,137.27,37046.72,137714.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18670,11385.04,0.0,338.39,11723.43,0.0,4936.95,944.98,5881.93,17605.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,22900,109485.13,22291.18,11065.41,142841.72,23599.03,12490.21,2358.72,38447.96,181289.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9117,Pr Fare Collections Receiver,8802,31437.0,49.12,11711.16,43197.28,7051.32,4300.79,3513.27,14865.38,58062.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,18488,46524.42,108.93,361.0,46994.35,0.0,5740.35,3642.79,9383.14,56377.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,19156,160284.53,860.73,11111.92,172257.18,31616.44,12424.5,2881.1,46922.04,219179.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36108,15653.67,0.0,870.86,16524.53,3896.75,5187.82,1364.87,10449.44,26973.97 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,41306,49350.8,0.0,600.0,49950.8,9737.15,7693.63,4131.96,21562.74,71513.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,47015,77071.04,0.0,1380.0,78451.04,16165.25,12424.5,6239.7,34829.45,113280.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25301,12459.49,716.5,173.48,13349.47,3243.54,3841.91,1043.01,8128.46,21477.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,29872,53408.55,471.15,0.0,53879.7,11035.15,11993.53,4326.94,27355.62,81235.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,277,25143.3,0.0,761.22,25904.52,0.0,2054.82,2010.6,4065.42,29969.94 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),18026,126471.0,0.0,1500.0,127971.0,25727.79,12424.5,9925.73,48078.02,176049.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,45170,116976.04,0.0,150.57,117126.61,23566.77,12424.49,9550.83,45542.09,162668.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,13649,41710.0,0.0,0.0,41710.0,8370.8,9557.31,3375.89,21304.0,63014.0 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,10004,26759.0,0.0,0.0,26759.0,4979.87,3822.92,2142.36,10945.15,37704.15 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,33498,41725.43,2862.27,1786.21,46373.91,10159.61,11275.23,3549.94,24984.78,71358.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,28278,81768.4,1658.32,3946.05,87372.77,17447.17,12281.15,6937.23,36665.55,124038.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,4893,65817.7,4571.69,0.0,70389.39,13551.36,12424.5,5687.41,31663.27,102052.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,16387,84636.48,14036.74,3515.53,102188.75,17570.31,12423.43,7954.63,37948.37,140137.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,20969,0.0,0.0,902.25,902.25,0.0,68.5,69.02,137.52,1039.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,4360,48609.2,11967.37,7985.61,68562.18,11773.34,11182.06,5616.08,28571.48,97133.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2922,Senior Medical Social Worker,41991,95697.67,0.0,0.0,95697.67,19724.34,12204.08,7945.83,39874.25,135571.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",45973,106090.01,21653.23,5149.18,132892.42,22465.37,12424.5,9946.42,44836.29,177728.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45747,116136.53,1289.62,11226.92,128653.07,12774.96,0.0,8941.17,21716.13,150369.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H032,"Capt,Fire Prev Or Fire Invsgtn",37457,168860.28,51425.12,10131.62,230417.02,35293.56,12424.5,3929.83,51647.89,282064.91 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,47266,18888.52,0.0,284.64,19173.16,4453.0,5644.79,1501.52,11599.31,30772.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22925,48848.2,7899.05,2180.02,58927.27,13521.81,9593.16,4551.95,27666.92,86594.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17197,112170.35,58914.84,28057.13,199142.32,27158.37,15052.76,3325.86,45536.99,244679.31 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49937,42214.15,54.2,2440.01,44708.36,8288.96,10728.08,3574.83,22591.87,67300.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,32049,130833.55,33976.79,16623.23,181433.57,29034.31,15196.11,3046.74,47277.16,228710.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,22891,8808.21,0.0,0.0,8808.21,1975.68,1990.13,735.69,4701.5,13509.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30597,7052.8,0.0,0.0,7052.8,0.0,3058.34,560.97,3619.31,10672.11 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,7729,132129.02,0.0,0.0,132129.02,26491.2,12424.5,23973.19,62888.89,195017.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31220,113902.96,23685.2,23204.06,160792.22,25124.31,15243.91,2523.37,42891.59,203683.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",7250,85229.01,16286.31,1715.58,103230.9,17760.17,11179.0,8273.98,37213.15,140444.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,79,37675.31,0.0,81.0,37756.31,8943.01,11419.5,3046.4,23408.91,61165.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7100,Administrative-Labor & Trades,7108,Heavy Equip Ops Asst Sprv,26723,57597.2,0.0,615.25,58212.45,13009.09,6690.11,4783.87,24483.07,82695.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37211,54518.93,8121.82,603.79,63244.54,14968.06,10738.47,5439.24,31145.77,94390.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16223,68952.84,21922.5,7390.9,98266.24,20934.04,13583.51,7472.69,41990.24,140256.48 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,22456,16261.78,0.0,0.0,16261.78,3013.82,961.71,279.77,4255.3,20517.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,17918,133939.0,0.0,0.0,133939.0,26928.36,12424.48,10027.26,49380.1,183319.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,10219,83699.01,419.87,2230.0,86348.88,17710.99,12424.5,7111.29,37246.78,123595.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22889,19496.32,0.0,1713.77,21210.09,0.0,5281.96,1643.83,6925.79,28135.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,2800,40958.49,13234.3,0.0,54192.79,10016.17,9742.48,4339.09,24097.74,78290.53 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45416,137724.03,0.0,1562.5,139286.53,28028.62,12418.53,10008.16,50455.31,189741.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,47205,135421.0,0.0,13901.17,149322.17,30050.97,12424.51,10266.57,52742.05,202064.22 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,6854,56276.0,81.26,1620.15,57977.41,12731.53,12424.5,4745.06,29901.09,87878.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,2043,46572.33,2347.56,625.2,49545.09,9391.14,8255.78,4009.57,21656.49,71201.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,44056,40112.2,266.7,2886.68,43265.58,7524.07,10704.19,3447.53,21675.79,64941.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,22939,0.0,0.0,532.52,532.52,0.0,68.5,40.74,109.24,641.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",9300,Port Operation,9345,Sheet Metal Supervisor 1,7175,65002.98,536.34,13224.57,78763.89,14824.13,7167.21,6458.64,28449.98,107213.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,13070,80570.0,0.0,1601.84,82171.84,16949.93,12424.5,6443.13,35817.56,117989.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2393,11385.07,0.0,0.0,11385.07,1807.18,4936.95,911.31,7655.44,19040.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7253,Electrical Trnst Mech Sprv 1,49691,45408.0,1586.7,21438.77,68433.47,10185.01,5256.52,5512.65,20954.18,89387.65 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,43302,67261.02,4410.61,2155.93,73827.56,14159.03,12424.5,6043.09,32626.62,106454.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15959,97760.04,12906.18,9293.26,119959.48,26039.27,12424.51,1987.38,40451.16,160410.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",5403,85004.44,8468.38,5021.96,98494.78,12331.96,11259.71,7793.45,31385.12,129879.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,37908,70245.0,0.0,10425.45,80670.45,15660.48,12424.5,6579.45,34664.43,115334.88 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),17190,159688.81,0.0,1562.5,161251.31,32441.49,12424.5,10517.28,55383.27,216634.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,7251,81157.05,10127.45,9586.93,100871.43,17502.59,12424.49,7998.88,37925.96,138797.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21615,124765.1,9892.88,9459.76,144117.74,25161.64,12424.5,2225.81,39811.95,183929.69 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",12435,2062.8,0.0,66.46,2129.26,0.0,430.07,164.99,595.06,2724.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17985,51582.27,0.0,8151.67,59733.94,3178.33,0.0,6132.49,9310.82,69044.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",16870,88374.47,2518.79,4375.08,95268.34,18821.72,11731.6,7863.19,38416.51,133684.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",7306,5245.96,0.0,0.0,5245.96,1176.67,699.65,442.95,2319.27,7565.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,10866,104598.0,0.0,0.0,104598.0,21558.0,12424.5,8549.91,42532.41,147130.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",1355,9784.12,0.0,0.0,9784.12,0.0,2329.59,759.4,3088.99,12873.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",26319,150972.8,48274.95,22124.04,221371.79,33403.12,14551.01,3730.68,51684.81,273056.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,15247,128007.54,0.0,0.0,128007.54,25743.98,12412.56,17144.95,55301.49,183309.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,46877,21646.01,0.0,0.0,21646.01,5584.67,6546.76,1712.29,13843.72,35489.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42960,144152.9,0.0,250.0,144402.9,29000.82,12376.72,10177.02,51554.56,195957.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,52857,59103.23,336.3,3064.2,62503.73,12531.22,12424.5,5035.3,29991.02,92494.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47593,64371.45,5435.67,1437.33,71244.45,17980.68,12679.98,5383.14,36043.8,107288.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,12637,88831.0,23051.76,9223.03,121105.79,19194.42,12424.5,9764.45,41383.37,162489.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50855,6144.5,0.0,0.0,6144.5,0.0,2604.36,492.33,3096.69,9241.19 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,14656,94608.7,0.0,0.0,94608.7,18529.13,9557.31,13335.81,41422.25,136030.95 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,49717,71459.9,0.0,0.0,71459.9,14718.39,12424.5,5326.36,32469.25,103929.15 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,8586,89012.69,25590.37,7234.99,121838.05,18861.75,11803.45,9744.35,40409.55,162247.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,46971,72182.78,0.0,0.0,72182.78,14818.3,11889.93,5683.25,32391.48,104574.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38441,9367.02,0.0,1028.1,10395.12,1562.8,4061.86,843.28,6467.94,16863.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23197,35163.2,0.0,2241.11,37404.31,1865.88,0.0,956.79,2822.67,40226.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36272,9522.32,0.0,231.24,9753.56,2561.63,716.32,365.7,3643.65,13397.21 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46165,2604.7,0.0,157.5,2762.2,0.0,1111.34,213.85,1325.19,4087.39 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,35381,2669.04,0.0,0.0,2669.04,0.0,459.94,207.05,666.99,3336.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52660,76.48,0.0,367.14,443.62,1839.82,5.85,30.56,1876.23,2319.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7249,Automotive Mechanic Sprv 1,50280,107816.04,10493.98,19651.7,137961.72,25227.69,12424.5,10080.1,47732.29,185694.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35353,38768.81,4178.13,1273.19,44220.13,10406.53,12113.82,3372.27,25892.62,70112.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33710,63682.28,7694.25,5525.34,76901.87,18872.58,12542.67,5784.43,37199.68,114101.55 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,19800,17915.0,111.78,0.0,18026.78,0.0,4300.79,1449.93,5750.72,23777.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,15490,92435.86,0.0,0.0,92435.86,19027.69,10823.65,7378.31,37229.65,129665.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,14308,33091.5,0.0,300.0,33391.5,6216.46,4778.65,2493.9,13489.01,46880.51 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,44986,0.0,0.0,14905.24,14905.24,0.0,68.5,1140.25,1208.75,16113.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,105,100554.01,0.0,0.0,100554.01,20724.83,12424.52,8052.39,41201.74,141755.75 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,22515,7497.0,78.09,0.0,7575.09,1648.59,1433.59,583.16,3665.34,11240.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,17766,107216.33,0.0,0.0,107216.33,22105.03,12424.5,8512.53,43042.06,150258.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,40844,48346.22,2006.78,0.0,50353.0,11582.79,12424.5,4087.57,28094.86,78447.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7284,Utility Plumber Supervisor 2,41151,125004.0,4092.75,15900.69,144997.44,26502.21,12424.5,10204.04,49130.75,194128.19 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,12169,52307.15,417.51,3885.58,56610.24,11088.62,9988.82,4691.0,25768.44,82378.68 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,37815,137611.13,0.0,41.05,137652.18,27593.18,11946.64,9803.44,49343.26,186995.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,6290,3531.78,0.0,0.0,3531.78,0.0,537.6,283.32,820.92,4352.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3750,98694.38,3324.08,4539.79,106558.25,20474.61,12412.56,1725.05,34612.22,141170.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,6321,100753.8,0.0,0.0,100753.8,20755.79,12424.5,7907.68,41087.97,141841.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,32010,11150.88,0.0,0.0,11150.88,0.0,4835.4,893.18,5728.58,16879.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,30116,49296.7,1150.37,40.0,50487.07,10037.92,10943.11,3988.72,24969.75,75456.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,23442,56504.0,7601.69,8133.38,72239.07,12749.77,12418.53,5929.85,31098.15,103337.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,50068,61428.11,0.0,1924.0,63352.11,13055.66,12424.51,4953.78,30433.95,93786.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,49090,62811.0,131.88,874.0,63816.88,13074.36,12424.5,5193.05,30691.91,94508.79 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,9861,63818.81,0.0,0.0,63818.81,13138.96,12424.5,5132.27,30695.73,94514.54 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,17865,130642.9,0.0,0.0,130642.9,25247.66,8601.58,14772.52,48621.76,179264.66 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,51304,20606.38,864.28,520.0,21990.66,0.0,5756.78,1776.24,7533.02,29523.68 +Calendar,2015,1,Public Protection,PDR,Public Defender,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,11683,69247.0,0.0,0.0,69247.0,14272.17,12424.5,5698.43,32395.1,101642.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11995,68711.35,26165.06,7987.05,102863.46,21048.93,13540.44,7836.69,42426.06,145289.52 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,39253,58782.01,584.55,3432.05,62798.61,12470.13,12424.5,5192.49,30087.12,92885.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31546,113031.34,31605.7,19390.04,164027.08,25035.03,15148.34,2766.32,42949.69,206976.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,1452,74421.81,0.0,0.0,74421.81,15093.35,10513.04,5949.0,31555.39,105977.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",11939,9031.5,0.0,0.0,9031.5,0.0,2150.4,23.9,2174.3,11205.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,10338,67250.45,0.0,623.9,67874.35,13989.11,12422.54,5418.02,31829.67,99704.02 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,11789,105108.17,0.0,12574.82,117682.99,23588.2,12167.53,9870.85,45626.58,163309.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,46739,2265.46,0.0,0.0,2265.46,0.0,596.8,175.83,772.63,3038.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,8504,16671.0,793.92,1915.5,19380.42,3458.93,2867.19,1510.79,7836.91,27217.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28619,101788.27,52241.1,17989.36,172018.73,23651.78,15052.75,2863.22,41567.75,213586.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",11101,9884.48,37.63,0.0,9922.11,0.0,2353.48,769.75,3123.23,13045.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52089,8015.29,0.0,0.0,8015.29,0.0,3414.65,645.01,4059.66,12074.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",45417,97970.29,8264.71,1196.7,107431.7,20303.36,12422.11,8582.69,41308.16,148739.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,25824,116976.02,0.0,4295.26,121271.28,24406.83,12424.5,9706.66,46537.99,167809.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33094,127483.79,0.0,27278.47,154762.26,30516.42,10945.15,7227.58,48689.15,203451.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,45362,4473.22,0.0,165.68,4638.9,1020.1,967.68,368.43,2356.21,6995.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,24162,83138.63,0.0,600.0,83738.63,17226.89,12209.47,6862.78,36299.14,120037.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,32616,69585.05,841.76,2565.69,72992.5,14370.34,12424.5,6041.06,32835.9,105828.4 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,34913,161070.14,0.0,0.0,161070.14,32366.1,12424.5,17750.63,62541.23,223611.37 +Calendar,2015,4,Community Health,DPH,Public Health,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,21412,77128.61,0.0,2720.0,79848.61,16675.42,11049.27,6397.22,34121.91,113970.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,49075,166171.01,3835.69,952.65,170959.35,33441.88,12424.5,10623.91,56490.29,227449.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,43787,20935.99,0.0,558.29,21494.28,0.0,5626.87,1665.86,7292.73,28787.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29326,43990.97,7574.82,1848.58,53414.37,12235.99,13381.32,4051.47,29668.78,83083.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,49519,81942.01,0.0,10277.26,92219.27,19009.63,12424.5,7358.31,38792.44,131011.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7254,Automotive Machinist Sprv 1,35306,47608.0,1217.25,0.0,48825.25,10696.64,5256.52,4022.23,19975.39,68800.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,35722,66102.01,1832.09,0.0,67934.1,13624.06,12424.5,5585.69,31634.25,99568.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25508,111713.82,0.0,12453.61,124167.43,24275.09,12706.74,1235.38,38217.21,162384.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46160,51325.3,12010.26,675.88,64011.44,11488.7,11524.27,5150.43,28163.4,92174.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16198,112170.34,58177.06,17416.45,187763.85,24680.76,15052.76,3201.99,42935.51,230699.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20507,147698.47,0.0,26594.16,174292.63,32533.15,12307.07,8957.58,53797.8,228090.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",28626,915.0,0.0,0.0,915.0,0.0,0.0,72.4,72.4,987.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19891,17733.92,2653.15,821.0,21208.07,4446.0,5476.46,1620.38,11542.84,32750.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2484,Biologist III,37335,119321.01,0.0,0.0,119321.01,24013.56,12424.5,9623.38,46061.44,165382.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,48380,2254.0,0.0,24.77,2278.77,0.0,764.59,176.85,941.44,3220.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49465,113233.6,3285.06,18140.77,134659.43,24917.39,15196.12,2283.29,42396.8,177056.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,33109,41972.04,0.0,0.0,41972.04,8644.31,6044.34,3325.57,18014.22,59986.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,9395,"Property Manager, Port",52917,21271.25,0.0,0.0,21271.25,3958.6,2461.01,1675.41,8095.02,29366.27 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,37507,49548.34,0.0,820.0,50368.34,10068.78,5908.21,4052.17,20029.16,70397.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32757,65670.38,20696.83,5440.33,91807.54,19453.89,12938.44,7204.94,39597.27,131404.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,41770,9754.6,0.0,61.31,9815.91,0.0,0.0,776.35,776.35,10592.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",43805,29966.97,0.0,0.0,29966.97,0.0,6270.19,2325.6,8595.79,38562.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36000,47267.2,284.47,5536.7,53088.37,12168.11,12424.5,4266.04,28858.65,81947.02 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27840,56531.0,0.0,624.0,57155.0,11780.12,12424.5,4499.18,28703.8,85858.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,52167,138635.97,36550.22,21836.63,197022.82,27392.94,12424.5,3351.43,43168.87,240191.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41262,3641.6,0.0,0.0,3641.6,0.0,1529.17,290.36,1819.53,5461.13 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,47348,80915.78,4972.23,3802.72,89690.73,17388.38,11841.44,7270.45,36500.27,126191.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51964,56163.3,275.09,894.98,57333.37,10885.46,8601.58,3973.63,23460.67,80794.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12598,63671.24,4980.79,723.04,69375.07,15671.58,13155.21,5294.52,34121.31,103496.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,47165,181945.0,0.0,0.0,181945.0,36616.95,12424.5,10922.65,59964.1,241909.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14749,31300.0,0.0,441.56,31741.56,5754.77,4778.65,2454.21,12987.63,44729.19 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,52180,104811.01,1902.85,0.0,106713.86,21601.92,12424.5,8752.16,42778.58,149492.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",27438,73580.0,6749.55,4414.8,84744.35,16737.63,6212.25,1432.42,24382.3,109126.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36033,756.92,227.08,0.0,984.0,214.21,238.93,74.59,527.73,1511.73 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20307,19442.0,0.0,0.0,19442.0,4275.3,4778.65,1556.78,10610.73,30052.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,48590,92814.45,5434.57,5080.52,103329.54,19346.75,11946.64,1678.12,32971.51,136301.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,50080,46611.55,0.0,0.0,46611.55,9840.21,7348.44,3814.45,21003.1,67614.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15108,68141.43,5861.71,959.3,74962.44,18920.79,13426.71,5727.48,38074.98,113037.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3570,91306.34,13082.7,13262.92,117651.96,20487.24,12436.45,1953.74,34877.43,152529.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22833,112696.16,18635.04,4363.73,135694.93,22291.43,12424.5,2257.26,36973.19,172668.12 +Calendar,2015,1,Public Protection,PDR,Public Defender,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,3995,66601.01,0.0,0.0,66601.01,13713.82,12424.5,5418.19,31556.51,98157.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,22963,46463.05,0.0,4491.48,50954.53,10751.68,10274.11,4084.44,25110.23,76064.76 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,17014,106116.01,0.0,0.0,106116.01,21870.85,12424.5,8727.06,43022.41,149138.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,20442,81776.02,0.0,624.0,82400.02,16983.28,12424.5,6580.98,35988.76,118388.78 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,52498,89664.97,0.0,0.0,89664.97,16736.47,6724.46,7118.17,30579.1,120244.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,41589,67261.02,48.21,83.86,67393.09,13881.48,12424.5,5537.27,31843.25,99236.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35904,124911.43,31961.91,8324.44,165197.78,24786.71,12424.5,2767.61,39978.82,205176.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,5855,70329.42,0.0,0.0,70329.42,14458.87,12209.46,5710.49,32378.82,102708.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21744,86617.43,31798.69,73737.81,192153.93,20988.48,11277.62,3059.99,35326.09,227480.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24312,67618.68,21944.44,4822.67,94385.79,19834.28,13326.71,7166.16,40327.15,134712.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32860,756.92,227.08,0.0,984.0,214.21,238.93,74.4,527.54,1511.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,41373,113223.0,62000.67,18336.03,193559.7,25661.83,15196.12,3202.63,44060.58,237620.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,42401,11433.82,0.0,220.0,11653.82,2562.68,2389.33,942.64,5894.65,17548.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,40164,30457.01,0.0,0.0,30457.01,5668.05,3822.92,2352.67,11843.64,42300.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12295,19008.0,0.0,0.0,19008.0,4904.06,4730.87,1552.95,11187.88,30195.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8121,Investigator/Transit Fare Supv,28927,71194.11,0.0,162.0,71356.11,15006.72,10035.18,5713.47,30755.37,102111.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,29162,0.0,0.0,260.5,260.5,0.0,0.0,19.92,19.92,280.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1777,Media/Security Sys Spec,27523,33402.47,0.0,39.0,33441.47,0.0,5280.41,2592.49,7872.9,41314.37 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,34170,93681.04,0.0,1034.32,94715.36,19523.15,12424.5,7813.1,39760.75,134476.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2238,0.0,0.0,772.14,772.14,0.0,68.5,59.07,127.57,899.71 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,20476,111918.02,0.0,100.0,112018.02,22810.95,12424.5,9023.3,44258.75,156276.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50945,4414.28,0.0,261.54,4675.82,1249.24,968.94,338.16,2556.34,7232.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44237,119406.66,0.0,9743.07,129149.73,23767.92,12418.53,2200.11,38386.56,167536.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16036,20576.43,0.0,822.12,21398.55,1964.12,1753.16,1432.19,5149.47,26548.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,40251,61583.08,0.0,0.0,61583.08,13757.77,12424.5,4757.94,30940.21,92523.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14371,122618.98,2483.23,12593.75,137695.96,25370.78,11037.2,4986.35,41394.33,179090.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,26361,20802.85,0.0,258.5,21061.35,4576.44,4724.89,1656.55,10957.88,32019.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,6530,108714.58,0.0,0.0,108714.58,22829.76,8601.58,18962.41,50393.75,159108.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,17780,24575.78,0.0,0.0,24575.78,0.0,4118.6,1905.21,6023.81,30599.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30229,67930.38,25523.72,5594.81,99048.91,20177.09,0.0,7791.23,27968.32,127017.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,352.0,Municipal Executive Association - Fire,0900,Management,H051,Assistant Deputy Chief 2,45271,222619.74,0.0,17809.57,240429.31,47066.4,11946.64,13341.82,72354.86,312784.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,15588,57390.92,1573.03,1107.62,60071.57,12971.37,12087.37,4766.29,29825.03,89896.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,27314,29674.81,907.14,1274.42,31856.37,7609.39,6642.33,2566.56,16818.28,48674.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,14138,11197.89,0.0,0.0,11197.89,0.0,3637.75,902.94,4540.69,15738.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20629,56531.0,2000.12,1119.35,59650.47,11882.36,12424.5,4934.63,29241.49,88891.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,53192,122156.29,4003.56,29756.35,155916.2,26257.39,10819.47,5143.8,42220.66,198136.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23295,7795.45,0.0,0.0,7795.45,0.0,2601.39,604.52,3205.91,11001.36 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1370,Special Assistant 11,14888,43029.13,0.0,0.0,43029.13,0.0,5477.53,3335.49,8813.02,51842.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,25582,49679.01,0.0,2792.7,52471.71,11965.06,12424.5,4295.17,28684.73,81156.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,32973,83556.29,2639.3,8652.48,94848.07,18521.25,12336.4,7826.42,38684.07,133532.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50652,56.9,0.0,0.0,56.9,0.0,23.89,4.42,28.31,85.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,48005,16859.63,0.0,1541.87,18401.5,4406.28,4717.37,1360.07,10483.72,28885.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,44936,66102.0,687.02,482.84,67271.86,13718.76,12424.5,5398.52,31541.78,98813.64 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,43184,59367.78,0.0,0.0,59367.78,10763.35,5256.52,7317.18,23337.05,82704.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,26359,148541.6,0.0,0.0,148541.6,29866.2,12424.5,25285.81,67576.51,216118.11 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,51563,71311.02,0.0,624.0,71935.02,14826.41,12424.5,5690.58,32941.49,104876.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,13317,86844.92,0.0,0.0,86844.92,17898.9,12119.86,6720.22,36738.98,123583.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12026,8602.49,0.0,0.0,8602.49,0.0,3730.34,666.01,4396.35,12998.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19892,62842.4,7340.58,2351.79,72534.77,15859.88,13301.33,5539.8,34701.01,107235.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35291,15070.37,0.0,2630.94,17701.31,236.34,0.0,572.61,808.95,18510.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,333,3679.0,0.0,0.0,3679.0,684.66,477.85,273.64,1436.15,5115.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2051,3526.4,0.0,0.0,3526.4,0.0,1529.17,280.48,1809.65,5336.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8121,Investigator/Transit Fare Supv,20113,2405.77,0.0,150.0,2555.77,539.62,342.87,245.75,1128.24,3684.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,14549,32842.27,0.0,0.0,32842.27,7222.02,5238.61,2597.26,15057.89,47900.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,25016,93379.73,21560.55,7411.47,122351.75,19253.14,12376.72,9752.56,41382.42,163734.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,5192,112685.45,54727.35,13584.99,180997.79,22330.92,12424.49,2998.45,37753.86,218751.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,3660,5998.13,0.0,150.0,6148.13,1379.02,896.0,512.97,2787.99,8936.12 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,8568,18329.06,0.0,3000.0,21329.06,3411.06,3136.0,1757.88,8304.94,29634.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,13422,66102.0,0.0,294.29,66396.29,13626.3,12424.49,5371.04,31421.83,97818.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25037,68147.78,2555.32,4334.5,75037.6,16501.52,13427.36,5733.26,35662.14,110699.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52346,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.23,5147.57,17667.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,10196,7220.3,0.0,656.76,7877.06,0.0,0.0,623.09,623.09,8500.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5676,42952.95,4543.58,1521.76,49018.29,11556.22,13209.45,3716.41,28482.08,77500.37 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,31285,75072.43,0.0,1200.0,76272.43,15718.12,12424.5,5920.0,34062.62,110335.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,9906,85192.68,11888.45,700.0,97781.13,17704.25,12424.5,7809.94,37938.69,135719.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49906,120806.95,41861.86,11567.98,174236.79,23879.39,12424.5,2916.44,39220.33,213457.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,36016,60731.02,0.0,0.0,60731.02,12113.15,9079.44,4926.54,26119.13,86850.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15686,113233.59,20203.98,20967.35,154404.92,25426.36,15196.12,2631.49,43253.97,197658.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6561,11460.81,0.0,0.0,11460.81,0.0,4969.8,917.18,5886.98,17347.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40867,61836.6,2175.43,980.38,64992.41,12744.33,9956.15,5388.59,28089.07,93081.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,29279,75028.0,0.0,0.0,75028.0,15463.6,12424.51,6106.88,33994.99,109022.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34843,69794.37,27862.36,540.85,98197.58,19242.41,13754.23,7633.71,40630.35,138827.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24319,718.2,0.0,0.0,718.2,0.0,391.25,55.61,446.86,1165.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,8885,86416.69,0.0,0.0,86416.69,15570.95,12005.57,6804.4,34380.92,120797.61 +Calendar,2015,6,General Administration & Finance,REG,Elections,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,21795,44999.32,0.0,0.0,44999.32,10055.83,6690.11,3588.34,20334.28,65333.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,32774,15586.02,0.0,1271.62,16857.64,2402.13,3222.12,1334.88,6959.13,23816.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40982,65465.1,7657.73,697.07,73819.9,15030.79,12894.3,5598.92,33524.01,107343.91 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,42287,72476.76,1979.53,3567.55,78023.84,15350.6,10378.29,6317.74,32046.63,110070.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17159,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3376.05,18201.9,61969.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5304,Materials Testing Aide,25333,35273.02,122.79,0.0,35395.81,6872.9,7645.86,2795.23,17313.99,52709.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31616,32314.69,0.0,284.62,32599.31,8929.98,6218.64,1674.94,16823.56,49422.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25453,39453.15,0.0,7033.05,46486.2,746.52,0.0,5989.56,6736.08,53222.28 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",10947,91011.98,11002.93,5997.65,108012.56,22003.63,12608.18,2133.59,36745.4,144757.96 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,46248,92398.3,0.0,4619.92,97018.22,19532.57,4889.16,7745.03,32166.76,129184.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50859,1103.25,0.0,41.37,1144.62,0.0,0.0,19.51,19.51,1164.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,47130,10368.2,0.0,0.0,10368.2,0.0,3401.8,804.46,4206.26,14574.46 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,15257,140007.88,0.0,14000.79,154008.67,30878.45,11948.91,10344.75,53172.11,207180.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,12243,95558.02,14261.83,5.0,109824.85,19712.94,12424.39,8816.05,40953.38,150778.23 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",49359,2776.0,0.0,4991.6,7767.6,622.66,382.3,596.78,1601.74,9369.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,44426,147149.0,0.0,0.0,147149.0,29613.71,12424.5,17543.18,59581.39,206730.39 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,15793,84599.1,0.0,2862.91,87462.01,18028.14,12424.5,7132.86,37585.5,125047.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,343,98157.01,0.0,0.0,98157.01,20230.58,12424.5,7748.91,40403.99,138561.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,11721,3846.22,1403.8,108.69,5358.71,0.0,1143.89,415.93,1559.82,6918.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,39327,118019.37,0.0,0.0,118019.37,23749.85,12415.54,9318.64,45484.03,163503.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49803,13677.47,0.0,1709.7,15387.17,3302.09,1514.72,260.51,5077.32,20464.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,37830,69693.14,0.0,0.0,69693.14,14357.52,11467.05,5607.11,31431.68,101124.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13434,102809.86,49609.62,10435.85,162855.33,22468.93,15196.12,2589.15,40254.2,203109.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12107,112170.35,21511.3,20324.1,154005.75,25219.9,15052.76,2612.05,42884.71,196890.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,9327,202890.2,0.0,0.0,202890.2,40831.91,12424.5,25868.48,79124.89,282015.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50919,1735.65,0.0,0.0,1735.65,0.0,752.64,134.37,887.01,2622.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,32423,61797.74,0.0,960.0,62757.74,12837.75,11409.04,5385.35,29632.14,92389.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7276,Electrician Supervisor 2,14640,26748.0,0.0,1890.9,28638.9,5914.14,2867.19,2352.23,11133.56,39772.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,3602,81157.06,2888.59,10072.32,94117.97,18694.98,12424.49,7720.65,38840.12,132958.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,16865,64947.8,0.0,1634.33,66582.13,2506.22,4736.85,5106.94,12350.01,78932.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,34123,72943.54,0.0,0.0,72943.54,0.0,5704.52,5654.68,11359.2,84302.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45284,8859.15,0.0,0.0,8859.15,1839.03,744.68,2244.38,4828.09,13687.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,3182,96254.03,0.0,0.0,96254.03,19838.21,12376.71,7821.26,40036.18,136290.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),39833,109574.01,0.0,1500.0,111074.01,22618.66,12424.5,8882.17,43925.33,154999.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,3567,60105.0,0.0,6243.15,66348.15,13472.31,12089.99,5679.13,31241.43,97589.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,43632,5751.5,0.0,0.0,5751.5,0.0,1869.65,446.41,2316.06,8067.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7949,6983.75,0.0,105.66,7089.41,0.0,0.0,560.83,560.83,7650.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,21967,19701.0,0.0,0.0,19701.0,0.0,2496.84,1526.79,4023.63,23724.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,13002,59292.1,1300.2,177.38,60769.68,12208.41,12424.5,4908.33,29541.24,90310.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,7202,74624.82,0.0,1959.2,76584.02,15776.19,9939.6,6344.83,32060.62,108644.64 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,13873,107562.01,0.0,5068.5,112630.51,21660.43,12424.5,31979.17,66064.1,178694.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5209,Industrial Engineer,38853,116976.01,0.0,0.0,116976.01,23541.49,12424.5,9539.26,45505.25,162481.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,47084,67846.14,0.0,8036.22,75882.36,15491.91,12412.55,6142.94,34047.4,109929.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,27151,39212.0,193.95,600.0,40005.95,0.0,5543.23,3104.64,8647.87,48653.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22069,0.0,0.0,250.0,250.0,0.0,68.5,0.0,68.5,318.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50910,44155.7,0.0,200.0,44355.7,6689.94,10216.46,3594.17,20500.57,64856.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,23219,97669.01,577.65,0.0,98246.66,20130.42,12424.5,7817.56,40372.48,138619.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,48793,28527.32,6633.94,2926.42,38087.68,7277.18,6994.76,3046.98,17318.92,55406.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,33255,207.38,0.0,0.0,207.38,0.0,62.72,16.06,78.78,286.16 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,33446,74412.07,0.0,3000.0,77412.07,15345.94,12424.5,6433.2,34203.64,111615.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,53148,77954.04,552.54,9284.75,87791.33,17967.31,11946.64,7227.09,37141.04,124932.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36813,112159.75,54894.57,22441.73,189496.05,25559.74,15052.76,3223.46,43835.96,233332.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7317,Senior Water Service Inspector,52178,117750.04,0.0,0.0,117750.04,23696.97,12424.5,9262.4,45383.87,163133.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,10361,93281.16,0.0,0.0,93281.16,19225.85,12424.5,7686.71,39337.06,132618.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41853,36935.5,2802.18,960.75,40698.43,8869.26,8267.07,3114.66,20250.99,60949.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,28288,2858.64,0.0,153.55,3012.19,675.64,627.2,307.0,1609.84,4622.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,12558,31933.4,504.74,1987.88,34426.02,5953.64,8506.0,2744.09,17203.73,51629.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41699,62196.46,138.6,7749.65,70084.71,13354.48,11024.36,5514.48,29893.32,99978.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,5438,17155.56,0.0,96.0,17251.56,3210.52,1911.46,1389.89,6511.87,23763.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,7579,37395.56,0.0,0.0,37395.56,8999.78,8267.05,2997.45,20264.28,57659.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,5371,119321.01,0.0,0.0,119321.01,24013.56,12424.5,9797.25,46235.31,165556.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,32454,6331.56,0.0,148.27,6479.83,0.0,0.0,511.95,511.95,6991.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",52788,800.0,0.0,0.0,800.0,0.0,95.58,62.01,157.59,957.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8204,Institutional Police Officer,42212,73583.0,40949.41,8265.9,122798.31,18680.26,12424.5,2332.93,33437.69,156236.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,46215,8505.0,0.0,13194.81,21699.81,1923.81,1433.6,1728.79,5086.2,26786.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31901,56531.0,0.0,7581.63,64112.63,12761.09,12424.5,5287.75,30473.34,94585.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9236,Airport Ground Transport Tech,38778,33415.0,852.25,0.0,34267.25,6507.01,6690.12,2832.14,16029.27,50296.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,6792,7606.98,0.0,0.0,7606.98,0.0,2486.39,588.94,3075.33,10682.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,7550,2115.0,0.0,0.0,2115.0,474.39,477.86,163.56,1115.81,3230.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,8588,74642.81,10541.89,5874.64,91059.34,13020.85,11420.97,7051.04,31492.86,122552.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,14694,104257.28,4637.16,13629.62,122524.06,23394.43,11986.84,9310.85,44692.12,167216.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51476,11484.75,0.0,45.88,11530.63,0.0,4405.32,893.89,5299.21,16829.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,27908,3351.6,0.0,0.0,3351.6,623.74,573.44,265.45,1462.63,4814.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,11665,18488.0,0.0,0.0,18488.0,3440.63,2389.33,1454.29,7284.25,25772.25 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,39875,94393.05,0.0,0.0,94393.05,19394.59,12424.5,15637.04,47456.13,141849.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,11396,75554.84,0.0,814.4,76369.24,15722.68,12233.36,6315.56,34271.6,110640.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,39865,35644.19,0.0,0.0,35644.19,6633.36,5387.94,2478.5,14499.8,50143.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",18924,150.0,0.0,0.0,150.0,0.0,0.0,559.64,559.64,709.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2487,Chemist III,51649,13683.0,0.0,22805.0,36488.0,3002.04,1433.6,2874.64,7310.28,43798.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,52349,139188.18,103.65,5938.82,145230.65,27525.81,12424.5,2475.88,42426.19,187656.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,9476,77071.0,21375.16,1520.0,99966.16,16196.66,12424.5,8203.02,36824.18,136790.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,10925,48394.4,0.0,0.0,48394.4,11595.63,12424.5,3881.19,27901.32,76295.72 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,9107,66103.23,0.0,7835.15,73938.38,8895.67,0.0,8554.51,17450.18,91388.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,38359,92686.21,0.0,0.0,92686.21,19091.11,12424.5,7119.26,38634.87,131321.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,23793,62468.82,0.0,1730.51,64199.33,13163.13,12424.5,5243.29,30830.92,95030.25 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,22363,86850.03,0.0,2200.0,89050.03,18327.91,12424.5,7290.08,38042.49,127092.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,5673,62241.66,19.18,5497.58,67758.42,13924.36,10489.98,5642.49,30056.83,97815.25 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24779,97764.23,0.0,8769.96,106534.19,25911.41,12424.5,1393.0,39728.91,146263.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,18209,5871.87,0.0,34.72,5906.59,0.0,2262.88,458.0,2720.88,8627.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,4083,63654.74,17018.52,9219.08,89892.34,14676.8,12379.03,7336.86,34392.69,124285.03 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,17021,59957.04,2055.89,1659.0,63671.93,12684.94,12424.5,5266.45,30375.89,94047.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,355C,Ct Comp Facilities Coord,34938,82994.01,0.0,3000.0,85994.01,15921.07,8123.71,6358.73,30403.51,116397.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25117,0.0,0.0,3263.57,3263.57,0.0,68.5,230.54,299.04,3562.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,9759,92997.03,34359.3,6242.01,133598.34,19135.97,12424.49,9933.73,41494.19,175092.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,51912,54124.03,659.49,0.0,54783.52,12110.45,12424.5,4287.56,28822.51,83606.03 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,5024,29819.02,0.0,0.0,29819.02,5549.31,4300.79,2319.57,12169.67,41988.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28000,72664.29,16157.09,7014.59,95835.97,15890.5,15052.76,1597.29,32540.55,128376.52 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,44584,93681.01,29402.42,5503.25,128586.68,19337.92,12424.5,9911.23,41673.65,170260.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,42707,55804.0,2779.0,3148.0,61731.0,12499.79,12424.5,4934.24,29858.53,91589.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1706,Telephone Operator,47614,46387.47,0.0,538.39,46925.86,11139.03,10719.65,3874.78,25733.46,72659.32 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,53000,67911.0,150.88,4375.55,72437.43,14896.65,12424.5,5875.99,33197.14,105634.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,34976,113852.0,0.0,0.0,113852.0,22913.02,12424.51,9275.9,44613.43,158465.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47384,67687.9,10585.3,1975.8,80249.0,19103.5,13339.19,5920.89,38363.58,118612.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32812,64758.93,14038.5,2485.95,81283.38,18430.85,12760.98,6346.61,37538.44,118821.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,2557,79951.0,4778.19,120.0,84849.19,16503.98,12424.5,6855.29,35783.77,120632.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19820,65697.81,7134.34,1215.15,74047.3,15243.82,12945.44,5440.22,33629.48,107676.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38828,111292.49,33159.51,14007.07,158459.07,23653.81,14934.43,2691.09,41279.33,199738.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17679,28530.0,0.0,80.0,28610.0,6540.13,7645.84,2307.5,16493.47,45103.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,33943,110041.07,17011.05,4421.72,131473.84,22296.36,12424.5,9931.88,44652.74,176126.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15691,119461.63,2777.61,6515.43,128754.67,23641.9,12424.5,2146.12,38212.52,166967.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43807,69276.54,36762.07,5727.38,111765.99,20585.55,13652.32,8747.47,42985.34,154751.33 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8262,Criminalist III,17590,131819.0,18542.46,0.0,150361.46,26523.77,12424.5,10324.76,49273.03,199634.49 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,24129,72699.01,0.0,624.0,73323.01,15112.3,12424.5,6079.33,33616.13,106939.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23949,17274.95,90.11,1789.38,19154.44,5231.01,3435.44,1456.66,10123.11,29277.55 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",5184,98770.98,0.0,0.0,98770.98,20339.13,11677.0,7823.14,39839.27,138610.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28667,69082.74,34335.84,8305.86,111724.44,21221.47,13611.47,8699.2,43532.14,155256.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,320,2617.25,0.0,0.0,2617.25,0.0,1134.93,202.62,1337.55,3954.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33129,93459.72,22770.16,10047.15,126277.03,19527.71,11946.64,2107.24,33581.59,159858.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,37661,5966.0,0.0,0.0,5966.0,0.0,955.73,462.87,1418.6,7384.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50317,46981.55,5934.57,2963.8,55879.92,11254.57,12423.49,4010.87,27688.93,83568.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38354,97765.9,14491.67,14023.81,126281.38,26477.43,12424.52,2094.92,40996.87,167278.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,490,124704.59,3925.21,14055.52,142685.32,27281.29,10389.1,6229.79,43900.18,186585.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",20306,1196.0,0.0,0.0,1196.0,0.0,0.0,94.6,94.6,1290.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,24970,138637.93,35383.98,9388.95,183410.86,27385.65,12424.51,3133.65,42943.81,226354.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,27185,36855.08,0.0,14461.06,51316.14,8328.77,6212.25,4135.64,18676.66,69992.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16985,8265.0,0.0,0.0,8265.0,0.0,0.0,652.93,652.93,8917.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,25194,56276.0,0.0,0.0,56276.0,12591.79,12424.5,4614.99,29631.28,85907.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45757,112750.58,1578.17,23957.71,138286.46,19634.45,10943.12,9402.03,39979.6,178266.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32467,16774.12,0.0,224.04,16998.16,4085.2,5579.09,1401.94,11066.23,28064.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,14307,39283.1,0.0,83.7,39366.8,9356.38,11898.85,3170.8,24426.03,63792.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42592,111720.36,0.0,7720.73,119441.09,19926.63,9891.81,9308.06,39126.5,158567.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26548,63262.65,0.0,8388.2,71650.85,13158.28,0.0,1675.27,14833.55,86484.4 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,18721,77034.22,0.0,2188.7,79222.92,16302.04,12418.53,6508.29,35228.86,114451.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,6891,5662.8,36.3,584.91,6284.01,1462.07,1397.75,516.11,3375.93,9659.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",23175,3459.3,0.0,0.0,3459.3,0.0,807.89,268.5,1076.39,4535.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,6462,21990.0,0.0,0.0,21990.0,4932.4,4778.66,1793.97,11505.03,33495.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,8241,145200.05,0.0,0.0,145200.05,29926.35,12424.51,10285.38,52636.24,197836.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5909,109124.01,37993.76,9684.11,156801.88,23475.76,12436.45,2559.72,38471.93,195273.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,47039,100554.04,0.0,0.0,100554.04,20724.83,12424.5,8189.66,41338.99,141893.03 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,29217,29173.82,0.0,0.0,29173.82,6840.18,7221.21,2408.4,16469.79,45643.61 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),37058,96338.03,0.0,1125.0,97463.03,19939.8,10513.04,7859.79,38312.63,135775.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,13444,161553.74,31871.56,17681.91,211107.21,33836.23,12424.5,545.63,46806.36,257913.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10629,66700.35,8185.72,1232.74,76118.81,15458.61,13142.31,5816.98,34417.9,110536.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52882,49492.53,5487.03,602.44,55582.0,13459.53,9721.34,4188.18,27369.05,82951.05 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,33408,34907.6,0.0,4887.06,39794.66,0.0,2341.54,3121.28,5462.82,45257.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46133,2565.04,0.0,164.31,2729.35,-1213.13,185.17,2684.92,1656.96,4386.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24369,67984.82,6982.71,4175.33,79142.86,19766.89,13395.58,5835.09,38997.56,118140.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,26863,107416.01,6645.21,15058.38,129119.6,22759.33,12424.48,9845.97,45029.78,174149.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,38122,32655.0,0.0,2602.9,35257.9,6130.68,5734.39,2764.63,14629.7,49887.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,2904,38449.0,0.0,0.0,38449.0,7155.35,5734.41,3023.49,15913.25,54362.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,1100,74165.04,0.0,624.0,74789.04,15414.46,12424.5,5969.65,33808.61,108597.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22832,67863.77,9964.45,4861.38,82689.6,19931.67,13372.17,6199.88,39503.72,122193.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,6609,85004.01,56903.7,1981.2,143888.91,17519.6,12424.5,10129.0,40073.1,183962.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,42240,51543.8,5651.44,7037.19,64232.43,11906.19,11373.24,4924.74,28204.17,92436.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,49593,76866.52,0.0,0.0,76866.52,15757.44,11707.7,6267.03,33732.17,110598.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3369,66037.87,5374.32,2451.9,73864.09,18750.67,13013.41,5745.09,37509.17,111373.26 +Calendar,2015,1,Public Protection,POL,Police,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),47603,184289.03,0.0,1500.0,185789.03,37388.86,12424.5,10924.53,60737.89,246526.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,46304,65894.64,0.0,0.0,65894.64,13601.19,11289.58,5271.3,30162.07,96056.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,21538,571.02,0.0,0.0,571.02,106.26,83.62,42.1,231.98,803.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16211,11460.81,0.0,0.0,11460.81,227.45,4969.8,894.24,6091.49,17552.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11697,78147.3,0.0,2378.39,80525.69,0.0,6833.18,6245.6,13078.78,93604.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,21054,74165.02,0.0,624.0,74789.02,15414.45,12424.5,6201.07,34040.02,108829.04 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,35716,191926.0,0.0,34523.41,226449.41,42487.89,12424.5,11545.57,66457.96,292907.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17682,80953.82,9280.24,6236.72,96470.78,16707.42,12424.5,1689.73,30821.65,127292.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,916,117077.51,6877.84,1963.96,125919.31,23178.72,12418.53,2136.06,37733.31,163652.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",11777,25886.59,0.0,1938.22,27824.81,0.0,0.0,2201.47,2201.47,30026.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,18913,71117.37,6322.61,17469.91,94909.89,18050.66,10889.35,7727.66,36667.67,131577.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,47251,95968.01,0.0,624.0,96592.01,19907.97,12424.5,7735.26,40067.73,136659.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49457,50140.4,294.0,2878.89,53313.29,12575.46,12424.5,4156.44,29156.4,82469.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,31238,2745.5,0.0,0.0,2745.5,510.94,453.97,213.09,1178.0,3923.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,4695,108354.73,25049.82,6642.62,140047.17,27176.5,12421.58,2339.66,41937.74,181984.91 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,51388,30867.5,0.0,0.0,30867.5,6368.15,6212.25,2557.68,15138.08,46005.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,40.0,"Roofers and Waterproofers, Local 40",7200,Supervisory-Labor & Trade,9344,Roofer Supervisor 1,32204,93281.01,0.0,267.45,93548.46,19225.76,12424.5,7672.44,39322.7,132871.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36848,112211.78,21195.09,17839.44,151246.31,24878.7,14957.19,2375.17,42211.06,193457.37 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0649,Probate Examiner,51807,103617.21,0.0,5623.0,109240.21,21491.44,12384.96,8861.37,42737.77,151977.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16724,41987.27,7925.13,976.7,50889.1,11131.78,12906.98,3644.93,27683.69,78572.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,35037,70217.93,0.0,0.0,70217.93,15405.78,6212.25,14162.73,35780.76,105998.69 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,52465,18880.0,0.0,7535.14,26415.14,4277.84,3822.92,2134.55,10235.31,36650.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44199,120720.44,8187.74,7937.89,136846.07,23886.01,12424.5,2201.1,38511.61,175357.68 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,31063,67261.01,0.0,1664.0,68925.01,14204.84,12424.5,5665.26,32294.6,101219.61 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,35410,76053.85,4412.51,95.69,80562.05,15721.93,11120.47,6083.09,32925.49,113487.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30378,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3242.92,18068.77,61836.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49316,5813.84,0.0,702.89,6516.73,2233.9,452.48,1080.59,3766.97,10283.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,47321,77071.13,0.0,0.0,77071.13,15880.48,12424.5,6277.91,34582.89,111654.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,14887,28459.2,0.0,7832.75,36291.95,6383.38,3679.56,2912.72,12975.66,49267.61 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45858,99571.6,0.0,1125.0,100696.6,20658.66,11755.49,8081.57,40495.72,141192.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,17010,146999.94,0.0,0.0,146999.94,29548.05,12424.46,10232.54,52205.05,199204.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,28033,72851.91,3581.99,10719.6,87153.5,16487.21,11932.48,6947.58,35367.27,122520.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",6060,20240.0,1656.38,13165.97,35062.35,3594.64,1911.46,560.53,6066.63,41128.98 +Calendar,2015,4,Community Health,DPH,Public Health,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,11442,97424.05,0.0,3310.0,100734.05,20782.26,12424.5,7932.92,41139.68,141873.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35808,63526.94,7602.07,2079.1,73208.11,17966.05,12524.56,5667.7,36158.31,109366.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22177,65393.45,2448.7,674.11,68516.26,16195.74,13080.14,5227.86,34503.74,103020.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",40299,132102.82,36883.97,16892.71,185879.5,26114.37,12424.5,3114.19,41653.06,227532.56 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,33567,7217.4,0.0,0.0,7217.4,1343.15,1099.09,556.51,2998.75,10216.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,4675,8683.27,26.94,51.77,8761.98,2148.45,0.0,1491.53,3639.98,12401.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,8484,123778.62,0.0,0.0,123778.62,24708.98,10740.67,9304.13,44753.78,168532.4 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",30895,24813.05,2822.01,514.15,28149.21,0.0,5395.4,2181.81,7577.21,35726.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23386,18956.26,1295.68,571.19,20823.13,4066.32,5983.78,1882.45,11932.55,32755.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12331,69431.49,30908.21,8357.78,108697.48,21332.06,13682.25,8298.48,43312.79,152010.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22652,32077.5,0.0,5367.95,37445.45,59.74,0.0,1808.99,1868.73,39314.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9008,43906.85,3056.09,795.49,47758.43,11918.97,13217.32,3618.88,28755.17,76513.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26990,86912.51,0.0,3901.48,90813.99,0.0,7591.85,7043.32,14635.17,105449.16 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,48406,58515.03,3878.82,884.85,63278.7,11743.22,9557.31,5101.21,26401.74,89680.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,42604,61272.01,0.0,1278.71,62550.72,12892.02,12424.51,5174.48,30491.01,93041.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,120,9018.08,0.0,11.85,9029.93,0.0,692.9,676.3,1369.2,10399.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22763,8760.9,0.0,842.2,9603.1,1819.6,3799.03,757.63,6376.26,15979.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,646,1922.0,0.0,1094.58,3016.58,431.1,238.93,235.58,905.61,3922.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,3547,67481.07,0.0,0.0,67481.07,13867.52,8255.13,5603.42,27726.07,95207.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,36883,39731.6,0.0,455.76,40187.36,9644.53,9820.14,3227.69,22692.36,62879.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37603,1565.0,0.0,0.0,1565.0,283.73,0.0,123.95,407.68,1972.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17857,119461.65,39099.84,11338.03,169899.52,24204.8,12424.5,2848.88,39478.18,209377.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39084,45546.9,0.0,2558.7,48105.6,2804.07,0.0,5915.16,8719.23,56824.83 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8169,Legislative Asst City Atty Ofc,18225,2627.0,0.0,0.0,2627.0,589.24,477.86,198.25,1265.35,3892.35 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,46780,125859.02,0.0,0.0,125859.02,24331.21,8792.73,17174.67,50298.61,176157.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,20921,38974.56,10251.61,1330.0,50556.17,9519.97,10213.66,3928.31,23661.94,74218.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,43730,32160.0,3780.4,9095.81,45036.21,5823.18,2867.19,749.49,9439.86,54476.07 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),35942,184289.01,0.0,5185.78,189474.79,38130.64,12424.5,10859.06,61414.2,250888.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,40506,8777.46,0.0,0.0,8777.46,0.0,0.0,718.59,718.59,9496.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,26369,84599.06,371.33,600.0,85570.39,17549.49,12424.49,6923.96,36897.94,122468.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,17305,65592.01,10116.38,4706.96,80415.35,13730.05,12424.5,6360.87,32515.42,112930.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,21175,62231.78,865.33,312.01,63409.12,12815.42,12376.73,5131.38,30323.53,93732.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45668,14249.61,0.0,0.0,14249.61,3258.38,6116.67,1134.14,10509.19,24758.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,18919,28757.0,1898.25,345.6,31000.85,5415.99,4300.79,2481.48,12198.26,43199.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,40442,108038.0,1054.96,12380.17,121473.13,24219.5,12424.5,9765.43,46409.43,167882.56 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,13390,149739.0,0.0,27506.11,177245.11,33093.6,12424.5,10755.54,56273.64,233518.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,13785,152157.53,0.0,0.0,152157.53,30564.56,12424.5,10412.57,53401.63,205559.16 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,45190,72662.29,2696.91,0.0,75359.2,14969.01,12388.67,5828.33,33186.01,108545.21 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,13849,2704.0,0.0,0.0,2704.0,490.24,238.93,209.87,939.04,3643.04 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1814,Benefits Supervisor,33868,68992.01,0.0,680.0,69672.01,13800.8,8601.58,5098.45,27500.83,97172.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,12123,104354.07,10828.78,7838.42,123021.27,22568.06,12424.5,9785.44,44778.0,167799.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11179,119518.15,520.1,10496.6,130534.85,24884.91,10962.29,9905.87,45753.07,176287.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,38419,41335.0,29.63,0.0,41364.63,9914.28,12424.48,3296.02,25634.78,66999.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,13436,16629.93,668.53,2690.95,19989.41,4023.47,3309.82,1627.85,8961.14,28950.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,42081,56301.51,651.38,1229.85,58182.74,12830.44,12424.5,4707.48,29962.42,88145.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,4910,9381.25,0.0,0.0,9381.25,0.0,2837.32,737.0,3574.32,12955.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,11552,51653.2,16660.86,4836.53,73150.59,11813.61,10990.9,5894.28,28698.79,101849.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,20622,66102.0,0.0,252.0,66354.0,13673.72,12424.5,5472.78,31571.0,97925.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14469,6714.13,0.0,49.41,6763.54,0.0,2237.0,519.39,2756.39,9519.93 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,6211,7957.31,832.73,0.0,8790.04,0.0,2383.35,682.25,3065.6,11855.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30209,313.0,0.0,0.0,313.0,56.75,47.79,24.3,128.84,441.84 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,13001,48169.7,1084.91,3641.1,52895.71,10469.1,2550.42,4088.64,17108.16,70003.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2469,Diagnostic Imaging Tech III,11085,123402.0,10638.37,432.59,134472.96,24834.91,12424.5,9978.0,47237.41,181710.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37960,109957.32,34748.75,250.0,144956.07,18486.29,9437.84,7799.16,35723.29,180679.36 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,19523,35393.0,0.0,0.0,35393.0,6586.63,4300.79,2817.45,13704.87,49097.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,36062,139090.97,8338.87,8591.15,156020.99,27472.78,12424.5,2581.21,42478.49,198499.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28122,56077.03,9378.4,2764.41,68219.84,15926.37,11039.11,5141.57,32107.05,100326.89 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,12041,4727.96,0.0,0.0,4727.96,0.0,1723.3,321.0,2044.3,6772.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,34321,5978.0,0.0,0.0,5978.0,1112.5,955.73,457.6,2525.83,8503.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8899,64194.26,18819.43,1610.21,84623.9,18010.14,12653.16,6352.95,37016.25,121640.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,32931,76728.0,0.0,200.0,76928.0,15813.98,12424.5,6364.45,34602.93,111530.93 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27603,97764.79,24465.29,11253.87,133483.95,26527.83,12424.51,1878.32,40830.66,174314.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48829,28152.7,952.45,2359.07,31464.22,8428.98,5598.67,2279.66,16307.31,47771.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,50700,172225.0,1214.78,4651.42,178091.2,33723.06,12424.5,3029.07,49176.63,227267.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,11843,97934.04,18223.48,6070.26,122227.78,21188.58,12424.5,9804.15,43417.23,165645.01 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,4323,14644.0,0.0,0.0,14644.0,2725.24,1911.46,2117.11,6753.81,21397.81 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,743,2789.7,0.0,0.0,2789.7,0.0,406.19,216.52,622.71,3412.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",16734,25.0,0.0,0.0,25.0,0.0,5.97,1.94,7.91,32.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,23740,60819.75,0.0,1410.0,62229.75,12735.58,12028.17,4793.58,29557.33,91787.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,2493,78204.01,0.0,0.0,78204.01,16117.97,12424.5,6441.97,34984.44,113188.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,2418,8521.1,0.0,140.0,8661.1,0.0,1768.1,691.2,2459.3,11120.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,32404,67028.56,7064.72,9465.31,83558.59,15000.3,10248.0,6753.87,32002.17,115560.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",1010,84071.2,5919.4,12417.3,102407.9,18930.38,11135.22,8169.11,38234.71,140642.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32862,69510.65,0.0,6491.66,76002.31,15415.33,12293.81,6010.29,33719.43,109721.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,46504,11934.0,149.18,0.0,12083.18,2220.93,1433.58,937.84,4592.35,16675.53 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,1006,66772.67,0.0,7160.86,73933.53,14347.87,7406.92,14611.09,36365.88,110299.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,33738,181945.06,0.0,0.0,181945.06,36616.95,12424.48,10766.67,59808.1,241753.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20291,3209.51,0.0,9.8,3219.31,0.0,1565.01,249.73,1814.74,5034.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,43106,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",33752,2358.23,0.0,0.0,2358.23,0.0,561.49,182.58,744.07,3102.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,22300,40803.5,0.0,840.0,41643.5,7938.25,6567.79,3393.2,17899.24,59542.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",14247,133083.95,9665.76,12701.34,155451.05,28739.51,15339.47,2637.93,46716.91,202167.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49156,120685.63,108.17,23652.93,144446.73,0.0,9873.9,9768.01,19641.91,164088.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,41545,1151.5,0.0,0.0,1151.5,214.29,238.93,89.38,542.6,1694.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7415,3475.17,0.0,0.0,3475.17,0.0,1459.28,277.55,1736.83,5212.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10486,119467.44,55901.03,10209.56,185578.03,23620.99,12424.5,3109.68,39155.17,224733.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45534,27342.22,0.0,4409.78,31752.0,10326.99,2061.75,987.02,13375.76,45127.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,41414,61735.02,0.0,2024.0,63759.02,13139.95,12424.5,5213.53,30777.98,94537.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7229,Transmission Line Supervisor 1,8863,120449.01,17727.91,13859.67,152036.59,24329.87,12424.5,10273.01,47027.38,199063.97 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),43178,184289.0,0.0,5248.28,189537.28,38144.35,12424.5,11011.88,61580.73,251118.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2470,Diagnostic Imaging Tech IV,1769,101459.34,18263.19,19119.87,138842.4,20523.39,10042.16,10095.43,40660.98,179503.38 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,47439,52855.44,18.88,0.0,52874.32,12674.12,12424.51,4300.89,29399.52,82273.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",1200,Personnel,479C,Principl Personnel Payroll Rep,5296,94978.0,1164.39,4826.5,100968.89,19587.16,12424.5,8150.1,40161.76,141130.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,26054,70948.0,0.0,0.0,70948.0,14317.77,10035.18,5700.33,30053.28,101001.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,15444,22420.0,525.48,353.72,23299.2,4845.15,2389.33,392.93,7627.41,30926.61 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4012,13731.81,0.0,0.0,13731.81,0.0,3404.79,1065.46,4470.25,18202.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,11874,61276.06,0.0,0.0,61276.06,12662.7,11742.65,4926.53,29331.88,90607.94 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,49628,111918.01,0.0,1440.0,113358.01,22812.24,12424.5,8663.64,43900.38,157258.39 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,51629,112209.02,0.0,0.0,112209.02,22582.31,12424.5,8934.14,43940.95,156149.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35440,8555.7,0.0,0.0,8555.7,1797.56,2831.35,703.09,5332.0,13887.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,20231,29211.5,1092.76,305.55,30609.81,5494.62,4342.61,2441.51,12278.74,42888.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,53194,1623.08,0.0,1.61,1624.69,0.0,480.85,126.03,606.88,2231.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50100,67284.74,6829.67,1278.94,75393.35,18772.47,13257.3,5663.7,37693.47,113086.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,24688,102295.21,11946.94,23872.25,138114.4,21090.83,12424.47,10044.32,43559.62,181674.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,43837,50805.01,0.0,250.0,51055.01,10372.35,4300.79,4140.11,18813.25,69868.26 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,21868,60248.01,256.27,0.0,60504.28,12417.38,12424.5,4958.68,29800.56,90304.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32113,11879.6,911.53,1732.74,14523.87,2185.97,3155.83,1132.14,6473.94,20997.81 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,9417,11985.28,0.0,1455.5,13440.78,2688.3,1967.49,1058.31,5714.1,19154.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,35364,78963.08,0.0,652.99,79616.07,16408.76,12424.5,6601.64,35434.9,115050.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46622,108792.38,23834.7,12336.95,144964.03,22319.68,12424.5,2341.48,37085.66,182049.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12827,81954.32,7605.23,2949.1,92508.65,17455.91,12424.5,7546.57,37426.98,129935.63 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,12377,124017.27,0.0,0.0,124017.27,25213.38,0.0,9466.64,34680.02,158697.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18024,116392.85,83.11,1813.91,118289.87,22874.68,11886.84,1960.21,36721.73,155011.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27313,119630.17,32052.55,14782.26,166464.98,23664.78,12424.5,2790.52,38879.8,205344.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,19850,2145.0,0.0,21.45,2166.45,403.18,477.86,168.15,1049.19,3215.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17045,2971.4,0.0,152.51,3123.91,0.0,991.57,241.85,1233.42,4357.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,34091,119351.38,26179.36,15153.47,160684.21,26491.52,13862.99,2684.51,43039.02,203723.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45925,121172.17,50865.91,15672.62,187710.7,23968.66,12424.5,3194.7,39587.86,227298.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,21188,79745.15,0.0,1520.0,81265.15,16729.1,12412.56,6336.73,35478.39,116743.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,2823,145200.1,0.0,0.0,145200.1,29216.45,12424.51,10234.06,51875.02,197075.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45101,56120.0,170.92,646.92,56937.84,12647.97,12424.5,4690.28,29762.75,86700.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11216,447.55,0.0,7.84,455.39,0.0,232.96,35.3,268.26,723.65 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,27617,67911.05,0.0,11848.82,79759.87,15778.81,12424.51,6443.61,34646.93,114406.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,42367,0.0,0.0,9324.23,9324.23,0.0,68.5,713.3,781.8,10106.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,42765,159.41,0.0,0.0,159.41,0.0,58.24,12.35,70.59,230.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,46800,37642.5,0.0,1080.0,38722.5,2293.56,9031.66,3134.79,14460.01,53182.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,48264,37813.76,0.0,0.0,37813.76,4923.53,11361.25,3028.6,19313.38,57127.14 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,45885,42486.92,0.0,0.0,42486.92,0.0,6006.16,3382.28,9388.44,51875.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46565,16806.98,0.0,2704.82,19511.8,0.0,1344.65,1512.68,2857.33,22369.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25617,40498.23,0.0,3555.97,44054.2,9355.73,8955.43,3666.62,21977.78,66031.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,27141,84644.0,122.33,1095.1,85861.43,17571.05,12424.5,6825.11,36820.66,122682.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51859,14670.38,0.0,786.55,15456.93,2106.22,6361.59,1241.42,9709.23,25166.16 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,16182,44232.72,0.0,927.82,45160.54,9416.89,7738.43,3706.3,20861.62,66022.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,863,60636.7,1301.62,4161.69,66100.01,13846.61,11946.63,5125.32,30918.56,97018.57 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,52475,16533.53,0.0,0.0,16533.53,0.0,5434.52,1281.79,6716.31,23249.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,45723,6888.38,0.0,0.0,6888.38,0.0,2042.88,534.65,2577.53,9465.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7100,Administrative-Labor & Trades,7126,Mech Shop & Equip Supt,22294,107978.0,91758.18,19634.16,219370.34,25755.82,12424.5,11353.23,49533.55,268903.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36323,113233.6,27138.4,18294.85,158666.85,25036.03,15196.13,2649.19,42881.35,201548.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5125,119450.04,29064.01,13751.64,162265.69,23683.67,12424.5,2705.58,38813.75,201079.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,44057,2074.0,0.0,0.0,2074.0,385.97,477.86,160.29,1024.12,3098.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,34834,21046.48,0.0,0.0,21046.48,4628.1,5833.73,1668.08,12129.91,33176.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,1049,80191.13,61.18,1440.0,81692.31,16731.89,11666.42,6346.36,34744.67,116436.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38862,113817.4,1591.36,16064.53,131473.29,24941.42,15247.07,1798.88,41987.37,173460.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1777,Media/Security Sys Spec,19845,83805.3,0.0,6839.11,90644.41,18634.5,12299.07,7451.22,38384.79,129029.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,9840,51405.01,0.0,3194.07,54599.08,12602.79,12424.5,4458.84,29486.13,84085.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,23066,129153.22,0.0,3516.73,132669.95,26804.84,10124.77,9875.46,46805.07,179475.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24266,49038.78,7307.86,1833.3,58179.94,13691.69,9641.77,4418.94,27752.4,85932.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,31904,53388.02,0.0,0.0,53388.02,10043.0,6212.24,4191.61,20446.85,73834.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,46644,66102.0,1811.15,2068.15,69981.3,14010.92,12424.49,5649.36,32084.77,102066.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12775,34634.29,0.0,1357.56,35991.85,193.0,0.0,3324.08,3517.08,39508.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,35465,3379.0,0.0,0.0,3379.0,0.0,1579.94,262.04,1841.98,5220.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14354,104751.7,19191.51,11248.5,135191.71,21738.69,12424.5,2209.88,36373.07,171564.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34097,13348.25,0.0,24.8,13373.05,0.0,5113.14,1036.82,6149.96,19523.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,1099,138071.7,16775.86,10436.37,165283.93,27271.61,12424.5,2770.52,42466.63,207750.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,9547,50372.0,0.0,0.0,50372.0,9814.73,7645.85,4096.94,21557.52,71929.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,40239,63597.91,4670.41,1432.65,69700.97,13114.64,11637.82,5702.35,30454.81,100155.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,28144,63506.82,0.0,804.21,64311.03,13197.0,12030.26,5278.06,30505.32,94816.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20630,302.76,113.54,0.0,416.3,85.68,0.0,32.89,118.57,534.87 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,10329,55554.91,0.0,0.0,55554.91,10772.36,7406.91,4549.94,22729.21,78284.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,47029,88444.0,0.0,0.0,88444.0,18095.63,11468.77,7250.41,36814.81,125258.81 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,3254,88296.01,0.0,5439.6,93735.61,18364.18,12424.5,7777.77,38566.45,132302.06 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,39869,73704.87,0.0,3286.2,76991.07,15187.29,12424.5,6193.19,33804.98,110796.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,9356,Wharfinger 2,37778,80368.95,0.0,0.0,80368.95,16460.91,11599.23,6196.52,34256.66,114625.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50525,14085.45,0.0,475.96,14561.41,0.0,3486.93,1129.99,4616.92,19178.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,12314,9949.51,0.0,0.0,9949.51,0.0,770.55,772.24,1542.79,11492.3 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,12759,21463.03,0.0,221.44,21684.47,5192.27,6212.25,1715.4,13119.92,34804.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,13662,112776.0,1228.6,2255.52,116260.12,23150.48,12424.5,9403.27,44978.25,161238.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43276,29821.8,0.0,16479.53,46301.33,7033.78,6594.55,3629.68,17258.01,63559.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,14081,6520.58,0.0,425.44,6946.02,1682.32,2157.87,521.85,4362.04,11308.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,8992,62187.01,5102.43,1446.55,68735.99,13058.44,12424.5,5630.75,31113.69,99849.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29783,139814.72,2192.45,9047.84,151055.01,28540.94,12349.83,10247.97,51138.74,202193.75 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33924,97540.61,2745.79,10294.37,110580.77,26209.82,12397.02,1545.49,40152.33,150733.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,2297,45624.0,9110.95,2245.6,56980.55,10943.04,12424.5,4525.91,27893.45,84874.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,26922,177698.12,6631.1,9101.94,193431.16,35510.05,12424.5,3244.57,51179.12,244610.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23706,117129.72,0.0,14467.56,131597.28,23945.6,12424.5,2186.06,38556.16,170153.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",40005,65481.09,3515.12,4343.03,73339.24,13291.49,7645.85,5891.92,26829.26,100168.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5216,Chief Surveyor,44432,107251.22,0.0,0.0,107251.22,21818.77,12424.49,8093.31,42336.57,149587.79 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,5327,14583.64,0.0,0.0,14583.64,0.0,0.0,1153.35,1153.35,15736.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45229,63752.4,728.38,8711.53,73192.31,13873.62,6952.95,5882.18,26708.75,99901.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35582,56076.41,0.0,0.0,56076.41,12519.15,12424.51,4356.25,29299.91,85376.32 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",51685,198139.07,0.0,1500.0,199639.07,40176.59,12424.5,11131.51,63732.6,263371.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,8730,130845.84,58174.54,16387.89,205408.27,28935.97,15196.12,3504.72,47636.81,253045.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,8563,2161.0,0.0,0.0,2161.0,475.2,477.86,170.96,1124.02,3285.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3232,Marina Assistant Manager,23773,61875.02,2156.03,1386.21,65417.26,12752.69,12424.63,5411.99,30589.31,96006.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,667,37675.0,3084.32,383.58,41142.9,9128.52,12424.5,3345.62,24898.64,66041.54 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0884,Mayoral Staff IV,40346,0.0,0.0,420.66,420.66,0.0,0.0,32.18,32.18,452.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,7655,86049.01,0.0,0.0,86049.01,17734.95,12424.5,7029.33,37188.78,123237.79 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,33177,66398.5,0.0,0.0,66398.5,13681.64,12424.5,5402.69,31508.83,97907.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17033,2701.13,0.0,2.7,2703.83,0.0,1317.12,210.29,1527.41,4231.24 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,1333,11039.64,0.0,1406.94,12446.58,2550.47,2008.17,993.84,5552.48,17999.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,49277,5804.01,0.0,0.0,5804.01,1301.84,955.73,478.86,2736.43,8540.44 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27927,97500.09,960.49,8948.51,107409.09,25888.6,12390.87,1721.36,40000.83,147409.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,31249,91189.76,0.0,1922.63,93112.39,19087.24,11547.44,7739.21,38373.89,131486.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,28073,119060.22,11410.85,1718.73,132189.8,23559.56,12382.68,2196.58,38138.82,170328.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,5205,64463.71,15026.08,15447.66,94937.45,15816.91,12424.5,7517.5,35758.91,130696.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49064,5289.6,0.0,0.0,5289.6,0.0,2293.76,424.47,2718.23,8007.83 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,48037,63705.04,0.0,24.0,63729.04,13134.29,12424.5,5285.34,30844.13,94573.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8449,119461.61,23814.58,898.94,144175.13,23641.89,12424.5,2445.15,38511.54,182686.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48686,59336.41,2879.36,1320.0,63535.77,13510.68,12424.5,5152.31,31087.49,94623.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,22057,2161.0,0.0,10959.81,13120.81,492.52,477.86,1009.23,1979.61,15100.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,2240,2183.0,0.0,8.73,2191.73,407.88,477.86,170.11,1055.85,3247.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3316,29735.0,0.0,0.0,29735.0,5390.96,4539.72,2270.76,12201.44,41936.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,33856,59229.01,32.07,6039.12,65300.2,12952.56,12424.5,5392.15,30769.21,96069.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,2878,164583.45,0.0,0.0,164583.45,33122.5,12424.51,17865.57,63412.58,227996.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,16614,53756.52,632.85,3205.65,57595.02,12861.23,12176.9,4678.7,29716.83,87311.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25791,6364.05,0.0,200.21,6564.26,0.0,2759.67,530.62,3290.29,9854.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39790,65274.54,3047.41,714.28,69036.23,15039.72,12863.01,5268.03,33170.76,102206.99 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36706,16427.35,0.0,0.0,16427.35,4238.23,4295.41,1334.39,9868.03,26295.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,11391,86915.4,0.0,0.0,86915.4,17903.55,12336.69,7227.23,37467.47,124382.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13961,56531.0,0.0,4604.42,61135.42,12379.98,12424.5,5007.17,29811.65,90947.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),16624,4385.14,0.0,0.0,4385.14,0.0,1272.31,340.35,1612.66,5997.8 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",2388,50508.73,548.14,4983.26,56040.13,12614.89,9071.32,1182.6,22868.81,78908.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,32959,49202.02,0.0,420.08,49622.1,10060.04,10465.25,3929.3,24454.59,74076.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,34228,9577.97,0.0,85.84,9663.81,0.0,3473.48,748.94,4222.42,13886.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30635,113873.6,745.75,3288.05,117907.4,22596.75,11844.97,2006.94,36448.66,154356.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",17686,23800.4,190.59,0.0,23990.99,0.0,5591.05,1862.08,7453.13,31444.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,34488,20078.5,0.0,0.0,20078.5,3736.6,2628.26,1529.87,7894.73,27973.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",45255,131577.12,24062.16,21080.53,176719.81,29676.51,15196.12,2958.55,47831.18,224550.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,45367,25500.31,0.0,0.0,25500.31,5613.29,4990.04,2254.51,12857.84,38358.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,33055,49131.02,0.0,0.0,49131.02,10378.44,9079.44,3783.5,23241.38,72372.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38627,66773.52,17503.81,4966.94,89244.27,19646.02,13155.75,6759.59,39561.36,128805.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50896,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,10944,79232.31,0.0,1606.16,80838.47,16636.0,12424.5,6653.52,35714.02,116552.49 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,47025,89588.14,18473.78,34.51,108096.43,20441.27,12424.5,1793.2,34658.97,142755.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,42159,9885.91,0.0,61.31,9947.22,2390.69,0.0,786.67,3177.36,13124.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,49226,88592.02,0.0,738.99,89331.01,18412.03,12424.5,6701.55,37538.08,126869.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,52362,7220.0,0.0,0.0,7220.0,0.0,2389.33,560.31,2949.64,10169.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21619,3325.88,0.0,0.0,3325.88,0.0,1621.75,257.99,1879.74,5205.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13547,75550.3,26198.19,2545.0,104293.49,16069.5,12424.5,8253.2,36747.2,141040.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7241,Senior Maintenance Controller,9406,62485.01,16017.73,13000.1,91502.84,13973.2,7167.97,5288.98,26430.15,117932.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,22906,53264.0,0.0,0.0,53264.0,10551.02,8601.57,3988.78,23141.37,76405.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37212,17839.3,0.0,891.97,18731.27,3606.73,2867.19,1471.54,7945.46,26676.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29930,2238.0,0.0,0.0,2238.0,0.0,191.14,173.7,364.84,2602.84 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,9298,62312.27,2368.45,7258.81,71939.53,13842.77,11396.37,5807.34,31046.48,102986.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,32400,27614.51,0.0,0.0,27614.51,6193.93,5256.52,2189.08,13639.53,41254.04 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",13384,89865.26,35167.83,6307.2,131340.29,21934.77,12420.92,2542.0,36897.69,168237.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,43820,122778.1,0.0,16342.15,139120.25,27322.34,12424.5,2361.86,42108.7,181228.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,16814,119465.03,25828.71,6830.2,152123.94,23629.32,12424.51,2545.93,38599.76,190723.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,32497,1535.1,0.0,40.94,1576.04,0.0,501.76,122.15,623.91,2199.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17788,11529.04,0.0,108.13,11637.17,0.0,4936.95,941.05,5878.0,17515.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51826,60099.97,0.0,7725.38,67825.35,13438.13,0.0,7258.82,20696.95,88522.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",45933,150234.0,7017.6,24658.7,181910.3,33992.69,15196.12,3046.42,52235.23,234145.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,27628,86870.22,0.0,311.91,87182.13,17951.62,12330.23,7188.73,37470.58,124652.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,6354,97767.04,44236.14,28836.05,170839.23,30799.98,12424.5,2916.05,46140.53,216979.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,9996,5936.0,0.0,676.7,6612.7,1307.28,1911.46,525.28,3744.02,10356.72 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,45903,1143.8,0.0,348.83,1492.63,318.07,334.51,115.56,768.14,2260.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24435,119463.85,7698.58,3320.04,130482.47,23633.49,12424.5,2167.65,38225.64,168708.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,26604,46518.0,0.0,11669.44,58187.44,11437.44,10656.4,4722.24,26816.08,85003.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,17916,64511.13,0.0,2724.0,67235.13,13857.99,12424.5,5514.03,31796.52,99031.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2500,Med Therapy & Auxiliary,2576,Sprv Clincal Psychologist,441,120434.62,0.0,40.0,120474.62,24244.71,12423.01,9788.88,46456.6,166931.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,162,9048.0,0.0,0.0,9048.0,1683.84,1433.6,674.17,3791.61,12839.61 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8152,"Srclaimsinvstgtor,Cty Atty Ofc",45753,92988.1,0.0,0.0,92988.1,19467.28,10035.18,7190.53,36692.99,129681.09 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,51965,135396.64,0.0,0.0,135396.64,27259.07,12424.5,10001.26,49684.83,185081.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,28027,17569.7,0.0,0.0,17569.7,3269.7,2580.47,1367.07,7217.24,24786.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",35767,138165.63,0.0,0.0,138165.63,27806.14,12424.5,27587.87,67818.51,205984.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,31609,31028.18,851.62,736.0,32615.8,0.0,3601.91,2527.84,6129.75,38745.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,19584,15159.88,0.0,0.0,15159.88,0.0,4987.72,1175.07,6162.79,21322.67 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,46745,323.01,461.79,0.0,784.8,0.0,95.58,60.91,156.49,941.29 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,30697,133087.03,0.0,0.0,133087.03,26783.95,12424.5,10034.64,49243.09,182330.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41220,81598.61,5586.65,6918.78,94104.04,17029.61,12412.56,1567.4,31009.57,125113.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,42178,138732.36,28524.69,12589.22,179846.27,27405.91,12424.5,3011.7,42842.11,222688.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,34768,58280.61,0.0,1564.77,59845.38,13404.1,12424.51,4843.3,30671.91,90517.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,10355,66097.14,4198.3,2151.45,72446.89,14062.97,12423.62,5954.32,32440.91,104887.8 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,41896,57528.57,130.31,5166.45,62825.33,13960.26,12424.5,5046.68,31431.44,94256.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26700,61310.79,16915.35,6389.63,84615.77,18385.19,12069.81,6356.15,36811.15,121426.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5065,910.4,0.0,0.0,910.4,0.0,382.3,70.67,452.97,1363.37 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,16900,21097.0,0.0,663.69,21760.69,4049.66,3345.06,1726.96,9121.68,30882.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,19667,13835.4,564.36,205.83,14605.59,3601.79,3345.05,1190.88,8137.72,22743.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,50533,22512.0,0.0,0.0,22512.0,5049.42,2867.19,1777.53,9694.14,32206.14 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,1102,1907.72,454.22,242.25,2604.19,0.0,564.48,202.13,766.61,3370.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48327,5328.76,0.0,33.32,5362.08,0.0,2598.39,415.99,3014.38,8376.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,28200,57872.81,4834.31,8188.22,70895.34,12761.74,11450.85,5583.82,29796.41,100691.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,14946,27447.35,21754.41,4962.77,54164.53,7164.4,6319.77,4183.16,17667.33,71831.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,30948,62811.0,0.0,1290.0,64101.0,13159.11,12424.5,5123.44,30707.05,94808.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27498,54690.64,1762.43,981.89,57434.96,11317.45,11417.21,4649.86,27384.52,84819.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,25478,58782.02,127.29,624.0,59533.31,12243.99,12424.5,4793.34,29461.83,88995.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3116,103402.92,13275.68,8277.58,124956.18,21524.59,11345.72,2029.34,34899.65,159855.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,22195,8670.0,0.0,265.88,8935.88,2004.32,1433.6,745.65,4183.57,13119.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",8823,93738.0,20329.7,6958.99,121026.69,19868.42,12424.5,9749.43,42042.35,163069.04 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,20141,112101.83,0.0,643.35,112745.18,22558.78,12412.56,8878.05,43849.39,156594.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36006,15233.13,0.0,388.91,15622.04,0.0,0.0,1235.99,1235.99,16858.03 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,44733,75605.01,0.0,0.0,75605.01,15582.61,12424.5,6129.92,34137.03,109742.04 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,22504,100236.04,0.0,1746.46,101982.5,20635.52,12424.51,8122.54,41182.57,143165.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36702,71796.86,54499.82,8567.04,134863.72,22102.07,14152.46,9626.85,45881.38,180745.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,30864,12187.17,0.0,125.46,12312.63,0.0,3243.51,954.0,4197.51,16510.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24747,27293.16,626.57,2205.03,30124.76,6224.81,5763.0,2566.01,14553.82,44678.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,52380,104502.8,70958.73,2362.6,177824.13,21482.84,12424.5,10716.62,44623.96,222448.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30153,4366.68,0.0,867.14,5233.82,1126.59,1893.54,418.84,3438.97,8672.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,20168,66957.5,1048.41,102.0,68107.91,13966.38,10832.66,5353.16,30152.2,98260.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,18522,60881.7,13838.08,1263.72,75983.5,12599.31,12424.5,6055.11,31078.92,107062.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,43903,74953.03,16954.48,14694.48,106601.99,17337.04,11468.78,8493.06,37298.88,143900.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28794,20721.82,3768.43,325.38,24815.63,5095.86,6421.37,1897.75,13414.98,38230.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15427,36838.44,4714.03,1313.31,42865.78,9868.42,11507.0,3231.79,24607.21,67472.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28660,137285.78,2642.77,20550.34,160478.89,26448.31,12154.69,5428.94,44031.94,204510.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15537,5481.71,0.0,0.88,5482.59,0.0,2774.6,424.97,3199.57,8682.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,31038,83206.69,31253.64,15968.65,130428.98,17990.72,11837.33,9865.16,39693.21,170122.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,46337,200.0,0.0,0.0,200.0,0.0,47.79,15.49,63.28,263.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,24795,14220.0,0.0,0.0,14220.0,3668.76,4300.78,1174.47,9144.01,23364.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",16978,118427.01,0.0,0.0,118427.01,23833.76,12424.5,17077.25,53335.51,171762.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33294,33644.75,0.0,0.0,33644.75,4054.65,0.0,5014.01,9068.66,42713.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,19427,45205.96,0.0,4380.23,49586.19,10134.36,8987.93,4093.31,23215.6,72801.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,16027,75927.08,2276.09,2054.72,80257.89,15648.75,12424.5,6516.21,34589.46,114847.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,14124,99772.23,0.0,1360.0,101132.23,20808.61,12424.5,8326.65,41559.76,142691.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12029,28832.0,0.0,306.36,29138.36,6988.83,12424.5,2377.57,21790.9,50929.26 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),40628,19228.0,0.0,0.0,19228.0,3486.04,1911.46,1525.52,6923.02,26151.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,50585,55263.21,0.0,200.0,55463.21,12335.71,12424.5,4474.33,29234.54,84697.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,49630,97934.02,4076.03,725.79,102735.84,20309.92,12424.5,8504.04,41238.46,143974.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11798,899.56,0.0,8.82,908.38,0.0,448.0,70.47,518.47,1426.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,8940,61875.01,17156.44,3357.49,82388.94,13061.88,12424.5,6754.73,32241.11,114630.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30192,111957.52,3522.2,21461.63,136941.35,25401.04,15004.98,2256.58,42662.6,179603.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,27412,62214.09,12412.38,5534.21,80160.68,13732.52,12374.09,6262.98,32369.59,112530.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38576,112159.75,19612.69,18798.38,150570.82,24822.81,15052.75,2556.02,42431.58,193002.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,39108,125815.02,0.0,1560.0,127375.02,25320.89,12424.5,9897.06,47642.45,175017.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,21043,61692.53,0.0,943.98,62636.51,12908.92,12415.9,4898.36,30223.18,92859.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,30498,120520.04,0.0,250.0,120770.04,24265.95,9768.83,9337.63,43372.41,164142.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,41374,15585.01,0.0,0.0,15585.01,3495.71,2389.32,1267.91,7152.94,22737.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",1400,"Clerical, Secretarial & Steno",1434,Shelter Service Rep,42625,38841.0,82.64,1438.94,40362.58,9620.5,9587.18,3255.28,22462.96,62825.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,36456,88863.56,0.0,0.0,88863.56,18284.63,12424.5,6969.53,37678.66,126542.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,10138,3204.15,0.0,112.51,3316.66,0.0,734.72,256.78,991.5,4308.16 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,23247,60390.8,0.0,0.0,60390.8,11903.92,7645.85,4695.03,24244.8,84635.6 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,361,87713.0,0.0,6774.16,94487.16,19471.16,12424.51,7526.11,39421.78,133908.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,36371,62880.22,0.0,0.0,62880.22,13427.66,9563.29,4949.77,27940.72,90820.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,10913,49658.45,0.0,1480.0,51138.45,12210.8,12113.88,3783.76,28108.44,79246.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,7364,137101.04,0.0,520.0,137621.04,27592.09,12424.5,24982.09,64998.68,202619.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25552,121930.42,2364.41,38818.76,163113.59,28545.59,10895.34,4793.42,44234.35,207347.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,1913,475.16,0.0,0.0,475.16,0.0,155.31,36.78,192.09,667.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40204,67083.95,5190.15,1841.27,74115.37,15712.54,13218.77,5621.92,34553.23,108668.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,22954,101323.03,0.0,2205.0,103528.03,21345.19,12424.49,8540.08,42309.76,145837.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11675,113233.62,16718.52,18097.79,148049.93,23622.08,15196.12,2467.9,41286.1,189336.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,35025,138712.48,3052.01,11761.7,153526.19,27475.07,12424.5,2570.19,42469.76,195995.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,26190,13560.62,0.0,5594.62,19155.24,3066.88,2242.26,1622.12,6931.26,26086.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,38943,85878.43,0.0,0.0,85878.43,17848.16,11462.97,7112.6,36423.73,122302.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31291,87452.44,12365.26,9943.38,109761.08,23803.58,11099.74,1863.7,36767.02,146528.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",4512,44605.02,5341.2,0.0,49946.22,10004.94,5256.52,4038.81,19300.27,69246.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,18089,20065.01,1224.97,1265.81,22555.79,4801.68,4494.5,1873.13,11169.31,33725.1 +Calendar,2015,1,Public Protection,PDR,Public Defender,556.0,Elected Officials,8100,Legal & Court,8196,Public Defender,36259,231056.27,0.0,0.0,231056.27,46470.65,12424.5,19405.02,78300.17,309356.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,929.0,Building Inspectors' Association - Chiefs,6300,Construction Inspection,6334,Chief Building Inspector,15138,137101.05,0.0,6593.0,143694.05,28908.9,12424.5,10186.6,51520.0,195214.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,19365,108333.86,13227.35,1622.4,123183.61,21536.63,11946.63,2044.77,35528.03,158711.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,35919,80210.63,7270.15,7628.81,95109.59,17462.58,12484.23,1584.92,31531.73,126641.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9815,2644.8,0.0,0.0,2644.8,0.0,1146.88,212.75,1359.63,4004.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3627,17776.0,0.0,0.0,17776.0,600.6,7645.85,1438.74,9685.19,27461.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,31314,1517.04,0.0,1.02,1518.06,0.0,709.33,117.53,826.86,2344.92 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,35727,101047.04,0.0,5134.43,106181.47,21885.7,12424.5,8456.96,42767.16,148948.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,22116,46701.8,1191.19,6226.32,54119.31,12075.65,10321.9,4043.97,26441.52,80560.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,40341,79162.4,0.0,0.0,79162.4,16280.41,12424.5,6375.29,35080.2,114242.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,51254,97934.02,0.0,936.0,98870.02,20353.77,12424.5,8198.56,40976.83,139846.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50794,67464.08,9416.4,3352.5,80232.98,19377.71,13292.72,6264.79,38935.22,119168.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23355,31828.31,0.0,2098.23,33926.54,5655.87,0.0,4840.02,10495.89,44422.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,23471,27762.6,0.0,0.0,27762.6,7162.75,6212.25,2256.21,15631.21,43393.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7403,16228.32,0.0,672.31,16900.63,0.0,1224.71,1309.95,2534.66,19435.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,11678,67261.07,0.0,661.13,67922.2,14008.62,12424.5,5585.92,32019.04,99941.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,18741,66102.03,11716.83,6147.68,83966.54,14553.25,12424.51,7628.47,34606.23,118572.77 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,29323,2500.0,0.0,0.0,2500.0,0.0,149.34,193.75,343.09,2843.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43518,99838.81,10663.72,11605.01,122107.54,20714.52,12424.5,2029.65,35168.67,157276.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,53135,10805.6,0.0,1652.38,12457.98,4223.23,812.67,2300.19,7336.09,19794.07 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,10879,62375.3,0.0,1000.0,63375.3,14141.52,12424.5,4900.5,31466.52,94841.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,40031,5854.82,0.0,62.72,5917.54,0.0,0.0,468.02,468.02,6385.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17402,82245.19,8840.65,4643.13,95728.97,17117.67,12424.5,1596.34,31138.51,126867.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,35029,108081.21,16885.0,797.45,125763.66,21560.44,11468.78,2098.85,35128.07,160891.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37758,55015.42,8696.01,705.44,64416.87,14461.2,13089.63,4694.03,32244.86,96661.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,10264,84396.86,8359.23,6141.72,98897.81,17652.42,12327.07,1671.08,31650.57,130548.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,5392,112886.95,38786.26,15226.19,166899.4,22887.45,12424.5,2777.61,38089.56,204988.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,38555,63887.0,9464.07,850.29,74201.36,13351.41,12424.5,6024.43,31800.34,106001.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,4390,159161.32,11411.72,5521.18,176094.22,31447.8,12424.5,2939.31,46811.61,222905.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50808,101267.32,439.68,5121.67,106828.67,19515.83,9457.08,8516.6,37489.51,144318.18 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,25628,80237.46,0.0,1144.5,81381.96,16777.72,12346.85,6620.13,35744.7,117126.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,37368,108134.36,21831.65,14960.2,144926.21,21839.05,11426.35,10163.87,43429.27,188355.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,7530,97764.66,2714.33,9406.52,109885.51,26071.07,12424.5,1792.33,40287.9,150173.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,18233,96906.84,0.0,0.0,96906.84,19972.42,12421.52,7657.53,40051.47,136958.31 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,37293,64511.01,0.0,1040.0,65551.01,13509.55,12424.5,5077.07,31011.12,96562.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,6971,30617.17,217.92,1281.09,32116.18,6789.28,6193.31,2018.78,15001.37,47117.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,107,112159.76,32375.07,23355.54,167890.37,26061.42,15052.75,2852.44,43966.61,211856.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18025,4022.3,0.0,0.0,4022.3,0.0,1744.21,318.88,2063.09,6085.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,46054,86981.38,11649.23,3486.75,102117.36,18475.5,11920.11,8175.85,38571.46,140688.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,21996,70245.0,743.18,10574.37,81562.55,15869.21,12424.5,6701.83,34995.54,116558.09 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,10437,2907.0,1392.94,242.25,4542.19,0.0,860.16,352.54,1212.7,5754.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48896,6423.92,0.0,682.97,7106.89,212.33,0.0,827.04,1039.37,8146.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,17569,64932.1,0.0,0.0,64932.1,13376.03,12424.5,5282.05,31082.58,96014.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,8394,20178.7,1002.34,2115.07,23296.11,5003.94,6690.12,1873.13,13567.19,36863.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,46197,13306.07,0.0,0.0,13306.07,2984.56,2780.28,1154.17,6919.01,20225.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,17635,65420.24,0.0,0.0,65420.24,11255.9,12328.92,5071.98,28656.8,94077.04 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,15209,35063.5,0.0,0.0,35063.5,6356.99,3297.27,2778.19,12432.45,47495.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,18174,34844.55,2458.07,900.0,38202.62,7791.07,5652.08,3131.65,16574.8,54777.42 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,12922,73694.06,0.0,3617.98,77312.04,15325.16,12304.62,6425.25,34055.03,111367.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9021,2365.8,0.0,0.0,2365.8,519.07,198.37,242.08,959.52,3325.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8660,946.2,0.0,31.54,977.74,0.0,0.0,0.0,0.0,977.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10440,66304.97,5997.14,4974.77,77276.88,16161.72,13061.86,5622.8,34846.38,112123.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14521,2494.95,0.0,34.39,2529.34,0.0,624.2,195.82,820.02,3349.36 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,34061,106605.01,0.0,0.0,106605.01,21971.81,12424.51,8666.62,43062.94,149667.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51844,11845.79,0.0,1133.73,12979.52,0.0,3195.84,1006.19,4202.03,17181.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2321,100687.34,39789.6,12277.24,152754.18,22571.55,14909.4,2421.2,39902.15,192656.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,48267,23499.49,0.0,6.97,23506.46,5602.32,6539.95,1901.65,14043.92,37550.38 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,31594,5586.2,0.0,558.62,6144.82,1262.29,298.66,436.39,1997.34,8142.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,50112,28997.33,3045.96,1949.34,33992.63,6504.11,4264.95,2648.01,13417.07,47409.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,18828,130845.87,91447.47,21392.49,243685.83,29936.71,15196.12,4104.16,49236.99,292922.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1249,Personnel Trainee,51240,33659.11,0.0,0.0,33659.11,7437.51,7120.2,2662.68,17220.39,50879.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17949,8940.49,0.0,315.82,9256.31,0.0,3822.86,756.27,4579.13,13835.44 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),9431,26607.0,0.0,0.0,26607.0,4823.85,2341.54,2089.3,9254.69,35861.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15698,119450.12,33265.1,7445.13,160160.35,23683.72,12424.5,2718.46,38826.68,198987.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30672,6983.93,0.0,0.0,6983.93,0.0,3028.48,555.63,3584.11,10568.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18478,12664.33,0.0,729.41,13393.74,2447.92,3327.14,1072.21,6847.27,20241.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,11357,154127.67,0.0,3189.87,157317.54,31086.92,12424.5,10361.67,53873.09,211190.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,47414,66102.0,7374.11,0.0,73476.11,13624.06,12424.5,6035.85,32084.41,105560.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38522,20073.12,0.0,3880.22,23953.34,197.48,0.0,4758.94,4956.42,28909.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,51867,56163.3,892.55,1530.76,58586.61,10885.46,8601.58,3991.93,23478.97,82065.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,37302,59871.66,0.0,1020.0,60891.66,12382.41,9097.18,4978.64,26458.23,87349.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,49236,76593.2,16970.71,8516.2,102080.11,17966.27,12424.5,8329.53,38720.3,140800.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",51167,110061.04,0.0,0.0,110061.04,22689.75,10035.17,15181.12,47906.04,157967.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,31146,63887.0,262.48,798.68,64948.16,13332.0,12424.5,5369.94,31126.44,96074.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,47188,73257.81,4387.39,3695.72,81340.92,15411.28,12376.71,6400.15,34188.14,115529.06 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,7601,7201.53,664.71,0.0,7866.24,0.0,1992.11,610.54,2602.65,10468.89 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,23034,74867.07,0.0,0.0,74867.07,15430.6,12424.5,6158.25,34013.35,108880.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40145,64606.54,19939.66,4251.68,88797.88,18845.95,12730.7,6724.16,38300.81,127098.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,37060,55968.66,0.0,43.2,56011.86,11540.8,7454.7,4454.89,23450.39,79462.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,52214,9565.23,0.0,0.0,9565.23,2145.49,1172.33,789.57,4107.39,13672.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44630,109543.65,1434.88,12095.92,123074.45,23103.54,10482.04,9783.46,43369.04,166443.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47965,112696.22,32010.77,9236.91,153943.9,22291.43,12424.5,2577.91,37293.84,191237.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29509,48612.71,241.05,5391.55,54245.31,11829.34,10812.19,4327.52,26969.05,81214.36 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,14815,2830.2,0.0,0.0,2830.2,634.81,477.86,245.22,1357.89,4188.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",30279,148823.35,50105.12,18602.91,217531.38,32876.34,15052.76,3664.44,51593.54,269124.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28227,1085.0,0.0,6.2,1091.2,0.0,418.13,84.51,502.64,1593.84 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),8152,7044.0,0.0,34607.08,41651.08,1658.64,477.86,3205.21,5341.71,46992.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,29706,39148.0,0.0,0.0,39148.0,7285.47,3822.94,3132.19,14240.6,53388.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,17972,93580.0,593.51,1869.0,96042.51,19749.36,11946.64,7900.63,39596.63,135639.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38589,3493.62,0.0,28.66,3522.28,0.0,869.11,273.02,1142.13,4664.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42864,10046.11,0.0,1223.99,11270.1,2438.84,4356.34,901.58,7696.76,18966.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,41876,72884.04,0.0,8065.82,80949.86,16069.66,11976.5,6666.93,34713.09,115662.95 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",45195,68344.8,34612.73,5246.14,108203.67,16779.6,12231.09,2029.94,31040.63,139244.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,8793,100761.0,18127.37,13303.44,132191.81,20865.24,12424.48,9943.03,43232.75,175424.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,25701,91615.28,29892.53,0.0,121507.81,19003.83,11668.64,9560.08,40232.55,161740.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,12054,81776.07,0.0,624.0,82400.07,16983.28,12424.5,6832.78,36240.56,118640.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7526,80570.31,9958.85,6167.86,96697.02,16659.28,12364.77,1756.39,30780.44,127477.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,19975,57824.02,13641.03,653.55,72118.6,13009.27,12424.5,5804.44,31238.21,103356.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36284,2217.25,0.0,0.0,2217.25,0.0,1081.17,172.05,1253.22,3470.47 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8147,Sr District Atty Investigator,21431,113567.88,7044.86,6814.07,127426.81,27461.71,12424.5,2169.33,42055.54,169482.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,14858,32655.0,50.64,956.2,33661.84,6130.68,5734.39,2737.64,14602.71,48264.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,36639,93309.19,0.0,1000.0,94309.19,19434.76,12428.26,8306.21,40169.23,134478.42 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,50847,76915.99,0.0,2087.74,79003.73,16252.21,12399.36,6293.24,34944.81,113948.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,716,34846.0,0.0,0.0,34846.0,7815.94,5734.39,2800.49,16350.82,51196.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,5647,7801.28,0.0,0.0,7801.28,0.0,2826.87,604.62,3431.49,11232.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,13379,5523.0,2901.59,475.32,8899.91,1262.84,1672.53,692.35,3627.72,12527.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,30588,150710.02,0.0,4598.55,155308.57,30686.9,12424.5,10389.52,53500.92,208809.49 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,47122,101943.55,0.0,0.0,101943.55,20651.84,6370.55,8003.01,35025.4,136968.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,40530,21705.0,0.0,0.0,21705.0,4039.29,3822.92,1752.22,9614.43,31319.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,53117,11993.24,0.0,76.5,12069.74,2188.25,936.61,931.08,4055.94,16125.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,12747,56531.0,0.0,624.0,57155.0,11780.12,12424.5,4692.36,28896.98,86051.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,13995,97762.85,8127.03,4043.62,109933.5,24752.76,12424.5,1105.33,38282.59,148216.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,39993,74241.0,6933.3,720.83,81895.13,15342.36,12281.09,6522.21,34145.66,116040.79 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,36719,82619.61,0.0,0.0,82619.61,16991.0,12424.49,6333.04,35748.53,118368.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11358,36188.19,4222.6,936.43,41347.22,9612.79,11305.36,3112.57,24030.72,65377.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,10411,24911.0,1276.49,1170.45,27357.94,5735.3,5734.39,2178.91,13648.6,41006.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50006,0.0,0.0,0.0,0.0,0.0,68.5,250.25,318.75,318.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,47128,136295.3,20929.81,11935.83,169160.94,26958.36,12424.5,2827.07,42209.93,211370.87 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",41504,112273.99,0.0,0.0,112273.99,22297.19,12424.5,16143.62,50865.31,163139.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",40619,12267.99,0.0,0.0,12267.99,0.0,2909.01,951.8,3860.81,16128.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3396,83485.03,0.0,12431.21,95916.24,17256.22,7277.89,7279.87,31813.98,127730.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,37790,112776.07,491.44,2255.52,115523.03,23150.49,12424.5,9231.53,44806.52,160329.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,14572,119467.38,7765.75,17278.74,144511.87,23620.96,12424.5,2416.68,38462.14,182974.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,36320,106116.01,0.0,0.0,106116.01,21870.85,12424.49,8510.65,42805.99,148922.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,13433,73876.97,22530.5,8177.22,104584.69,16026.04,12138.8,8549.15,36713.99,141298.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2608,Supply Room Attendant,11070,50905.02,156.68,2608.39,53670.09,12347.51,11946.64,4333.16,28627.31,82297.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9300,Port Operation,9393,Maritime Marketing Repr,14855,117517.01,0.0,0.0,117517.01,23650.48,12424.5,9332.5,45407.48,162924.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19533,7290.0,0.0,7.2,7297.2,0.0,2903.03,564.98,3468.01,10765.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,215,2247.88,0.0,0.0,2247.88,0.0,1096.1,174.46,1270.56,3518.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33142,8958.95,223.39,161.82,9344.16,0.0,2989.65,724.79,3714.44,13058.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5609,16466.61,1920.18,106.78,18493.57,4185.47,5118.84,1412.76,10717.07,29210.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,1005,62468.8,18316.63,8884.04,89669.47,12994.98,12424.5,7294.6,32714.08,122383.55 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,33248,93681.0,664.28,5580.95,99926.23,19443.96,12424.5,8265.8,40134.26,140060.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,31943,28147.11,0.0,0.0,28147.11,5446.06,6185.38,2283.6,13915.04,42062.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,53133,28468.0,0.0,1310.82,29778.82,6245.86,2628.25,2424.76,11298.87,41077.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6233,2372.56,0.0,189.82,2562.38,0.0,209.07,198.38,407.45,2969.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33115,96381.07,44548.17,19880.46,160809.7,28261.37,12248.05,2741.5,43250.92,204060.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,8786,8558.5,0.0,0.0,8558.5,0.0,2771.62,688.45,3460.07,12018.57 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,27651,5909.08,0.0,130.34,6039.42,1328.06,1278.3,469.8,3076.16,9115.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",23556,97989.0,11264.08,6927.17,116180.25,20384.25,12424.5,9492.71,42301.46,158481.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30302,454.15,113.54,0.0,567.69,128.52,143.35,43.95,315.82,883.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,15813,4350.05,0.0,0.0,4350.05,0.0,1439.57,337.63,1777.2,6127.25 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,39604,78520.2,19891.84,1447.19,99859.23,16801.25,10226.32,8016.52,35044.09,134903.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,47989,107978.03,1044.9,64.0,109086.93,22268.2,12424.5,8807.16,43499.86,152586.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,29954,94605.64,17399.64,727.69,112732.97,19637.19,11598.39,8946.28,40181.86,152914.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11858,6397.2,0.0,1066.23,7463.43,2140.13,502.0,413.67,3055.8,10519.23 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),24678,184289.03,0.0,5248.28,189537.31,38144.36,12424.5,11034.96,61603.82,251141.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23737,35288.83,2822.86,4810.05,42921.74,0.0,3046.39,3331.41,6377.8,49299.54 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,35570,19810.29,141.98,0.0,19952.27,1049.06,5958.38,1595.53,8602.97,28555.24 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,36169,9463.59,0.0,2086.32,11549.91,0.0,0.0,167.47,167.47,11717.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",14679,14081.5,0.0,0.0,14081.5,0.0,3345.05,1092.95,4438.0,18519.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4967,119003.2,22835.2,14784.62,156623.02,23547.28,12376.71,2654.94,38578.93,195201.95 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,4557,145200.0,0.0,0.0,145200.0,29221.73,12424.5,10238.3,51884.53,197084.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21954,87928.28,2418.69,11402.86,101749.83,-0.02,6399.81,4902.64,11302.43,113052.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,32146,61239.41,0.0,907.76,62147.17,12737.85,12296.08,5153.12,30187.05,92334.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29917,87713.67,2720.03,5286.47,95720.17,17891.07,9318.37,1592.21,28801.65,124521.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,52213,8143.42,0.0,244.32,8387.74,1881.38,1010.51,719.4,3611.29,11999.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,37455,117129.71,12173.78,9128.52,138432.01,23205.2,12424.5,2350.93,37980.63,176412.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42163,108193.55,0.0,0.0,108193.55,0.0,9386.89,8385.81,17772.7,125966.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,25869,154204.03,0.0,0.0,154204.03,31033.62,12424.5,10394.89,53853.01,208057.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,39462,5298.17,0.0,0.0,5298.17,0.0,1911.46,410.85,2322.31,7620.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,49147,14993.01,0.0,0.0,14993.01,3296.95,3345.06,1199.03,7841.04,22834.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36663,113233.61,16690.07,19540.3,149463.98,25036.04,15196.12,2545.15,42777.31,192241.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19487,14214.17,0.0,159.0,14373.17,0.0,4712.95,1114.21,5827.16,20200.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,776,69098.3,0.0,279.66,69377.96,14300.33,12424.5,5550.81,32275.64,101653.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,11861,75605.0,13784.08,12530.49,101919.57,17123.01,12424.5,8333.39,37880.9,139800.47 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,29282,46958.84,0.0,0.0,46958.84,8513.68,5154.55,3749.18,17417.41,64376.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6131,59336.41,0.0,1560.0,60896.41,13572.6,12424.5,4947.98,30945.08,91841.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47915,15148.09,1427.04,392.4,16967.53,3935.3,4781.69,1295.53,10012.52,26980.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,19748,81942.01,8376.47,10192.88,100511.36,18990.48,12424.5,8014.27,39429.25,139940.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,51718,79439.57,15793.94,3650.47,98883.98,17100.44,12418.53,7810.25,37329.22,136213.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49548,2566.01,0.0,58.74,2624.75,0.0,969.17,203.72,1172.89,3797.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,23130,7497.0,78.09,0.0,7575.09,1395.18,1433.59,582.43,3411.2,10986.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2995,64247.73,30506.34,6311.27,101065.34,17727.22,12661.22,7537.02,37925.46,138990.8 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,21969,67651.41,1895.42,8438.64,77985.47,15283.73,12376.71,6177.87,33838.31,111823.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,27914,82589.0,3165.32,1665.9,87420.22,17352.2,12424.49,7072.76,36849.45,124269.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2900,Human Services,2966,Welfare Fraud Investigator,1310,99602.0,0.0,0.0,99602.0,20528.27,12424.5,8174.53,41127.3,140729.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46885,82875.5,8797.57,6630.04,98303.11,18771.2,7645.85,1641.19,28058.24,126361.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50313,24914.94,1987.38,839.02,27741.34,6469.27,7740.9,2092.26,16302.43,44043.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23009,10951.44,0.0,272.87,11224.31,397.91,0.0,2849.66,3247.57,14471.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,8055,21011.27,0.0,0.0,21011.27,5420.9,4659.15,1641.02,11721.07,32732.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,13389,8402.07,0.0,0.0,8402.07,0.0,1164.79,141.62,1306.41,9708.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,10693,57524.0,1346.32,858.39,59728.71,12038.95,12424.5,4651.95,29115.4,88844.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44008,112159.75,37715.94,21421.21,171296.9,25279.3,15052.75,2920.73,43252.78,214549.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,11060,11386.27,0.0,79.71,11465.98,0.0,0.0,906.79,906.79,12372.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34545,39850.05,0.0,6641.68,46491.73,6909.94,0.0,6486.97,13396.91,59888.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,4100,53712.68,1041.93,2361.47,57116.08,11142.16,11804.17,4482.15,27428.48,84544.56 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,7830,9274.06,2361.19,0.0,11635.25,0.0,0.0,920.36,920.36,12555.61 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,15184,36569.0,0.0,198.67,36767.67,8202.48,6212.25,2924.31,17339.04,54106.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,11916,0.0,669.75,0.0,669.75,0.0,0.0,11.47,11.47,681.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43156,60262.8,14667.84,3330.68,78261.32,17429.37,11857.1,6069.54,35356.01,113617.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,38836,61428.01,792.44,3133.01,65353.46,13040.11,12424.5,5204.9,30669.51,96022.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4987,58837.82,0.0,11035.36,69873.18,531.03,0.0,7233.2,7764.23,77637.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,31708,42510.06,0.0,0.0,42510.06,8865.72,6741.48,3613.25,19220.45,61730.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47859,55855.0,0.0,7624.0,63479.0,13508.55,12424.5,5183.12,31116.17,94595.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",32791,130329.27,8707.58,22880.26,161917.11,30012.0,15052.75,2662.7,47727.45,209644.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19218,97771.38,13667.34,12507.86,123946.58,26834.45,12424.5,2110.69,41369.64,165316.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12420,42934.57,884.45,1636.34,45455.36,12871.76,8538.32,3322.04,24732.12,70187.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,47315,57902.71,778.39,810.0,59491.1,12181.36,11283.6,4708.86,28173.82,87664.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,36152,22539.08,0.0,263.5,22802.58,0.0,4026.02,1767.85,5793.87,28596.45 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2464,Senior Microbiologist,12002,107159.45,0.0,0.0,107159.45,22091.26,12394.64,8761.69,43247.59,150407.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,1753,96359.7,0.0,613.91,96973.61,19954.57,12223.56,7755.66,39933.79,136907.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2416,Laboratory Technician II,37202,56780.63,0.0,400.69,57181.32,12739.44,12424.5,4624.44,29788.38,86969.7 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2100,97764.88,28325.46,15930.22,142020.56,26943.98,12424.5,1637.42,41005.9,183026.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,13626,70999.07,189.66,1761.9,72950.63,14549.47,11662.89,5633.9,31846.26,104796.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49446,118109.61,335.7,7939.36,126384.67,22096.92,12418.59,9479.91,43995.42,170380.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,43799,118104.02,0.0,0.0,118104.02,23768.42,12424.5,9582.16,45775.08,163879.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,14074,11172.96,0.0,0.0,11172.96,0.0,3697.48,865.01,4562.49,15735.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,6080,61756.62,0.0,0.0,61756.62,12717.87,12424.5,4666.87,29809.24,91565.86 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39347,35712.34,1068.34,789.13,37569.81,8574.07,4586.31,616.53,13776.91,51346.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",32406,139080.05,50848.77,18456.43,208385.25,30659.48,14288.17,3403.53,48351.18,256736.43 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,46832,120111.0,0.0,21619.98,141730.98,24172.55,12424.5,10093.51,46690.56,188421.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22253,10981.58,0.0,1874.34,12855.92,0.0,967.38,995.31,1962.69,14818.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3516,124854.78,11704.1,19313.41,155872.29,25244.29,12424.5,2628.01,40296.8,196169.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,33303,92001.3,88453.64,3359.55,183814.49,19579.34,12424.5,10839.21,42843.05,226657.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,4220,111407.23,829.74,17446.21,129683.18,24801.12,9863.14,10054.02,44718.28,174401.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,20169,19370.63,0.0,278.19,19648.82,4693.27,5806.07,1590.82,12090.16,31738.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37180,35984.72,0.0,8068.82,44053.54,0.0,3145.37,3414.65,6560.02,50613.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,5376,68067.03,0.0,0.0,68067.03,14029.01,12424.52,5645.48,32099.01,100166.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,7840,113585.74,30561.2,7570.99,151717.93,24362.92,12448.33,10286.2,47097.45,198815.38 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,17928,4358.33,0.0,0.0,4358.33,913.42,289.71,337.64,1540.77,5899.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,37187,27827.4,0.0,0.0,27827.4,5178.69,4754.75,2229.66,12163.1,39990.5 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,40505,67261.0,5544.39,8145.16,80950.55,15105.73,12424.5,6665.92,34196.15,115146.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,36251,79296.42,0.0,0.0,79296.42,16337.29,12408.97,6285.18,35031.44,114327.86 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,15627,504.69,211.97,0.0,716.66,0.0,149.34,55.62,204.96,921.62 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),11423,184289.04,0.0,5248.28,189537.32,38144.36,12424.5,11026.4,61595.26,251132.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,39591,56531.0,612.28,5124.47,62267.75,12354.86,12472.29,4889.82,29716.97,91984.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25467,20843.25,0.0,3785.01,24628.26,346.19,0.0,4188.98,4535.17,29163.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41905,39280.67,1967.48,567.8,41815.95,10253.8,11780.05,3085.46,25119.31,66935.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,49767,136466.0,0.0,11867.28,148333.28,36059.88,12424.51,320.49,48804.88,197138.16 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",207,145121.01,0.0,1125.0,146246.01,28467.57,9079.44,7107.58,44654.59,190900.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25231,33458.78,13619.34,1286.47,48364.59,5922.18,3345.06,813.76,10081.0,58445.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,34288,85368.09,10601.63,1740.0,97709.72,17950.74,12424.5,7832.77,38208.01,135917.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18400,11197.5,0.0,100.0,11297.5,2048.24,1194.67,776.03,4018.94,15316.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39003,103982.18,8031.37,2727.9,114741.45,20837.46,11468.77,1924.67,34230.9,148972.35 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,43472,144601.01,0.0,0.0,144601.01,28951.84,12424.5,17508.57,58884.91,203485.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",46409,80501.65,22293.58,9269.57,112064.8,17634.66,12118.79,9148.95,38902.4,150967.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3372,Animal Control Officer,9278,42841.18,555.3,1005.08,44401.56,10161.33,10442.86,3562.57,24166.76,68568.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,52188,128599.85,0.0,0.0,128599.85,25853.98,12424.5,9837.17,48115.65,176715.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,23794,47051.55,3284.68,3002.89,53339.12,9796.86,8721.05,1362.27,19880.18,73219.3 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,49635,44150.56,0.0,405.78,44556.34,10658.44,10904.29,3388.17,24950.9,69507.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18509,91747.59,7995.69,3546.35,103289.63,18716.97,9557.31,1698.15,29972.43,133262.06 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1936,Senior Storekeeper,42023,12450.0,0.0,120.0,12570.0,2339.3,2389.33,986.38,5715.01,18285.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,47269,97489.01,0.0,0.0,97489.01,20140.87,12424.5,7803.91,40369.28,137858.29 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,33286,74221.23,0.0,2200.0,76421.23,15745.8,12233.35,6109.26,34088.41,110509.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,50543,76324.6,519.23,451.5,77295.33,15729.46,12424.49,6342.46,34496.41,111791.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,35144,150149.01,0.0,0.0,150149.01,30157.61,12424.5,27801.64,70383.75,220532.76 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,6654,116384.02,0.0,0.0,116384.02,23422.65,12424.5,9235.59,45082.74,161466.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,1132,25154.08,0.0,312.0,25466.08,6114.59,6212.25,2108.14,14434.98,39901.06 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,4785,21761.92,1942.94,0.0,23704.86,0.0,0.0,1875.31,1875.31,25580.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,48889,74165.05,0.0,600.0,74765.05,15409.1,12424.5,6028.77,33862.37,108627.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7785,58322.39,7061.11,821.08,66204.58,16021.74,11477.92,5057.33,32556.99,98761.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,29124,23914.43,115.51,284.95,24314.89,0.0,3948.36,1887.22,5835.58,30150.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,33500,73928.02,0.0,0.0,73928.02,14918.89,10035.18,6076.18,31030.25,104958.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,9522,6561.18,0.0,291.68,6852.86,0.0,2171.3,530.55,2701.85,9554.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,29781,46640.56,0.0,1232.0,47872.56,9853.1,6212.25,3835.61,19900.96,67773.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,32834,117139.2,19746.91,11726.25,148612.36,23170.33,12424.51,2521.19,38116.03,186728.39 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,25599,54586.83,0.0,0.0,54586.83,11447.12,10513.04,906.59,22866.75,77453.58 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,29220,111658.67,0.0,0.0,111658.67,22529.04,11612.13,17402.03,51543.2,163201.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,11188,107302.32,135.38,611.2,108048.9,17573.8,8902.1,8741.16,35217.06,143265.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,3643,8552.75,0.0,0.0,8552.75,2206.62,2795.63,696.94,5699.19,14251.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),53086,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11045.01,61600.15,251074.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,47777,943.15,0.0,90.26,1033.41,248.84,262.35,84.47,595.66,1629.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,9665,112170.36,9419.6,11036.67,132626.63,23347.67,15052.77,2214.98,40615.42,173242.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,32400,40641.0,0.0,0.0,40641.0,7645.82,6212.25,3099.55,16957.62,57598.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,15308,75927.0,0.0,624.0,76551.0,15777.43,12424.5,6095.44,34297.37,110848.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3428,Nursery Specialist,33425,2874.0,0.0,0.0,2874.0,534.85,477.86,226.95,1239.66,4113.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43782,3313.63,0.0,0.0,3313.63,0.0,1615.78,257.0,1872.78,5186.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39239,131282.57,3042.39,14057.67,148382.63,26302.04,11626.23,5893.53,43821.8,192204.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,84,153399.9,0.0,0.0,153399.9,30722.22,12424.5,17606.09,60752.81,214152.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,40561,113120.87,0.0,0.0,113120.87,22719.23,12388.66,9153.9,44261.79,157382.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13699,56531.0,0.0,1119.76,57650.76,11882.1,12424.5,4731.58,29038.18,86688.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,50371,5854.89,0.0,112.45,5967.34,0.0,1947.0,433.11,2380.11,8347.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38568,4451.19,0.0,6.44,4457.63,0.0,1485.38,345.76,1831.14,6288.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,20002,53915.12,0.0,821.82,54736.94,12225.58,12424.5,4399.58,29049.66,83786.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48147,112159.77,17820.24,20514.18,150494.19,25251.29,15052.75,2565.31,42869.35,193363.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24235,119467.4,12648.68,9407.54,141523.62,23620.99,12424.5,2355.73,38401.22,179924.84 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,48938,76913.27,0.0,1206.29,78119.56,15981.52,12399.18,6456.89,34837.59,112957.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,4636,61611.7,3295.91,3486.37,68393.98,12997.05,10465.25,5514.07,28976.37,97370.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28496,67487.74,9192.23,1348.05,78028.02,15662.52,13296.55,5925.29,34884.36,112912.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,16790,14022.0,306.15,1782.94,16111.09,3868.32,4300.79,1311.12,9480.23,25591.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33344,2143.75,0.0,0.0,2143.75,0.0,1045.33,166.37,1211.7,3355.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13021,111801.8,31132.61,17485.74,160420.15,24534.53,15004.98,2687.63,42227.14,202647.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36497,17207.64,3027.0,712.14,20946.78,4295.35,5317.76,1123.7,10736.81,31683.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,11726,135421.03,0.0,4721.77,140142.8,28195.52,12424.48,10177.46,50797.46,190940.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12454,119461.62,22957.86,4589.69,147009.17,23641.91,12424.5,2449.38,38515.79,185524.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7245,"Chf Statnry Eng,Wtrtreat Plnt",27714,118858.05,10261.91,11090.73,140210.69,24050.57,12424.5,10080.54,46555.61,186766.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,47955,93738.06,73.9,8570.86,102382.82,20877.74,12424.49,8246.75,41548.98,143931.8 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,50417,56259.8,0.0,0.0,56259.8,10850.75,7167.99,4466.77,22485.51,78745.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,25080,69701.16,0.0,0.0,69701.16,14346.25,12424.47,5059.95,31830.67,101531.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,13833,158362.37,10910.44,11355.76,180628.57,31276.35,12424.5,3006.66,46707.51,227336.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42013,77507.11,771.08,22635.39,100913.58,18083.42,6904.98,3913.26,28901.66,129815.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35729,122309.3,39581.88,13706.22,175597.4,24196.41,12424.5,2938.65,39559.56,215156.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,44762,14632.0,2389.13,1335.18,18356.31,3281.96,1911.47,1476.48,6669.91,25026.22 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,19623,11032.0,0.0,0.0,11032.0,0.0,1911.47,870.88,2782.35,13814.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,2664,45860.48,7552.27,1395.9,54808.65,9220.01,9089.18,4490.47,22799.66,77608.31 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,31733,5126.0,0.0,0.0,5126.0,929.34,477.86,397.86,1805.06,6931.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,44547,61735.0,0.0,617.1,62352.1,12851.28,12424.5,4916.87,30192.65,92544.75 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,40869,133087.09,0.0,5229.55,138316.64,26783.95,12424.5,10120.28,49328.73,187645.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,29974,81157.01,11335.19,12200.5,104692.7,18532.07,12424.49,8432.99,39389.55,144082.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8060,57207.73,5489.51,775.64,63472.88,15036.31,13104.74,4831.36,32972.41,96445.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38294,56531.0,0.0,3594.0,60125.0,11780.12,12424.5,4927.26,29131.88,89256.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25586,67077.82,6564.49,4846.17,78488.48,19723.38,13222.54,6085.25,39031.17,117519.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,50716,22352.5,302.72,0.0,22655.22,4721.24,5973.32,1802.63,12497.19,35152.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46900,113233.59,16759.38,23167.04,153160.01,25621.4,15196.12,2555.4,43372.92,196532.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41087,17573.98,3270.45,356.11,21200.54,4297.12,5427.54,1606.23,11330.89,32531.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,727,112698.1,36304.96,19721.17,168724.23,26323.18,12424.5,10595.8,49343.48,218067.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45573,43320.27,5262.44,4084.86,52667.57,13711.05,8615.02,3966.95,26293.02,78960.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8121,Investigator/Transit Fare Supv,38415,88526.66,4660.46,7861.23,101048.35,19496.89,12430.47,8728.95,40656.31,141704.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,42090,54239.9,0.0,0.0,54239.9,10937.9,10035.18,4217.77,25190.85,79430.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6221,29822.24,0.0,0.0,29822.24,6421.62,6111.06,2372.33,14905.01,44727.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,5143,13084.0,1875.25,534.78,15494.03,2462.37,1911.46,1217.51,5591.34,21085.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,17516,39463.5,0.0,0.0,39463.5,7154.75,3321.15,3080.6,13556.5,53020.0 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8143,Sr Public Defenders Invstgtor,35475,101531.0,0.0,624.0,102155.0,21054.65,12424.5,8187.78,41666.93,143821.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,43593,62811.03,0.0,1320.0,64131.03,13175.52,12424.5,5177.39,30777.41,94908.44 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8146,District Attry's Investigator,39592,104538.08,8616.62,6272.28,119426.98,25296.65,12424.5,1992.62,39713.77,159140.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,23002,74194.0,0.0,560.0,74754.0,15233.73,11247.4,5882.62,32363.75,107117.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36840,68425.48,14453.05,3896.58,86775.11,19780.32,13481.72,6785.3,40047.34,126822.45 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,28878,208898.65,0.0,1200.0,210098.65,42266.96,12113.89,11313.0,65693.85,275792.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19781,112170.35,8412.38,18464.32,139047.05,24730.05,15052.76,2358.89,42141.7,181188.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,31702,1039.95,0.0,0.0,1039.95,0.0,89.6,80.59,170.19,1210.14 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,48738,24006.01,0.0,0.0,24006.01,4467.53,3345.06,1915.89,9728.48,33734.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,37873,85737.04,0.0,0.0,85737.04,17698.73,10387.6,6885.94,34972.27,120709.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30830,66002.22,2764.69,2324.33,71091.24,16008.85,13005.94,5387.64,34402.43,105493.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,26340,111630.08,7261.55,19955.63,138847.26,24654.01,12247.46,2319.21,39220.68,178067.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,51944,80508.58,4167.61,8555.34,93231.53,16727.11,12424.5,6946.43,36098.04,129329.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,1882,13084.01,0.0,118.36,13202.37,2456.96,1911.46,1060.56,5428.98,18631.35 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,10293,302.81,302.81,0.0,605.62,0.0,89.6,47.01,136.61,742.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9140,Transit Manager 1,9295,30938.8,0.0,709.18,31647.98,6508.63,4300.79,2475.94,13285.36,44933.34 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,36554,200107.1,0.0,9609.68,209716.78,40264.74,12424.5,3530.34,56219.58,265936.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,13497,64956.06,152.21,1030.73,66139.0,13592.85,11397.16,5210.85,30200.86,96339.86 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),27203,68107.28,0.0,750.0,68857.28,13520.94,8016.2,5511.73,27048.87,95906.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20524,57371.05,0.0,4825.25,62196.3,1229.79,0.0,6824.63,8054.42,70250.72 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,29240,61988.23,0.0,125.0,62113.23,12668.16,9989.66,4419.72,27077.54,89190.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,19200,140168.59,5266.35,3930.23,149365.17,27713.86,12424.5,2498.83,42637.19,192002.36 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,7098,64178.32,5355.83,1447.26,70981.41,13225.23,12424.5,5391.47,31041.2,102022.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,37701,34299.39,0.0,0.0,34299.39,8041.75,9554.32,2671.32,20267.39,54566.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,2052,27469.19,0.0,0.0,27469.19,0.0,4953.37,1957.7,6911.07,34380.26 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,41106,0.0,0.0,187.96,187.96,0.0,68.5,14.38,82.88,270.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,23678,97764.14,33763.84,9713.57,141241.55,26146.97,12424.5,358.68,38930.15,180171.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,17660,21445.0,0.0,0.0,21445.0,4705.05,2389.33,1780.09,8874.47,30319.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,5798,34682.78,0.0,1887.51,36570.29,7541.66,6182.39,1997.7,15721.75,52292.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",44865,131577.06,11333.33,10173.21,153083.6,27805.98,15196.12,2569.34,45571.44,198655.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7284,Utility Plumber Supervisor 2,10051,125004.04,26455.0,24868.45,176327.49,26551.27,12424.49,10707.16,49682.92,226010.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43264,4886.7,0.0,78.76,4965.46,0.0,1630.7,384.43,2015.13,6980.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,14048,52492.51,0.0,0.0,52492.51,9516.91,4778.66,4196.63,18492.2,70984.71 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",15429,225.0,0.0,0.0,225.0,0.0,0.0,17.79,17.79,242.79 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,31929,61735.01,0.0,1129.32,62864.33,12957.27,12424.5,5204.63,30586.4,93450.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,42131,7894.31,0.0,0.0,7894.31,0.0,2861.22,611.8,3473.02,11367.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,4781,47184.8,3438.67,4800.28,55423.75,9791.39,8744.94,1376.1,19912.43,75336.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33904,2355.37,0.0,302.67,2658.04,1528.54,165.76,1056.3,2750.6,5408.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,35828,97845.0,0.0,0.0,97845.0,20095.2,11946.64,7971.58,40013.42,137858.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18831,50048.01,0.0,556.32,50604.33,10310.62,10990.91,4183.74,25485.27,76089.6 +Calendar,2015,1,Public Protection,POL,Police,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",5868,1104.0,0.0,0.0,1104.0,0.0,65.94,33.3,99.24,1203.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,24767,58765.16,0.0,640.0,59405.16,12241.27,12420.92,4872.37,29534.56,88939.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5214,Building Plans Engineer,19510,67940.99,0.0,0.0,67940.99,0.0,5650.76,5267.68,10918.44,78859.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,14085,114783.31,0.0,5000.0,119783.31,23083.24,9844.03,8778.23,41705.5,161488.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48426,62367.46,15739.23,1317.89,79424.58,17260.77,12273.67,6122.94,35657.38,115081.96 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,12293,103507.01,0.0,0.0,103507.01,21329.81,12424.5,8160.44,41914.75,145421.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,1657,61735.01,0.0,0.0,61735.01,12724.0,12424.5,5119.87,30268.37,92003.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,5598,36753.34,0.0,0.0,36753.34,7983.97,4675.62,3013.97,15673.56,52426.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,52714,125476.0,0.0,0.0,125476.0,25252.11,12424.52,9835.71,47512.34,172988.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,19242,108994.03,0.0,0.0,108994.03,22426.27,12424.5,8750.61,43601.38,152595.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,15301,60440.04,0.0,374.67,60814.71,12590.02,10339.87,5070.71,28000.6,88815.31 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,44945,200988.1,0.0,30148.24,231136.34,46417.45,12090.0,11602.1,70109.55,301245.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,42933,11242.31,0.0,0.0,11242.31,2092.19,2125.96,893.99,5112.14,16354.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,36665,18478.14,0.0,0.0,18478.14,0.0,6086.8,1528.69,7615.49,26093.63 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,48798,65241.45,1801.54,6381.04,73424.03,14415.2,11933.85,5659.87,32008.92,105432.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,351.0,Municipal Executive Association - Miscellaneous,9200,Airport Operation,9251,Public Relations Mgr,27193,21760.0,0.0,0.0,21760.0,4049.55,2389.33,4123.63,10562.51,32322.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1662,Patient Accounts Asst Sprv,16426,76728.0,3041.16,624.0,80393.16,15942.8,12424.5,6397.22,34764.52,115157.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30782,61547.07,22121.27,1525.08,85193.42,17181.19,12119.15,6616.39,35916.73,121110.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,44044,128959.02,0.0,0.0,128959.02,25953.06,12424.51,9975.02,48352.59,177311.61 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),38677,150747.49,0.0,4264.91,155012.4,31168.42,10161.52,10302.57,51632.51,206644.91 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,41871,66801.1,646.65,0.0,67447.75,12409.38,6690.11,4508.68,23608.17,91055.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,25536,77038.19,0.0,0.0,77038.19,16234.44,7425.91,6133.46,29793.81,106832.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,7462,108038.0,29245.98,5098.51,142382.49,22586.68,12424.52,10130.83,45142.03,187524.52 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,44492,25452.0,0.0,909.0,26361.0,6545.78,6690.11,2164.08,15399.97,41760.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,34114,23016.0,7195.4,4423.3,34634.7,4647.95,2867.19,2179.52,9694.66,44329.36 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,1816,86850.03,0.0,1200.0,88050.03,18141.81,12424.5,6854.97,37421.28,125471.31 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,23800,108383.93,80572.85,13554.3,202511.08,29664.66,12424.5,3408.56,45497.72,248008.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,47201,66563.55,0.0,0.0,66563.55,13735.07,9983.27,5149.78,28868.12,95431.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50531,117135.33,31579.9,13503.51,162218.74,23184.68,12424.5,2663.73,38272.91,200491.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,45352,68983.99,0.0,0.0,68983.99,14199.65,12424.5,5619.08,32243.23,101227.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,27012,48541.02,960.56,991.58,50493.16,11569.69,11468.77,4089.68,27128.14,77621.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,11689,62619.6,0.0,1263.23,63882.83,13140.57,12328.92,5043.42,30512.91,94395.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,35094,14547.55,416.44,0.0,14963.99,3263.01,3130.01,1199.41,7592.43,22556.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,33572,20850.67,0.0,918.52,21769.19,2711.03,5453.64,1746.71,9911.38,31680.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,34635,74661.01,455.25,455.25,75571.51,15359.74,12424.5,6074.43,33858.67,109430.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,29232,156746.01,0.0,0.0,156746.01,31545.23,12424.5,10310.11,54279.84,211025.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,38438,22680.01,0.0,192.0,22872.01,5130.17,3822.92,1817.69,10770.78,33642.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43385,52485.07,699.11,590.56,53774.74,10865.09,11529.82,4350.17,26745.08,80519.82 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,51666,8143.05,0.0,0.0,8143.05,1589.08,0.0,644.33,2233.41,10376.46 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31941,5092.5,0.0,456.75,5549.25,0.0,2172.8,429.62,2602.42,8151.67 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,47707,370.25,0.0,0.0,370.25,81.23,23.89,28.44,133.56,503.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,12650,97934.04,0.0,96.0,98030.04,20197.44,12424.5,8087.09,40709.03,138739.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,30565,1540.0,0.0,0.0,1540.0,345.43,238.93,121.68,706.04,2246.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34108,2807.57,0.0,70.84,2878.41,0.0,689.91,223.4,913.31,3791.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,39968,22433.17,861.64,0.0,23294.81,0.0,6230.17,1807.48,8037.65,31332.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,20273,130845.81,76310.74,16814.43,223970.98,29010.97,15196.12,3774.72,47981.81,271952.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5966,10963.5,0.0,565.44,11528.94,0.0,4202.21,893.68,5095.89,16624.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,23321,97741.85,39989.0,13625.98,151356.83,27088.93,12421.52,2524.63,42035.08,193391.91 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,12411,9603.0,0.0,52.28,9655.28,0.0,2897.06,787.78,3684.84,13340.12 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",3367,644.0,0.0,0.0,644.0,0.0,0.0,50.88,50.88,694.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),10052,7246.8,0.0,0.0,7246.8,0.0,2102.61,561.04,2663.65,9910.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,12606,0.0,0.0,2398.89,2398.89,0.0,0.0,34.78,34.78,2433.67 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,2.0,Management Unrepresented Employees,1200,Personnel,1282,"Manager,Employee Relations Div",33080,78011.03,0.0,0.0,78011.03,14486.27,6690.11,9794.26,30970.64,108981.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,12410,101733.0,14750.58,14737.12,131220.7,22600.65,12424.5,9964.47,44989.62,176210.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,9305,52848.28,6297.09,9315.5,68460.87,13253.88,11964.57,5454.67,30673.12,99133.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,898,51100.0,105.75,80.0,51285.75,10469.83,11468.76,4169.89,26108.48,77394.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,3142,72355.82,0.0,0.0,72355.82,14906.63,12424.5,5957.61,33288.74,105644.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,36963,58101.02,0.0,624.0,58725.02,12103.58,12424.5,4822.71,29350.79,88075.81 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,15697,71146.14,0.0,0.0,71146.14,14582.46,11687.22,4957.32,31227.0,102373.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3332,112696.21,748.07,13692.19,127136.47,22291.44,12424.5,2164.26,36880.2,164016.67 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,15413,113623.03,0.0,0.0,113623.03,22866.76,12424.5,8704.3,43995.56,157618.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,52869,17284.91,0.0,0.0,17284.91,3800.97,5734.39,1399.93,10935.29,28220.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30241,5360.5,0.0,2071.06,7431.56,0.0,453.61,575.64,1029.25,8460.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,17241,38721.2,3504.9,1998.59,44224.69,7231.61,5638.81,3413.03,16283.45,60508.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,48882,50855.58,0.0,1670.03,52525.61,10981.09,9051.07,4322.05,24354.21,76879.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,40252,67261.11,0.0,0.0,67261.11,13855.45,12424.5,5502.78,31782.73,99043.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35810,61590.28,3788.36,5270.13,70648.77,18267.31,12133.12,5247.64,35648.07,106296.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2356,98830.82,8806.77,10885.24,118522.83,20518.11,12424.5,1977.79,34920.4,153443.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,45177,113135.84,4208.95,2123.67,119468.46,23112.93,8218.69,9504.19,40835.81,160304.27 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3544,Curator 3,37183,82914.04,0.0,0.0,82914.04,17088.83,12424.5,6790.79,36304.12,119218.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1839,Water Conservation Admin,15535,122071.73,0.0,0.0,122071.73,24521.48,12281.15,17010.59,53813.22,175884.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,12187,25765.14,0.0,550.5,26315.64,726.33,6897.21,2039.95,9663.49,35979.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,29201,63713.85,2968.13,1751.0,68432.98,13497.08,11767.43,5671.29,30935.8,99368.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,5809,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,51028,67911.04,2952.95,6241.21,77105.2,14669.91,12424.5,5924.87,33019.28,110124.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,15828,145200.07,0.0,0.0,145200.07,29221.73,12424.5,10138.65,51784.88,196984.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36214,97108.23,2818.54,7756.91,107683.68,19782.68,15052.76,1776.74,36612.18,144295.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43647,62461.1,3898.35,920.0,67279.45,13020.99,12424.5,5454.7,30900.19,98179.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,10406,7497.0,78.09,0.0,7575.09,1395.18,1433.59,582.43,3411.2,10986.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,43137,62468.83,0.0,1748.68,64217.51,13165.18,12424.5,5243.81,30833.49,95051.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34944,34974.57,0.0,1124.98,36099.55,0.0,2896.94,2794.25,5691.19,41790.74 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,9315,9825.01,0.0,823.09,10648.1,2534.85,2389.33,832.6,5756.78,16404.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,24311,86543.97,0.0,1996.18,88540.15,18248.66,11528.51,7327.13,37104.3,125644.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",1400,"Clerical, Secretarial & Steno",1434,Shelter Service Rep,29774,47923.69,218.75,1238.64,49381.08,11564.35,11704.42,4021.33,27290.1,76671.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,13585,35933.01,243.11,0.0,36176.12,7394.72,8123.71,2931.52,18449.95,54626.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40190,56531.0,0.0,5958.08,62489.08,12374.18,12424.5,5150.09,29948.77,92437.85 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,40737,77071.01,0.0,0.0,77071.01,15884.7,12424.5,6275.72,34584.92,111655.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7962,27905.16,0.0,7757.06,35662.22,6810.08,2339.87,2933.53,12083.48,47745.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32448,63805.15,8955.2,3902.59,76662.94,16727.54,12650.66,5821.9,35200.1,111863.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,51697,62811.0,25044.33,16696.97,104552.3,15459.93,12424.5,8509.97,36394.4,140946.7 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,27305,27125.0,0.0,0.0,27125.0,5047.95,5734.39,2131.81,12914.15,40039.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,49460,75605.07,0.0,2490.22,78095.29,16051.4,12424.5,6452.95,34928.85,113024.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11855,42027.65,2705.58,776.35,45509.58,11101.69,12777.1,3228.04,27106.83,72616.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,37988,85004.0,268.05,11233.31,96505.36,19271.56,12424.5,7886.01,39582.07,136087.43 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,49386,92439.8,0.0,440.0,92879.8,18718.09,10263.66,7405.24,36386.99,129266.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,14448,71612.03,0.0,624.0,72236.03,14888.01,12424.5,5630.66,32943.17,105179.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,47530,23025.27,0.0,600.0,23625.27,0.0,3402.29,1829.22,5231.51,28856.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2458,Forensic Toxicologist,12103,209466.06,0.0,28444.19,237910.25,42155.15,12424.5,11813.21,66392.86,304303.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,841,43507.91,4464.39,901.88,48874.18,11840.16,13094.53,3705.25,28639.94,77514.12 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,1525,73406.04,4334.08,5191.38,82931.5,15361.24,12424.5,6533.64,34319.38,117250.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46894,44648.61,3482.91,1300.24,49431.76,11905.36,13164.0,3709.71,28779.07,78210.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,16063,2474.34,0.0,27.48,2501.82,561.16,0.0,270.88,832.04,3333.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",7242,150234.0,6773.58,9316.44,166324.02,31351.02,15196.12,2780.62,49327.76,215651.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,17212,54100.28,0.0,4962.33,59062.61,13334.63,11659.32,4727.72,29721.67,88784.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",51088,81904.5,0.0,24268.0,106172.5,17969.85,6451.18,17385.91,41806.94,147979.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,2225,143724.8,14673.41,19970.92,178369.13,28970.28,12424.5,3033.7,44428.48,222797.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,1601,92282.03,0.0,32.0,92314.03,19025.76,12424.5,7570.9,39021.16,131335.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,6374,64174.02,2182.6,1786.89,68143.51,13466.84,11377.92,5616.58,30461.34,98604.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,36433,841.4,0.0,0.0,841.4,217.07,238.93,79.35,535.35,1376.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,44028,56531.0,653.1,2930.55,60114.65,11796.81,12424.5,4926.44,29147.75,89262.4 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,5243,12093.36,0.0,0.0,12093.36,0.0,4491.93,937.81,5429.74,17523.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20512,48366.27,3242.88,739.54,52348.69,13243.56,9513.4,4011.88,26768.84,79117.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,9202,118104.09,0.0,0.0,118104.09,23768.42,12424.5,9501.15,45694.07,163798.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,34109,124251.4,0.0,0.0,124251.4,24963.03,12424.5,24831.85,62219.38,186470.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46445,1038.45,0.0,60.58,1099.03,0.0,0.0,18.84,18.84,1117.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,5767,24711.31,0.0,1070.31,25781.62,0.0,5421.8,1996.02,7417.82,33199.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19804,46059.68,8394.02,3530.98,57984.68,13383.08,9038.35,4514.07,26935.5,84920.18 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,39942,23326.0,0.0,0.0,23326.0,5129.39,5734.39,1763.56,12627.34,35953.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,2987,67417.0,497.1,2275.85,70189.95,14360.56,12424.49,5559.04,32344.09,102534.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,36486,115145.58,10437.51,14882.1,140465.19,22754.69,12212.44,2337.98,37305.11,177770.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,2804,5120.03,0.0,185.75,5305.78,0.0,1688.95,411.82,2100.77,7406.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,25741,65774.01,0.0,0.0,65774.01,13556.27,12424.5,5203.37,31184.14,96958.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40121,65553.41,16781.13,1716.26,84050.8,18368.32,12912.22,6564.79,37845.33,121896.13 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,12527,180520.0,0.0,665.0,181185.0,36482.2,12424.5,10718.57,59625.27,240810.27 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,32891,18519.3,0.0,1326.26,19845.56,0.0,0.0,1567.79,1567.79,21413.35 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,2376,115541.0,0.0,0.0,115541.0,23252.6,12424.5,9170.29,44847.39,160388.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,33733,128437.79,48363.42,12472.9,189274.11,27774.67,14916.56,3216.01,45907.24,235181.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31577,8816.0,0.0,0.0,8816.0,0.0,3822.92,703.49,4526.41,13342.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13714,34530.11,554.29,5221.43,40305.83,7060.79,3742.88,3197.19,14000.86,54306.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,47404,27388.8,0.0,5508.19,32896.99,6009.12,1720.32,2674.05,10403.49,43300.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,2865,82169.5,12557.33,0.0,94726.83,16954.59,12424.5,7752.25,37131.34,131858.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38399,64981.78,4667.78,2133.22,71782.78,18361.04,12806.2,5543.85,36711.09,108493.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,38161,21937.9,0.0,347.65,22285.55,5351.94,6427.29,1805.9,13585.13,35870.68 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,48849,94400.52,7965.86,8915.84,111282.22,25042.04,11995.15,1862.09,38899.28,150181.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,3592,108372.19,77320.86,22974.14,208667.19,31146.99,12424.5,2997.41,46568.9,255236.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23505,42102.6,317.8,6635.05,49055.45,10773.73,9396.03,4002.46,24172.22,73227.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,37506,70931.03,0.0,0.0,70931.03,14619.09,12424.5,5590.44,32634.03,103565.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",45168,13241.53,0.0,0.0,13241.53,0.0,3141.97,1027.56,4169.53,17411.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,34324,74165.06,0.0,618.75,74783.81,15413.32,12424.53,6200.66,34038.51,108822.32 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,33539,3537.0,0.0,0.0,3537.0,793.35,477.88,289.79,1561.02,5098.02 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,43180,9174.44,354.39,276.6,9805.43,0.0,2419.19,761.07,3180.26,12985.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,27349,66363.82,0.0,0.0,66363.82,13648.37,12424.5,5337.65,31410.52,97774.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,29023,89854.4,59655.39,8418.99,157928.78,20029.19,10513.04,10357.18,40899.41,198828.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,20353,120111.0,0.0,0.0,120111.0,24172.55,12424.5,9803.54,46400.59,166511.59 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,35782,5962.32,0.0,0.0,5962.32,0.0,1305.17,462.77,1767.94,7730.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,47450,56531.0,0.0,7742.0,64273.0,13748.44,12424.5,4937.83,31110.77,95383.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,19991,56757.47,19.78,0.0,56777.25,12640.98,12423.01,4618.53,29682.52,86459.77 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,45145,1444.0,0.0,0.0,1444.0,372.55,477.86,111.8,962.21,2406.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,32598,104194.03,0.0,0.0,104194.03,21427.33,12424.5,8408.13,42259.96,146453.99 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,45180,154391.12,0.0,6712.12,161103.24,31347.67,10244.24,10429.55,52021.46,213124.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16091,40828.76,387.24,5898.7,47114.7,9654.67,3637.33,3522.1,16814.1,63928.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,45474,49171.11,0.0,1407.39,50578.5,10206.67,9222.81,4794.92,24224.4,74802.9 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,13412,9904.26,0.0,0.0,9904.26,2221.53,573.44,1093.74,3888.71,13792.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4556,65975.28,687.22,2121.72,68784.22,18644.33,13001.7,5384.59,37030.62,105814.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,15843,66778.99,0.0,1160.01,67939.0,14317.21,10045.87,5604.55,29967.63,97906.63 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,25025,180520.0,0.0,16060.5,196580.5,36329.86,12424.5,11098.6,59852.96,256433.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,30708,156746.05,0.0,0.0,156746.05,32329.09,12424.47,10441.12,55194.68,211940.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23998,117129.71,40603.74,9719.98,167453.43,23205.2,12424.5,2808.51,38438.21,205891.64 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,20620,112209.03,0.0,0.0,112209.03,22582.31,12424.5,8942.28,43949.09,156158.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,7967,72707.33,0.0,0.0,72707.33,15351.12,9716.61,5789.23,30856.96,103564.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,1094,111918.02,2727.23,0.0,114645.25,22523.68,12424.51,9178.52,44126.71,158771.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8283,91953.99,103.97,17910.91,109968.87,15815.29,9989.78,8322.21,34127.28,144096.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,31402,51405.0,294.75,2047.98,53747.73,12452.35,12424.5,4447.78,29324.63,83072.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7981,112692.91,26088.6,2779.8,141561.31,22303.28,12424.5,2403.68,37131.46,178692.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,31232,84458.96,5939.32,9016.01,99414.29,17448.18,12424.5,1649.04,31521.72,130936.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27720,64819.07,10424.17,770.3,76013.54,14949.88,12773.7,5809.03,33532.61,109546.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24844,1005.75,0.0,33.53,1039.28,0.0,0.0,65.53,65.53,1104.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,4907,65333.94,2344.5,2657.4,70335.84,14009.4,12281.14,5565.31,31855.85,102191.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4646,132873.12,0.0,0.0,132873.12,0.0,10308.75,9574.24,19882.99,152756.11 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,35555,227731.0,0.0,11386.56,239117.56,48106.41,12424.5,11807.27,72338.18,311455.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,12696,40760.6,0.0,2022.15,42782.75,8844.08,8967.68,3558.59,21370.35,64153.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,29434,38601.15,0.0,0.0,38601.15,7271.58,4545.87,3096.77,14914.22,53515.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13766,106209.79,0.0,4946.79,111156.58,20791.56,10437.54,8871.91,40101.01,151257.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",43272,118858.01,14752.86,0.0,133610.87,23920.24,12424.49,10014.18,46358.91,179969.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14103,24970.2,0.0,3683.48,28653.68,0.0,0.0,492.84,492.84,29146.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,26139,101733.0,0.0,0.0,101733.0,20967.28,12424.5,8433.54,41825.32,143558.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36050,63194.49,21258.25,2929.21,87381.95,18032.68,12449.9,7241.52,37724.1,125106.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,48991,6534.0,0.0,0.0,6534.0,1465.59,1433.6,542.4,3441.59,9975.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35809,17700.53,0.0,0.0,17700.53,3892.37,4061.85,1418.89,9373.11,27073.64 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,48944,11527.47,296.69,0.0,11824.16,0.0,0.0,935.47,935.47,12759.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4203,3584.7,0.0,0.0,3584.7,0.0,1505.27,285.95,1791.22,5375.92 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,9638,694.76,0.0,0.0,694.76,0.0,167.25,53.78,221.03,915.79 +Calendar,2015,1,Public Protection,CRT,Superior Court,196.0,Court Unrepresented Managers,SCRT,SF Superior Court,876C,"Director, Human Resources",29885,25195.0,0.0,29708.05,54903.05,5527.8,2389.33,7986.6,15903.73,70806.78 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8169,Legislative Asst City Atty Ofc,3659,2758.0,0.0,0.0,2758.0,618.62,477.86,206.02,1302.5,4060.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,28569,48235.86,0.0,561.6,48797.46,10280.3,6133.47,3994.91,20408.68,69206.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45221,42364.3,0.0,8485.29,50849.59,0.0,3679.56,3945.44,7625.0,58474.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,20955,75927.01,0.0,624.0,76551.01,15777.43,12424.5,6054.42,34256.35,110807.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,4554,66836.88,0.0,535.03,67371.91,13815.23,10607.18,5630.53,30052.94,97424.85 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,2127,11109.7,0.0,0.0,11109.7,0.0,1481.39,862.16,2343.55,13453.25 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),26180,184289.0,0.0,1562.5,185851.5,37402.54,12424.5,10839.94,60666.98,246518.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25578,64541.29,18194.49,1730.05,84465.83,18121.11,12716.0,6592.21,37429.32,121895.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,31570,43811.82,8825.01,6327.35,58964.18,10293.49,8701.82,4904.8,23900.11,82864.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,49145,54861.8,0.0,7185.16,62046.96,13868.62,12424.5,4975.02,31268.14,93315.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38443,47153.39,5923.85,1327.66,54404.9,13384.31,9276.86,4411.97,27073.14,81478.04 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,39531,4840.0,0.0,0.0,4840.0,0.0,289.11,375.17,664.28,5504.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,12313,175885.44,0.0,0.0,175885.44,35390.93,12424.5,18043.16,65858.59,241744.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10498,63887.0,13323.64,4834.95,82045.59,13700.63,12424.5,6441.73,32566.86,114612.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,30405,40389.01,0.0,180.0,40569.01,8114.39,7566.7,3294.76,18975.85,59544.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,38079,4560.11,0.0,41.71,4601.82,0.0,1240.96,356.27,1597.23,6199.05 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,27489,203447.18,0.0,0.0,203447.18,39325.17,11783.51,11137.68,62246.36,265693.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,40659,95968.01,0.0,0.0,95968.01,19779.2,12424.51,7667.22,39870.93,135838.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,4341,10933.9,1005.71,51.58,11991.19,0.0,2532.69,930.58,3463.27,15454.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20415,2505.13,0.0,7.84,2512.97,0.0,1221.54,194.94,1416.48,3929.45 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6589,9820.07,0.0,249.6,10069.67,0.0,0.0,796.54,796.54,10866.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,24031,74165.02,0.0,0.0,74165.02,15285.75,12424.5,6084.15,33794.4,107959.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,39167,87114.03,1054.21,2292.51,90460.75,18176.65,10731.12,7271.72,36179.49,126640.24 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,51376,15171.56,0.0,9134.52,24306.08,3437.64,3072.02,1930.73,8440.39,32746.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,49905,65579.56,0.0,0.0,65579.56,13514.25,12113.9,5439.06,31067.21,96646.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43912,41040.09,4880.14,1657.14,47577.37,12128.66,8119.59,3444.78,23693.03,71270.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,9104,91824.08,0.0,0.0,91824.08,18920.68,12389.08,7343.6,38653.36,130477.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,32216,48319.91,0.0,7527.9,55847.81,10907.6,6546.76,4577.37,22031.73,77879.54 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,5951,62585.0,0.0,580.35,63165.35,12932.88,11555.38,5137.58,29625.84,92791.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,370,68070.17,14763.1,4968.39,87801.66,19996.36,13411.17,6862.48,40270.01,128071.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,17883,46227.45,1423.06,7459.67,55110.18,9745.15,10567.69,4231.14,24543.98,79654.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52163,77102.19,21822.34,9937.49,108862.02,17448.9,15196.12,1814.4,34459.42,143321.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8501,27655.73,0.0,3587.55,31243.28,6588.41,2241.79,1399.64,10229.84,41473.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,9723,116976.01,0.0,0.0,116976.01,23541.49,12424.5,9107.46,45073.45,162049.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30511,51215.42,7141.52,2238.94,60595.88,14292.75,10061.28,4550.09,28904.12,89500.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17281,140334.02,0.0,9017.83,149351.85,29015.25,12424.5,7998.69,49438.44,198790.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49881,56531.0,0.0,1297.8,57828.8,11780.12,12424.5,4734.37,28938.99,86767.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28604,1223.8,0.0,183.58,1407.38,1141.26,95.76,479.97,1716.99,3124.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,37382,5769.05,222.6,826.21,6817.86,1298.3,1857.7,541.19,3697.19,10515.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",3891,150234.01,8911.63,14550.25,173695.89,32236.66,15196.12,2906.93,50339.71,224035.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38152,55631.59,5898.93,1568.77,63099.29,14840.09,13240.52,4592.03,32672.64,95771.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,7734,129129.07,55993.62,15596.71,200719.4,28402.36,14995.89,3378.58,46776.83,247496.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,34403,82883.0,4993.46,600.0,88476.46,17194.05,12424.5,6926.31,36544.86,125021.32 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,202,113623.01,0.0,0.0,113623.01,22866.76,12424.5,9072.42,44363.68,157986.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,32393,50476.99,0.0,460.0,50936.99,10233.63,8113.31,4238.08,22585.02,73522.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,23901,108895.03,0.0,0.0,108895.03,22963.64,10035.18,8758.8,41757.62,150652.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,42360,84967.51,12196.93,666.38,97830.82,17151.72,12424.56,7858.11,37434.39,135265.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43439,40487.74,6080.08,1054.64,47622.46,10782.57,12338.25,3607.94,26728.76,74351.22 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,5470,85004.01,2418.23,1877.67,89299.91,17519.6,12424.5,7253.11,37197.21,126497.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46251,136049.55,0.0,9480.55,145530.1,23048.31,12422.54,5424.63,40895.48,186425.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9104,Transit Car Cleaner Asst Sprv,6874,68340.6,6350.06,12172.99,86863.65,16106.03,12328.92,6991.72,35426.67,122290.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,3387,112073.18,11073.84,8094.82,131241.84,23778.18,12412.56,9969.64,46160.38,177402.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49597,119128.08,1000.64,12133.15,132261.87,18887.72,11010.02,8863.43,38761.17,171023.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30866,11251.71,0.0,0.0,11251.71,1117.21,4821.06,911.14,6849.41,18101.12 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0963,Dept Head III,4140,194929.0,0.0,0.0,194929.0,39210.5,12424.5,28558.65,80193.65,275122.65 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,38429,95105.23,0.0,0.0,95105.23,19162.15,10990.9,14455.92,44608.97,139714.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,405,68091.44,2846.91,6063.89,77002.24,20311.17,13415.12,5668.33,39394.62,116396.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,18929,75306.7,10485.03,5072.45,90864.18,15793.97,12376.71,6972.23,35142.91,126007.09 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),37263,59874.01,0.0,35970.0,95844.01,13300.9,4061.85,7671.19,25033.94,120877.95 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0884,Mayoral Staff IV,8936,58652.0,0.0,0.0,58652.0,12088.51,12424.5,12716.81,37229.82,95881.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,32869,3665.2,0.0,232.31,3897.51,822.12,812.37,339.05,1973.54,5871.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,52901,47030.21,4848.09,836.0,52714.3,11435.63,12137.78,4233.69,27807.1,80521.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46447,68140.73,29769.6,4675.99,102586.32,19885.84,13423.67,7775.81,41085.32,143671.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,43123,92001.3,62451.27,6211.59,160664.16,19684.18,12424.5,10398.47,42507.15,203171.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50862,14249.6,0.0,0.0,14249.6,3257.32,6116.67,1138.47,10512.46,24762.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6857,56043.55,0.0,1105.69,57149.24,11797.02,12317.64,4685.05,28799.71,85948.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,19180,13685.0,0.0,13585.4,27270.4,3096.45,2389.33,2181.63,7667.41,34937.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,37459,79395.04,0.0,2064.0,81459.04,16782.81,12424.51,6456.23,35663.55,117122.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32524,112170.36,37397.63,18506.91,168074.9,24779.34,15052.76,2865.93,42698.03,210772.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,28811,43230.0,0.0,0.0,43230.0,9553.33,7167.98,3474.23,20195.54,63425.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,10860,18211.1,0.0,0.0,18211.1,4084.76,2242.32,1517.16,7844.24,26055.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,43921,30970.0,0.0,0.0,30970.0,5763.55,4778.65,2492.52,13034.72,44004.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,50788,113223.0,1761.1,15368.74,130352.84,24554.2,15196.12,2173.2,41923.52,172276.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,38634,47759.07,8802.89,4828.16,61390.12,9952.7,8852.46,1574.36,20379.52,81769.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,11065,97546.23,0.0,0.0,97546.23,20022.39,11497.14,7943.11,39462.64,137008.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,6200,692.25,0.0,0.0,692.25,0.0,89.6,53.71,143.31,835.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18007,3526.4,0.0,0.0,3526.4,0.0,1529.17,281.17,1810.34,5336.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,32132,76191.04,59.29,2001.5,78251.83,16262.47,11468.76,6406.59,34137.82,112389.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,742,30387.01,3439.09,963.11,34789.21,7964.02,9470.2,2654.6,20088.82,54878.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21731,91235.85,12621.11,4443.39,108300.35,19510.76,12472.29,1804.55,33787.6,142087.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19815,66788.2,2342.58,3106.77,72237.55,19147.3,13162.62,5625.37,37935.29,110172.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,20203,77795.15,0.0,2158.86,79954.01,16446.2,12424.51,6371.35,35242.06,115196.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27043,67446.44,19441.2,4968.83,91856.47,19861.93,13289.86,7182.2,40333.99,132190.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12671,29896.0,2551.71,4155.18,36602.89,6118.35,4826.44,2871.52,13816.31,50419.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,52482,55172.22,31799.29,9977.49,96949.0,13148.63,10071.19,7636.03,30855.85,127804.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,52777,85638.84,487.35,1040.0,87166.19,17876.61,12424.5,7144.34,37445.45,124611.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,29030,62584.96,31510.99,8555.69,102651.64,14573.28,11929.19,8088.11,34590.58,137242.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37563,3739.91,0.0,885.32,4625.23,964.89,1621.75,338.72,2925.36,7550.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2675,119455.99,3034.25,12381.39,134871.63,23662.85,12424.5,2242.22,38329.57,173201.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,28217,195659.02,0.0,0.0,195659.02,39369.63,12424.5,11089.49,62883.62,258542.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,49208,12270.4,0.0,83.87,12354.27,0.0,4063.35,958.26,5021.61,17375.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35343,50317.14,16173.55,457.72,66948.41,13475.09,9880.88,5005.63,28361.6,95310.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20875,122783.92,1679.53,14811.55,139275.0,25155.92,10949.15,7078.11,43183.18,182458.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5644,Principal Environ Specialist,51141,116976.03,0.0,0.0,116976.03,23541.49,12424.51,9315.05,45281.05,162257.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,50749,48065.28,0.0,927.99,48993.27,11808.76,11533.94,3944.0,27286.7,76279.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,17557,47523.81,655.93,0.0,48179.74,11381.14,12424.5,3919.15,27724.79,75904.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,18364,85004.0,60882.26,4937.1,150823.36,17532.01,12424.5,10242.14,40198.65,191022.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",45784,5221.65,0.0,0.0,5221.65,0.0,1105.06,363.97,1469.03,6690.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19313,68122.37,23101.36,8865.16,100088.89,21130.67,13424.14,7616.54,42171.35,142260.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19454,4440.0,0.0,0.0,4440.0,309.6,1768.1,341.77,2419.47,6859.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,12560,102888.23,0.0,573.28,103461.51,21323.09,12376.71,7975.17,41674.97,145136.48 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,15872,66439.91,0.0,3682.37,70122.28,13824.18,11093.41,5854.44,30772.03,100894.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,10694,63102.0,6383.49,5542.38,75027.87,13981.41,12424.5,6176.72,32582.63,107610.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38993,76960.23,33015.54,3099.47,113075.24,15866.7,15196.12,1850.0,32912.82,145988.06 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,11539,112209.06,0.0,0.0,112209.06,22582.32,12424.5,9224.51,44231.33,156440.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",50203,109772.0,10876.98,4326.91,124975.89,22571.54,11468.78,9833.84,43874.16,168850.05 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2453,Supervising Pharmacist,3788,171974.02,0.0,0.0,171974.02,34610.4,12424.5,10546.44,57581.34,229555.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,32057,41129.66,0.0,0.0,41129.66,8604.77,5257.23,3329.41,17191.41,58321.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,44991,194387.2,0.0,0.0,194387.2,39271.99,11852.56,19454.97,70579.52,264966.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,50288,121974.01,0.0,0.0,121974.01,24462.75,12424.5,9851.31,46738.56,168712.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,43853,45324.0,10872.02,6590.46,62786.48,9113.6,5734.38,4750.53,19598.51,82384.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,2474,118104.01,0.0,0.0,118104.01,23768.42,12424.5,9460.13,45653.05,163757.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2650,Assistant Cook,32826,11606.0,1845.36,207.25,13658.61,0.0,3345.06,1059.22,4404.28,18062.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13582,122561.19,1627.7,13041.45,137230.34,25456.05,10938.34,7566.14,43960.53,181190.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,986,54124.03,0.0,0.0,54124.03,12110.46,12424.5,4397.97,28932.93,83056.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,15768,112776.07,0.0,6175.96,118952.03,23928.77,12424.5,9556.95,45910.22,164862.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,28813,122169.09,46244.44,7330.23,175743.76,25475.82,15052.76,2987.2,43515.78,219259.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31367,14402.4,0.0,0.0,14402.4,2611.15,2437.11,1058.31,6106.57,20508.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,29005,81428.75,22120.27,7034.39,110583.41,17994.01,12346.21,8820.03,39160.25,149743.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6499,43566.24,11599.8,2510.2,57676.24,13317.99,8663.95,4359.96,26341.9,84018.14 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,39633,22935.85,0.0,0.0,22935.85,0.0,3763.19,1835.7,5598.89,28534.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",5313,147149.0,0.0,0.0,147149.0,29613.71,12424.5,17470.87,59509.08,206658.08 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,48699,48251.05,0.0,3000.0,51251.05,9705.02,9469.21,4229.31,23403.54,74654.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,1484,51989.63,0.0,0.0,51989.63,10258.89,8153.58,4170.57,22583.04,74572.67 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,31222,59619.29,0.0,4008.03,63627.32,12972.67,10944.73,5040.9,28958.3,92585.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42219,151903.14,24410.77,9888.78,186202.69,0.0,0.0,10531.09,10531.09,196733.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,41067,78963.05,0.0,2526.1,81489.15,16793.49,12424.5,6652.11,35870.1,117359.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,162,1206.4,0.0,0.0,1206.4,224.52,191.14,96.84,512.5,1718.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38116,7524.18,321.8,37.87,7883.85,1787.04,2267.89,572.82,4627.75,12511.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,32080,103416.74,0.0,0.0,103416.74,21289.11,12424.5,8314.02,42027.63,145444.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,34629,75921.02,2862.38,0.0,78783.4,15629.51,12424.51,6280.98,34335.0,113118.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",14145,128013.5,0.0,0.0,128013.5,25762.84,12424.5,17197.85,55385.19,183398.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,50596,180494.77,0.0,0.0,180494.77,36409.58,11409.04,10702.31,58520.93,239015.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48048,66150.08,17106.66,6057.65,89314.39,19771.72,13034.32,6941.39,39747.43,129061.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,22371,81157.01,11546.32,5626.19,98329.52,17052.17,12424.5,7774.48,37251.15,135580.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,484,1597.9,0.0,0.0,1597.9,0.0,692.9,123.71,816.61,2414.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,51523,33093.93,0.0,165.42,33259.35,7423.0,4922.02,2568.49,14913.51,48172.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,3043,17510.0,0.0,0.0,17510.0,3258.59,3822.92,1391.74,8473.25,25983.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,13744,24403.67,512.54,2971.15,27887.36,5503.62,5578.12,2292.32,13374.06,41261.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,51409,79303.89,3042.5,643.06,82989.45,16464.85,12323.32,6763.43,35551.6,118541.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12857,116335.8,3834.86,15114.97,135285.63,24725.01,10785.01,9853.5,45363.52,180649.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",50767,135111.6,47527.76,8106.69,190746.05,28139.71,12424.5,3344.85,43909.06,234655.11 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0655,"Counselor, Family Court Svc",36175,103948.06,0.0,10571.4,114519.46,22994.73,12424.5,9452.54,44871.77,159391.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",20855,106090.06,3565.65,2107.02,111762.73,22177.08,12424.52,8989.06,43590.66,155353.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,35876,12967.8,0.0,220.0,13187.8,2454.25,2580.47,1043.05,6077.77,19265.57 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,27303,59921.01,651.89,0.0,60572.9,12344.03,12424.5,4874.99,29643.52,90216.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1524,12520.0,0.0,0.0,12520.0,2269.88,1911.46,962.16,5143.5,17663.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38246,19756.15,3024.56,990.22,23770.93,4400.95,3046.39,747.71,8195.05,31965.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4436,113233.59,14850.43,12541.06,140625.08,24968.39,15196.11,2300.93,42465.43,183090.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6649,4182.15,0.0,126.96,4309.11,0.0,1756.16,342.16,2098.32,6407.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,41057,78204.0,0.0,1100.0,79304.0,16345.88,12424.5,6573.93,35344.31,114648.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,25457,19585.74,0.0,0.0,19585.74,0.0,3124.04,1563.77,4687.81,24273.55 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,24664,24266.81,0.0,820.2,25087.01,5443.04,3631.78,1990.04,11064.86,36151.87 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,26042,87041.08,0.0,0.0,87041.08,17956.19,12113.89,6840.0,36910.08,123951.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9663,3897.65,0.0,144.53,4042.18,0.0,1636.68,321.45,1958.13,6000.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,47052,114362.27,24266.37,11902.32,150530.96,24330.42,12424.5,10246.2,47001.12,197532.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,904,64988.4,6423.49,6548.98,77960.87,19465.59,12233.36,6336.37,38035.32,115996.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,5818,99432.83,0.0,0.0,99432.83,20486.31,12424.5,8247.49,41158.3,140591.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3152,39987.86,374.25,2903.44,43265.55,9816.9,10644.57,3493.96,23955.43,67220.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,1089,4484.0,0.0,872.29,5356.29,969.03,477.86,91.06,1537.95,6894.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,45293,108400.63,11975.84,4328.76,124705.23,22192.94,11895.38,2002.76,36091.08,160796.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,45670,29064.6,186.36,1012.5,30263.46,0.0,4157.42,2369.45,6526.87,36790.33 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,47126,54124.03,0.0,0.0,54124.03,12110.47,12424.5,4293.2,28828.17,82952.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,24977,102019.03,0.0,0.0,102019.03,21039.3,12424.5,8348.82,41812.62,143831.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,22986,103652.63,0.0,0.0,103652.63,21314.48,12389.13,8023.01,41726.62,145379.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16203,68432.78,0.0,2744.53,71177.31,0.0,5660.92,5436.16,11097.08,82274.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,52888,62461.11,8588.48,0.0,71049.59,12844.46,12424.5,5746.72,31015.68,102065.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2470,Diagnostic Imaging Tech IV,8922,109345.6,6478.09,3248.02,119071.71,22247.22,12372.71,9597.77,44217.7,163289.41 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,43844,30286.0,0.0,0.0,30286.0,5636.24,4061.85,2432.66,12130.75,42416.75 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,1672,67911.05,3415.89,10449.46,81776.4,15516.49,12424.5,6472.24,34413.23,116189.63 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,23928,115541.0,0.0,12644.0,128185.0,23252.6,12424.5,9913.66,45590.76,173775.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,45828,153862.54,0.0,9680.03,163542.57,31033.28,12424.5,10572.43,54030.21,217572.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7421,Sewer Maintenance Worker,33646,71467.0,3535.25,1798.1,76800.35,15092.77,12424.52,6320.08,33837.37,110637.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,687,81942.03,1004.65,1746.89,84693.57,17251.18,12424.5,6928.09,36603.77,121297.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,13167,81157.0,401.33,16751.71,98310.04,19976.95,12424.5,7641.99,40043.44,138353.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33576,60075.41,8267.83,690.76,69034.0,16576.4,11827.29,5054.35,33458.04,102492.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,46762,38765.02,0.0,0.0,38765.02,7292.9,6212.25,3086.97,16592.12,55357.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,48560,24431.0,0.0,0.0,24431.0,5479.87,5256.52,1977.96,12714.35,37145.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,24586,73815.5,284.53,0.0,74100.03,16495.14,12424.49,5962.94,34882.57,108982.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10877,119461.59,22686.19,935.88,143083.66,23641.88,12424.5,2428.52,38494.9,181578.56 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,34577,14390.92,0.0,0.0,14390.92,0.0,3309.21,1115.41,4424.62,18815.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,7164,47142.6,0.0,0.0,47142.6,11299.47,12424.5,3834.1,27558.07,74700.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,8915,10465.22,0.0,0.0,10465.22,0.0,2320.64,811.47,3132.11,13597.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,41638,62246.5,0.0,1399.23,63645.73,12947.69,10223.99,5280.33,28452.01,92097.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),2673,20306.53,1215.21,1877.49,23399.23,4344.48,3152.48,387.02,7883.98,31283.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26824,6061.0,0.0,0.0,6061.0,0.0,2628.26,484.19,3112.45,9173.45 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,1454,56705.04,0.0,0.0,56705.04,12125.3,9557.31,4514.05,26196.66,82901.7 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,15277,81375.0,0.0,0.0,81375.0,15218.52,6929.06,6462.45,28610.03,109985.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,24854,37765.69,0.0,4030.26,41795.95,7778.23,0.0,3456.79,11235.02,53030.97 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,26601,145569.35,0.0,7278.54,152847.89,30660.36,8640.41,10290.08,49590.85,202438.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37244,23629.9,2706.17,2082.13,28418.2,5285.02,3643.72,659.1,9587.84,38006.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44191,6488.06,0.0,250.0,6738.06,1821.45,1280.32,416.8,3518.57,10256.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32653,56120.16,1056.2,0.0,57176.36,12564.55,12424.5,4737.44,29726.49,86902.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,13347,40994.64,0.0,0.0,40994.64,8797.03,8684.85,3310.24,20792.12,61786.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11666,116728.64,504.6,13861.84,131095.08,24528.01,10987.33,10020.49,45535.83,176630.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,36016,19845.0,0.0,0.0,19845.0,4451.23,3345.06,1635.31,9431.6,29276.6 +Calendar,2015,1,Public Protection,CRT,Superior Court,196.0,Court Unrepresented Managers,SCRT,SF Superior Court,876C,"Director, Human Resources",23676,119975.0,0.0,5399.5,125374.5,24073.57,11946.64,32005.2,68025.41,193399.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,15268,37603.19,232.06,732.0,38567.25,7547.77,5600.95,3306.41,16455.13,55022.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,46828,3806.95,0.0,45.99,3852.94,0.0,1780.05,298.86,2078.91,5931.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12253,119455.92,22000.75,4390.28,145846.95,23662.82,12424.5,2430.06,38517.38,184364.33 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,48219,64354.7,26.58,880.0,65261.28,13381.16,10778.14,5325.8,29485.1,94746.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15557,54336.31,3477.29,2423.12,60236.72,-0.02,4079.78,1087.3,5167.06,65403.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,42630,88831.0,26533.25,11915.13,127279.38,19981.04,12424.5,9855.8,42261.34,169540.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,16967,115692.83,0.0,0.0,115692.83,23260.8,12118.67,9486.64,44866.11,160558.94 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,25798,8646.01,0.0,0.0,8646.01,1609.02,1433.6,690.68,3733.3,12379.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,17218,6075.82,0.0,120.0,6195.82,1598.53,1624.74,468.0,3691.27,9887.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4458,68298.48,3849.09,2242.06,74389.63,19330.16,13457.89,5683.24,38471.29,112860.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31374,9513.7,0.0,0.0,9513.7,0.0,2758.65,764.6,3523.25,13036.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11234,17943.2,0.0,0.0,17943.2,730.06,7724.93,1334.96,9789.95,27733.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,23564,75361.0,13464.38,0.0,88825.38,15503.89,12424.51,6989.2,34917.6,123742.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41503,35061.44,9844.8,800.1,45706.34,8638.0,9420.64,3606.81,21665.45,67371.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8734,8912.43,0.0,1104.34,10016.77,1848.64,3864.73,785.72,6499.09,16515.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1847,80688.06,7307.65,7722.2,95717.91,16768.17,12364.76,1595.84,30728.77,126446.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,35033,37328.2,1091.81,419.95,38839.96,3885.4,11277.61,3129.64,18292.65,57132.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,21066,63887.0,1984.03,7607.76,73478.79,14748.78,12424.51,5805.31,32978.6,106457.39 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,46246,6039.0,0.0,71.39,6110.39,1137.14,1051.3,485.15,2673.59,8783.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,1117,1422.48,0.0,68.67,1491.15,0.0,519.68,115.42,635.1,2126.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40303,42156.42,9980.21,2671.1,54807.73,11665.65,12834.44,4124.91,28625.0,83432.73 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,27940,4061.77,0.0,0.0,4061.77,0.0,1481.38,337.62,1819.0,5880.77 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,35933,81542.04,0.0,0.0,81542.04,16806.17,12424.5,6686.28,35916.95,117458.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,31034,137101.01,0.0,0.0,137101.01,27592.1,12424.5,17352.84,57369.44,194470.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52244,0.0,0.0,895.09,895.09,0.0,68.5,68.48,136.98,1032.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,12975,41336.73,0.0,864.72,42201.45,4927.0,7515.93,3215.65,15658.58,57860.03 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,1720,25154.01,0.0,312.0,25466.01,6115.48,6212.25,1856.32,14184.05,39650.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,23309,0.0,0.0,0.0,0.0,0.0,13.7,243.53,257.23,257.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,42240,3910.0,76.01,140.4,4126.41,1045.0,955.74,325.63,2326.37,6452.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,26345,119467.44,19824.19,12935.32,152226.95,23621.0,12424.5,2547.66,38593.16,190820.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1206,113233.59,28693.96,11381.75,153309.3,23589.53,15196.12,2757.41,41543.06,194852.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,2624,79965.2,636.69,3002.13,83604.02,17115.23,12424.5,6915.44,36455.17,120059.19 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1041,IS Engineer-Assistant,37226,18663.0,0.0,0.0,18663.0,3473.19,2628.26,1414.95,7516.4,26179.4 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,6126,182293.04,0.0,0.0,182293.04,36686.83,12424.5,18168.41,67279.74,249572.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17489,99693.53,0.0,24936.91,124630.44,22641.6,9394.53,6838.2,38874.33,163504.77 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,52337,4355.0,0.0,6.17,4361.17,0.0,1343.99,337.94,1681.93,6043.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,27112,114159.97,0.0,0.0,114159.97,23053.36,12020.22,9112.85,44186.43,158346.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28485,97753.79,27683.34,7841.17,133278.3,25665.02,12424.5,2261.71,40351.23,173629.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,48310,3019.34,0.0,48.41,3067.75,0.0,894.51,487.97,1382.48,4450.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45941,8653.79,0.0,847.64,9501.43,5101.63,655.57,2222.86,7980.06,17481.49 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8146,District Attry's Investigator,50757,15914.4,0.0,0.0,15914.4,0.0,0.0,1257.24,1257.24,17171.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,12191,32826.08,0.0,1198.36,34024.44,7750.67,7866.86,2718.18,18335.71,52360.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,51079,16330.53,0.0,351.87,16682.4,0.0,5402.87,1293.08,6695.95,23378.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,38467,148609.93,0.0,12304.55,160914.48,32362.22,12384.79,10461.72,55208.73,216123.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5305,Materials Testing Technician,52782,74326.05,0.0,0.0,74326.05,15318.91,12424.55,6126.99,33870.45,108196.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,35270,84949.01,0.0,6393.53,91342.54,17735.01,9079.44,7344.14,34158.59,125501.13 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,24417,75028.03,0.0,624.0,75652.03,15592.37,12424.5,6144.57,34161.44,109813.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23827,64410.74,5467.74,879.64,70758.12,17783.4,12684.94,5513.98,35982.32,106740.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22850,65982.36,1421.92,702.6,68106.88,18235.5,12998.42,5247.6,36481.52,104588.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,34568,56661.05,0.0,3509.39,60170.44,12367.2,11766.96,4988.84,29123.0,89293.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,43285,89210.09,0.0,0.0,89210.09,18383.32,12424.5,7400.55,38208.37,127418.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2744,56509.93,364.67,0.0,56874.6,11646.58,12419.84,4609.26,28675.68,85550.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11054,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,4470,0.0,0.0,802.87,802.87,0.0,68.5,61.77,130.27,933.14 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,52485,55967.37,0.0,0.0,55967.37,12512.15,12355.93,4597.4,29465.48,85432.85 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1362,Special Assistant 3,32993,52599.02,0.0,0.0,52599.02,10931.2,11468.77,4289.01,26688.98,79288.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,40056,60403.81,0.0,0.0,60403.81,12420.54,12424.51,4913.78,29758.83,90162.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,40788,62811.02,0.0,986.55,63797.57,13074.36,12424.5,5287.28,30786.14,94583.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,5272,67392.0,0.0,1684.8,69076.8,14874.52,8601.58,5743.28,29219.38,98296.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,3863,7102.68,0.0,0.0,7102.68,0.0,2350.5,551.01,2901.51,10004.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",46772,38188.9,0.0,0.0,38188.9,7106.96,4281.73,8532.49,19921.18,58110.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",40907,94577.01,20022.99,4375.54,118975.54,20010.76,12424.5,9283.22,41718.48,160694.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34079,113233.61,33528.88,21729.38,168491.87,25231.94,15196.11,2869.41,43297.46,211789.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",6790,130341.62,82610.5,16981.82,229933.94,28793.63,15052.76,3877.36,47723.75,277657.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17856,67783.12,9060.19,3777.75,80621.06,19598.64,13356.34,6077.89,39032.87,119653.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,48665,186923.75,0.0,250.0,187173.75,37645.5,12403.6,10878.91,60928.01,248101.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",22318,130413.68,4539.52,16990.8,151944.0,28811.01,14957.19,2578.9,46347.1,198291.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,2630,182336.18,0.0,0.0,182336.18,36625.52,12424.5,28371.13,77421.15,259757.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,45535,108038.01,45341.23,10652.34,164031.58,23171.89,12424.5,10480.0,46076.39,210107.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42874,1820.8,0.0,0.0,1820.8,0.0,764.58,141.32,905.9,2726.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15011,56531.0,2748.58,2334.66,61614.24,11940.77,12424.5,5045.11,29410.38,91024.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9393,7780.08,0.0,34.98,7815.06,0.0,2586.44,606.3,3192.74,11007.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,50,43848.0,3511.76,7657.74,55017.5,10305.92,6690.12,4222.83,21218.87,76236.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27732,48723.53,0.0,6496.96,55220.49,12735.77,12421.52,4466.94,29624.23,84844.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24482,74321.14,0.0,12588.57,86909.71,2084.53,0.0,7371.29,9455.82,96365.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32825,124867.35,104.33,15099.78,140071.46,25023.92,12113.89,8814.04,45951.85,186023.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,6160,88592.04,0.0,0.0,88592.04,18259.49,12424.5,7279.3,37963.29,126555.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45029,56531.0,0.0,9943.07,66474.07,12739.12,12424.5,5159.99,30323.61,96797.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,18591,8324.0,0.0,263.23,8587.23,1900.0,1330.79,817.03,4047.82,12635.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32386,39344.6,0.0,6154.53,45499.13,0.0,3443.5,3527.06,6970.56,52469.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,27007,193042.37,0.0,0.0,193042.37,38810.43,12424.5,18309.67,69544.6,262586.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4051,119455.95,21297.32,12517.87,153271.14,23868.71,12424.5,2556.87,38850.08,192121.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25324,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3376.05,18201.9,61969.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,18617,2388.0,187.06,513.03,3088.09,553.66,716.79,239.32,1509.77,4597.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,24390,112776.03,1336.41,5938.81,120051.25,23893.36,12424.48,9630.84,45948.68,165999.93 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,49411,81542.0,0.0,0.0,81542.0,16806.13,12424.5,6543.08,35773.71,117315.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,13691,5560.63,0.0,18.6,5579.23,0.0,2142.93,432.23,2575.16,8154.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15318,21208.59,2884.7,1076.1,25169.39,5392.08,6570.59,1937.83,13900.5,39069.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",23378,14751.45,0.0,0.0,14751.45,0.0,3512.33,1143.58,4655.91,19407.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,4124,55853.22,0.0,0.0,55853.22,7705.95,12424.49,4511.91,24642.35,80495.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49109,27867.77,0.0,569.08,28436.85,6813.12,12006.37,2270.59,21090.08,49526.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",35045,137080.89,0.0,0.0,137080.89,27587.97,12424.5,27565.19,67577.66,204658.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,52001,4882.0,0.0,0.0,4882.0,885.11,477.86,382.99,1745.96,6627.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,38022,133087.02,0.0,0.0,133087.02,26783.95,12424.52,10072.81,49281.28,182368.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4319,3356.5,0.0,25.97,3382.47,0.0,1636.68,262.37,1899.05,5281.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19002,5709.83,0.0,329.92,6039.75,2190.72,442.03,1299.8,3932.55,9972.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,10131,50910.0,0.0,0.0,50910.0,10046.83,8362.63,4202.0,22611.46,73521.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48653,113233.6,31342.04,20351.15,164926.79,25036.03,15196.12,2712.9,42945.05,207871.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7246,Sewer Repair Supervisor,10393,80589.55,3455.96,12067.9,96113.41,18434.86,9463.71,7795.88,35694.45,131807.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10554,3558.63,0.0,2.94,3561.57,0.0,1735.25,276.21,2011.46,5573.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39495,3526.41,0.0,0.0,3526.41,0.0,1529.17,281.17,1810.34,5336.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,746,76342.1,1183.74,7249.22,84775.06,17115.88,12424.5,6800.43,36340.81,121115.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24188,0.0,0.0,621.53,621.53,0.0,68.5,47.54,116.04,737.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,44330,17035.45,0.0,0.0,17035.45,0.0,5531.3,1380.59,6911.89,23947.34 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,37876,47736.4,0.0,0.0,47736.4,10434.85,7645.85,3791.05,21871.75,69608.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,32206,124579.65,0.0,0.0,124579.65,24931.96,11625.33,9890.01,46447.3,171026.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,34665,113664.45,1175.72,12770.05,127610.22,24622.91,12424.52,9861.96,46909.39,174519.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23700,94294.04,812.63,7195.16,102301.83,176.9,6877.02,7126.45,14180.37,116482.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,30249,76627.61,0.0,0.0,76627.61,15757.36,12411.07,6326.08,34494.51,111122.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,40130,84599.03,0.0,0.0,84599.03,17436.44,12424.5,6852.31,36713.25,121312.28 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,24106,127966.51,0.0,7435.87,135402.38,25722.05,12424.5,9926.94,48073.49,183475.87 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,35017,86850.03,0.0,2200.0,89050.03,18329.49,12424.5,7087.11,37841.1,126891.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30842,10006.68,0.0,301.31,10307.99,3119.06,4163.4,844.18,8126.64,18434.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,23081,91751.01,1658.2,220.0,93629.21,18923.54,12424.5,7264.06,38612.1,132241.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47500,43262.62,4282.89,2957.91,50503.42,13344.9,8603.55,3927.66,25876.11,76379.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,21435,13945.11,0.0,0.0,13945.11,0.0,4217.64,1081.58,5299.22,19244.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,44750,6679.0,0.0,0.0,6679.0,1498.09,1433.6,550.08,3481.77,10160.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21955,112264.3,27215.14,19222.61,158702.05,25677.44,14909.4,1537.79,42124.63,200826.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,39796,32265.22,30026.57,2774.69,65066.48,6579.47,6040.34,5146.81,17766.62,82833.1 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0891,Mayoral Staff XI,49520,18609.0,0.0,0.0,18609.0,4174.0,2389.32,3796.34,10359.66,28968.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,718.0,"Glaziers, Metal, and Glass Workers, Local 718",7300,Journeyman Trade,7326,Glazier,44290,87531.03,501.9,2289.0,90321.93,18499.83,12424.5,7087.38,38011.71,128333.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,13046,70050.0,1467.64,0.0,71517.64,14414.74,12424.48,5812.65,32651.87,104169.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,20256,31240.53,0.0,305.1,31545.63,6488.78,6074.87,2563.79,15127.44,46673.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,31525,988.98,0.0,34.37,1023.35,0.0,330.03,79.24,409.27,1432.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,20173,20096.0,0.0,0.0,20096.0,4419.09,4300.79,1478.44,10198.32,30294.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23748,6177.32,0.0,56.84,6234.16,0.0,3109.11,483.35,3592.46,9826.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,48279,103437.2,5784.35,9057.66,118279.21,22220.34,12424.5,9262.78,43907.62,162186.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,49011,63102.0,0.0,9.96,63111.96,13007.39,12424.5,5234.11,30666.0,93777.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,49955,83996.23,1632.27,2987.02,88615.52,17693.36,12400.61,7281.98,37375.95,125991.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",2184,92924.43,0.0,621.6,93546.03,19287.76,12376.71,7635.5,39299.97,132846.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,20987,31305.04,1765.14,25583.57,58653.75,5553.18,2389.33,934.99,8877.5,67531.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32211,49188.29,0.0,11429.64,60617.93,0.0,0.0,4794.9,4794.9,65412.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39069,25759.25,0.0,3009.78,28769.03,0.0,2269.86,2231.14,4501.0,33270.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28240,117684.61,2303.5,20229.6,140217.71,20444.27,11076.92,10069.68,41590.87,181808.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,32637,12605.0,376.97,1714.1,14696.07,2664.77,2389.32,1155.17,6209.26,20905.33 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,45056,208032.0,0.0,1562.5,209594.5,42181.17,12424.5,11283.81,65889.48,275483.98 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,1527,208032.0,0.0,1500.0,209532.0,42167.46,12424.5,11397.9,65989.86,275521.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6311,64253.13,810.46,1548.05,66611.64,18034.71,12664.93,4864.64,35564.28,102175.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,293,70245.01,0.0,3344.05,73589.06,14606.45,12424.5,6026.19,33057.14,106646.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5000,3584.7,0.0,0.0,3584.7,0.0,1505.27,279.58,1784.85,5369.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53105,7517.25,514.53,43.13,8074.91,1786.65,2265.8,626.1,4678.55,12753.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3428,Nursery Specialist,3553,80362.83,460.85,460.85,81284.53,16563.43,12424.5,6726.5,35714.43,116998.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,41782,53244.04,269.44,0.0,53513.48,11971.32,11871.72,4445.88,28288.92,81802.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,37994,58874.59,5518.5,3164.25,67557.34,12182.48,11959.3,5219.2,29360.98,96918.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17304,138629.97,51656.38,26609.58,216895.93,27414.76,12424.5,3601.83,43441.09,260337.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,40320,11363.1,0.0,0.0,11363.1,2114.69,2341.54,892.51,5348.74,16711.84 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,196,92230.6,0.0,0.0,92230.6,19006.31,12424.5,7319.65,38750.46,130981.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,42029,6232.64,0.0,0.0,6232.64,1397.97,1408.2,509.33,3315.5,9548.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8160,67599.61,7462.9,3000.34,78062.85,19310.72,13321.75,5874.81,38507.28,116570.13 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,49922,32332.0,0.0,10262.93,42594.93,7325.8,6546.76,3477.72,17350.28,59945.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,52111,116976.07,0.0,0.0,116976.07,23541.49,12424.49,9572.59,45538.57,162514.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,7293,128783.43,0.0,4595.29,133378.72,26710.14,11811.7,10053.39,48575.23,181953.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,19816,62788.49,26533.38,12761.48,102083.35,14975.68,12420.02,8315.18,35710.88,137794.23 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,985C,Court Commissioner,35303,158092.49,0.0,0.0,158092.49,49981.11,12424.5,32537.68,94943.29,253035.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,30319,34355.95,540.07,2783.39,37679.41,5935.65,9157.09,2843.73,17936.47,55615.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38184,112170.36,44826.47,17405.41,174402.24,24680.78,15052.76,2942.62,42676.16,217078.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,39606,79722.0,18244.49,3042.0,101008.49,17055.84,12424.44,8293.0,37773.28,138781.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",11292,135109.0,86573.98,11497.72,233180.7,28680.68,12424.5,3924.9,45030.08,278210.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,48697,3556.0,0.0,0.0,3556.0,781.96,955.73,276.01,2013.7,5569.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2558,62243.01,14894.84,6183.5,83321.35,18623.19,12254.03,6502.48,37379.7,120701.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,38669,70245.0,0.0,6692.18,76937.18,15625.14,12424.5,6284.13,34333.77,111270.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49485,12369.95,0.0,0.0,12369.95,0.0,5364.04,1003.74,6367.78,18737.73 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",636,69120.45,5794.28,3524.6,78439.33,16583.68,12370.74,1011.64,29966.06,108405.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40482,77071.0,29107.1,2159.0,108337.1,16328.6,12424.5,8814.35,37567.45,145904.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,22383,127276.74,0.0,1689.64,128966.38,25802.45,8873.97,9836.94,44513.36,173479.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37415,13568.27,0.0,250.0,13818.27,3762.99,0.0,1073.45,4836.44,18654.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",8918,93738.11,11806.31,7866.6,113411.02,19771.55,12424.5,9021.21,41217.26,154628.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,13624,129520.2,0.0,0.0,129520.2,26018.23,12424.5,24933.9,63376.63,192896.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,22804,150710.0,0.0,14.4,150724.4,30355.36,12424.5,10211.05,52990.91,203715.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52130,10247.75,0.0,117.42,10365.17,0.0,3419.71,803.62,4223.33,14588.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",30436,150234.02,3862.9,18779.24,172876.16,33216.89,15196.12,2791.54,51204.55,224080.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,29807,85841.7,0.0,0.0,85841.7,17653.94,12424.5,6934.8,37013.24,122854.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,8100,82103.03,0.0,664.2,82767.23,17061.09,12424.68,6821.57,36307.34,119074.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7287,Sprv Electronic Main Tech,1469,125004.02,3853.07,0.0,128857.09,25157.68,12424.51,9923.85,47506.04,176363.13 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,33893,36695.58,72.98,0.0,36768.56,8862.71,8948.98,3011.76,20823.45,57592.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,31760,11745.84,0.0,0.0,11745.84,0.0,0.0,929.02,929.02,12674.86 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31771,97765.71,26021.68,8797.87,132585.26,25918.32,12424.5,2204.03,40546.85,173132.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49556,9807.81,0.0,219.54,10027.35,0.0,4253.0,806.2,5059.2,15086.55 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),10222,153577.5,0.0,1500.0,155077.5,31170.01,12424.5,10389.54,53984.05,209061.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20958,52468.14,6155.26,2001.9,60625.3,13852.56,10402.82,4595.32,28850.7,89476.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27038,10639.65,0.0,149.72,10789.37,0.0,4551.67,867.79,5419.46,16208.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",1400,"Clerical, Secretarial & Steno",1466,Meter Reader,11961,59988.9,0.0,0.0,59988.9,12321.16,11468.77,4878.11,28668.04,88656.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,44467,119378.2,12650.11,3029.48,135057.79,23576.89,12376.71,2284.01,38237.61,173295.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,7681,119066.01,10845.24,21108.59,151019.84,34096.72,12424.5,2574.58,49095.8,200115.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21556,3470.9,0.0,0.0,3470.9,0.0,1457.49,277.1,1734.59,5205.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45668,8774.68,0.0,0.0,8774.68,2047.05,3805.0,688.97,6541.02,15315.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8758,119467.43,80226.46,29760.44,229454.33,23621.0,12424.5,3882.43,39927.93,269382.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11454,41822.57,0.0,10244.15,52066.72,8863.76,4032.4,4183.32,17079.48,69146.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,47452,51634.8,1891.23,3477.57,57003.6,13166.2,12424.5,4620.37,30211.07,87214.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25519,6343.8,61.19,1057.31,7462.3,3264.43,502.12,237.45,4004.0,11466.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10463,45012.54,4884.88,2730.42,52627.84,10775.44,11717.62,4241.78,26734.84,79362.68 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),5723,112017.11,0.0,1500.0,113517.11,22822.94,12424.5,9027.26,44274.7,157791.81 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,34912,71280.85,0.0,3216.0,74496.85,15269.71,12421.52,5907.4,33598.63,108095.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15044,97390.68,5460.05,9376.16,112226.89,25967.9,12376.71,1910.46,40255.07,152481.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,17351,81542.04,0.0,0.0,81542.04,16806.16,12424.5,6544.93,35775.59,117317.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25350,97763.84,8128.94,17631.34,123524.12,28088.01,12424.5,2093.45,42605.96,166130.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32629,57206.73,17595.95,937.59,75740.27,15948.81,11293.99,5794.95,33037.75,108778.02 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,13118,28914.52,0.0,5677.56,34592.08,941.01,3219.63,2740.04,6900.68,41492.76 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,1128,986.3,0.0,0.0,986.3,0.0,237.44,76.37,313.81,1300.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29738,33408.3,5139.37,789.27,39336.94,8780.09,10422.61,2828.58,22031.28,61368.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1627,119459.83,13297.05,10262.93,143019.81,24225.53,12424.5,2342.42,38992.45,182012.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2550,Senior Occupational Therapist,40683,130358.07,0.0,100.0,130458.07,26283.87,12424.5,10017.34,48725.71,179183.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,653,29122.0,297.94,0.0,29419.94,5419.62,4300.79,2192.15,11912.56,41332.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,5863,7347.6,0.0,0.0,7347.6,1648.07,937.81,600.3,3186.18,10533.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,28656,74530.88,0.0,0.0,74530.88,15347.29,12107.93,6004.6,33459.82,107990.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30978,20803.04,0.0,420.08,21223.12,4980.92,0.0,1836.14,6817.06,28040.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",45901,92946.71,0.0,646.71,93593.42,19257.25,12380.72,7763.2,39401.17,132994.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,41332,58109.7,0.0,200.0,58309.7,11637.91,9391.07,4752.55,25781.53,84091.23 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,45512,9463.59,0.0,4539.84,14003.43,0.0,0.0,203.05,203.05,14206.48 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,2903,91331.02,0.0,0.0,91331.02,18823.68,12424.5,7472.52,38720.7,130051.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,38278,67839.17,19889.18,1832.5,89560.85,13981.98,12411.42,7325.57,33718.97,123279.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2724,59271.02,20733.02,9430.04,89434.08,14138.37,10405.52,1490.72,26034.61,115468.69 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,41723,87713.04,0.0,0.0,87713.04,18078.18,12424.5,7206.66,37709.34,125422.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,37250,84644.0,59683.18,5752.35,150079.53,17568.81,12424.5,10188.86,40182.17,190261.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27782,112692.9,36748.76,4449.88,153891.54,22303.27,12424.5,2567.68,37295.45,191186.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,18988,133087.05,0.0,6998.04,140085.09,26783.95,12424.5,10200.97,49409.42,189494.51 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35809,29990.74,0.0,0.0,29990.74,7455.88,7359.13,2415.51,17230.52,47221.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29126,4247.75,0.0,727.54,4975.29,1129.59,330.44,307.45,1767.48,6742.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,23370,63279.2,0.0,0.0,63279.2,12986.33,12137.79,5041.02,30165.14,93444.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48420,37644.89,0.0,7672.85,45317.74,0.0,3302.82,3328.3,6631.12,51948.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,7851,181766.58,0.0,0.0,181766.58,36562.71,12424.5,18097.34,67084.55,248851.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",5762,275.0,0.0,0.0,275.0,0.0,65.71,21.31,87.02,362.02 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,29408,696.47,416.37,0.0,1112.84,0.0,206.08,86.37,292.45,1405.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41746,62100.79,8591.65,1185.37,71877.81,14520.16,12225.77,5273.01,32018.94,103896.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,287,142192.15,9461.1,8590.53,160243.78,28611.11,12424.5,10322.04,51357.65,211601.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11850,125124.37,92299.32,5888.84,223312.53,24751.45,12424.5,3802.72,40978.67,264291.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",40941,10536.75,0.0,0.0,10536.75,2511.36,2508.78,810.1,5830.24,16366.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,30659,67729.02,75.15,50.0,67854.17,13969.7,12424.5,5308.18,31702.38,99556.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,22127,62187.0,0.0,4565.88,66752.88,13515.69,12424.5,5518.72,31458.91,98211.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,24038,60707.0,13267.43,5013.48,78987.91,12506.88,9079.44,6272.72,27859.04,106846.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,47887,20655.51,0.0,0.0,20655.51,5307.46,5208.74,1694.54,12210.74,32866.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,42928,38219.4,0.0,280.05,38499.45,9188.94,9642.19,3038.18,21869.31,60368.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,51484,123327.2,78242.77,18021.96,219591.93,26899.59,15196.11,3703.04,45798.74,265390.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,10036,140802.02,2487.03,9129.31,152418.36,27828.96,12424.5,2478.67,42732.13,195150.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,27981,10372.8,0.0,0.0,10372.8,1930.38,2293.76,775.77,4999.91,15372.71 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,48306,110650.67,0.0,0.0,110650.67,22285.77,12282.93,8903.38,43472.08,154122.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44846,40012.96,789.6,1917.57,42720.13,9468.09,10530.06,3421.43,23419.58,66139.71 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,50539,88296.01,0.0,5322.0,93618.01,18337.86,12424.5,7768.54,38530.9,132148.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,11207,19115.34,0.0,0.0,19115.34,0.0,5752.25,1522.52,7274.77,26390.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,38045,97934.04,0.0,0.0,97934.04,20179.57,12424.5,8124.44,40728.51,138662.55 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38946,20480.86,4311.36,2361.75,27153.97,5336.37,2630.23,459.06,8425.66,35579.63 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,2330,1895.0,0.0,40.0,1935.0,499.23,477.86,149.81,1126.9,3061.9 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,6546,186676.52,0.0,7807.5,194484.02,33212.22,10913.25,5402.5,49527.97,244011.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,11647,95901.36,0.0,2924.82,98826.18,19361.43,9557.31,14322.64,43241.38,142067.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,17504,35844.5,0.0,0.0,35844.5,8497.74,10763.93,2653.68,21915.35,57759.85 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0655,"Counselor, Family Court Svc",31912,103948.07,0.0,10820.4,114768.47,22637.6,12424.5,9320.62,44382.72,159151.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1310,Public Relations Assistant,17049,50200.29,0.0,0.0,50200.29,11999.32,11928.71,4066.79,27994.82,78195.11 +Calendar,2015,4,Community Health,DPH,Public Health,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,20127,100761.03,515.05,3040.0,104316.08,21416.05,12424.5,8156.1,41996.65,146312.73 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,15369,158885.99,0.0,0.0,158885.99,31928.7,9213.43,10343.66,51485.79,210371.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,43009,102019.0,0.0,0.0,102019.0,21026.26,12424.5,8131.21,41581.97,143600.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,34195,56816.58,64.94,0.0,56881.52,11666.93,11180.62,4606.93,27454.48,84336.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,26442,67153.18,4522.39,5257.15,76932.72,14675.67,12405.09,6334.52,33415.28,110348.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31311,7049.9,0.0,54.23,7104.13,0.0,620.87,550.01,1170.88,8275.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18898,123261.56,39889.74,17740.41,180891.71,24411.63,12424.49,3038.01,39874.13,220765.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,28694,43121.83,0.0,682.91,43804.74,9168.94,8187.33,3672.98,21029.25,64833.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34942,3356.5,0.0,0.0,3356.5,0.0,1636.68,260.37,1897.05,5253.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51591,4997.38,0.0,13.64,5011.02,0.0,1924.91,388.58,2313.49,7324.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42647,45111.54,3889.74,1970.08,50971.36,12456.01,10988.51,3840.54,27285.06,78256.42 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,14492,74165.01,0.0,624.0,74789.01,15414.44,12424.5,6135.16,33974.1,108763.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,48390,68067.01,0.0,624.0,68691.01,14157.65,12424.5,5699.4,32281.55,100972.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,4227,51405.0,0.0,1237.2,52642.2,12479.31,12376.71,4360.38,29216.4,81858.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,25019,70581.0,5347.42,1624.0,77552.42,14713.55,10990.9,6031.65,31736.1,109288.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35639,10953.0,0.0,1418.41,12371.41,2532.23,2867.19,990.4,6389.82,18761.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25414,3929.05,0.0,7.16,3936.21,0.0,1311.14,305.2,1616.34,5552.55 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),49724,182373.96,0.0,5209.97,187583.93,37756.86,12294.58,10943.4,60994.84,248578.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,13572,135421.02,0.0,0.0,135421.02,27253.5,12424.5,10063.95,49741.95,185162.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43334,112159.76,50199.44,30258.32,192617.52,26133.21,15052.77,3275.69,44461.67,237079.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,1820,5343.34,0.0,0.0,5343.34,994.39,1090.13,446.1,2530.62,7873.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,37851,67892.2,2261.29,1519.4,71672.89,14171.64,12421.03,5860.65,32453.32,104126.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,47350,6460.02,0.0,0.0,6460.02,1065.42,1911.46,515.1,3491.98,9952.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6340,66610.48,14686.81,2440.26,83737.55,18923.99,13122.19,6544.9,38591.08,122328.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,29530,81542.02,0.0,0.0,81542.02,16806.15,12424.5,6645.07,35875.72,117417.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5304,Materials Testing Aide,6437,33090.01,81.86,0.0,33171.87,6466.64,7167.94,2646.76,16281.34,49453.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,50034,89892.0,0.0,1338.48,91230.48,18231.81,10513.03,7309.86,36054.7,127285.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,19113,107978.0,11089.86,11219.76,130287.62,24352.51,12424.5,9865.51,46642.52,176930.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,14087,114790.95,6317.33,10472.69,131580.97,24201.1,12567.87,9881.9,46650.87,178231.84 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,11742,74568.85,0.0,0.0,74568.85,15357.27,12424.5,13878.08,41659.85,116228.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,35098,37520.01,2474.0,845.0,40839.01,9438.96,9557.31,3289.76,22286.03,63125.04 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8147,Sr District Atty Investigator,18082,119046.04,14611.34,7142.76,140800.14,28784.44,12424.5,2304.81,43513.75,184313.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,13249,83355.0,19677.49,16726.88,119759.37,20058.7,12424.5,9707.08,42190.28,161949.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,43936,48646.87,0.0,0.0,48646.87,11661.06,12400.61,3833.33,27895.0,76541.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,40980,45243.15,0.0,935.56,46178.71,11087.61,11176.08,3746.47,26010.16,72188.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,45020,21506.17,0.0,9235.91,30742.08,4915.97,3177.8,2666.62,10760.39,41502.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,35699,10428.0,0.0,401.06,10829.06,2295.32,1911.46,859.86,5066.64,15895.7 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,46142,103075.01,0.0,0.0,103075.01,21244.17,12424.5,8352.48,42021.15,145096.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15201,96500.8,46350.91,12022.26,154873.97,26386.52,12263.99,2565.05,41215.56,196089.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45463,66847.07,4572.04,802.09,72221.2,18561.18,13176.9,5589.51,37327.59,109548.79 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,21713,61350.24,0.0,5714.36,67064.6,13114.76,5819.21,5389.5,24323.47,91388.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,6258,22299.2,0.0,0.0,22299.2,0.0,3679.56,1781.5,5461.06,27760.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,23216,138629.96,23666.72,8910.93,171207.61,27414.76,12424.5,2917.56,42756.82,213964.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24456,7671.91,0.0,157.22,7829.13,0.0,0.0,1635.83,1635.83,9464.96 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,47564,24760.0,0.0,0.0,24760.0,4489.0,2389.33,1621.57,8499.9,33259.9 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,2.0,Management Unrepresented Employees,8100,Legal & Court,AB44,"Cfdntal Chf Atty 2,(Cvl&Crmnl)",34870,234088.08,0.0,0.0,234088.08,46994.41,12424.5,28796.32,88215.23,322303.31 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,31451,18738.53,3204.11,2168.12,24110.76,4373.62,3712.48,1970.73,10056.83,34167.59 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,46118,43459.15,0.0,0.0,43459.15,0.0,3398.82,3370.09,6768.91,50228.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,44555,62323.1,30712.9,7066.58,100102.58,14365.85,7693.64,8019.06,30078.55,130181.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,45566,63190.26,9030.67,977.82,73198.75,13090.33,11873.88,6030.52,30994.73,104193.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,50817,21035.0,0.0,0.0,21035.0,4718.14,3345.06,1756.36,9819.56,30854.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,49619,97934.03,0.0,1380.0,99314.03,20479.21,12424.5,8233.59,41137.3,140451.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19448,67511.49,5955.37,5784.12,79250.98,20107.06,13304.85,5968.59,39380.5,118631.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18231,149099.0,0.0,19624.82,168723.82,32190.47,12424.5,6738.43,51353.4,220077.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38660,123694.56,669.84,35572.64,159937.04,26348.73,10952.68,4983.4,42284.81,202221.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,15353,24490.66,0.0,0.0,24490.66,4557.72,5456.62,1971.67,11986.01,36476.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20954,47053.1,0.0,4837.82,51890.92,12295.7,12424.5,3949.37,28669.57,80560.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,51590,29928.0,0.0,0.0,29928.0,6712.88,3822.92,2409.42,12945.22,42873.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,1173,60399.79,0.0,1440.0,61839.79,12713.43,12424.51,5025.09,30163.03,92002.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,12931,71311.04,0.0,0.0,71311.04,14697.59,12424.5,5801.92,32924.01,104235.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,18453,84589.51,0.0,0.0,84589.51,15441.36,12281.13,6713.01,34435.5,119025.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45451,124348.68,1287.36,27769.75,153405.79,26988.46,11010.02,5878.93,43877.41,197283.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,28274,117135.33,8540.18,6995.76,132671.27,23184.7,12424.5,2258.69,37867.89,170539.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,40040,68067.03,0.0,624.0,68691.03,14157.65,12424.5,5443.03,32025.18,100716.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,8411,166355.73,0.0,0.0,166355.73,33360.82,12424.5,17880.93,63666.25,230021.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44293,97634.89,3742.73,10670.17,112047.79,26334.26,12408.56,1904.2,40647.02,152694.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38844,21288.77,6032.29,460.0,27781.06,5266.94,4501.98,2198.05,11966.97,39748.03 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,51186,44937.42,0.0,2132.13,47069.55,9981.67,6929.05,3786.5,20697.22,67766.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12487,42749.94,2617.4,1868.68,47236.02,11601.93,13163.22,3103.3,27868.45,75104.47 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,46493,50736.78,0.0,0.0,50736.78,11247.62,11800.64,4041.28,27089.54,77826.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,52173,61405.0,256.82,0.0,61661.82,12656.0,12419.9,5106.83,30182.73,91844.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,1722,8381.0,0.0,0.0,8381.0,1559.71,1385.82,626.67,3572.2,11953.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,30826,89636.44,28315.92,1856.0,119808.36,18852.69,12424.5,9571.49,40848.68,160657.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,4793,61579.73,2323.75,2603.4,66506.88,12882.08,12185.57,5208.71,30276.36,96783.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,36626,114826.02,0.0,0.0,114826.02,23151.7,12194.74,9025.0,44371.44,159197.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,24696,63989.04,0.0,1115.7,65104.74,13393.91,12145.25,5108.32,30647.48,95752.22 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,19125,12021.3,2222.09,1369.5,15612.89,3018.81,1768.1,1283.67,6070.58,21683.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,23577,70141.0,0.0,793.32,70934.32,14607.82,12424.5,6426.23,33458.55,104392.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2469,Diagnostic Imaging Tech III,525,123280.32,20373.86,54641.31,198295.49,25336.1,12412.55,11114.51,48863.16,247158.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,6297,91199.6,0.0,0.0,91199.6,18709.66,11803.28,7539.79,38052.73,129252.33 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,9562,4801.23,0.0,0.0,4801.23,0.0,1155.84,371.91,1527.75,6328.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,31603,62068.51,12454.52,8488.18,83011.21,13817.68,10978.96,6788.4,31585.04,114596.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,48830,9352.8,0.0,0.0,9352.8,2056.67,2580.47,755.69,5392.83,14745.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,52444,111784.31,1435.35,14013.63,127233.29,24506.47,12409.57,9908.75,46824.79,174058.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,15529,55757.03,0.0,0.0,55757.03,12233.13,6212.25,4413.0,22858.38,78615.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7254,Automotive Machinist Sprv 1,42679,62485.0,605.02,600.0,63690.02,12166.31,7168.0,5059.93,24394.24,88084.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1238,57238.21,1682.04,2809.71,61729.96,12190.32,10799.76,4998.29,27988.37,89718.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40293,6561.83,0.0,250.0,6811.83,1851.0,1290.23,1061.1,4202.33,11014.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6335,Disability Access Coordinator,37072,154521.03,0.0,0.0,154521.03,31097.48,12424.4,10441.54,53963.42,208484.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11074,5923.25,0.0,10.54,5933.79,0.0,2568.53,474.34,3042.87,8976.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,31535,21586.84,0.0,0.0,21586.84,0.0,2992.63,1675.49,4668.12,26254.96 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,35663,62075.22,0.0,2349.78,64425.0,13424.62,8410.43,5103.53,26938.58,91363.58 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,10206,23368.73,0.0,686.6,24055.33,5769.95,6212.25,1989.66,13971.86,38027.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,27623,113233.59,57965.51,16267.29,187466.39,25036.02,15196.12,3143.67,43375.81,230842.2 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,10178,18907.5,0.0,0.0,18907.5,4125.39,3583.99,1508.01,9217.39,28124.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22143,113233.59,11541.48,14673.34,139448.41,24193.22,15196.13,2209.5,41598.85,181047.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20816,146621.52,0.0,7826.56,154448.08,29724.06,12419.54,6600.74,48744.34,203192.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12065,5038.85,0.0,0.0,5038.85,0.0,1681.49,390.59,2072.08,7110.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,23568,138720.85,8867.04,8594.15,156182.04,27407.93,12424.5,2653.99,42486.42,198668.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",25145,4247.86,0.0,0.0,4247.86,0.0,898.98,328.87,1227.85,5475.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45270,66274.79,3204.48,4874.53,74353.8,19521.48,13061.74,5797.89,38381.11,112734.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",24489,127982.46,29976.66,24790.39,182749.51,29997.79,14781.93,3068.87,47848.59,230598.1 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,19273,61351.4,289.24,0.0,61640.64,12557.28,11373.55,5246.33,29177.16,90817.8 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8147,Sr District Atty Investigator,18627,72816.03,0.0,15455.76,88271.79,17056.11,7645.85,1398.22,26100.18,114371.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,42725,57125.08,7334.23,8523.33,72982.64,13386.14,11321.7,5771.21,30479.05,103461.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,38582,1388.69,5262.72,7815.46,14466.87,0.0,0.0,979.15,979.15,15446.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49181,79382.1,708.06,18883.93,98974.09,14212.52,7230.71,6228.12,27671.35,126645.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11456,15415.27,0.0,251.92,15667.19,0.0,3830.41,1214.55,5044.96,20712.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30649,48972.19,0.0,3024.12,51996.31,1667.85,0.0,1675.27,3343.12,55339.43 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,4523,189853.78,0.0,5685.0,195538.78,42724.93,11068.56,10826.86,64620.35,260159.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21733,33588.73,5082.87,710.45,39382.05,8806.07,10481.03,3000.52,22287.62,61669.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,44566,102019.02,0.0,0.0,102019.02,21026.27,12424.5,8275.25,41726.02,143745.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45388,4756.0,0.0,367.14,5123.14,0.0,382.3,397.05,779.35,5902.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24580,19570.75,0.0,0.0,19570.75,0.0,2568.53,1517.31,4085.84,23656.59 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,51887,62803.0,975.43,4915.83,68694.26,13424.06,11497.98,5333.58,30255.62,98949.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2071,63752.49,15150.78,3446.09,82349.36,18457.14,12569.83,6431.26,37458.23,119807.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25365,140680.18,0.0,1340.29,142020.47,28305.12,12454.37,10151.55,50911.04,192931.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38147,57987.34,0.0,7058.22,65045.56,12722.41,4862.29,5427.66,23012.36,88057.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24334,16938.9,0.0,470.67,17409.57,0.0,0.0,1376.93,1376.93,18786.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9181,"Manager VII, MTA",50431,187368.54,0.0,0.0,187368.54,37707.73,12424.5,18154.0,68286.23,255654.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,5897,28959.1,2073.45,1395.72,32428.27,5766.5,6140.57,2972.68,14879.75,47308.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,32123,92363.03,8789.13,4169.69,105321.85,19323.63,12424.5,8447.38,40195.51,145517.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16767,122039.47,443.44,14000.21,136483.12,25853.36,11005.24,8961.02,45819.62,182302.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,7930,93738.14,8622.03,2324.41,104684.58,19373.06,12424.5,8434.41,40231.97,144916.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24620,12387.94,0.0,0.0,12387.94,0.0,3267.41,961.08,4228.49,16616.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,16852,72919.5,7761.6,22815.15,103496.25,15639.17,10751.98,8355.13,34746.28,138242.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,37458,142194.75,0.0,0.0,142194.75,28616.84,12424.5,10245.18,51286.52,193481.27 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2462,Microbiologist,14804,16186.51,0.0,784.15,16970.66,3630.64,2150.39,1397.21,7178.24,24148.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,29749,5433.15,0.0,843.26,6276.41,1216.16,2355.99,516.09,4088.24,10364.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,50742,35549.11,0.0,0.0,35549.11,7434.25,5201.39,2995.93,15631.57,51180.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,15366,4722.58,0.0,78.92,4801.5,0.0,1563.51,372.11,1935.62,6737.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,17347,130845.83,78399.32,20569.25,229814.4,29392.18,15196.12,3885.18,48473.48,278287.88 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,35678,15108.82,0.0,80.0,15188.82,3406.86,2283.36,1203.38,6893.6,22082.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,17131,98398.9,0.0,1152.0,99550.9,20209.13,11946.64,17351.96,49507.73,149058.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51196,3111.5,0.0,0.0,3111.5,0.0,1517.22,241.3,1758.52,4870.02 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,31225,117954.05,0.0,0.0,117954.05,23748.06,12376.12,18071.27,54195.45,172149.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29565,22404.0,0.0,310.0,22714.0,5860.26,5734.39,1851.44,13446.09,36160.09 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,36007,21852.0,0.0,0.0,21852.0,4066.65,2867.19,3657.08,10590.92,32442.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29715,4573.01,0.0,61485.38,66058.39,1007.76,477.86,11.74,1497.36,67555.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,12589,61735.09,598.73,624.0,62957.82,12852.62,12424.5,5204.01,30481.13,93438.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39241,96834.08,7488.26,14658.92,118981.26,27074.98,12424.5,1366.12,40865.6,159846.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37590,2975.4,0.0,0.0,2975.4,0.0,1290.23,230.36,1520.59,4495.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,28442,72251.7,0.0,2087.03,74338.73,15311.13,12424.5,5916.78,33652.41,107991.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12753,77071.01,9471.21,1280.0,87822.22,16150.45,12424.5,7243.24,35818.19,123640.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,5471,65567.24,23.5,588.35,66179.09,13513.1,12419.79,5425.77,31358.66,97537.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,50526,56580.01,0.0,1340.0,57920.01,12034.43,11468.77,4220.14,27723.34,85643.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,27111,9124.29,27.08,165.34,9316.71,0.0,3019.51,721.81,3741.32,13058.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,14865,34020.02,0.0,0.0,34020.02,7602.85,6690.11,2666.07,16959.03,50979.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,51362,6345.0,0.0,0.0,6345.0,1423.17,1433.6,526.52,3383.29,9728.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,38648,49562.8,473.26,6297.41,56333.47,10704.96,8743.57,4707.95,24156.48,80489.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50846,82909.28,27195.12,4390.46,114494.86,17172.11,12233.36,1855.54,31261.01,145755.87 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,21524,78963.05,0.0,624.0,79587.05,16403.15,12424.5,6599.34,35426.99,115014.04 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,44462,75765.77,17819.42,7951.76,101536.95,17054.52,10071.01,8337.74,35463.27,137000.22 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40496,5898.93,0.0,454.58,6353.51,1521.89,2707.71,510.3,4739.9,11093.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,41506,8331.51,0.0,117.42,8448.93,0.0,2779.08,655.11,3434.19,11883.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37103,56531.0,0.0,6022.59,62553.59,12469.57,12424.5,5168.91,30062.98,92616.57 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4267,Pr Real Property Appraiser,35989,116384.08,0.0,2200.0,118584.08,23844.38,12424.5,9697.77,45966.65,164550.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,9877,77326.09,588.13,8194.41,86108.63,17714.3,11740.56,7054.31,36509.17,122617.8 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,14166,69695.02,577.93,0.0,70272.95,14394.73,12424.5,5558.47,32377.7,102650.65 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,49013,43540.0,0.0,0.0,43540.0,8102.83,5734.39,3323.59,17160.81,60700.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,48177,63952.81,9069.17,2220.02,75242.0,13948.51,10035.17,6160.99,30144.67,105386.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18819,40.63,0.0,0.0,40.63,12.66,0.0,0.03,12.69,53.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,26454,59581.93,15574.44,6180.27,81336.64,12793.66,10815.17,6686.76,30295.59,111632.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,27152,42079.5,0.0,12357.35,54436.85,9438.39,6451.18,4059.12,19948.69,74385.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,16948,57153.33,623.32,4859.5,62636.15,12028.78,12424.5,5074.14,29527.42,92163.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19741,64095.16,0.0,6357.72,70452.88,13241.02,5680.63,5665.63,24587.28,95040.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36536,62291.33,0.0,3547.86,65839.19,899.26,0.0,6188.79,7088.05,72927.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,49613,59334.39,0.0,0.0,59334.39,12210.78,12364.77,4777.81,29353.36,88687.75 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,38955,29911.88,0.0,1569.08,31480.96,7037.83,6501.96,2527.09,16066.88,47547.84 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,16350,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8761.54,43157.85,149762.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,9511,88560.7,0.0,1597.06,90157.76,18235.9,12424.5,6952.13,37612.53,127770.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,42182,16546.39,0.0,0.0,16546.39,3236.41,5408.3,1308.65,9953.36,26499.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,45875,4770.2,0.0,237.6,5007.8,0.0,1099.09,388.68,1487.77,6495.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11021,121195.39,1016.52,10798.49,133010.4,25577.58,11067.36,9894.86,46539.8,179550.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,27898,113590.03,0.0,0.0,113590.03,22773.75,11946.64,9360.95,44081.34,157671.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2922,Senior Medical Social Worker,11444,97424.01,0.0,1624.43,99048.44,20421.0,12424.5,7973.78,40819.28,139867.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,15544,33400.26,22.83,0.0,33423.09,6369.05,6687.13,2740.08,15796.26,49219.35 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,32108,7080.5,137.29,0.0,7217.79,1317.68,955.73,523.18,2796.59,10014.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44570,853.5,0.0,15.93,869.43,0.0,358.4,67.48,425.88,1295.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51232,113233.6,17720.07,19197.53,150151.2,25068.58,15196.12,2504.07,42768.77,192919.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7314,Aprnt Stationary Engineer I,48915,2181.0,0.0,0.0,2181.0,405.88,477.87,167.68,1051.43,3232.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0955,Dep Dir V,31701,215246.67,0.0,0.0,215246.67,43288.58,12328.92,19699.54,75317.04,290563.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,48632,84644.0,1791.24,13030.95,99466.19,19490.21,12424.51,7942.3,39857.02,139323.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",33132,5029.63,677.41,360.08,6067.12,911.05,477.86,103.57,1492.48,7559.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,8648,79395.07,0.0,1512.0,80907.07,16666.0,12424.51,6554.38,35644.89,116551.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,34610,181945.03,0.0,18685.77,200630.8,40377.48,12424.5,11233.27,64035.25,264666.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,5208,8073.12,0.0,724.7,8797.82,1077.1,3500.78,710.34,5288.22,14086.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,22974,63887.01,0.0,4687.5,68574.51,14131.89,12424.51,5656.77,32213.17,100787.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,5547,63887.01,0.0,2997.15,66884.16,13794.88,12424.5,5523.06,31742.44,98626.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20456,68400.14,15325.53,5223.54,88949.21,20165.87,13477.48,6972.36,40615.71,129564.92 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,39445,38359.8,76.7,3000.0,41436.5,9058.71,10082.96,3404.27,22545.94,63982.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,3057,84628.44,268.73,2021.2,86918.37,17469.17,12346.85,7065.46,36881.48,123799.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",32560,149522.31,21981.65,11961.79,183465.75,31740.49,12424.5,3074.31,47239.3,230705.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,30887,139011.43,3685.03,1328.33,144024.79,27481.22,12424.5,744.2,40649.92,184674.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,16096,98930.68,2043.28,6192.38,107166.34,21011.7,10851.13,1777.58,33640.41,140806.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46587,64746.84,9369.95,867.9,74984.69,17959.01,12756.08,5841.87,36556.96,111541.65 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,50416,8566.95,0.0,0.0,8566.95,1921.57,1469.44,697.09,4088.1,12655.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,10280,108406.23,19748.12,7268.17,135422.52,21575.19,11946.63,2305.8,35827.62,171250.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,43645,45716.21,0.0,200.0,45916.21,10322.33,10106.73,3757.95,24187.01,70103.22 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,44641,72554.98,0.0,0.0,72554.98,14934.88,12424.5,5737.11,33096.49,105651.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,19331,71839.41,0.0,2367.53,74206.94,15283.27,12376.71,6029.95,33689.93,107896.87 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,19213,38646.3,0.0,0.0,38646.3,8668.33,5256.52,3150.77,17075.62,55721.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,42472,10139.4,0.0,106510.73,116650.13,2240.67,896.0,26.45,3163.12,119813.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,9356,17898.7,0.0,0.0,17898.7,3330.96,3775.14,1410.63,8516.73,26415.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40831,56314.9,0.0,4398.48,60713.38,12234.73,12376.71,5018.81,29630.25,90343.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6232,Street Inspection Supervisor,36206,56087.83,626.9,19552.94,76267.67,12649.13,6546.76,6198.76,25394.65,101662.32 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,49739,8323.66,810.02,0.0,9133.68,0.0,2505.81,708.92,3214.73,12348.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,33489,102019.06,0.0,0.0,102019.06,21022.56,12424.5,8151.08,41598.14,143617.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36834,69672.9,2712.1,4147.89,76532.89,0.0,6068.77,5697.37,11766.14,88299.03 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8143,Sr Public Defenders Invstgtor,10635,101531.0,0.0,2184.0,103715.0,21374.83,12424.5,8538.56,42337.89,146052.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,48421,75927.09,2788.4,0.0,78715.49,15648.74,12424.5,6266.64,34339.88,113055.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23942,4573.3,0.0,129.97,4703.27,0.0,1983.14,379.06,2362.2,7065.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,28817,10116.48,0.0,187.23,10303.71,0.0,3343.56,798.84,4142.4,14446.11 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,45560,93681.02,0.0,1045.53,94726.55,19536.65,12424.5,7604.82,39565.97,134292.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6398,119461.61,0.0,890.05,120351.66,23641.89,12424.5,1993.76,38060.15,158411.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11582,40770.88,3656.0,4373.64,48800.52,9688.03,4730.87,811.71,15230.61,64031.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26175,302.77,56.77,250.0,609.54,85.68,95.58,27.84,209.1,818.64 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,51011,130252.12,0.0,0.0,130252.12,26213.36,12424.5,10022.55,48660.41,178912.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,39143,10270.15,0.0,0.0,10270.15,1911.26,2332.59,814.21,5058.06,15328.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,11783,2990.21,0.0,61.84,3052.05,0.0,881.06,251.39,1132.45,4184.5 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1803,Performance Analyst I,40942,25703.0,0.0,0.0,25703.0,5652.08,5256.51,2068.25,12976.84,38679.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13093,13931.56,0.0,538.68,14470.24,0.0,3715.41,1122.58,4837.99,19308.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43299,13967.34,0.0,158.37,14125.71,0.0,4647.22,1094.94,5742.16,19867.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33368,110.2,0.0,878.29,988.49,28.43,47.79,75.72,151.94,1140.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14378,41870.13,0.0,9851.75,51721.88,592.6,0.0,3838.53,4431.13,56153.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,2900,Human Services,2966,Welfare Fraud Investigator,37065,50252.41,0.0,0.0,50252.41,11271.6,6307.83,3890.55,21469.98,71722.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,5851,63102.0,0.0,606.67,63708.67,13130.51,12424.5,5580.87,31135.88,94844.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35656,10217.16,0.0,46.26,10263.42,0.0,3386.86,796.31,4183.17,14446.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",35659,106090.04,2946.25,3422.53,112458.82,22073.14,12424.5,9030.24,43527.88,155986.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,24050,19394.5,59.25,0.0,19453.75,2037.32,5865.8,1567.09,9470.21,28923.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36601,114685.46,856.63,19446.29,134988.38,24683.67,11134.27,9518.85,45336.79,180325.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,51570,86831.66,0.0,760.0,87591.66,18018.09,12248.65,7268.53,37535.27,125126.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,11613,37534.42,0.0,0.0,37534.42,9002.05,12344.34,3057.18,24403.57,61937.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1725,24259.2,0.0,602.91,24862.11,5576.55,4587.51,1983.9,12147.96,37010.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,24475,47611.01,0.0,0.0,47611.01,9276.8,7645.84,3766.42,20689.06,68300.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,39728,118083.34,12075.24,9831.34,139989.92,23368.43,12281.15,2254.57,37904.15,177894.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,33557,100761.01,41916.25,3474.18,146151.44,21076.22,12424.48,10228.6,43729.3,189880.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,41768,127129.02,0.0,0.0,127129.02,25584.71,12424.5,27413.83,65423.04,192552.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,11860,51677.02,1483.52,664.2,53824.74,10931.55,10035.18,4450.91,25417.64,79242.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52420,68027.7,11478.59,5931.21,85437.5,20252.94,13399.88,6417.76,40070.58,125508.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,33876,20958.01,0.0,2401.44,23359.45,4700.88,2867.19,1918.27,9486.34,32845.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52316,50189.46,27.55,5196.08,55413.09,12142.61,11164.13,4462.85,27769.59,83182.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38407,12618.33,841.34,103.29,13562.96,3263.87,3891.63,1035.78,8191.28,21754.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H032,"Capt,Fire Prev Or Fire Invsgtn",39352,168860.31,51511.93,13809.99,234182.23,35762.17,12424.5,3941.11,52127.78,286310.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,12196,70245.0,48977.13,11214.99,130437.12,15929.91,12424.5,9793.51,38147.92,168585.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51342,18030.4,2616.87,698.74,21346.01,4486.31,5565.21,1633.48,11685.0,33031.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,45854,156746.13,0.0,0.0,156746.13,31545.23,12424.51,10406.08,54375.82,211121.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9702,Employment & Training Spec 1,14659,6212.94,0.0,0.0,6212.94,1393.57,1285.82,567.97,3247.36,9460.3 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1142,30000.0,0.0,0.0,30000.0,439.8,7167.99,2369.43,9977.22,39977.22 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,5528,166837.7,0.0,0.0,166837.7,33576.29,12424.5,28035.43,74036.22,240873.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,40695,100761.0,24949.82,14362.26,140073.08,20965.58,12424.5,10068.23,43458.31,183531.39 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,52243,55685.41,0.0,532.32,56217.73,11872.95,9747.62,4526.5,26147.07,82364.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,35542,143188.05,0.0,0.0,143188.05,28816.77,12424.5,10206.5,51447.77,194635.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,16107,61644.61,0.0,1919.11,63563.72,13097.2,12406.76,4929.32,30433.28,93997.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,15326,65819.47,0.0,610.96,66430.43,13718.94,12164.67,5512.74,31396.35,97826.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,31885,62811.01,33.99,3816.13,66661.13,13648.39,12424.5,5462.0,31534.89,98196.02 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",15325,74649.32,26.77,5198.74,79874.83,18206.67,12418.53,1656.7,32281.9,112156.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,36461,96930.02,0.0,0.0,96930.02,19974.08,12424.5,7682.54,40081.12,137011.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31927,77071.06,8981.56,2064.0,88116.62,16308.83,12424.5,7181.65,35914.98,124031.6 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,34902,42669.8,0.0,0.0,42669.8,0.0,5375.99,3441.83,8817.82,51487.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,18300,63761.0,1278.41,2096.34,67135.75,13533.66,12400.61,5446.85,31381.12,98516.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,21869,73539.2,0.0,675.48,74214.68,15268.41,12424.5,5910.49,33603.4,107818.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2387,11850.64,0.0,358.3,12208.94,0.0,5138.85,991.35,6130.2,18339.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45618,30163.35,0.0,5187.54,35350.89,4826.94,0.0,4987.59,9814.53,45165.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,1391,16894.03,0.0,0.0,16894.03,3284.35,2982.78,1503.0,7770.13,24664.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,13605,61735.01,0.0,192.0,61927.01,12759.73,12424.5,4762.4,29946.63,91873.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,35665,62090.7,38257.82,12307.08,112655.6,14645.09,12281.15,8900.21,35826.45,148482.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40399,125086.23,44120.56,11188.33,180395.12,25219.46,12424.5,3021.39,40665.35,221060.47 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,34063,63357.2,0.0,0.0,63357.2,13034.41,12424.5,5154.54,30613.45,93970.65 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,50706,107562.01,0.0,3000.0,110562.01,21660.43,12424.5,31248.35,65333.28,175895.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17512,3497.38,0.0,0.0,3497.38,0.0,1705.39,271.23,1976.62,5474.0 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,28515,78963.0,0.0,0.0,78963.0,16274.47,12424.5,6364.94,35063.91,114026.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,3259,112776.0,0.0,4511.04,117287.04,23604.43,12424.5,9224.84,45253.77,162540.81 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38266,97761.5,1469.12,8769.46,108000.08,25897.23,12424.5,1838.46,40160.19,148160.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,49324,85368.01,0.0,0.0,85368.01,17594.59,12424.5,6676.97,36696.06,122064.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,17036,118724.0,0.0,0.0,118724.0,23893.95,12424.5,9773.34,46091.79,164815.79 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,42179,90775.03,0.0,1175.0,91950.03,18913.63,12424.5,7274.87,38613.0,130563.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16571,138635.91,32186.69,4940.92,175763.52,27392.94,12424.5,2941.29,42758.73,218522.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3044,100870.4,45226.01,13034.44,159130.85,22720.23,14909.4,2658.07,40287.7,199418.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18328,64856.72,19739.54,4311.13,88907.39,18938.9,12779.86,6904.94,38623.7,127531.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,19266,4322.0,0.0,0.0,4322.0,950.4,955.73,233.69,2139.82,6461.82 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,7064,111921.6,0.0,0.0,111921.6,22806.62,12424.5,8974.14,44205.26,156126.86 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48548,206.44,0.0,0.0,206.44,0.0,53.76,16.02,69.78,276.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20129,74313.67,356.19,6885.9,81555.76,14730.0,6190.15,5857.35,26777.5,108333.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4195,56531.0,0.0,6460.47,62991.47,12265.34,12424.5,5198.94,29888.78,92880.25 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,49918,59395.16,17837.35,10864.91,88097.42,11859.84,7980.36,7001.1,26841.3,114938.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,1417,6216.42,62.09,174.24,6452.75,0.0,2914.98,500.49,3415.47,9868.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7660,32732.35,4017.64,1128.53,37878.52,8700.65,10212.49,2888.59,21801.73,59680.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48081,74324.85,212.63,520.0,75057.48,15412.99,12226.72,5847.68,33487.39,108544.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34412,69202.21,38206.08,7022.6,114430.89,20879.99,13637.8,8753.0,43270.79,157701.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,50696,92349.91,54989.04,8383.71,155722.66,19587.9,12472.3,10357.73,42417.93,198140.59 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",21006,198139.03,0.0,5525.28,203664.31,40987.79,12424.5,11306.08,64718.37,268382.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17851,66158.17,10085.62,4196.59,80440.38,19252.28,13036.16,6064.06,38352.5,118792.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,23454,46695.26,0.0,0.0,46695.26,8465.85,4366.5,6835.4,19667.75,66363.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50322,2370.51,0.0,3.1,2373.61,0.0,912.42,183.9,1096.32,3469.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",50060,0.0,0.0,49.71,49.71,0.0,0.0,3.8,3.8,53.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39752,113233.58,52569.62,20920.03,186723.23,25459.55,15196.12,3137.7,43793.37,230516.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,20318,42738.44,5668.75,391.14,48798.33,8527.96,7788.07,4036.07,20352.1,69150.43 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,1296,18708.95,214.92,0.0,18923.87,0.0,4272.42,1466.94,5739.36,24663.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24371,73694.65,0.0,11172.13,84866.78,15928.97,6140.57,4921.33,26990.87,111857.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4750,68751.37,26160.91,8705.27,103617.55,21199.96,13547.67,7896.69,42644.32,146261.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,19009,53931.44,0.0,433.7,54365.14,11274.11,10865.48,4350.02,26489.61,80854.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5165,102209.14,31449.31,10336.32,143994.77,22360.43,15196.12,2500.38,40056.93,184051.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,28445,29967.49,0.0,18760.0,48727.49,3534.6,3664.62,3837.5,11036.72,59764.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35142,75622.24,4337.51,4366.67,84326.42,16011.9,15196.12,1396.2,32604.22,116930.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,14390,77278.39,800.89,381.26,78460.54,18554.93,12418.53,6378.82,37352.28,115812.82 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,45425,36819.83,0.0,0.0,36819.83,7171.22,6663.54,3063.47,16898.23,53718.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,47559,96798.63,0.0,2591.76,99390.39,20191.16,9449.79,7968.61,37609.56,136999.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,20319,42651.0,0.0,774.0,43425.0,9527.47,4300.79,3529.34,17357.6,60782.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47430,140321.26,603.46,21229.62,162154.34,21807.01,12423.37,6689.61,40919.99,203074.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9401,69451.71,23969.57,1676.37,95097.65,19464.87,13688.81,7952.06,41105.74,136203.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29975,71101.0,0.0,1706.59,72807.59,15469.22,10513.04,5635.89,31618.15,104425.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,1167,12738.75,0.0,1619.5,14358.25,3286.6,3852.79,1177.08,8316.47,22674.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,25034,66102.0,2865.39,0.0,68967.39,13624.06,12424.5,5696.39,31744.95,100712.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",31392,51159.91,3692.46,16503.51,71355.88,10158.46,5877.74,1196.74,17232.94,88588.82 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8135,Asst Chf Victim/Wit Invstgtor,16246,85292.93,0.0,0.0,85292.93,17556.55,12424.5,6940.27,36921.32,122214.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,46169,35666.0,0.0,0.0,35666.0,6637.41,5734.38,2869.23,15241.02,50907.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,10456,63901.02,0.0,0.0,63901.02,13149.44,12424.5,5138.08,30712.02,94613.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,1711,67261.06,0.0,624.0,67885.06,13991.51,12424.5,5623.37,32039.38,99924.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33666,43170.17,5406.52,958.73,49535.42,11452.28,13140.1,3540.06,28132.44,77667.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,21718,63887.06,1819.94,70.21,65777.21,13180.55,12424.5,5402.07,31007.12,96784.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28654,25926.75,1706.22,434.05,28067.02,6525.13,5036.64,2130.88,13692.65,41759.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49900,113223.01,47644.58,18535.42,179403.01,25079.52,15196.12,3053.29,43328.93,222731.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41485,32731.98,0.0,1152.44,33884.42,2572.21,2792.84,2736.79,8101.84,41986.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,49516,2282.14,0.0,0.0,2282.14,0.0,821.33,187.75,1009.08,3291.22 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,15518,86988.36,0.0,0.0,86988.36,16328.1,7120.2,11325.24,34773.54,121761.9 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,21399,97378.2,20791.58,19641.64,137811.42,28458.02,12376.71,2292.43,43127.16,180938.58 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,27710,27182.54,0.0,263.85,27446.39,6562.17,6708.04,2264.94,15535.15,42981.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,11431,58101.02,0.0,624.0,58725.02,12100.36,12424.5,4811.36,29336.22,88061.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,34258,69394.4,5846.48,1491.73,76732.61,14210.92,11758.96,5933.35,31903.23,108635.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,3707,59260.99,191.8,5135.98,64588.77,17233.68,11147.22,5287.48,33668.38,98257.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10544,103852.56,569.9,10749.74,115172.2,21918.53,8670.99,5541.53,36131.05,151303.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,302.0,Management Unrepresented Employees - MTA,9100,Street Transit,9186,"Gen Mgr, Public Trnsp Dept",44639,304000.4,0.0,0.0,304000.4,61167.52,12424.5,27457.92,101049.94,405050.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,17848,27269.76,0.0,0.0,27269.76,5113.43,5997.21,2217.56,13328.2,40597.96 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,34566,52006.45,12080.46,7961.66,72048.57,11712.4,10226.45,5844.78,27783.63,99832.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,13242,19686.66,0.0,79.56,19766.22,4415.71,2568.53,1620.7,8604.94,28371.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",30956,4791.71,0.0,0.0,4791.71,770.24,1140.92,370.97,2282.13,7073.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,50827,82103.0,15138.95,10.0,97251.95,16923.8,12424.53,7989.88,37338.21,134590.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",26755,131577.13,27924.37,13235.48,172736.98,28373.53,15196.11,2898.27,46467.91,219204.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,24495,37133.5,0.0,0.0,37133.5,486.47,6929.04,2987.51,10403.02,47536.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49428,51177.54,0.0,2022.7,53200.24,0.0,0.0,911.25,911.25,54111.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33851,72106.73,0.0,0.0,72106.73,0.0,0.0,5703.85,5703.85,77810.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6648,30089.01,0.0,2586.32,32675.33,7876.5,6498.97,2551.73,16927.2,49602.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,7302,85368.03,246.71,1440.0,87054.74,17890.14,12424.5,6767.78,37082.42,124137.16 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8452,Criminal Justice Specialist 2,9607,15585.0,0.0,0.0,15585.0,2900.35,2389.33,1198.03,6487.71,22072.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,32000,31508.0,0.0,707.35,32215.35,5972.01,5256.52,2610.15,13838.68,46054.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,8116,57911.75,10898.56,1783.75,70594.06,12033.62,11515.49,5550.0,29099.11,99693.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19591,3313.63,0.0,0.0,3313.63,0.0,1615.78,257.04,1872.82,5186.45 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,14349,93681.03,0.0,624.0,94305.03,19436.77,12424.5,7754.11,39615.38,133920.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,18632,45911.81,6526.25,3198.59,55636.65,11746.03,12424.5,4575.72,28746.25,84382.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,40707,36012.0,79.78,0.0,36091.78,8483.19,10035.18,2909.69,21428.06,57519.84 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,40592,129895.01,0.0,0.0,129895.01,26141.49,12424.5,9980.64,48546.63,178441.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44686,115231.81,792.05,23935.15,139959.01,23414.24,11004.05,9771.74,44190.03,184149.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21635,4611.08,0.0,488.46,5099.54,0.0,1999.5,394.36,2393.86,7493.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44768,43299.25,4388.68,1159.54,48847.47,11519.65,13038.03,3445.84,28003.52,76850.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36,65271.55,4326.3,2947.03,72544.88,18727.37,12865.22,5648.59,37241.18,109786.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,6795,101770.01,0.0,0.0,101770.01,20975.25,12424.5,7966.48,41366.23,143136.24 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,4821,7497.26,4097.53,742.23,12337.02,1848.12,955.73,993.09,3796.94,16133.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",44601,99506.78,6464.09,6407.99,112378.86,21425.84,11648.69,9198.04,42272.57,154651.43 +Calendar,2015,1,Public Protection,PDR,Public Defender,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,29185,69247.0,0.0,0.0,69247.0,14272.17,12424.5,5341.02,32037.69,101284.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",8362,150233.95,17654.16,9702.98,177591.09,31297.63,15196.12,3026.88,49520.63,227111.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,396,112948.32,5689.06,35878.39,154515.77,20443.03,11025.97,10104.08,41573.08,196088.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,51978,97761.81,47388.75,15770.22,160920.78,27616.75,12424.5,410.06,40451.31,201372.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,45182,112209.0,0.0,0.0,112209.0,22582.31,12424.5,9230.47,44237.28,156446.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,3937,19133.03,0.0,0.0,19133.03,4565.72,5734.39,1546.46,11846.57,30979.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,23954,63285.04,0.0,18496.8,81781.84,13884.75,5495.46,10222.23,29602.44,111384.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47489,7357.16,0.0,0.0,7357.16,0.0,3130.01,593.93,3723.94,11081.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,2854,50888.51,69.4,0.0,50957.91,10407.52,11420.99,4207.38,26035.89,76993.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15126,48655.1,57.76,6406.16,55119.02,12697.02,12424.5,4401.99,29523.51,84642.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,4776,61169.29,3685.37,1827.0,66681.66,12336.82,8955.86,5362.25,26654.93,93336.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,28696,47665.65,3779.71,2926.46,54371.82,11554.28,11456.82,4363.98,27375.08,81746.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50310,66569.84,22356.36,6107.92,95034.12,19890.25,13116.39,7218.61,40225.25,135259.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,19729,81548.97,4199.87,4836.84,90585.68,17369.75,11686.85,7464.29,36520.89,127106.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,23140,59932.01,784.7,2228.84,62945.55,12755.06,12122.44,5192.56,30070.06,93015.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23615,123228.3,0.0,15152.65,138380.95,26637.26,11722.04,10040.19,48399.49,186780.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,52572,45063.34,0.0,1183.52,46246.86,9557.27,9415.92,3661.11,22634.3,68881.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,22971,186799.74,0.0,11358.72,198158.46,39827.71,12394.64,11110.6,63332.95,261491.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,17013,97424.0,13018.91,2193.0,112635.91,20525.93,12424.5,9015.39,41965.82,154601.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,30726,51159.38,3533.62,2445.86,57138.86,12362.92,12364.77,4664.39,29392.08,86530.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,43626,103283.02,0.0,963.37,104246.39,21487.49,12424.5,7946.56,41858.55,146104.94 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3310,Stable Attendant,24547,56120.15,1240.07,3716.49,61076.71,13000.97,12424.5,4948.9,30374.37,91451.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,1202,73905.5,2901.5,306.0,77113.0,14941.97,6092.79,6339.88,27374.64,104487.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31645,75572.97,46070.79,7306.56,128950.32,16596.34,15196.12,2145.78,33938.24,162888.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19383,16010.58,0.0,343.22,16353.8,0.0,5316.72,1268.05,6584.77,22938.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,3966,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2413.37,12866.72,44166.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,30096,111126.84,20444.5,2868.9,134440.24,22613.48,12424.5,9972.33,45010.31,179450.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27471,24730.27,7674.8,380.64,32785.71,6129.38,4798.96,2549.3,13477.64,46263.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,20136,106710.43,0.0,0.0,106710.43,21549.34,11468.77,8530.09,41548.2,148258.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,41274,24476.22,0.0,640.0,25116.22,5831.84,5192.66,2010.83,13035.33,38151.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7902,125909.51,1240.43,14864.82,142014.76,27145.21,11148.01,7258.05,45551.27,187566.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,50205,125476.0,0.0,0.0,125476.0,25252.11,12424.5,9844.74,47521.35,172997.35 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,24144,71311.06,0.0,0.0,71311.06,14697.59,12424.5,5914.74,33036.83,104347.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12707,4814.55,0.0,189.7,5004.25,0.0,1600.85,388.09,1988.94,6993.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2485,Supv Biologist,5257,119321.06,0.0,0.0,119321.06,24013.57,12424.5,9778.29,46216.36,165537.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,48299,63773.75,0.0,583.35,64357.1,13185.61,11636.02,5352.45,30174.08,94531.18 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,12437,4674.0,0.0,0.0,4674.0,869.84,955.73,362.59,2188.16,6862.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,21081,39934.72,2311.35,608.34,42854.41,8188.08,7932.51,3518.9,19639.49,62493.9 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,50007,75487.08,0.0,0.0,75487.08,17228.33,12420.56,1209.73,30858.62,106345.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,30488,8440.0,1350.53,74.6,9865.13,2196.77,1911.46,798.98,4907.21,14772.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25594,92739.4,2489.04,17193.14,112421.58,0.0,6384.04,3895.68,10279.72,122701.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,37267,116580.46,5488.48,15165.75,137234.69,23043.06,12364.77,2336.88,37744.71,174979.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45861,134956.96,124.86,34556.64,169638.46,22201.36,12322.36,6122.9,40646.62,210285.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7200,Supervisory-Labor & Trade,7251,Track Maint Wrk Sprv 1,39300,85623.02,20571.67,876.88,107071.57,17647.35,12424.5,8724.53,38796.38,145867.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23084,146611.24,1249.44,34934.4,182795.08,34539.81,12218.43,7242.72,54000.96,236796.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,3403,101531.02,4509.96,1900.0,107940.98,21037.45,12424.52,8598.01,42059.98,150000.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,38190,22740.16,0.0,0.0,22740.16,5000.59,5507.4,1848.51,12356.5,35096.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,39176,186519.73,11232.58,18172.67,215924.98,38458.58,12376.71,11436.29,62271.58,278196.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,3281,109140.1,0.0,0.0,109140.1,22214.85,12424.5,8138.22,42777.57,151917.67 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,18433,53961.7,0.0,0.0,53961.7,11701.11,8075.93,4425.12,24202.16,78163.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7351,66384.53,3507.16,4595.02,74486.71,19460.34,13079.72,5593.56,38133.62,112620.33 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0963,Dept Head III,17630,100089.0,0.0,2061.09,102150.09,21959.51,6451.18,11888.6,40299.29,142449.38 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,25335,66802.74,381.75,200.0,67384.49,13808.72,12424.5,5327.1,31560.32,98944.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",37673,31347.4,0.0,0.0,31347.4,0.0,4109.65,2433.07,6542.72,37890.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,4042,31512.9,0.0,9244.12,40757.02,7068.34,5635.83,3289.73,15993.9,56750.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,33124,117140.97,3880.95,8428.99,129450.91,23164.19,12424.5,2158.37,37747.06,167197.97 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1210,Benefits Analyst,18076,75605.01,0.0,624.0,76229.01,15711.25,12424.5,6320.53,34456.28,110685.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,1665,7628.4,0.0,992.84,8621.24,0.0,1242.45,669.15,1911.6,10532.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,34371,157241.18,585.51,1907.68,159734.37,31269.56,12287.12,2667.29,46223.97,205958.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,51909,67877.0,5583.99,2398.05,75859.04,13970.17,12424.5,6089.33,32484.0,108343.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,35571,43555.66,33.41,1425.0,45014.07,10842.84,11157.26,3669.6,25669.7,70683.77 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,13862,97594.64,75367.88,16876.92,189839.44,27843.08,12400.61,3182.05,43425.74,233265.18 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,27679,119066.01,25882.41,27151.49,172099.91,34686.67,12424.5,2887.76,49998.93,222098.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23897,919.19,0.0,0.0,919.19,0.0,229.97,71.16,301.13,1220.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,32482,70444.35,0.0,400.0,70844.35,14723.66,11432.52,5605.61,31761.79,102606.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,7704,14915.0,0.0,0.0,14915.0,2775.7,2389.33,1092.56,6257.59,21172.59 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,37274,149725.32,0.0,0.0,149725.32,30072.58,12424.5,17582.73,60079.81,209805.13 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,414,52510.32,0.0,0.0,52510.32,12575.3,12424.5,4210.07,29209.87,81720.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,18318,2072.59,0.0,19.1,2091.69,0.0,686.93,158.67,845.6,2937.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,18509,27246.6,0.0,7592.64,34839.24,4837.78,2389.32,573.41,7800.51,42639.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,46857,112209.06,120.63,0.0,112329.69,22870.16,12424.5,8978.9,44273.56,156603.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,14171,81157.0,2783.29,860.4,84800.69,16904.27,12424.5,6850.99,36179.76,120980.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12353,96173.58,4074.5,9211.96,109460.04,25627.8,12220.93,1861.98,39710.71,149170.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6192,2643.25,0.0,250.0,2893.25,791.13,525.65,194.44,1511.22,4404.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28201,39765.76,5970.19,718.17,46454.12,10490.87,12432.74,3508.5,26432.11,72886.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,52687,22040.45,0.0,1609.55,23650.0,14064.66,0.0,5807.9,19872.56,43522.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,25954,36358.63,0.0,80.0,36438.63,0.0,4136.52,2895.48,7032.0,43470.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,44466,67521.77,0.0,995.0,68516.77,14103.52,12416.98,5318.44,31838.94,100355.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,26422,71704.89,0.0,0.0,71704.89,14706.84,11718.81,5798.83,32224.48,103929.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15472,127402.79,1564.62,33134.99,162102.4,29484.37,10939.53,4680.43,45104.33,207206.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,10062,125476.0,0.0,0.0,125476.0,25861.03,12424.48,9914.23,48199.74,173675.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2919,Child Care Specialist,39027,41242.39,0.0,0.0,41242.39,9883.09,12311.85,3189.95,25384.89,66627.28 +Calendar,2015,5,Culture & Recreation,LLB,Law Library,220.0,Law Librarian and Assistant,8100,Legal & Court,0180,Law Librarian,39720,175958.7,0.0,0.0,175958.7,48612.05,12424.5,18058.11,79094.66,255053.36 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4265,Senior Real Property Appraiser,29369,100554.03,0.0,2320.0,102874.03,21175.51,12424.5,8234.83,41834.84,144708.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,16510,24153.27,0.0,990.2,25143.47,6027.88,5966.75,2082.64,14077.27,39220.74 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,52274,13475.0,0.0,0.0,13475.0,2507.7,2389.33,1063.77,5960.8,19435.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,39525,97934.01,0.0,0.0,97934.01,20179.57,12424.5,7930.42,40534.49,138468.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,11527,129895.01,0.0,0.0,129895.01,26141.48,12424.5,9969.73,48535.71,178430.72 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,39652,82740.5,0.0,0.0,82740.5,16598.66,9557.31,12849.56,39005.53,121746.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,35725,59229.0,0.0,612.0,59841.0,12333.84,12424.5,4964.85,29723.19,89564.19 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,6662,106116.0,0.0,0.0,106116.0,21866.98,12424.5,8721.09,43012.57,149128.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,6867,17492.39,0.0,22.2,17514.59,0.0,2875.74,1357.02,4232.76,21747.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,6499,27232.0,2884.13,765.8,30881.93,5130.02,4396.36,2428.69,11955.07,42837.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20175,64048.82,4632.5,2142.29,70823.61,15179.6,12615.41,5163.29,32958.3,103781.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,43648,61466.28,0.0,1581.27,63047.55,12988.74,12370.07,5194.59,30553.4,93600.95 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4861,184289.02,0.0,5248.28,189537.3,38144.36,12424.5,11057.26,61626.12,251163.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9729,43187.25,0.0,4318.76,47506.01,2529.97,3058.34,6934.23,12522.54,60028.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,51047,84644.0,23849.08,13236.77,121729.85,19060.35,12424.5,9742.22,41227.07,162956.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6352,2873.46,0.0,0.0,2873.46,0.0,1206.61,230.78,1437.39,4310.85 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30395,3517.5,0.0,0.0,3517.5,907.54,0.0,277.88,1185.42,4702.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,29512,170335.11,0.0,0.0,170335.11,34279.74,12424.5,25658.35,72362.59,242697.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26578,113233.6,16382.37,18797.83,148413.8,25036.03,15196.12,2474.0,42706.15,191119.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32059,137991.72,0.0,3840.37,141832.09,27522.96,11521.21,6541.36,45585.53,187417.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,36648,82883.0,5331.65,1338.91,89553.56,17353.76,12424.5,7174.57,36952.83,126506.39 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,5566,83349.01,0.0,612.0,83961.01,17337.54,12185.57,6916.9,36440.01,120401.02 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,10655,114756.4,0.0,0.0,114756.4,23396.86,10979.86,9207.71,43584.43,158340.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,44388,68093.8,2448.66,4799.12,75341.58,14369.19,12424.5,6052.77,32846.46,108188.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,44698,47280.48,10010.85,1687.7,58979.03,9497.68,8752.58,1503.93,19754.19,78733.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,31528,72699.0,0.0,1000.0,73699.0,15188.1,12424.5,6057.31,33669.91,107368.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,6078,20522.0,438.08,0.0,20960.08,3819.18,3822.92,1694.47,9336.57,30296.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2802,Epidemiologist 1,27688,77895.5,0.0,0.0,77895.5,16034.92,12424.5,6068.65,34528.07,112423.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,31485,6237.57,0.0,61.31,6298.88,0.0,2278.82,487.91,2766.73,9065.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,17311,81942.06,0.0,2711.32,84653.38,17448.76,12424.5,6924.66,36797.92,121451.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,2341,26649.0,849.2,660.0,28158.2,7045.72,6021.11,2204.62,15271.45,43429.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,18818,101323.02,14870.48,1675.5,117869.0,18588.97,12424.5,9147.85,40161.32,158030.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,39233,117140.97,2580.56,7585.71,127307.24,23164.18,12424.5,1857.66,37446.34,164753.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37881,112611.83,1025.41,25632.29,139269.53,24026.59,10927.83,10004.18,44958.6,184228.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,34654,8189.0,0.0,0.0,8189.0,0.0,1815.89,635.39,2451.28,10640.28 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,47425,186805.97,0.0,15076.99,201882.96,37559.5,12400.61,11177.6,61137.71,263020.67 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8146,District Attry's Investigator,25829,109563.02,8086.12,7483.78,125132.92,26699.6,12424.5,2123.12,41247.22,166380.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4387,67185.63,3877.54,2198.87,73262.04,15781.78,13236.64,5379.49,34397.91,107659.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10001,79817.84,569.9,4055.52,84443.26,16801.46,6670.29,5925.78,29397.53,113840.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32442,99500.55,0.0,640.33,100140.88,12283.75,10040.73,8442.66,30767.14,130908.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51122,8664.3,0.0,1748.38,10412.68,0.0,0.0,270.68,270.68,10683.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",6736,94305.02,1708.09,11504.51,107517.62,21555.85,12413.51,8827.59,42796.95,150314.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36992,77856.3,1034.32,3276.73,82167.35,15750.04,11946.64,4369.86,32066.54,114233.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,11591,96062.03,0.0,0.0,96062.03,19759.67,12185.57,7808.19,39753.43,135815.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,31633,40926.51,118.5,0.0,41045.01,9825.74,12303.55,3311.91,25441.2,66486.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,50814,82103.08,0.0,781.65,82884.73,17080.08,12424.5,7344.01,36848.59,119733.32 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,51022,103892.8,0.0,5194.66,109087.46,21935.08,6021.11,8987.07,36943.26,146030.72 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8262,Criminalist III,37031,82426.05,0.0,0.0,82426.05,15810.71,8152.45,6757.21,30720.37,113146.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,18357,40588.56,0.0,0.0,40588.56,8364.05,7173.96,3313.79,18851.8,59440.36 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,8812,58675.0,0.0,0.0,58675.0,13048.91,11946.64,4762.87,29758.42,88433.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,9375,"Asstdepdir, Port",13904,137219.11,0.0,0.0,137219.11,27537.8,11580.77,27584.14,66702.71,203921.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,17842,7564.66,0.0,55.18,7619.84,0.0,2741.76,590.6,3332.36,10952.2 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,35537,14196.0,0.0,2614.09,16810.09,3184.16,1672.53,1373.76,6230.45,23040.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,23614,52314.62,2126.42,3534.61,57975.65,11247.92,11497.45,4550.45,27295.82,85271.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,28143,47531.2,308.7,2177.8,50017.7,11401.56,12424.5,4038.53,27864.59,77882.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36927,2674.0,0.0,0.0,2674.0,0.0,669.02,207.55,876.57,3550.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,20734,103361.67,0.0,0.0,103361.67,20243.42,9557.31,21702.48,51503.21,154864.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25590,122451.92,1609.2,17411.87,141472.99,26158.8,10846.0,10147.52,47152.32,188625.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46180,12297.99,0.0,486.26,12784.25,0.0,3283.83,991.68,4275.51,17059.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,53163,70245.0,2241.5,7791.18,80277.68,15357.69,12424.5,6348.77,34130.96,114408.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32142,67634.51,3584.25,3533.8,74752.56,19516.33,13331.31,5613.04,38460.68,113213.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,22270,160160.06,8805.51,8776.25,177741.82,32230.02,12424.5,2975.16,47629.68,225371.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43676,16475.55,0.0,269.16,16744.71,0.0,4172.38,1297.89,5470.27,22214.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,26312,79335.56,13022.92,12345.33,104703.81,18107.28,11666.37,9087.53,38861.18,143564.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,33919,108038.0,36220.14,18198.72,162456.86,24632.05,12424.5,10496.18,47552.73,210009.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,32127,7131.09,0.0,244.72,7375.81,1882.73,0.0,372.86,2255.59,9631.4 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),19174,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10860.89,60674.22,246463.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,44223,78496.03,0.0,0.0,78496.03,16162.12,12424.44,6242.93,34829.49,113325.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42430,16936.7,0.0,83.09,17019.79,0.0,4235.08,1319.04,5554.12,22573.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36502,124348.68,843.16,14334.78,139526.62,25950.98,11010.02,7453.94,44414.94,183941.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,18846,156746.04,0.0,0.0,156746.04,31545.23,12424.49,10438.35,54408.07,211154.11 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,23368,74165.02,3071.9,624.0,77860.92,15414.44,12424.5,6789.39,34628.33,112489.25 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,47719,9463.59,0.0,4558.32,14021.91,0.0,0.0,203.32,203.32,14225.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38101,36943.86,0.0,1557.18,38501.04,4242.16,9871.87,2936.89,17050.92,55551.96 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,21461,113234.8,0.0,6227.91,119462.71,24066.11,12376.71,9810.71,46253.53,165716.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,33844,119066.03,1102.48,16082.27,136250.78,31990.74,12424.5,2265.71,46680.95,182931.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,42454,42196.01,0.0,15705.63,57901.64,9538.35,6546.75,4716.05,20801.15,78702.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27158,4779.53,0.0,1.48,4781.01,0.0,1593.39,370.71,1964.1,6745.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35345,66959.68,12756.47,4884.91,84601.06,19713.58,13195.48,6479.62,39388.68,123989.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,44026,52499.48,0.0,824.32,53323.8,12724.6,12373.73,4893.66,29991.99,83315.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,25284,102019.01,0.0,0.0,102019.01,21026.27,12424.5,8382.66,41833.43,143852.44 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,19635,57772.42,0.0,0.0,57772.42,11862.87,12137.78,4434.6,28435.25,86207.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,22953,3760.5,0.0,0.0,3760.5,699.83,716.79,290.04,1706.66,5467.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41389,138826.69,12097.98,10514.61,161439.28,27426.16,12424.5,2705.5,42556.16,203995.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,6982,69708.04,0.0,0.0,69708.04,14286.06,11673.23,5547.8,31507.09,101215.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9096,24372.18,0.0,6029.99,30402.17,2712.46,2308.09,2542.3,7562.85,37965.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,30208,6910.7,0.0,274.18,7184.88,0.0,1576.95,556.84,2133.79,9318.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,15758,11623.96,0.0,73.58,11697.54,0.0,4215.67,934.55,5150.22,16847.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,50687,129604.95,30453.07,7776.33,167834.35,27026.3,15052.76,2814.94,44894.0,212728.35 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,38773,13173.94,0.0,0.0,13173.94,0.0,4124.58,1021.55,5146.13,18320.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,6423,18412.0,0.0,168.0,18580.0,3457.76,3345.06,1454.91,8257.73,26837.73 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,51424,72699.06,0.0,624.0,73323.06,15110.32,12424.5,5984.79,33519.61,106842.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,1589,3587.36,0.0,109.32,3696.68,0.0,1191.68,271.93,1463.61,5160.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,5831,93281.0,0.0,680.0,93961.0,19360.04,12424.5,7391.82,39176.36,133137.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,25385,71612.01,0.0,824.0,72436.01,14888.01,12424.5,5937.39,33249.9,105685.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,52653,49477.0,0.0,0.0,49477.0,9434.53,6690.11,3741.12,19865.76,69342.76 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",50761,9913.83,1263.52,118.3,11295.65,0.0,2138.45,876.72,3015.17,14310.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",27559,35370.59,0.0,0.0,35370.59,0.0,0.0,2797.9,2797.9,38168.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,38491,47242.42,0.0,418.39,47660.81,9724.89,9461.74,3811.3,22997.93,70658.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53178,48533.22,11585.57,1636.82,61755.61,13310.64,9534.37,4786.29,27631.3,89386.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7100,Administrative-Labor & Trades,7134,Water Const&Main Supt,8436,131258.05,43314.21,35179.13,209751.39,28655.07,12424.51,11314.11,52393.69,262145.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10013,45154.9,3473.28,1985.84,50614.02,12223.13,13447.02,3840.25,29510.4,80124.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8686,3939.65,0.0,992.35,4932.0,1047.24,1708.37,403.44,3159.05,8091.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30695,8298.21,0.0,0.0,8298.21,856.98,3581.0,681.67,5119.65,13417.86 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,353,85004.01,7556.64,2.0,92562.65,17519.97,12424.5,7607.94,37552.41,130115.06 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,10901,87528.6,0.0,0.0,87528.6,18030.25,12424.5,6941.73,37396.48,124925.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,14299,79436.36,1814.63,782.0,82032.99,16535.09,12379.72,6426.25,35341.06,117374.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46272,2456.13,0.0,0.0,2456.13,0.0,1197.65,190.45,1388.1,3844.23 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,45275,0.0,0.0,307.69,307.69,0.0,0.0,24.31,24.31,332.0 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,42959,12966.0,0.0,9993.26,22959.26,3091.8,2867.19,1835.88,7794.87,30754.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,8351,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5065.33,30342.45,92701.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,16897,73957.0,1510.68,0.0,75467.68,15242.9,12424.5,6047.16,33714.56,109182.24 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,48706,208032.0,0.0,5723.14,213755.14,43018.44,12424.5,11403.54,66846.48,280601.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6244,Chief Plumbing Inspector,2641,137101.06,0.0,7508.05,144609.11,29090.04,12424.5,10117.32,51631.86,196240.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2959,119461.63,45741.88,3400.99,168604.5,23641.9,12424.5,2819.33,38885.73,207490.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,8842,91730.41,17607.15,10966.4,120303.96,20328.41,12383.94,9742.66,42455.01,162758.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,24729,78425.01,0.0,0.0,78425.01,16107.0,11946.64,6286.67,34340.31,112765.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7254,Automotive Machinist Sprv 1,45848,107816.02,0.0,600.0,108416.02,22332.94,12424.5,8875.07,43632.51,152048.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,17748,119066.09,696.3,20111.06,139873.45,33849.31,12424.5,2327.67,48601.48,188474.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,15604,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5169.23,30446.35,92805.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,5022,59336.43,4290.26,1420.0,65046.69,13533.61,12424.5,5269.5,31227.61,96274.3 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,39431,45328.26,0.0,437.64,45765.9,9475.75,9115.27,3617.71,22208.73,67974.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,32890,50417.22,17126.55,5742.1,73285.87,11543.89,10099.27,5773.61,27416.77,100702.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,29542,136149.0,19756.1,4077.55,159982.65,26921.92,12424.5,2718.67,42065.09,202047.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8952,6612.01,0.0,0.0,6612.01,0.0,2867.19,526.85,3394.04,10006.05 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36020,52759.51,1819.13,10.29,54588.93,12637.57,12424.39,4387.44,29449.4,84038.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,44766,72699.0,0.0,624.0,73323.0,15112.3,12424.5,5955.94,33492.74,106815.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,4650,59969.4,232.7,2828.14,63030.24,12700.22,10187.31,5199.03,28086.56,91116.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,21736,81942.02,19031.36,2062.5,103035.88,17314.15,12424.48,8390.18,38128.81,141164.69 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23691,26004.67,0.0,292.25,26296.92,6346.13,7272.63,2115.73,15734.49,42031.41 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",8272,13793.55,738.79,772.69,15305.03,0.0,0.0,1210.97,1210.97,16516.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,5028,44362.14,0.0,140.78,44502.92,9719.67,8389.04,3677.63,21786.34,66289.26 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,12571,78963.02,0.0,1664.0,80627.02,16616.52,12424.5,6625.3,35666.32,116293.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46628,41711.32,4381.72,1443.99,47537.03,11208.92,12988.22,3562.92,27760.06,75297.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,41487,46721.99,5106.13,10581.33,62409.45,11038.02,6404.71,5095.33,22538.06,84947.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",1400,"Clerical, Secretarial & Steno",1434,Shelter Service Rep,16314,23365.59,0.0,0.0,23365.59,5580.2,5731.4,1989.38,13300.98,36666.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,50012,67261.0,0.0,7253.66,74514.66,14605.1,12424.5,6152.31,33181.91,107696.57 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9912,Public Service Aide-Technical,23275,530.0,0.0,0.0,530.0,0.0,250.88,44.43,295.31,825.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34179,33893.64,4251.26,1213.96,39358.86,9014.43,10578.19,3003.54,22596.16,61955.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48842,11047.55,0.0,626.61,11674.16,1829.83,4790.6,933.69,7554.12,19228.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9302,55078.7,2963.04,2650.61,60692.35,13778.86,12424.5,4870.41,31073.77,91766.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,46525,54124.01,0.0,624.0,54748.01,12250.25,12424.5,4537.52,29212.27,83960.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,31100,12161.67,0.0,642.29,12803.96,2755.61,2462.56,1060.29,6278.46,19082.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31550,113233.59,72284.16,15522.77,201040.52,24376.17,15196.12,3425.89,42998.18,244038.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",52986,90914.25,0.0,375.0,91289.25,18788.37,12424.5,7423.16,38636.03,129925.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,38126,48299.52,0.0,0.0,48299.52,10492.33,7990.15,3852.38,22334.86,70634.38 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,15207,17659.21,0.0,12590.24,30249.45,3068.44,2484.9,2424.98,7978.32,38227.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34695,297.44,0.0,29.74,327.18,0.0,0.0,25.17,25.17,352.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,7832,20129.5,897.6,1986.03,23013.13,4963.73,6690.13,1858.22,13512.08,36525.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37880,38281.68,0.0,3295.93,41577.61,0.0,2899.81,687.58,3587.39,45165.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,32313,32670.04,0.0,0.0,32670.04,6967.07,7167.99,2657.85,16792.91,49462.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,27918,142997.25,0.0,0.0,142997.25,28792.6,12407.84,10258.88,51459.32,194456.57 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,39819,33659.2,1855.4,2299.2,37813.8,0.0,4874.23,1435.18,6309.41,44123.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,42201,25762.0,0.0,0.0,25762.0,4794.3,4300.79,2023.03,11118.12,36880.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45234,37698.65,0.0,82.24,37780.89,142.74,3320.03,2841.21,6303.98,44084.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,21777,85636.21,0.0,0.0,85636.21,17568.48,10943.12,6788.97,35300.57,120936.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,18163,67140.01,0.0,0.0,67140.01,14988.39,12420.86,5462.29,32871.54,100011.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,41949,84516.2,1552.96,997.25,87066.41,17537.64,12114.85,6953.54,36606.03,123672.44 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23170,21257.26,0.0,307.06,21564.32,5168.31,6152.52,1751.01,13071.84,34636.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2622,94372.67,21028.37,6744.6,122145.64,19594.69,12424.5,2039.51,34058.7,156204.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,793.0,"SEIU - Firefighter Paramedics, Local 1021",H000,Fire Services,H001,Fire Rescue Paramedic,17507,86709.82,0.0,5202.58,91912.4,18444.21,8693.87,1518.86,28656.94,120569.34 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,36920,113852.0,0.0,0.0,113852.0,22913.02,12424.49,8638.04,43975.55,157827.55 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,43530,125815.11,0.0,0.0,125815.11,25334.65,12424.5,9876.7,47635.85,173450.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,46111,102662.63,10560.89,7641.96,120865.48,21329.19,12424.5,2057.28,35810.97,156676.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,17522,47421.04,334.08,24155.07,71910.19,10924.43,5256.52,6038.81,22219.76,94129.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,10343,12982.41,0.0,953.45,13935.86,3124.17,4300.79,1898.5,9323.46,23259.32 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,19683,97764.57,13894.07,9747.47,121406.11,25436.11,12424.52,1702.55,39563.18,160969.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,15081,41725.01,0.0,0.0,41725.01,8048.87,7167.99,3376.27,18593.13,60318.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,23494,102019.09,0.0,0.0,102019.09,21022.57,12424.5,8277.58,41724.65,143743.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,42746,98157.02,0.0,0.0,98157.02,20230.58,12424.5,8029.76,40684.84,138841.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,41457,113233.61,36738.87,18535.66,168508.14,25036.04,15196.12,2862.73,43094.89,211603.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5679,149099.0,712.38,9357.3,159168.68,27669.06,12424.5,4523.78,44617.34,203786.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52309,112606.06,1799.69,26368.54,140774.29,21966.35,10596.91,7986.63,40549.89,181324.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,4172,856.82,0.0,20.21,877.03,194.13,172.69,300.03,666.85,1543.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43201,15370.84,0.0,471.9,15842.74,3977.08,6498.97,1263.24,11739.29,27582.03 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,1216,23020.6,0.0,0.0,23020.6,5939.3,4491.93,1849.04,12280.27,35300.87 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,25135,46345.41,0.0,0.0,46345.41,9665.78,3073.27,3592.33,16331.38,62676.79 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,10788,11394.9,0.0,0.0,11394.9,0.0,2841.8,883.86,3725.66,15120.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37374,118246.02,0.0,250.0,118496.02,26486.82,9853.59,5285.44,41625.85,160121.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,14637,80035.34,35546.74,5419.69,121001.77,16937.26,12424.5,2019.85,31381.61,152383.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53160,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,16117,9463.59,0.0,4752.11,14215.7,0.0,0.0,206.13,206.13,14421.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49369,13704.5,0.0,552.1,14256.6,0.0,5262.48,1105.12,6367.6,20624.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45751,109858.03,2198.32,5184.82,117241.17,21590.02,11421.58,1941.01,34952.61,152193.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,46666,11479.81,0.0,0.0,11479.81,0.0,3799.03,947.23,4746.26,16226.07 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,5223,94564.11,30208.09,12135.89,136908.09,25933.09,12017.48,2319.81,40270.38,177178.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),44892,9413.45,1685.26,957.3,12056.01,1873.74,1409.71,201.13,3484.58,15540.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,51860,77071.05,981.28,1944.0,79996.33,16282.67,12424.5,6331.77,35038.94,115035.27 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,11877,88592.02,0.0,0.0,88592.02,18259.49,12424.5,7124.61,37808.6,126400.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,4772,113619.7,42085.47,7187.3,162892.47,22940.15,12016.35,10519.21,45475.71,208368.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29642,73360.11,12242.96,5040.04,90643.11,15696.27,15196.12,1540.61,32433.0,123076.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,14767,56531.0,0.0,1975.95,58506.95,11659.55,12424.5,4799.36,28883.41,87390.36 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,30980,51925.0,6193.27,9917.79,68036.06,14046.15,12424.5,5580.05,32050.7,100086.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35888,114498.83,1576.12,12111.95,128186.9,24270.34,11110.37,9881.71,45262.42,173449.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3992,20589.72,2661.66,923.11,24174.49,5205.55,6378.5,1743.98,13328.03,37502.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,25428,119066.01,17489.1,25381.38,161936.49,34061.95,12424.5,2712.26,49198.71,211135.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,888,151374.17,0.0,250.0,151624.17,30463.04,10854.71,10238.59,51556.34,203180.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16861,41.91,0.0,4.19,46.1,0.0,0.0,0.0,0.0,46.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,38267,60375.14,122.23,6254.63,66752.0,13427.37,12418.53,5466.6,31312.5,98064.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,2241,100375.91,27271.68,7530.4,135177.99,20711.94,12376.74,9992.53,43081.21,178259.2 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,48120,2361.94,560.2,0.0,2922.14,0.0,698.88,226.8,925.68,3847.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9733,40101.73,2560.82,1303.47,43966.02,10727.2,12538.83,3800.51,27066.54,71032.56 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,802,202579.27,0.0,10129.02,212708.29,42727.5,11510.58,11356.04,65594.12,278302.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,40815,71330.01,0.0,0.0,71330.01,14649.87,11946.64,5680.47,32276.98,103606.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,325,2092.46,0.0,0.0,2092.46,0.0,690.51,162.41,852.92,2945.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,9145,24894.12,0.0,0.0,24894.12,0.0,2292.26,1929.68,4221.94,29116.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7243,Parking Meter Repairer Sprv 1,26324,85368.03,0.0,0.0,85368.03,17594.59,12424.5,6887.47,36906.56,122274.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,41394,95428.28,0.0,0.0,95428.28,19665.47,12424.5,7649.36,39739.33,135167.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,50952,7296.32,0.0,176.43,7472.75,1676.13,1600.85,615.18,3892.16,11364.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",26867,66281.01,9726.03,3643.89,79650.93,13769.72,10990.9,6512.41,31273.03,110923.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,43741,16169.78,0.0,0.0,16169.78,0.0,0.0,1278.3,1278.3,17448.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",997,6171.53,112.89,0.0,6284.42,0.0,1469.42,486.54,1955.96,8240.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32295,66518.35,7447.61,1956.01,75921.97,18771.4,13107.44,5950.65,37829.49,113751.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7824,66410.87,13986.47,4287.97,84685.31,19335.69,13083.42,6555.67,38974.78,123660.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,47721,68183.5,10888.18,5384.63,84456.31,14388.84,12424.5,6536.31,33349.65,117805.96 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,11698,133087.03,0.0,0.0,133087.03,26783.95,12424.5,10073.98,49282.43,182369.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,26617,67325.04,0.0,0.0,67325.04,13831.95,12284.37,5347.39,31463.71,98788.75 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,48760,97756.68,14543.0,18125.91,130425.59,28168.78,12424.5,1858.21,42451.49,172877.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,23040,11560.0,0.0,0.0,11560.0,0.0,1911.46,914.48,2825.94,14385.94 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,11269,14693.55,420.44,44.73,15158.72,0.0,3470.5,1175.56,4646.06,19804.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,46584,117129.72,13259.44,5061.05,135450.21,23205.2,12424.5,2171.47,37801.17,173251.38 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,15529,62014.5,0.0,0.0,62014.5,11361.01,6212.24,4929.8,22503.05,84517.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,15474,17878.25,0.0,0.0,17878.25,3652.86,3246.26,1569.39,8468.51,26346.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43773,6858.79,0.0,965.83,7824.62,0.0,585.38,607.31,1192.69,9017.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,16115,4397.0,0.0,0.0,4397.0,818.28,477.85,346.4,1642.53,6039.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,52629,108760.56,0.0,0.0,108760.56,21743.49,10403.43,15505.03,47651.95,156412.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27881,1892.63,0.0,0.0,1892.63,0.0,922.88,146.82,1069.7,2962.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40784,29770.8,0.0,3168.45,32939.25,7068.76,4014.07,23.98,11106.81,44046.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,50517,78204.01,0.0,624.0,78828.01,16246.79,12424.5,6449.57,35120.86,113948.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41863,93557.89,854.12,379.62,94791.63,0.0,8177.48,7349.12,15526.6,110318.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,21582,157816.72,134.78,2674.1,160625.6,32533.89,11492.9,10451.05,54477.84,215103.44 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,31324,49529.01,0.0,874.25,50403.26,10905.31,10226.32,3983.93,25115.56,75518.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,36819,40694.4,0.0,5331.19,46025.59,9475.81,7210.4,3783.89,20470.1,66495.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,9378,20523.78,25498.72,1690.03,47712.53,3638.86,6319.77,3748.97,13707.6,61420.13 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",13557,63037.36,18586.28,3381.15,85004.79,13049.53,12256.06,1673.85,26979.44,111984.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5468,111096.55,29162.09,17695.45,157954.09,24566.16,14909.4,2593.89,42069.45,200023.54 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,40076,135624.84,0.0,0.0,135624.84,27296.03,12113.87,9997.13,49407.03,185031.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10345,109665.42,0.0,3068.15,112733.57,22692.93,9977.29,8866.98,41537.2,154270.77 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2456,Asst Forensic Toxicologist 1,20436,110338.05,0.0,0.0,110338.05,22205.98,12424.5,8959.22,43589.7,153927.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,52377,5599.01,0.0,13.91,5612.92,0.0,1654.61,666.42,2321.03,7933.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,26866,72382.72,0.0,0.0,72382.72,14915.81,12400.49,5888.87,33205.17,105587.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,32458,68067.01,0.0,0.0,68067.01,14029.01,12424.5,5393.67,31847.18,99914.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,34867,84034.3,24166.98,3277.7,111478.98,17430.64,12341.06,8892.89,38664.59,150143.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,27813,77586.61,0.0,1714.2,79300.81,16357.05,12328.92,6528.66,35214.63,114515.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2454,13190.06,2915.41,770.09,16875.56,3282.37,2504.67,1280.64,7067.68,23943.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",16726,25090.0,0.0,0.0,25090.0,4548.8,2389.33,5088.23,12026.36,37116.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,43636,84644.0,9822.94,14168.43,108635.37,19189.11,12424.5,8667.7,40281.31,148916.68 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,8521,18899.29,0.0,0.0,18899.29,0.0,4516.38,1464.96,5981.34,24880.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,36123,102908.13,0.0,0.0,102908.13,21259.21,12137.78,8213.05,41610.04,144518.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5177,Safety Officer,27378,88533.5,0.0,0.0,88533.5,17551.09,8394.13,6817.5,32762.72,121296.22 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,9308,67261.04,0.0,1245.0,68506.04,14092.63,12424.48,5475.35,31992.46,100498.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",28818,87826.06,4335.3,3451.22,95612.58,18457.26,11636.03,7891.8,37985.09,133597.67 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,3897,106522.16,0.0,1000.0,107522.16,22138.07,12343.87,8454.34,42936.28,150458.44 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,33291,494.6,355.8,0.0,850.4,0.0,146.35,66.0,212.35,1062.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,40061,65711.76,8947.1,7272.03,81930.89,19697.83,12370.86,6655.99,38724.68,120655.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47750,7510.9,620.85,37.64,8169.39,1783.85,2263.9,626.07,4673.82,12843.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,14765,100761.0,5045.09,10266.65,116072.74,21796.68,12424.44,9348.44,43569.56,159642.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,32149,11133.0,0.0,0.0,11133.0,2071.83,2150.39,887.51,5109.73,16242.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,35900,64463.7,9639.14,13245.87,87348.71,15007.52,12424.5,6689.04,34121.06,121469.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,35825,116846.68,79798.84,4946.24,201591.76,23154.95,12394.64,3430.39,38979.98,240571.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15292,56531.01,789.3,3512.07,60832.38,11758.32,12424.5,4983.35,29166.17,89998.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,32214,66102.06,4833.76,2624.84,73560.66,13922.3,12424.5,6043.26,32390.06,105950.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,15041,13252.0,0.0,0.0,13252.0,2466.2,1911.46,1046.47,5424.13,18676.13 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",20112,63534.84,3250.72,6295.12,73080.68,13737.39,12349.48,1464.37,27551.24,100631.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34248,8816.0,0.0,0.0,8816.0,0.0,3822.92,682.54,4505.46,13321.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44117,33323.48,2059.99,634.52,36017.99,9975.8,6626.98,2788.81,19391.59,55409.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,46555,42118.8,9612.65,2152.02,53883.47,10219.67,11540.45,4052.54,25812.66,79696.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7235,Transit Power Line Sprv1,21042,111403.0,20026.14,11133.7,142562.84,24660.73,12424.5,10156.17,47241.4,189804.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,6512,2754.72,0.0,4591.33,7346.05,617.88,453.61,568.67,1640.16,8986.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,22170,8316.0,0.0,201.17,8517.17,0.0,2508.8,659.4,3168.2,11685.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,47953,39.05,0.0,0.0,39.05,0.0,11.94,3.02,14.96,54.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,39692,38877.7,0.0,0.0,38877.7,7872.59,0.0,3075.03,10947.62,49825.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,43734,73749.0,101.11,2144.23,75994.34,15561.3,12424.5,6294.78,34280.58,110274.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,17219,40362.24,8007.49,1399.99,49769.72,9171.87,7406.92,3876.57,20455.36,70225.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30345,46488.84,17214.59,6817.8,70521.23,12175.52,12297.56,5623.65,30096.73,100617.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,52669,77071.01,0.0,0.0,77071.01,15884.7,12424.5,6392.91,34702.11,111773.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48875,42087.98,5502.63,1447.64,49038.25,11306.74,13102.11,3493.0,27901.85,76940.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,30849,81542.02,0.0,0.0,81542.02,16806.15,12424.5,6690.85,35921.5,117463.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17054,2048.4,0.0,65.3,2113.7,0.0,860.16,164.06,1024.22,3137.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43871,4275.25,0.0,8.82,4284.07,0.0,2084.69,332.29,2416.98,6701.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14018,13732.03,0.0,986.68,14718.71,1835.6,5954.68,1184.11,8974.39,23693.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1538,112696.24,2554.1,11219.56,126469.9,22291.45,12424.5,2154.41,36870.36,163340.26 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),47823,184289.02,0.0,5248.28,189537.3,38144.36,12424.5,11046.54,61615.4,251152.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,38464,85004.01,4770.54,3021.8,92796.35,17530.82,12424.5,7268.94,37224.26,130020.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,29109,33040.0,0.0,336.0,33376.0,7458.9,6690.13,2961.81,17110.84,50486.84 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7333,Apprentice Stationary Engineer,27052,19494.0,1858.02,1090.7,22442.72,4372.5,2867.19,1760.67,9000.36,31443.08 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8149,Asst Chf Dist Atty's Invstgtor,53007,126833.02,0.0,7609.98,134443.0,30667.45,12424.5,2243.63,45335.58,179778.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,9029,80750.2,0.0,0.0,80750.2,16622.19,12424.5,6575.11,35621.8,116372.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,25364,93281.0,0.0,550.0,93831.0,19328.16,12424.5,7440.41,39193.07,133024.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,6134,99502.02,0.0,0.0,99502.02,20281.73,12424.51,8092.81,40799.05,140301.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17822,56531.0,0.0,5499.82,62030.82,12361.37,12424.5,5078.05,29863.92,91894.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,31058,83699.01,0.0,0.0,83699.01,17250.56,12424.5,6745.31,36420.37,120119.38 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,31506,574.2,0.0,6.34,580.54,149.78,173.23,44.94,367.95,948.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,36238,135421.0,0.0,0.0,135421.0,27268.29,12424.5,10047.86,49740.65,185161.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,37137,70791.04,25.37,5092.5,75908.91,15663.0,12424.5,6246.7,34334.2,110243.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36221,22369.88,1748.93,3023.39,27142.2,716.53,1971.19,2069.95,4757.67,31899.87 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,19742,36555.0,0.0,0.0,36555.0,6802.9,4778.65,2905.24,14486.79,51041.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7287,Sprv Electronic Main Tech,31309,43831.01,5020.6,0.0,48851.61,8156.93,4300.79,2953.02,15410.74,64262.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,20759,48840.03,3418.81,2952.75,55211.59,10398.32,9557.43,4537.03,24492.78,79704.37 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,26715,88592.01,0.0,0.0,88592.01,18259.48,12424.5,7273.32,37957.3,126549.31 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,51584,8298.69,0.0,0.0,8298.69,0.0,1890.56,643.29,2533.85,10832.54 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,24973,26831.38,706.2,0.0,27537.58,288.45,6657.27,2134.45,9080.17,36617.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6818,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.23,5147.57,17667.57 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,16451,35039.4,2647.46,1458.87,39145.73,7971.69,10478.69,3109.18,21559.56,60705.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,12793,36180.85,0.0,444.02,36624.87,7729.51,5467.92,3097.36,16294.79,52919.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,35161,93281.0,0.0,0.0,93281.0,19225.75,12424.5,7590.88,39241.13,132522.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42974,5687.75,0.0,79.0,5766.75,0.0,2186.23,447.37,2633.6,8400.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,39480,33279.29,2022.09,4434.77,39736.15,5912.75,3345.06,666.18,9923.99,49660.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,29413,140336.71,873.98,2809.94,144020.63,27891.72,12424.5,2407.59,42723.81,186744.44 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",43929,19985.0,0.0,3000.0,22985.0,0.0,3345.06,1829.1,5174.16,28159.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46066,113233.61,0.0,13279.18,126512.79,24034.6,15196.12,2153.48,41384.2,167896.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,46719,138635.28,13477.97,11944.89,164058.14,27395.36,12424.5,2698.97,42518.83,206576.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,43176,54851.4,14147.44,2775.95,71774.79,12363.45,12424.51,5758.5,30546.46,102321.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,35843,135421.0,0.0,13936.96,149357.96,30058.82,12424.51,10310.81,52794.14,202152.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48597,113696.43,70718.89,16737.53,201152.85,24780.04,14376.46,3382.69,42539.19,243692.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12981,75550.3,862.4,1320.0,77732.7,15819.07,12424.5,6438.82,34682.39,112415.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,13031,15408.0,0.0,0.0,15408.0,0.0,5113.16,1241.93,6355.09,21763.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",44366,81401.96,73.95,3131.74,84607.65,16811.09,12252.89,6973.0,36036.98,120644.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,17161,67729.04,1568.96,770.0,70068.0,14116.75,12424.5,5993.3,32534.55,102602.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41749,1037.1,0.0,34.58,1071.68,0.02,0.0,452.96,452.98,1524.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",12799,7425.9,0.0,0.0,7425.9,0.0,1768.11,576.37,2344.48,9770.38 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,29965,63102.01,104.27,2081.12,65287.4,13152.84,12424.5,5406.19,30983.53,96270.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52600,24498.4,10756.5,1698.26,36953.16,7584.44,4858.04,2636.52,15079.0,52032.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,4297,45449.6,15873.78,2899.6,64222.98,10904.68,12376.71,4880.45,28161.84,92384.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,15216,46886.0,11496.74,413.7,58796.44,10168.85,8123.71,4480.45,22773.01,81569.45 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,186,1090.13,211.97,0.0,1302.1,0.0,322.56,101.07,423.63,1725.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6488,56531.0,4349.76,4380.8,65261.56,12502.29,12424.5,5373.88,30300.67,95562.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,20012,130166.02,106821.26,16270.72,253258.0,28819.11,15118.23,4277.65,48214.99,301472.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,46499,22341.38,0.0,660.85,23002.23,5505.96,6230.17,1902.01,13638.14,36640.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33306,141449.51,0.0,9656.82,151106.33,30346.59,12424.5,10247.13,53018.22,204124.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19315,65763.63,285.23,5686.05,71734.91,19580.4,12961.14,5585.67,38127.21,109862.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3544,Curator 3,20000,82914.04,0.0,0.0,82914.04,17088.82,12424.5,6342.96,35856.28,118770.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,43187,102624.11,0.0,521.86,103145.97,21223.25,12424.51,8168.63,41816.39,144962.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25821,112159.76,13022.2,18825.2,144007.16,24822.82,15052.76,2454.11,42329.69,186336.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",35288,89086.5,3948.24,1820.91,94855.65,18635.12,11722.34,7781.06,38138.52,132994.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8167,41227.82,4225.04,551.0,46003.86,10901.94,12260.0,3486.03,26647.97,72651.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39297,22653.27,1793.67,648.62,25095.56,6096.95,7087.88,1670.34,14855.17,39950.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1064,119461.6,5130.37,8340.67,132932.64,23641.87,12424.5,2264.45,38330.82,171263.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51589,3105.79,0.0,66.99,3172.78,0.0,773.55,245.88,1019.43,4192.21 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,37118,75259.51,216.09,1440.65,76916.25,15513.73,12424.5,6099.15,34037.38,110953.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H006,"Invstgtor,Fire Dept",18526,138272.2,50084.17,8296.29,196652.66,28803.06,14766.04,3298.91,46868.01,243520.67 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17570,6380.0,0.0,0.0,6380.0,0.0,1905.49,496.68,2402.17,8782.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,629,200107.1,0.0,9609.68,209716.78,40264.74,12424.5,3530.34,56219.58,265936.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,50980,79395.07,0.0,2064.0,81459.07,16783.55,12424.51,6497.24,35705.3,117164.37 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,14446,47414.27,0.0,2287.15,49701.42,10635.02,7568.2,3973.81,22177.03,71878.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",44872,775.0,0.0,0.0,775.0,0.0,92.59,60.1,152.69,927.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33961,13182.1,0.0,10961.42,24143.52,3136.31,2914.98,1945.08,7996.37,32139.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",45837,76424.66,270.6,1625.95,78321.21,15931.31,10056.07,6524.9,32512.28,110833.49 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,16299,17085.4,1714.92,295.0,19095.32,3821.97,4253.0,1529.61,9604.58,28699.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,49745,80828.0,0.0,0.0,80828.0,16174.42,8589.63,5940.11,30704.16,111532.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34060,109761.36,32579.87,18259.39,160600.62,25414.24,15196.12,2636.84,43247.2,203847.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,43112,0.0,0.0,8317.56,8317.56,0.0,34.25,636.29,670.54,8988.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,3049,16073.25,0.0,1.96,16075.21,0.0,5244.59,1290.88,6535.47,22610.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48179,50596.1,0.0,4463.96,55060.06,616.36,0.0,5091.79,5708.15,60768.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,33336,85221.0,16215.41,3726.57,105162.98,17563.59,12424.51,8393.05,38381.15,143544.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,29726,97512.84,8425.92,6975.66,112914.42,21552.89,12370.74,9309.23,43232.86,156147.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45220,6357.16,0.0,1056.54,7413.7,1687.86,2756.69,603.05,5047.6,12461.3 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",23399,14947.35,81.86,555.36,15584.57,0.0,3243.51,1208.12,4451.63,20036.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,41948,85437.91,5734.62,10521.21,101693.74,17529.59,9079.44,1729.8,28338.83,130032.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7488,Power Generation Supervisor,16425,72741.85,15675.87,4958.26,93375.98,14305.35,7514.42,5426.08,27245.85,120621.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,29033,49083.1,389.84,0.0,49472.94,9998.81,10990.9,3858.35,24848.06,74321.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20972,149063.4,0.0,6517.77,155581.17,28455.39,12421.52,5782.9,46659.81,202240.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,20534,29896.0,2814.96,3190.14,35901.1,5819.82,4826.44,2905.14,13551.4,49452.5 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1249,Personnel Trainee,51863,14232.0,0.0,0.0,14232.0,3192.24,2867.19,1125.28,7184.71,21416.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47652,48858.69,9054.89,6038.83,63952.41,12699.59,12128.52,5132.27,29960.38,93912.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51767,8770.08,0.0,0.0,8770.08,0.0,3778.13,718.3,4496.43,13266.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",4363,130329.25,37820.23,19711.59,187861.07,29356.9,15052.76,3149.9,47559.56,235420.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,34885,54118.91,4304.02,5164.26,63587.19,12421.8,8288.81,5118.56,25829.17,89416.36 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,27725,9006.35,0.0,0.0,9006.35,0.0,2237.01,698.06,2935.07,11941.42 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,43077,81188.9,0.0,0.0,81188.9,18525.98,12424.5,1352.05,32302.53,113491.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6776,1302.0,0.0,32.24,1334.24,0.0,501.76,103.32,605.08,1939.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,52250,126154.14,0.0,4299.63,130453.77,26564.09,10871.79,9951.41,47387.29,177841.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,19116,119463.8,9667.66,4548.2,133679.66,23780.26,12424.5,2222.1,38426.86,172106.52 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,46515,82445.41,3543.1,10186.61,96175.12,17805.74,12048.18,6952.27,36806.19,132981.31 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,35221,22923.26,843.51,0.0,23766.77,0.0,5219.19,1842.52,7061.71,30828.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,35400,64455.8,7969.12,16392.26,88817.18,15673.82,12424.5,7268.52,35366.84,124184.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,49454,70050.01,0.0,0.0,70050.01,14414.75,12424.5,5405.97,32245.22,102295.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44744,95182.35,2908.4,2384.41,100475.16,19411.73,9545.36,1668.64,30625.73,131100.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,11412,42312.49,0.0,2258.66,44571.15,10557.61,11295.54,3360.91,25214.06,69785.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14904,3474.24,0.0,85.3,3559.54,0.0,861.65,275.98,1137.63,4697.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5503,122931.16,1142.03,26659.78,150732.97,27964.97,10885.6,7438.37,46288.94,197021.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,467,110718.45,5052.12,21073.44,136844.01,0.0,9437.48,9598.63,19036.11,155880.12 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,44712,67339.75,0.0,0.0,67339.75,14468.2,7167.99,10819.74,32455.93,99795.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,46520,15130.49,0.0,0.0,15130.49,3393.75,2389.31,1201.2,6984.26,22114.75 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,44746,74206.72,0.0,617.24,74823.96,15429.92,12289.86,5955.36,33675.14,108499.1 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,24301,11626.42,35.96,0.0,11662.38,0.0,2891.08,904.08,3795.16,15457.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,369,4190.32,0.0,390.06,4580.38,0.01,307.62,1094.76,1402.39,5982.77 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,13564,162329.98,0.0,0.0,162329.98,32669.14,12424.5,28019.72,73113.36,235443.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,23902,1994.0,0.0,80.0,2074.0,456.08,477.86,160.81,1094.75,3168.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,13554,61735.02,4996.65,1654.0,68385.67,13065.0,12424.5,5593.73,31083.23,99468.9 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1250,Recruiter,28769,71915.55,0.0,0.0,71915.55,4186.65,9222.31,5774.06,19183.02,91098.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46690,118508.39,6085.51,9167.85,133761.75,24580.87,11153.38,8059.01,43793.26,177555.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35544,25580.41,0.0,1427.8,27008.21,7319.65,1918.69,1035.94,10274.28,37282.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1756,26376.77,2642.04,6007.43,35026.24,2157.21,2028.66,3437.78,7623.65,42649.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",50839,93738.14,8441.48,4187.8,106367.42,19712.83,12424.5,8482.69,40620.02,146987.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,38935,69902.01,2204.4,1040.0,73146.41,14620.5,12424.5,5514.71,32559.71,105706.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,9212,54841.2,0.0,0.0,54841.2,10830.91,8410.43,4065.17,23306.51,78147.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,38381,49567.7,0.0,0.0,49567.7,10423.36,8075.92,3955.02,22454.3,72022.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,6124,0.0,0.0,0.0,0.0,0.0,68.5,132.54,201.04,201.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20681,51329.04,0.0,6532.54,57861.58,12485.53,11450.85,4405.41,28341.79,86203.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,21917,56531.0,2876.83,2289.75,61697.58,11667.81,12424.5,4998.78,29091.09,90788.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17332,5444.59,0.0,390.06,5834.65,2546.62,0.0,1241.76,3788.38,9623.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,30177,89158.51,0.0,10.0,89168.51,18419.07,12009.36,7016.13,37444.56,126613.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,42188,72499.11,0.0,609.89,73109.0,15101.8,12143.69,6023.06,33268.55,106377.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,8218,51732.01,9311.48,1034.64,62078.13,11577.0,5734.39,4968.97,22280.36,84358.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,44484,69374.82,443.31,0.0,69818.13,14285.5,12424.51,5469.79,32179.8,101997.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,5218,5400.0,259.88,294.4,5954.28,1059.73,955.73,470.21,2485.67,8439.95 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,40431,107562.03,0.0,3000.0,110562.03,21660.43,12424.51,31933.18,66018.12,176580.15 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,7940,14412.8,0.0,106.97,14519.77,0.0,3058.34,1124.12,4182.46,18702.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27718,7190.56,0.0,0.0,7190.56,0.0,3118.07,579.38,3697.45,10888.01 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,51653,30758.61,0.0,0.0,30758.61,5724.16,3727.35,2448.2,11899.71,42658.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10306,11281.73,0.0,0.0,11281.73,0.0,4892.15,903.31,5795.46,17077.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,4950,129271.02,0.0,0.0,129271.02,26015.92,12424.51,9841.01,48281.44,177552.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38104,97755.87,3517.06,12841.08,114114.01,26873.16,12424.5,2051.78,41349.44,155463.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,22779,138635.94,46919.04,6314.8,191869.78,27392.94,12424.5,3225.05,43042.49,234912.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,15840,8644.0,324.15,0.0,8968.15,1608.64,1911.43,713.64,4233.71,13201.86 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3549,Arts Program Assistant,44669,28890.55,0.0,981.81,29872.36,6093.63,5459.61,2528.47,14081.71,43954.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",3482,130329.3,51074.72,19280.01,200684.03,29424.36,15052.76,3414.24,47891.36,248575.39 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39256,97765.48,1549.07,12110.13,111424.68,25911.72,12424.5,1887.37,40223.59,151648.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,2722,2166.2,0.0,78.71,2244.91,0.0,341.97,174.24,516.21,2761.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32952,40011.45,5875.41,605.2,46492.06,9269.57,7903.77,3518.81,20692.15,67184.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40091,143587.1,0.0,5778.34,149365.44,28989.63,12424.5,6442.32,47856.45,197221.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33517,0.0,0.0,897.07,897.07,0.0,34.25,57.15,91.4,988.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,26250,36644.4,0.0,20978.91,57623.31,8366.23,4677.1,4606.01,17649.34,75272.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38026,3299.14,0.0,228.95,3528.09,0.0,273.28,270.88,544.16,4072.25 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25311,93889.83,4073.17,8459.96,106422.96,24857.76,11946.64,1803.13,38607.53,145030.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,44401,106953.0,10756.0,2982.93,120691.93,22141.54,12424.52,9681.87,44247.93,164939.86 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,37095,29678.83,0.0,0.0,29678.83,6155.81,5933.59,2439.18,14528.58,44207.41 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,50634,363.38,340.66,0.0,704.04,0.0,107.52,54.64,162.16,866.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21506,8488.95,0.0,0.0,8488.95,0.0,3619.83,682.55,4302.38,12791.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17696,138624.71,31529.24,14546.73,184700.68,27434.17,12424.5,3051.72,42910.39,227611.07 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,12131,13366.46,198.58,487.26,14052.3,3152.23,4221.64,1128.0,8501.87,22554.17 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,25027,30373.99,0.0,812.95,31186.94,875.08,5417.79,2466.71,8759.58,39946.52 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28717,181251.28,0.0,1562.5,182813.78,36736.07,12218.43,10824.27,59778.77,242592.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,40440,85004.0,75250.52,1782.54,162037.06,17519.6,12424.5,10442.69,40386.79,202423.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,22.0,"Prof & Tech Engineers - Personnel, Local 21",1500,Administrative Secretarial,1555,"Sctry, Bldg Inspection Comm",3469,6553.22,0.0,0.0,6553.22,0.0,851.2,508.22,1359.42,7912.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,32771,66681.02,0.0,0.0,66681.02,13738.15,12376.72,5404.63,31519.5,98200.52 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,50589,101531.03,0.0,0.0,101531.03,20926.03,12424.49,8090.87,41441.39,142972.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,25817,70080.42,405.15,2506.23,72991.8,14575.55,12396.13,5772.03,32743.71,105735.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",6880,145681.28,0.0,0.0,145681.28,29318.69,12424.5,25122.52,66865.71,212546.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,27963,47593.01,0.0,0.0,47593.01,9794.02,6212.26,3836.31,19842.59,67435.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,19555,49823.61,9360.06,2354.63,61538.3,12133.26,12424.5,4829.54,29387.3,90925.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1706,Telephone Operator,9957,48172.51,4474.2,2678.41,55325.12,11703.19,11137.61,4582.11,27422.91,82748.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25533,30370.2,4.84,406.74,30781.78,6663.22,4683.08,2364.4,13710.7,44492.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,25256,118130.23,0.0,0.0,118130.23,23750.76,12424.53,9407.93,45583.22,163713.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,12357,71612.03,0.0,0.0,71612.03,14759.41,12424.5,5646.97,32830.88,104442.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46254,86051.79,11890.06,5827.46,103769.31,0.0,6706.66,7674.83,14381.49,118150.8 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,18225,72865.01,0.0,0.0,72865.01,14965.12,11946.64,5750.98,32662.74,105527.75 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,47353,67343.28,0.0,0.0,67343.28,13867.61,12418.53,5159.03,31445.17,98788.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39585,67359.56,1028.49,2975.3,71363.35,19232.7,13271.46,5518.11,38022.27,109385.62 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,7793,148464.48,0.0,5565.0,154029.48,30141.53,8720.75,10061.02,48923.3,202952.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24987,5106.19,0.0,225.8,5331.99,958.24,1372.37,412.98,2743.59,8075.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,4224,70602.83,28782.02,748.8,100133.65,14891.79,10724.32,7984.36,33600.47,133734.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,13979,80953.77,8822.86,4635.35,94411.98,16707.42,12424.5,1751.24,30883.16,125295.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31418,65076.17,9692.98,1966.22,76735.37,18373.16,12826.64,5729.56,36929.36,113664.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,19152,11214.01,0.0,0.0,11214.01,2515.3,1433.6,987.79,4936.69,16150.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27240,1275.38,0.0,30.07,1305.45,0.0,425.6,101.07,526.67,1832.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30304,41149.75,8559.03,2583.65,52292.43,12649.34,8070.61,3968.4,24688.35,76980.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40782,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",11175,15072.16,0.0,0.0,15072.16,0.0,3189.75,1169.84,4359.59,19431.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15180,119455.96,632.97,8641.86,128730.79,23662.86,12424.5,2145.81,38233.17,166963.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29230,62650.1,306.11,16601.08,79557.29,13806.31,6546.76,1281.95,21635.02,101192.31 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1767,Media Programming Spec,16808,9696.0,0.0,108.78,9804.78,1824.68,1911.46,740.46,4476.6,14281.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38623,119461.66,11336.93,827.27,131625.86,23641.92,12424.5,2230.69,38297.11,169922.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40351,9105.78,609.55,517.23,10232.56,2636.22,2874.36,759.92,6270.5,16503.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,28202,114789.93,42479.47,4239.59,161508.99,23244.96,12424.5,2697.47,38366.93,199875.92 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,31242,175284.01,0.0,0.0,175284.01,35165.12,12012.34,17971.53,65148.99,240433.0 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,7467,79987.21,0.0,0.0,79987.21,16465.73,12281.15,6203.73,34950.61,114937.82 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,40421,57057.01,0.0,1729.89,58786.9,11746.85,9178.06,4903.86,25828.77,84615.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10256,38752.6,5852.0,1642.13,46246.73,11562.64,7706.66,3593.57,22862.87,69109.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,8417,32592.15,0.0,520.0,33112.15,6162.19,4291.83,2580.44,13034.46,46146.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,24874,49048.6,0.0,0.0,49048.6,10784.64,11090.29,3841.17,25716.1,74764.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16776,36216.0,0.0,0.0,36216.0,8688.15,12018.31,2953.78,23660.24,59876.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,17678,156746.06,0.0,0.0,156746.06,31556.64,12424.49,10436.09,54417.22,211163.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,46206,97934.01,0.0,624.0,98558.01,20308.11,12424.5,8128.1,40860.71,139418.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41713,125290.16,28372.7,7836.92,161499.78,24783.02,12424.5,2741.24,39948.76,201448.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19793,68845.27,20765.17,2966.96,92577.4,19638.86,13554.71,7024.68,40218.25,132795.65 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,38475,85100.4,3289.89,3000.0,91390.29,17551.18,11974.83,7453.31,36979.32,128369.61 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21971,110561.8,1707.41,18417.6,130686.81,24437.04,14837.31,2217.87,41492.22,172179.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,37545,51405.0,0.0,2213.31,53618.31,12570.7,12424.5,4392.62,29387.82,83006.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,44899,136205.2,2284.64,21489.97,159979.81,38341.86,12400.6,2671.39,53413.85,213393.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26752,113233.61,1761.1,22344.02,137338.73,26182.55,15196.11,2284.47,43663.13,181001.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,2377,861.75,0.0,0.0,861.75,0.0,119.47,66.89,186.36,1048.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,27463,81157.0,7123.47,12760.91,101041.38,19344.57,12424.5,8262.9,40031.97,141073.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,4761,88256.68,1986.5,7.5,90250.68,18220.68,12424.48,7782.58,38427.74,128678.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,45878,38781.84,0.0,1514.1,40295.94,9438.26,9080.64,3602.22,22121.12,62417.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40911,66917.4,0.0,0.0,66917.4,0.0,5829.97,5193.33,11023.3,77940.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,26611,7181.09,0.0,1395.81,8576.9,1801.38,0.0,698.48,2499.86,11076.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44495,62036.2,0.0,270.7,62306.9,12538.45,6348.44,6784.65,25671.54,87978.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,27183,27965.0,1038.37,5230.85,34234.22,7133.28,6690.11,2713.67,16537.06,50771.28 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,3370,4730.07,0.0,0.0,4730.07,0.0,1741.23,367.13,2108.36,6838.43 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,24099,29733.92,0.0,0.0,29733.92,706.99,3800.52,2316.03,6823.54,36557.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,41177,37169.23,0.0,0.0,37169.23,0.0,4408.31,2881.35,7289.66,44458.89 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,47584,14201.91,0.0,0.0,14201.91,0.0,4448.63,1101.11,5549.74,19751.65 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,25798,7062.0,0.0,0.0,7062.0,1584.0,1433.6,588.73,3606.33,10668.33 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,25312,75656.08,0.0,0.0,75656.08,15587.98,12379.88,5983.66,33951.52,109607.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,37508,74165.01,0.0,1144.0,75309.01,15414.44,12424.5,6196.51,34035.45,109344.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11425,112170.36,17941.8,16931.38,147043.54,24660.71,15052.76,2459.18,42172.65,189216.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,48596,82271.67,4827.62,3834.19,90933.48,16989.75,12357.25,7466.08,36813.08,127746.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19830,48295.75,3687.72,6738.23,58721.7,12698.74,12430.47,4690.79,29820.0,88541.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,46163,84580.64,0.0,0.0,84580.64,4866.49,9658.86,13101.34,27626.69,112207.33 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,7654,9463.59,0.0,4720.44,14184.03,0.0,12424.5,0.0,12424.5,26608.53 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1867,Auditor I,15765,39480.0,0.0,917.7,40397.7,8812.58,6737.9,3028.49,18578.97,58976.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,43955,84644.0,39098.72,5769.15,129511.87,17556.45,12424.5,9840.16,39821.11,169332.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,30280,59663.93,0.0,0.0,59663.93,13304.02,12424.51,4824.55,30553.08,90217.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14928,62454.09,4148.78,668.39,67271.26,15378.58,13209.75,5131.63,33719.96,100991.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3546,Curator 4,46509,104354.0,0.0,0.0,104354.0,21507.81,12424.5,8389.05,42321.36,146675.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36667,99580.44,11286.15,11710.15,122576.74,22352.36,14225.76,2100.04,38678.16,161254.9 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,8961,241505.0,0.0,0.0,241505.0,48429.04,11946.64,18731.44,79107.12,320612.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",15168,97989.0,6317.38,1329.58,105635.96,20332.04,12424.5,8440.94,41197.48,146833.44 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",7904,112273.99,0.0,0.0,112273.99,22332.51,12424.5,15200.84,49957.85,162231.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2821,113223.0,34577.87,17246.88,165047.75,24968.62,15196.12,2767.43,42932.17,207979.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,5629,3234.0,0.0,56.17,3290.17,737.99,477.86,254.72,1470.57,4760.74 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,15296,21856.0,0.0,160.0,22016.0,4938.2,3822.92,1787.84,10548.96,32564.96 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,5843,91331.0,0.0,0.0,91331.0,18823.68,12424.5,7296.2,38544.38,129875.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6151,1837.5,0.0,25.48,1862.98,0.0,896.0,144.46,1040.46,2903.44 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,6110,61700.6,0.0,0.0,61700.6,12702.95,12424.5,4881.39,30008.84,91709.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",22671,11920.19,0.0,0.0,11920.19,0.0,2826.87,888.98,3715.85,15636.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35501,65592.01,0.0,200.0,65792.01,13518.65,12424.5,5395.11,31338.26,97130.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1456,8384.06,0.0,0.0,8384.06,0.0,3575.03,673.62,4248.65,12632.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,28244,1921.5,0.0,0.0,1921.5,0.0,573.44,149.13,722.57,2644.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15799,6472.63,0.0,206.88,6679.51,0.0,2477.43,517.97,2995.4,9674.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,46355,78807.95,3980.15,553.0,83341.1,16346.68,12281.18,6659.6,35287.46,118628.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25730,80953.77,1722.47,5838.48,88514.72,16570.71,12424.51,3346.89,32342.11,120856.83 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",10774,69419.01,24943.35,8060.17,102422.53,17671.63,12424.5,1966.62,32062.75,134485.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,5287,118104.03,0.0,0.0,118104.03,23768.42,12424.5,9717.55,45910.47,164014.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10589,95147.14,17410.43,4014.88,116572.45,24123.22,12089.7,1976.48,38189.4,154761.85 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,8946,97602.86,33579.84,10024.39,141207.09,25459.97,12403.6,2349.55,40213.12,181420.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31711,22963.21,0.0,3833.16,26796.37,220.49,0.0,2821.78,3042.27,29838.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,32443,109807.02,0.0,0.0,109807.02,22098.7,12424.5,8980.29,43503.49,153310.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,45445,26437.46,0.0,89.02,26526.48,5929.92,5092.44,2058.04,13080.4,39606.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,33288,21646.0,0.0,0.0,21646.0,5584.67,6546.74,1733.62,13865.03,35511.03 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,47011,67710.1,3965.29,7666.2,79341.59,15070.38,12388.66,6536.55,33995.59,113337.18 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,818,60032.3,0.0,3503.42,63535.72,12222.12,10023.53,5269.03,27514.68,91050.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,49884,128329.01,0.0,0.0,128329.01,25802.26,12424.5,18287.09,56513.85,184842.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,735,27531.47,0.0,334.5,27865.97,5167.16,6011.79,2271.41,13450.36,41316.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,46196,85368.02,0.0,0.0,85368.02,17594.59,12424.5,6958.18,36977.27,122345.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36120,147856.72,0.0,250.0,148106.72,29777.93,12328.92,10215.64,52322.49,200429.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,47367,83477.03,0.0,0.0,83477.03,17170.42,12424.5,6665.52,36260.44,119737.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13438,77071.04,0.0,2104.0,79175.04,16317.03,12424.5,6507.6,35249.13,114424.17 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0891,Mayoral Staff XI,28607,2716.8,0.0,5441.67,8158.47,609.38,382.3,626.63,1618.31,9776.78 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,38412,42048.0,0.0,0.0,42048.0,9225.36,4300.79,10592.95,24119.1,66167.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,5355,65161.21,0.0,190.0,65351.21,14614.5,12424.5,5274.4,32313.4,97664.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,12447,52713.4,15311.38,3479.71,71504.49,13193.85,12424.5,5470.03,31088.38,102592.87 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,21820,75028.01,0.0,951.51,75979.52,15665.49,12424.5,6083.52,34173.51,110153.03 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,6419,74412.06,0.0,4664.0,79076.06,15687.94,12424.5,6144.71,34257.15,113333.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1808,102809.84,26491.57,8302.0,137603.41,22203.18,15196.12,2236.21,39635.51,177238.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,2076,98523.1,18895.0,3373.65,120791.75,20886.76,12424.5,9778.21,43089.47,163881.22 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,22098,57095.45,42.75,601.4,57739.6,11934.82,11974.18,4748.9,28657.9,86397.5 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,51119,112799.09,3652.04,0.0,116451.13,22966.51,12424.51,9782.24,45173.26,161624.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,52410,40.88,0.0,254.06,294.94,0.0,14.93,22.6,37.53,332.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,475,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8613.79,43010.1,149615.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,39000,55363.05,0.0,0.0,55363.05,10159.43,6212.25,4444.0,20815.68,76178.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,26771,13087.34,0.0,0.0,13087.34,3376.54,3300.25,1043.37,7720.16,20807.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,17848,965.25,0.0,0.0,965.25,249.03,215.04,88.48,552.55,1517.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7398,Apprentice Cement Mason I,29790,10614.4,0.0,0.0,10614.4,0.0,2592.43,965.59,3558.02,14172.42 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,1302,24005.08,0.0,177.08,24182.16,5779.35,6719.99,1909.62,14408.96,38591.12 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,25799,16980.0,0.0,1266.31,18246.31,3835.55,2389.33,1533.45,7758.33,26004.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39921,61735.02,0.0,2024.0,63759.02,13140.71,12424.51,5279.97,30845.19,94604.21 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,4555,15319.42,146.76,300.6,15766.78,0.0,3738.81,1269.66,5008.47,20775.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,25633,127129.01,0.0,0.0,127129.01,25584.71,12424.5,17209.36,55218.57,182347.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",585,91902.34,11686.77,174.0,103763.11,18936.46,12424.5,8329.14,39690.1,143453.21 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,32232,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8351.9,42748.21,149353.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31997,23771.78,0.0,1005.62,24777.4,624.15,0.0,907.2,1531.35,26308.75 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,47273,106116.08,0.0,0.0,106116.08,21866.98,12424.5,8507.43,42798.91,148914.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6074,9983.2,0.0,910.83,10894.03,1807.59,4288.85,886.21,6982.65,17876.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,17410,45645.0,0.0,6562.05,52207.05,10860.26,8123.71,4305.79,23289.76,75496.81 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3910,56653.65,0.0,3774.78,60428.43,12451.64,12424.5,4703.42,29579.56,90007.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,1939,85368.01,26624.28,1380.0,113372.29,17878.98,12424.5,9181.95,39485.43,152857.72 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,28621,103636.84,0.0,0.0,103636.84,21317.95,12424.5,8358.62,42101.07,145737.91 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,6017,162416.68,0.0,0.0,162416.68,32612.96,12424.51,25523.31,70560.78,232977.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35391,91753.38,5403.7,6775.74,103932.82,18696.09,9557.31,1768.27,30021.67,133954.49 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,17012,91331.03,0.0,0.0,91331.03,18823.68,12424.5,7499.58,38747.76,130078.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,27387,77620.76,65.02,12276.63,89962.41,17547.98,12123.81,6992.15,36663.94,126626.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5049,2652.98,0.0,0.0,2652.98,0.0,1114.02,205.92,1319.94,3972.92 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,49250,69666.5,0.0,5923.18,75589.68,15284.85,6544.37,6074.69,27903.91,103493.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,43935,47118.55,0.0,520.0,47638.55,10263.48,11324.45,3803.42,25391.35,73029.9 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,13484,93502.0,15040.52,5257.63,113800.15,19617.22,12400.61,9363.42,41381.25,155181.4 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,5300,4571.79,97.69,0.0,4669.48,0.0,1048.33,361.7,1410.03,6079.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31102,102762.77,12908.26,4508.1,120179.13,21188.33,15196.11,1911.25,38295.69,158474.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,2916,28176.0,0.0,680.0,28856.0,6472.36,5734.39,2351.37,14558.12,43414.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,51104,28907.83,0.0,855.6,29763.43,7125.11,7138.12,2448.1,16711.33,46474.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,18714,62574.03,40609.95,5960.7,109144.68,13657.93,11946.64,8866.05,34470.62,143615.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46845,18019.1,0.0,49.87,18068.97,0.0,4811.51,1400.86,6212.37,24281.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,12138,54646.63,24270.74,4041.86,82959.23,12238.62,12364.77,6321.49,30924.88,113884.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,23690,39391.34,12500.44,13975.27,65867.05,9362.82,5820.58,5244.99,20428.39,86295.44 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,43713,60790.98,360.15,0.0,61151.13,12507.05,12269.19,4904.65,29680.89,90832.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,45653,25154.04,0.0,743.39,25897.43,6211.87,6212.25,2092.75,14516.87,40414.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,19016,88831.05,1082.5,3731.87,93645.42,18314.53,12424.5,7601.83,38340.86,131986.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30695,10579.21,0.0,0.0,10579.21,0.0,4587.51,848.92,5436.43,16015.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27458,62730.71,888.3,6254.89,69873.9,18840.01,12362.68,5458.27,36660.96,106534.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,51170,103576.2,24315.65,3358.12,131249.97,21497.05,12042.22,9928.58,43467.85,174717.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,25830,107416.03,21956.15,1929.0,131301.18,22546.12,12424.5,9882.06,44852.68,176153.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11315,34712.73,10894.02,8903.41,54510.16,9360.01,4587.51,908.77,14856.29,69366.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,24796,29937.76,70.56,4242.49,34250.81,7350.44,6857.55,2702.69,16910.68,51161.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32418,70245.0,25794.82,11865.74,107905.56,15966.44,12424.5,8741.28,37132.22,145037.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,49836,68274.2,0.0,0.0,68274.2,14040.86,12424.5,5394.21,31859.57,100133.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,51285,62468.81,0.0,2012.73,64481.54,13219.15,12424.5,5183.54,30827.19,95308.73 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,42865,96332.01,4986.47,686.3,102004.78,19854.28,12424.5,7986.18,40264.96,142269.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",6011,131227.98,7680.65,24848.97,163757.6,25957.78,12424.5,2791.88,41174.16,204931.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5508,Project Manager 4,18939,206529.02,0.0,0.0,206529.02,41564.09,12424.51,11318.92,65307.52,271836.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,5210,133087.03,0.0,9707.83,142794.86,26783.95,12424.5,10236.07,49444.52,192239.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,10903,7260.17,0.0,61.31,7321.48,0.0,0.0,578.87,578.87,7900.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8312,Sheriff's Captain,32188,156528.02,4205.11,13472.24,174205.37,41336.47,12424.5,2970.75,56731.72,230937.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",23508,93738.0,4277.08,1236.07,99251.15,19476.26,12424.5,8013.82,39914.58,139165.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18168,49890.82,0.0,3564.37,53455.19,12798.49,12150.62,4382.24,29331.35,82786.54 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12881,96173.5,11804.77,18856.44,126834.71,27951.41,12223.09,2104.16,42278.66,169113.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25375,81495.5,8605.16,7108.51,97209.17,21534.74,10358.57,1598.21,33491.52,130700.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",27133,500.0,0.0,0.0,500.0,0.0,119.47,38.76,158.23,658.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35742,56237.2,0.0,6776.8,63014.0,0.0,0.0,4984.36,4984.36,67998.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16025,56163.3,47.68,1286.24,57497.22,10885.46,8601.58,3973.57,23460.61,80957.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,52677,85217.09,0.0,0.0,85217.09,17359.13,10990.9,6742.63,35092.66,120309.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3546,Curator 4,51460,86854.64,0.0,0.0,86854.64,17881.22,12424.5,7204.04,37509.76,124364.4 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,7015,113852.0,0.0,0.0,113852.0,22913.02,12424.5,9344.71,44682.23,158534.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,13127,97424.05,1955.1,1722.0,101101.15,20443.31,12424.5,8337.66,41205.47,142306.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17274,118314.49,3524.15,12618.42,134457.06,23371.89,12304.02,2244.27,37920.18,172377.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,54,73736.12,0.0,463.71,74199.83,14364.69,6163.81,6101.11,26629.61,100829.44 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,38325,13988.0,14.64,0.0,14002.64,0.0,4387.4,1085.7,5473.1,19475.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24585,5946.52,0.0,250.0,6196.52,1678.1,1173.39,395.13,3246.62,9443.14 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5320,Illustrator And Art Designer,10123,10010.71,0.0,0.0,10010.71,2245.41,1433.6,813.7,4492.71,14503.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34574,67742.63,4966.59,3018.63,75727.85,19377.06,13347.92,5937.59,38662.57,114390.42 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,11905,61847.89,0.0,0.0,61847.89,12378.98,0.0,4892.23,17271.21,79119.1 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,53185,74412.0,0.0,3910.2,78322.2,15474.51,12424.5,6504.6,34403.61,112725.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15658,197.13,0.0,3.7,200.83,0.0,64.2,15.58,79.78,280.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,9356,Wharfinger 2,3258,86049.04,95.51,1549.4,87693.95,17949.43,12424.5,7216.52,37590.45,125284.4 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,16134,41137.89,10604.12,501.08,52243.09,8770.15,8128.73,4090.15,20989.03,73232.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14259,6755.82,0.0,102.08,6857.9,0.0,2220.59,532.25,2752.84,9610.74 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,13831,40884.68,3291.11,4462.6,48638.39,9064.76,5387.94,4665.42,19118.12,67756.51 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,48441,61904.8,0.0,0.0,61904.8,12731.41,12281.15,4979.37,29991.93,91896.73 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,22896,63018.36,16978.94,8262.15,88259.45,13878.45,12408.08,6971.85,33258.38,121517.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35187,2768.5,0.0,0.0,2768.5,0.0,1349.97,214.7,1564.67,4333.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25303,30014.24,4425.47,858.09,35297.8,8128.77,9358.22,2678.99,20165.98,55463.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,29953,110705.4,0.0,0.0,110705.4,21557.35,9079.45,12811.05,43447.85,154153.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,21993,79399.57,0.0,0.0,79399.57,16384.42,12424.5,6414.65,35223.57,114623.14 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,21089,33341.87,0.0,3389.85,36731.72,7613.16,5810.54,2947.08,16370.78,53102.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,20149,46963.4,7999.23,6771.33,61733.96,12306.51,12414.05,4899.55,29620.11,91354.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,32279,56531.0,0.0,3282.9,59813.9,11651.3,12424.5,4947.62,29023.42,88837.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,3291,66102.02,0.0,312.71,66414.73,13685.36,12424.5,5477.59,31587.45,98002.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,42041,78610.03,0.0,3871.69,82481.72,16353.56,12424.5,6826.8,35604.86,118086.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,25828,5685.78,0.0,81.23,5767.01,0.0,1881.6,446.4,2328.0,8095.01 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,1100,Administrative & Mgmt (Unrep),1165,"Manager, Department Of Public Health",32343,261421.24,0.0,0.0,261421.24,48320.89,12424.5,18023.19,78768.58,340189.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,5630,152157.54,0.0,0.0,152157.54,30564.56,12424.48,10391.2,53380.24,205537.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45779,23519.05,0.0,1315.9,24834.95,2552.31,0.0,4283.07,6835.38,31670.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,48010,79395.0,0.0,624.0,80019.0,16492.37,12424.51,6552.88,35469.76,115488.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,25709,56926.82,5515.5,0.0,62442.32,12732.46,12418.53,5057.83,30208.82,92651.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator,Taxi & Accesssvcs",47597,93037.0,0.0,0.0,93037.0,19175.76,12424.5,7676.79,39277.05,132314.05 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,12470,80020.33,1171.2,0.0,81191.53,16486.4,12424.5,6507.06,35417.96,116609.49 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,6580,58583.02,0.0,0.0,58583.02,10923.52,6690.11,4782.77,22396.4,80979.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,20593,62780.99,1051.02,2353.7,66185.71,13370.56,12418.53,5163.57,30952.66,97138.37 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,14483,5689.07,0.0,132.66,5821.73,0.0,1003.52,451.86,1455.38,7277.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,34761,81157.01,66.07,11858.5,93081.58,18677.7,12424.49,7588.25,38690.44,131772.02 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,40277,94309.43,11599.72,10117.8,116026.95,25418.43,11982.11,1832.05,39232.59,155259.54 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,42009,16989.0,0.0,0.0,16989.0,3735.9,3345.06,1358.15,8439.11,25428.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,19443,490.06,0.0,29.4,519.46,0.0,107.52,40.31,147.83,667.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39312,1163.75,0.0,34.3,1198.05,0.0,567.47,92.98,660.45,1858.5 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,31075,41835.77,0.0,315.93,42151.7,8690.93,6145.06,3494.89,18330.88,60482.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,44750,57003.62,68.88,0.0,57072.5,11622.13,10981.95,4521.01,27125.09,84197.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,51220,130845.84,61099.55,16981.04,208926.43,28232.42,15196.12,3507.73,46936.27,255862.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,34177,2115.0,0.0,0.0,2115.0,474.39,477.86,181.29,1133.54,3248.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12365,69296.0,39223.82,8014.61,116534.43,21203.25,13655.25,8877.2,43735.7,160270.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,42909,93738.22,0.0,0.0,93738.22,19295.76,12424.5,7582.56,39302.82,133041.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,13025,22788.71,0.0,74.03,22862.74,0.0,5092.25,1774.32,6866.57,29729.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,37559,47487.74,15804.82,2463.4,65755.96,11390.33,12364.77,5259.38,29014.48,94770.44 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24300,97763.23,7589.49,9067.4,114420.12,25974.43,12424.5,1947.93,40346.86,154766.98 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,30775,15097.5,0.0,0.0,15097.5,0.0,2150.39,1152.58,3302.97,18400.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,45346,80453.1,0.0,18261.09,98714.19,17651.43,6546.76,7819.75,32017.94,130732.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15451,97763.74,35981.47,7724.98,141470.19,25657.07,12424.51,2519.89,40601.47,182071.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47508,30204.35,0.0,287.28,30491.63,0.0,2652.39,2363.06,5015.45,35507.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15919,69042.0,24404.52,8549.0,101995.52,21245.61,13600.53,7767.89,42614.03,144609.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,8957,107978.01,657.9,6516.59,115152.5,22255.04,12424.5,9271.31,43950.85,159103.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,19249,52521.42,8365.57,1987.45,62874.44,12804.09,12424.51,5051.5,30280.1,93154.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,11702,43841.72,3804.49,6578.66,54224.87,11467.34,11604.66,4324.88,27396.88,81621.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38006,50983.8,10402.79,2490.46,63877.05,14245.5,10018.03,4836.85,29100.38,92977.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,12887,8665.73,0.0,61.31,8727.04,0.0,0.0,690.19,690.19,9417.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32502,113233.59,14377.87,14776.99,142388.45,24432.34,15196.12,2426.13,42054.59,184443.04 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,38205,93230.59,4403.0,4248.86,101882.45,19437.59,12364.77,8222.92,40025.28,141907.73 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,9554,115541.01,0.0,13195.01,128736.02,23252.6,12424.5,9870.66,45547.76,174283.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",13558,131564.79,58428.89,13153.1,203146.78,28435.79,15196.12,3467.33,47099.24,250246.02 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,2075,34090.0,0.0,0.0,34090.0,7618.48,6690.11,2853.84,17162.43,51252.43 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,5050,4613.92,0.0,0.0,4613.92,175.01,0.0,1984.61,2159.62,6773.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,32032,46240.0,0.0,7555.18,53795.18,10117.76,7645.85,4465.87,22229.48,76024.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,35842,106605.02,0.0,0.0,106605.02,21971.81,12424.5,8638.14,43034.45,149639.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50635,97758.47,9981.26,20823.07,128562.8,28112.89,12424.5,2143.06,42680.45,171243.25 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,1814,96517.55,53644.5,8125.32,158287.37,25444.33,12263.89,2697.01,40405.23,198692.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27326,89462.97,1732.65,839.25,92034.87,0.0,7465.03,6504.83,13969.86,106004.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,46841,50504.01,0.0,0.0,50504.01,9156.37,4300.79,5602.39,19059.55,69563.56 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,6846,72699.0,0.0,624.0,73323.0,15112.31,12424.5,6079.33,33616.14,106939.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,43473,56324.01,91.58,801.9,57217.49,11925.53,10990.91,4738.35,27654.79,84872.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4310,138079.33,32627.65,14961.95,185668.93,27311.78,12364.77,3119.14,42795.69,228464.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,7304,41335.0,0.0,0.0,41335.0,9914.28,12424.5,3361.2,25699.98,67034.98 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,1439,47422.1,0.0,0.0,47422.1,10004.08,9987.39,3576.49,23567.96,70990.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,3140,65916.93,10579.88,631.13,77127.94,13550.68,12057.44,6341.55,31949.67,109077.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36182,57609.2,0.0,0.0,57609.2,0.0,4775.61,4466.25,9241.86,66851.06 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,42667,43795.05,1938.84,3059.54,48793.43,11037.64,11522.53,3886.69,26446.86,75240.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47816,59015.03,7446.86,3645.42,70107.31,16906.02,11612.01,5459.57,33977.6,104084.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9741,874.84,0.0,146.98,1021.82,0.0,74.66,78.89,153.55,1175.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,11542,5477.28,0.0,218.92,5696.2,0.0,2001.06,440.95,2442.01,8138.21 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",21977,20026.3,2208.58,460.98,22695.86,0.0,4331.67,1759.04,6090.71,28786.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,7039,23235.01,0.0,0.0,23235.01,4837.68,6212.24,1755.93,12805.85,36040.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,15585,138101.03,0.0,0.0,138101.03,27788.36,12424.5,17403.78,57616.64,195717.67 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,22873,67647.27,1035.19,4510.82,73193.28,14461.81,12376.71,6050.35,32888.87,106082.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,13471,55882.71,0.0,4019.34,59902.05,12206.31,12281.15,4902.83,29390.29,89292.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2469,Diagnostic Imaging Tech III,26984,128838.95,14696.31,89819.21,233354.47,26573.04,12412.55,11713.06,50698.65,284053.12 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,16988,18240.35,70.58,0.0,18310.93,0.0,4157.44,1419.82,5577.26,23888.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35649,58655.03,18472.81,559.33,77687.17,16142.3,11554.43,5764.26,33460.99,111148.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32030,76298.67,50746.87,8011.55,135057.09,16769.68,15052.76,2209.52,34031.96,169089.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,3665,88418.4,128140.91,15649.02,232208.33,19958.18,12424.5,11644.36,44027.04,276235.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44318,19903.54,0.0,0.0,19903.54,4366.86,1828.74,2245.12,8440.72,28344.26 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,23799,137101.03,0.0,0.0,137101.03,27594.61,12424.5,18394.23,58413.34,195514.37 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,34137,161746.6,0.0,30621.69,192368.29,32817.0,12424.5,9868.21,55109.71,247478.0 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",4171,9790.36,0.0,930.1,10720.46,0.0,0.0,847.49,847.49,11567.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26300,73520.07,1259.07,3703.59,78482.73,1155.89,5686.72,5059.57,11902.18,90384.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42479,25700.69,0.0,694.86,26395.55,5.54,0.0,3132.94,3138.48,29534.03 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,12526,111918.03,0.0,100.0,112018.03,22523.69,12424.5,8396.84,43345.03,155363.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,132,101531.0,2893.5,0.0,104424.5,20926.02,12424.5,8566.54,41917.06,146341.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,43889,85204.48,544.95,0.0,85749.43,17757.82,11170.17,7065.24,35993.23,121742.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36984,27232.35,2521.05,976.78,30730.18,7063.65,8473.32,2206.86,17743.83,48474.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48446,7362.74,0.0,0.0,7362.74,0.0,3192.74,570.02,3762.76,11125.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,23441,128461.39,0.0,0.0,128461.39,25826.3,12424.5,18322.52,56573.32,185034.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,38108,100554.02,0.0,0.0,100554.02,20724.83,12424.49,8261.64,41410.96,141964.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,37214,26241.49,5880.87,534.0,32656.36,0.0,4043.95,2534.18,6578.13,39234.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7896,48977.37,0.0,820.0,49797.37,10138.42,10967.0,3995.69,25101.11,74898.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,12451,62811.06,3987.73,2204.07,69002.86,12946.6,12424.5,5419.49,30790.59,99793.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,31914,142507.36,22721.5,13258.69,178487.55,28696.45,12424.5,2936.51,44057.46,222545.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,49871,112776.0,0.0,4236.01,117012.01,23503.07,12424.5,9415.87,45343.44,162355.45 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,12037,120111.04,0.0,0.0,120111.04,24172.55,12424.5,9805.14,46402.19,166513.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,15936,51344.07,0.0,0.0,51344.07,9675.37,4990.71,13258.76,27924.84,79268.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,39394,87384.62,0.0,0.0,87384.62,18007.79,12403.6,7102.91,37514.3,124898.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36075,12980.0,0.0,9496.64,22476.64,2948.72,2628.26,1802.41,7379.39,29856.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",36816,62359.64,17693.18,5371.4,85424.22,13885.99,9424.94,7039.34,30350.27,115774.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,27275,173284.0,0.0,0.0,173284.0,34873.98,12424.49,10775.53,58074.0,231358.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21645,20308.99,2899.75,634.4,23843.14,5817.06,6410.81,1781.37,14009.24,37852.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36104,67578.77,22527.39,1097.9,91204.06,15652.2,13317.14,6729.61,35698.95,126903.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26088,48591.19,3746.04,3128.24,55465.47,14133.02,9541.48,4338.48,28012.98,83478.45 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,3054,26218.16,0.0,22342.5,48560.66,0.0,2490.87,3739.14,6230.01,54790.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31850,47827.65,4577.8,2897.28,55302.73,9554.8,8840.51,1472.04,19867.35,75170.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33550,138635.28,13618.76,8788.9,161042.94,27395.36,12424.5,2657.97,42477.83,203520.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,38320,67420.68,21230.07,1068.8,89719.55,13895.81,12334.24,7045.07,33275.12,122994.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,41923,573.1,0.0,5.21,578.31,0.0,131.41,44.78,176.19,754.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33011,118895.77,13499.71,19464.31,151859.79,23497.48,12364.77,2540.45,38402.7,190262.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,23836,14895.0,0.0,0.0,14895.0,3267.96,0.0,1237.97,4505.93,19400.93 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,1294,37182.9,0.0,0.0,37182.9,0.0,4635.3,2882.25,7517.55,44700.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21782,6997.7,0.0,0.0,6997.7,0.0,3034.45,541.76,3576.21,10573.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,3112,109967.02,0.0,0.0,109967.02,21770.42,10513.04,8129.87,40413.33,150380.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1086,103231.91,2845.68,16186.31,122263.9,22826.01,13763.9,2016.84,38606.75,160870.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,53074,83829.07,0.0,1060.0,84889.07,17481.56,12424.5,6902.6,36808.66,121697.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7349,Steamfitter Supervisor I,38141,111579.6,3635.76,4329.13,119544.49,23098.14,12227.41,9771.08,45096.63,164641.12 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,44147,21852.0,0.0,0.0,21852.0,4066.65,2867.19,3657.26,10591.1,32443.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17618,14967.0,0.0,804.6,15771.6,0.0,5734.39,1222.6,6956.99,22728.59 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,46227,403.76,325.52,0.0,729.28,0.0,119.47,56.6,176.07,905.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,15618,13027.8,0.0,530.51,13558.31,0.0,0.0,1073.05,1073.05,14631.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,41016,95283.52,0.0,3888.71,99172.23,20905.24,6546.76,8054.45,35506.45,134678.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,33451,67261.02,0.0,1516.03,68777.05,14012.69,12424.5,5698.58,32135.77,100912.82 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,13870,68067.03,0.0,624.0,68691.03,14157.66,12424.5,5573.94,32156.1,100847.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9126,Transit Traffic Checker,2494,32806.26,724.01,1284.03,34814.3,7535.89,5922.55,2910.04,16368.48,51182.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5272,Landscape Architect Assoc 2,32770,116831.77,0.0,0.0,116831.77,23508.95,12409.5,9446.81,45365.26,162197.03 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,18997,14254.02,0.0,0.0,14254.02,1777.64,2867.19,1139.54,5784.37,20038.39 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,45024,120738.5,0.0,5960.0,126698.5,24427.12,12349.48,10009.47,46786.07,173484.57 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1830,Perf Analyst III Project Mgr,31423,92498.64,0.0,0.0,92498.64,18864.45,9903.77,7486.03,36254.25,128752.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16518,27910.01,204.23,559.82,28674.06,5166.9,3066.94,487.9,8721.74,37395.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,42268,6345.0,0.0,0.0,6345.0,1423.17,1433.6,506.59,3363.36,9708.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,21938,126994.11,0.0,0.0,126994.11,25553.08,12424.5,9901.01,47878.59,174872.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,40602,84644.01,3681.3,1953.76,90279.07,17583.34,12424.5,7417.19,37425.03,127704.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,15222,139374.13,6975.63,13135.99,159485.75,28070.03,12424.51,2729.15,43223.69,202709.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",23996,131577.09,15576.9,17136.22,164290.21,29091.89,15196.12,2746.3,47034.31,211324.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,14457,40727.62,0.0,0.0,40727.62,8834.84,8123.72,3187.9,20146.46,60874.08 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,22247,1233.0,0.0,0.0,1233.0,276.56,238.93,95.38,610.87,1843.87 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,632,104474.91,0.0,0.0,104474.91,21501.44,12400.61,8489.87,42391.92,146866.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20937,907.64,0.0,139.76,1047.4,0.0,77.65,81.29,158.94,1206.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,39039,69203.69,6676.43,2209.19,78089.31,14391.05,12416.68,6139.64,32947.37,111036.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,9581,116976.02,6222.66,9530.62,132729.3,25292.39,12424.5,9986.53,47703.42,180432.72 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,51970,72683.83,0.0,3465.08,76148.91,14969.16,12338.49,6326.83,33634.48,109783.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,19929,98952.95,18369.04,8892.08,126214.07,20522.89,12424.49,2106.03,35053.41,161267.48 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46577,128044.52,0.0,1500.0,129544.52,26065.86,12424.5,9905.83,48396.19,177940.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),40682,23112.0,0.0,182.59,23294.59,4101.52,1911.46,62.39,6075.37,29369.96 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,16860,89996.95,0.0,0.0,89996.95,0.0,8320.83,6973.52,15294.35,105291.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,36943,6468.0,0.0,0.0,6468.0,1203.7,955.72,491.74,2651.16,9119.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11059,45219.28,1331.97,1047.25,47598.5,13109.66,8971.98,3685.94,25767.58,73366.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,35248,96930.01,0.0,1560.0,98490.01,19977.61,12424.5,7593.25,39995.36,138485.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,15795,75011.0,220.5,0.0,75231.5,15425.37,12185.57,6039.83,33650.77,108882.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49990,83576.92,0.0,1011.99,84588.91,17903.77,9221.61,503.72,27629.1,112218.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16737,2724.1,0.0,0.0,2724.1,0.0,1143.89,211.44,1355.33,4079.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,20979,81954.31,8049.84,3562.6,93566.75,17575.04,12424.5,7465.28,37464.82,131031.57 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16039,133239.0,0.0,1500.0,134739.0,27097.33,12424.5,10099.74,49621.57,184360.57 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,50726,87948.0,0.0,3812.57,91760.57,18272.64,12375.52,7535.84,38184.0,129944.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,4064,136466.0,175.4,17737.75,154379.15,36318.79,12424.5,2587.66,51330.95,205710.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",35791,13075.15,0.0,390.0,13465.15,0.0,3082.24,1004.01,4086.25,17551.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",1902,130248.98,86112.61,21100.05,237461.64,29591.21,15042.66,611.3,45245.17,282706.81 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27144,97764.61,3729.05,10477.89,111971.55,26313.22,12424.5,1906.08,40643.8,152615.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5067,1749.43,0.0,0.0,1749.43,0.0,758.61,135.78,894.39,2643.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6709,8849.8,0.0,0.0,8849.8,0.0,3775.14,709.78,4484.92,13334.72 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,50035,2907.0,1286.95,242.25,4436.2,0.0,860.16,344.32,1204.48,5640.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9524,56531.0,0.0,6651.39,63182.39,13362.1,12424.5,5069.17,30855.77,94038.16 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39873,45918.79,24.82,0.0,45943.61,11009.14,12353.78,3702.26,27065.18,73008.79 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,19196,583.15,0.0,0.0,583.15,0.0,0.0,46.15,46.15,629.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,39122,130845.81,85400.59,12441.43,228687.83,28239.39,15196.12,3894.59,47330.1,276017.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30456,119455.92,1889.44,8897.95,130243.31,23662.84,12424.5,2209.78,38297.12,168540.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47804,96717.58,3757.62,7429.0,107904.2,20206.4,12364.76,1768.01,34339.17,142243.37 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,29484,75636.83,8604.74,0.0,84241.57,15583.65,12376.71,6837.05,34797.41,119038.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,327,62811.0,17260.04,14277.31,94348.35,14872.2,12424.5,7451.45,34748.15,129096.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7860,77071.05,2079.84,624.0,79774.89,16013.39,12424.5,6606.74,35044.63,114819.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21087,66571.21,7841.72,1227.1,75640.03,18599.62,13120.8,5522.55,37242.97,112883.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,2958,44394.35,386.32,3284.98,48065.65,9487.04,8791.36,3929.72,22208.12,70273.77 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,5356,16819.74,0.0,0.0,16819.74,3130.14,2692.47,1380.71,7203.32,24023.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,4951,63887.14,0.0,3347.54,67234.68,13856.65,12424.5,5517.3,31798.45,99033.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,23471,31434.0,0.0,200.0,31634.0,5970.06,6212.25,2559.79,14742.1,46376.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,13559,119066.02,950.18,13936.85,133953.05,31466.81,12424.5,921.43,44812.74,178765.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,9854,59434.7,0.0,1060.0,60494.7,13487.15,12234.85,4911.14,30633.14,91127.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27263,11442.34,0.0,13.38,11455.72,0.0,2846.28,888.01,3734.29,15190.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47131,28671.68,2424.28,326.55,31422.51,6953.9,12342.13,2508.39,21804.42,53226.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6723,83203.56,0.0,5800.11,89003.67,17418.73,7368.68,7305.2,32092.61,121096.28 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,36131,36185.0,0.0,326.1,36511.1,7528.72,6493.0,2946.39,16968.11,53479.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",41263,131577.12,61731.27,17631.95,210940.34,29091.88,15196.12,3596.61,47884.61,258824.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10214,122151.85,0.0,9235.94,131387.79,26133.99,11153.38,9576.1,46863.47,178251.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,15408,86611.65,0.0,600.0,87211.65,17922.63,12424.49,7184.77,37531.89,124743.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27342,133217.22,1360.46,17814.79,152392.47,29181.92,11101.41,5294.57,45577.9,197970.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,33183,2145.0,0.0,0.0,2145.0,553.41,477.86,166.07,1197.34,3342.34 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,36043,1908.0,0.0,100.0,2008.0,0.0,477.86,155.87,633.73,2641.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48712,113233.59,10514.85,18265.12,142013.56,25036.02,15196.12,2417.82,42649.96,184663.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7100,Administrative-Labor & Trades,7108,Heavy Equip Ops Asst Sprv,53095,4117.01,0.0,0.0,4117.01,766.18,477.86,314.16,1558.2,5675.21 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,24951,85666.0,0.0,0.0,85666.0,17886.16,10990.9,6639.58,35516.64,121182.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,7553,64463.74,11266.71,12537.06,88267.51,15153.46,12424.5,7229.63,34807.59,123075.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,18134,49568.83,0.0,0.0,49568.83,11928.47,11731.6,3791.54,27451.61,77020.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,44783,8833.25,0.0,6798.95,15632.2,2313.43,2658.13,1238.48,6210.04,21842.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,926,62234.45,4171.57,7335.15,73741.17,14346.91,12103.44,5844.11,32294.46,106035.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40430,119450.09,71439.83,17813.78,208703.7,24261.04,12424.5,3433.8,40119.34,248823.04 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,14838,2829.0,0.0,0.0,2829.0,0.0,716.79,219.4,936.19,3765.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19254,54677.0,0.0,5186.65,59863.65,14267.8,12424.5,4557.13,31249.43,91113.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,24902,108038.0,9996.19,11268.05,129302.24,24158.81,12424.5,9939.71,46523.02,175825.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26814,122950.59,1321.84,27935.34,152207.77,28271.7,10558.73,6552.8,45383.23,197591.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,36949,96807.04,15296.19,12425.34,124528.57,26556.3,12302.64,2065.23,40924.17,165452.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33334,12855.62,41.33,567.64,13464.59,0.0,5513.37,1090.08,6603.45,20068.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,30285,48561.25,0.0,800.0,49361.25,10043.76,6462.17,4074.39,20580.32,69941.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26169,7124.0,0.0,227.08,7351.08,914.29,0.0,1887.95,2802.24,10153.32 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,29417,10456.0,0.0,0.0,10456.0,1945.88,1911.46,832.96,4690.3,15146.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39077,56531.0,0.0,6309.33,62840.33,12377.92,12424.5,5135.18,29937.6,92777.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8393,49784.1,554.03,2404.77,52742.9,14361.98,9900.48,4069.07,28331.53,81074.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,27571,102019.03,0.0,0.0,102019.03,21026.26,12424.5,8387.23,41837.99,143857.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12044,101252.72,0.0,1225.0,102477.72,20562.88,8693.57,7908.41,37164.86,139642.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32521,13032.14,0.0,175.55,13207.69,0.0,3411.79,1024.39,4436.18,17643.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47351,1835.7,0.0,53.54,1889.24,0.0,143.35,470.91,614.26,2503.5 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,18874,131693.02,0.0,0.0,131693.02,26611.63,11946.64,27519.39,66077.66,197770.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,23817,62812.24,0.0,0.0,62812.24,12762.23,9048.38,5192.76,27003.37,89815.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26543,56314.91,1025.6,2804.38,60144.89,11842.63,12376.71,4924.56,29143.9,89288.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47766,757.63,0.0,0.0,757.63,0.0,328.54,58.66,387.2,1144.83 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,39144,12993.12,0.0,0.0,12993.12,0.0,3115.08,1006.82,4121.9,17115.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27522,66349.72,18053.28,1900.96,86303.96,18698.06,13078.16,6526.81,38303.03,124606.99 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,8714,80570.0,0.0,0.0,80570.0,15915.11,12424.5,6503.86,34843.47,115413.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,42635,63887.01,826.15,1368.91,66082.07,13459.92,12424.5,5442.55,31326.97,97409.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,17426,117124.09,33183.42,13486.57,163794.08,23225.7,12424.5,2783.94,38434.14,202228.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,515,6519.29,0.0,482.17,7001.46,1534.46,0.0,4042.71,5577.17,12578.63 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,376C,Sr Human Resources Analyst,41335,4164.0,0.0,160.05,4324.05,933.99,0.0,343.28,1277.27,5601.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,23310,81157.01,19836.42,13775.37,114768.8,18755.56,12424.5,9139.31,40319.37,155088.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1226,Chf Payroll & Personnel Clerk,36196,50728.5,0.0,0.0,50728.5,9789.0,7101.98,4081.42,20972.4,71700.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,52878,170501.53,0.0,0.0,170501.53,34313.62,12424.5,17949.08,64687.2,235188.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26562,10819.33,0.0,6969.24,17788.57,2496.57,2392.5,1432.82,6321.89,24110.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,33561,97424.0,2967.58,3626.71,104018.29,20527.68,12424.51,8364.14,41316.33,145334.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48742,10104.0,0.0,0.0,10104.0,1091.94,4381.43,812.13,6285.5,16389.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6866,104764.15,912.67,15920.07,121596.89,18773.59,10149.86,8506.33,37429.78,159026.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,41468,39368.0,11921.44,3115.89,54405.33,7326.4,5734.39,4334.23,17395.02,71800.35 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,12854,32708.02,0.0,0.0,32708.02,0.0,0.0,2583.94,2583.94,35291.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,46688,68571.0,0.0,6734.49,75305.49,14912.29,12424.5,5968.15,33304.94,108610.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39800,63593.47,15324.36,5480.65,84398.48,18941.66,12532.92,6591.52,38066.1,122464.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,48345,113369.03,41054.46,7967.79,162391.28,24425.95,12424.47,10455.93,47306.35,209697.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32196,75614.83,36219.94,2703.44,114538.21,15564.93,15196.12,1911.85,32672.9,147211.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,52647,81157.0,28022.0,21070.87,130249.87,19757.65,12424.5,9882.25,42064.4,172314.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38535,113233.6,30885.3,17461.06,161579.96,24803.98,15196.12,2698.01,42698.11,204278.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10710,8938.89,0.0,0.0,8938.89,0.0,3813.96,718.09,4532.05,13470.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31169,56531.0,0.0,2287.8,58818.8,11780.12,12424.5,4824.0,29028.62,87847.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,48211,108038.01,23186.43,17568.04,148792.48,24649.76,12424.5,10272.04,47346.3,196138.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,42544,93766.5,19725.28,4986.72,118478.5,19849.29,12663.43,9422.53,41935.25,160413.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27994,63948.89,0.0,1919.21,65868.1,14139.06,5875.6,5385.52,25400.18,91268.28 +Calendar,2015,1,Public Protection,PDR,Public Defender,1.0,Miscellaneous Unrepresented Employees,8400,Probation & Parole,8446,Court Alternative Specialist 1,41509,70448.02,0.0,960.0,71408.02,14718.24,12424.5,5594.0,32736.74,104144.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19660,6164.31,0.0,0.0,6164.31,0.0,2673.06,492.18,3165.24,9329.55 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,34038,133087.0,0.0,0.0,133087.0,26783.95,12424.5,10080.14,49288.59,182375.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,28292,21235.54,0.0,0.0,21235.54,4259.8,4659.19,1591.79,10510.78,31746.32 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11723,92718.25,56970.54,10157.3,159846.09,25020.97,11781.11,2678.25,39480.33,199326.42 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,29328,59387.59,89.05,5616.98,65093.62,14084.84,12364.77,5274.55,31724.16,96817.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,47381,133087.0,0.0,10500.33,143587.33,26791.33,12424.5,10252.3,49468.13,193055.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,49362,158362.35,7946.91,6997.95,173307.21,31276.33,12424.5,2898.92,46599.75,219906.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,42954,65322.94,368.94,0.0,65691.88,13443.34,12424.5,5446.14,31313.98,97005.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,29293,32172.02,565.31,2265.43,35002.76,7941.83,6711.98,2738.32,17392.13,52394.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,41056,103504.62,15497.09,16033.79,135035.5,22918.2,13778.53,2226.06,38922.79,173958.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,26947,55755.01,245.03,1600.0,57600.04,9053.0,12424.49,4682.68,26160.17,83760.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21964,56238.75,519.66,1707.72,58466.13,0.0,4904.1,4537.9,9442.0,67908.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25838,97030.04,8659.81,7875.64,113565.49,0.0,0.0,6012.69,6012.69,119578.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,25587,68067.01,0.0,0.0,68067.01,14029.01,12424.5,5572.05,32025.56,100092.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,15954,59953.0,0.0,1297.85,61250.85,11104.78,5734.34,4751.14,21590.26,82841.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,52708,72522.0,0.0,0.0,72522.0,14947.06,12424.5,5851.68,33223.24,105745.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7246,Sewer Repair Supervisor,9600,106116.0,20529.9,6936.08,133581.98,21870.85,12424.5,10064.22,44359.57,177941.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37452,36875.73,3874.93,1483.85,42234.51,11190.81,7320.3,3272.11,21783.22,64017.73 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,11023,45629.0,0.0,0.0,45629.0,8491.59,5734.39,3736.69,17962.67,63591.67 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,17206,64292.45,1109.7,4499.88,69902.03,14183.34,12382.15,5776.74,32342.23,102244.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,18405,15234.59,0.0,156.77,15391.36,0.0,3796.98,1193.59,4990.57,20381.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,9174,80570.03,0.0,0.0,80570.03,16603.01,12424.5,6641.15,35668.66,116238.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,37076,71925.14,1924.14,506.9,74356.18,14782.44,11967.54,5805.03,32555.01,106911.19 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20949,56120.0,4532.92,6591.69,67244.61,13712.08,12424.5,5489.01,31625.59,98870.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9491,118890.12,59708.07,2417.38,181015.57,23518.41,12364.77,3040.51,38923.69,219939.26 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),7020,184289.03,0.0,5248.28,189537.31,38144.36,12424.5,11054.61,61623.47,251160.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41831,89569.31,24473.95,14117.72,128160.98,25183.86,11381.56,2181.03,38746.45,166907.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,33283,11736.52,0.0,110.36,11846.88,0.0,0.0,936.66,936.66,12783.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2285,1944.9,0.0,12345.7,14290.6,441.09,430.07,1098.15,1969.31,16259.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",5091,99653.67,12975.24,4345.45,116974.36,20967.93,11605.74,9564.37,42138.04,159112.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9126,Transit Traffic Checker,28490,26895.0,768.61,342.33,28005.94,5068.86,4778.65,2184.09,12031.6,40037.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17096,9579.82,671.11,49.28,10300.21,2301.28,2930.62,779.65,6011.55,16311.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,42683,107846.57,0.0,1683.25,109529.82,22572.09,12409.57,8993.95,43975.61,153505.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32559,13086.32,36.67,2355.47,15478.46,3648.07,3397.32,1299.43,8344.82,23823.28 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,2024,173651.55,0.0,0.0,173651.55,34881.0,12424.5,28211.1,75516.6,249168.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40787,47445.03,0.0,4238.65,51683.68,9225.61,4493.13,1382.63,15101.37,66785.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,3474,117141.01,60318.31,12897.93,190357.25,23164.2,12424.5,3092.81,38681.51,229038.76 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,21981,96930.02,0.0,0.0,96930.02,19977.61,12424.5,8444.23,40846.34,137776.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45253,70245.0,0.0,8369.39,78614.39,17134.6,12424.5,6216.84,35775.94,114390.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35726,113233.6,1761.1,19521.09,134515.79,25036.03,15196.12,2291.79,42523.94,177039.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,18698,87713.05,0.0,7342.26,95055.31,18078.83,12424.5,8299.03,38802.36,133857.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7214,67912.95,30441.88,7257.34,105612.17,20584.95,13382.92,8230.62,42198.49,147810.66 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,34021,64455.68,0.0,0.0,64455.68,13193.76,10262.15,5218.23,28674.14,93129.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,48523,49531.91,9822.44,0.0,59354.35,11871.31,12424.5,4789.59,29085.4,88439.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,15931,75388.24,2278.83,2709.58,80376.65,15579.07,12133.07,6379.42,34091.56,114468.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,41026,114725.45,41039.33,17193.12,172957.9,25799.63,12559.8,10640.02,48999.45,221957.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48042,113233.59,7577.35,18293.04,139103.98,24937.46,15196.12,2314.77,42448.35,181552.33 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,22156,6952.1,0.0,92.26,7044.36,0.0,9127.23,0.0,9127.23,16171.59 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,56,403.76,370.95,0.0,774.71,0.0,119.47,60.13,179.6,954.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18667,48554.96,2081.98,835.79,51472.73,13526.09,9560.53,3963.98,27050.6,78523.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",26711,150233.97,61439.51,19468.24,231141.72,33216.88,15196.12,3898.88,52311.88,283453.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,19355,84239.11,0.0,0.0,84239.11,17351.05,12424.5,6765.02,36540.57,120779.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,6278,138635.25,38794.69,20510.06,197940.0,27395.36,12424.5,3329.93,43149.79,241089.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,25945,94094.01,0.0,0.0,94094.01,19243.69,11420.99,20839.4,51504.08,145598.09 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,41796,115371.8,0.0,225.0,115596.8,23256.39,12406.58,9488.82,45151.79,160748.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46517,97764.42,3820.87,12462.12,114047.41,26119.63,12424.5,848.07,39392.2,153439.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,17998,25177.0,0.0,2453.51,27630.51,5481.83,6690.12,2220.48,14392.43,42022.94 +Calendar,2015,1,Public Protection,POL,Police,353.0,Municipal Executive Association - Police,0900,Management,0390,Chief Of Police,11870,308901.44,0.0,19354.12,328255.56,64496.13,12424.5,9614.84,86535.47,414791.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39722,166038.61,0.0,8.64,166047.25,0.0,0.0,10186.7,10186.7,176233.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",25120,24372.25,0.0,0.0,24372.25,0.0,5759.77,1889.56,7649.33,32021.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,15407,85368.01,0.0,0.0,85368.01,17594.6,12424.5,7019.07,37038.17,122406.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38671,119455.9,69031.48,10750.85,199238.23,23662.8,12424.5,2951.2,39038.5,238276.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",51889,7212.0,0.0,194.12,7406.12,1378.28,1433.6,571.64,3383.52,10789.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22319,106776.78,0.0,26122.58,132899.36,21707.56,10951.96,8940.2,41599.72,174499.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,44357,25772.28,274.97,0.0,26047.25,5780.72,4199.01,2340.23,12319.96,38367.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24836,112685.45,7759.9,4266.93,124712.28,22330.94,12424.5,2124.18,36879.62,161591.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,49938,28897.0,0.0,0.0,28897.0,6481.64,5256.53,2295.34,14033.51,42930.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,27863,63730.02,0.0,0.0,63730.02,13089.01,11946.64,5360.51,30396.16,94126.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28317,140334.0,0.0,9879.56,150213.56,30190.59,12424.5,10289.6,52904.69,203118.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8819,42841.19,0.0,0.0,42841.19,0.0,0.0,3388.69,3388.69,46229.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35506,119467.39,3616.32,12191.36,135275.07,23620.95,12424.5,2249.32,38294.77,173569.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,24241,398.28,0.0,0.0,398.28,101.32,131.41,63.88,296.61,694.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,23646,61972.23,227.61,1725.61,63925.45,13068.03,12328.92,4979.62,30376.57,94302.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,44477,7011.0,1294.89,479.25,8785.14,1932.48,1433.6,717.7,4083.78,12868.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,30380,1749.94,0.0,24.71,1774.65,0.0,304.64,137.75,442.39,2217.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31489,4238.78,979.27,250.0,5468.05,1199.58,1338.02,400.39,2937.99,8406.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,31219,17514.4,0.0,1740.51,19254.91,2137.08,4630.81,1509.12,8277.01,27531.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51086,112053.37,517.55,8125.83,120696.75,24098.39,10861.88,9247.77,44208.04,164904.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47974,151.53,0.0,3.51,155.04,0.0,65.71,12.03,77.74,232.78 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,51280,75605.0,0.0,1309.9,76914.9,15711.25,12424.5,6103.16,34238.91,111153.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,8209,83528.04,0.0,0.0,83528.04,17211.04,12424.5,6854.94,36490.48,120018.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,6431,72153.1,265.24,0.0,72418.34,14868.44,12424.5,5775.78,33068.72,105487.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41624,56531.0,3313.61,2671.13,62515.74,11860.06,12424.5,5109.78,29394.34,91910.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3320,Animal Keeper,49164,31261.85,428.45,774.0,32464.3,6696.31,5857.56,2786.3,15340.17,47804.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,49666,1890.7,0.0,8.17,1898.87,0.0,884.06,147.38,1031.44,2930.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",24568,93738.01,6950.16,4622.99,105311.16,19798.49,12424.5,8604.77,40827.76,146138.92 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40048,10072.43,0.0,0.0,10072.43,0.0,2514.77,781.25,3296.02,13368.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",47534,12769.54,0.0,0.0,12769.54,0.0,3040.4,990.93,4031.33,16800.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",37462,180314.38,0.0,26428.29,206742.67,40489.1,15196.12,536.01,56221.23,262963.9 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,22357,77071.01,0.0,2149.0,79220.01,16300.64,12424.5,6505.0,35230.14,114450.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,675,54779.05,0.0,1353.81,56132.86,12559.76,12424.5,4645.03,29629.29,85762.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,13652,9725.78,0.0,0.0,9725.78,0.0,2156.67,754.87,2911.54,12637.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",15125,6221.7,0.0,0.0,6221.7,0.0,1481.37,481.68,1963.05,8184.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,593,2115.0,389.56,108.0,2612.56,413.7,477.86,202.78,1094.34,3706.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,42028,100554.02,0.0,0.0,100554.02,20719.32,12424.52,8172.7,41316.54,141870.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,1097,96519.97,1552.07,0.0,98072.04,19887.71,12424.49,7839.9,40152.1,138224.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,23163,42328.01,0.0,1969.88,44297.89,9506.32,6212.25,736.59,16455.16,60753.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,41839,4070.15,0.0,0.0,4070.15,0.0,1560.52,315.71,1876.23,5946.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38271,54363.1,0.0,4418.36,58781.46,11866.49,11946.64,4843.38,28656.51,87437.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,34940,406.7,0.0,0.0,406.7,75.69,47.79,31.84,155.32,562.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,51,128392.05,0.0,7514.24,135906.29,27306.04,12424.5,18393.21,58123.75,194030.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,17730,108385.81,81654.1,23914.87,213954.78,31425.45,12424.51,3598.85,47448.81,261403.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,22311,71556.91,3662.45,588.3,75807.66,14957.5,11713.68,5936.53,32607.71,108415.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,24739,59245.26,6559.84,5361.23,71166.33,13256.26,11516.56,5633.53,30406.35,101572.68 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,30051,81542.01,5773.94,0.0,87315.95,16806.14,12424.5,7143.22,36373.86,123689.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34576,112159.78,6285.51,18043.73,136489.02,24585.55,15052.76,2296.69,41935.0,178424.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,3801,12311.41,0.0,1418.33,13729.74,1115.48,2666.61,917.75,4699.84,18429.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,29952,160436.73,32238.56,6139.56,198814.85,31660.18,12424.5,3335.93,47420.61,246235.46 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,22031,10335.6,0.0,0.0,10335.6,0.0,2580.47,801.65,3382.12,13717.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7998,45722.55,0.0,13444.59,59167.14,0.0,3988.93,4587.62,8576.55,67743.69 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,39257,113776.6,0.0,0.0,113776.6,22818.98,12208.74,8422.14,43449.86,157226.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33740,90323.81,0.0,1951.91,92275.72,14728.4,7527.16,4652.57,26908.13,119183.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,8041,139671.05,22286.23,29863.22,191820.5,27747.75,12424.5,3209.07,43381.32,235201.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,20933,309.12,0.0,0.0,309.12,65.9,68.5,23.93,158.33,467.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,32582,26381.21,0.0,0.0,26381.21,0.0,5800.09,2046.29,7846.38,34227.59 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),38854,116415.01,0.0,1500.0,117915.01,23720.44,12424.5,9028.74,45173.68,163088.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,47927,128529.9,0.0,0.0,128529.9,25876.83,12352.82,9883.32,48112.97,176642.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,45350,22136.75,0.0,3193.02,25329.77,5449.99,4895.13,1997.46,12342.58,37672.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,124,36620.13,0.0,0.0,36620.13,8126.09,6759.15,3009.69,17894.93,54515.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,1155,54660.61,12422.99,11048.73,78132.33,13958.99,12424.5,6014.5,32397.99,110530.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,22881,6326.44,0.0,979.71,7306.15,1177.34,686.94,572.92,2437.2,9743.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,49968,55938.5,30650.61,4631.79,91220.9,12628.74,12424.5,7253.43,32306.67,123527.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,8666,44573.1,0.0,0.0,44573.1,9902.45,6833.48,3484.21,20220.14,64793.24 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,41942,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8551.11,42947.42,149552.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,47149,82267.78,3083.22,3208.8,88559.8,16925.1,12424.49,6831.12,36180.71,124740.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",1400,"Clerical, Secretarial & Steno",1466,Meter Reader,12687,59797.83,0.0,0.0,59797.83,12427.91,11461.84,4865.36,28755.11,88552.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,18713,6345.0,0.0,0.0,6345.0,1423.17,1433.6,526.52,3383.29,9728.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19823,56531.0,0.0,6145.54,62676.54,12401.87,12424.5,4922.3,29748.67,92425.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,38414,57196.64,15321.56,1662.63,74180.83,11742.46,11373.2,5801.39,28917.05,103097.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,44826,33827.05,81.04,1631.1,35539.19,6993.61,7436.78,2939.11,17369.5,52908.69 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,18553,92575.66,0.0,0.0,92575.66,19063.45,12424.5,7163.81,38651.76,131227.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,43844,52498.78,0.0,0.0,52498.78,11373.02,8111.77,4229.23,23714.02,76212.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39844,124662.94,0.0,10341.38,135004.32,-0.06,0.0,2793.18,2793.12,137797.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,9303,97525.04,14143.94,0.0,111668.98,20180.52,11946.62,8999.72,41126.86,152795.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,46240,81059.92,0.0,0.0,81059.92,16719.82,11710.69,6479.23,34909.74,115969.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,1708,2661.3,0.0,0.0,2661.3,596.93,477.86,210.24,1285.03,3946.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,39202,61540.86,3124.67,8507.31,73172.84,13529.1,11615.35,5969.09,31113.54,104286.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,39519,24248.01,0.0,0.0,24248.01,5332.12,5734.38,1876.91,12943.41,37191.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,33622,143188.02,0.0,0.0,143188.02,28816.77,12424.5,10163.75,51405.02,194593.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,25922,10454.04,0.0,0.0,10454.04,0.0,0.0,826.87,826.87,11280.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39848,36373.62,13.52,886.26,37273.4,8464.34,7168.34,2814.97,18447.65,55721.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,34956,10990.22,649.46,155.24,11794.92,2074.18,1329.04,916.01,4319.23,16114.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,34783,117140.98,6909.48,8095.83,132146.29,23164.17,12424.5,2242.37,37831.04,169977.33 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,40987,47179.02,0.0,0.0,47179.02,10351.11,5256.52,3828.7,19436.33,66615.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,11871,47117.53,3055.07,1057.46,51230.06,9428.36,8721.05,1392.03,19541.44,70771.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,32688,3318.06,0.0,0.0,3318.06,0.0,972.16,257.54,1229.7,4547.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,36898,92353.53,0.0,9484.67,101838.2,20963.8,12424.41,8106.32,41494.53,143332.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,24601,92282.02,0.0,0.0,92282.02,19019.51,12424.5,7603.77,39047.78,131329.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,3345,114876.8,0.0,0.0,114876.8,23384.66,12424.51,9262.78,45071.95,159948.75 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26981,97767.71,21502.45,11668.56,130938.72,26623.23,12424.5,2224.43,41272.16,172210.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2930,112690.85,5339.92,10847.76,128878.53,22311.2,12424.5,2121.92,36857.62,165736.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34579,115357.47,13320.72,7124.44,135802.63,23377.07,12424.5,2267.63,38069.2,173871.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,2740,85368.01,1713.08,0.0,87081.09,17594.6,12424.5,7207.06,37226.16,124307.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,36459,63217.59,412.09,783.0,64412.68,13178.62,12293.51,5298.65,30770.78,95183.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20607,69056.3,3093.51,2544.68,74694.49,16319.8,13608.65,5581.24,35509.69,110204.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,18201,73563.19,10871.19,6521.88,90956.26,13703.12,7645.85,1525.82,22874.79,113831.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,49998,116976.08,0.0,1084.9,118060.98,23735.1,12424.53,9658.49,45818.12,163879.1 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,25893,65918.51,0.0,0.0,65918.51,13189.64,9318.38,5262.76,27770.78,93689.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7776,5014.1,0.0,0.0,5014.1,0.0,2174.29,395.66,2569.95,7584.05 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,26744,84187.4,0.0,720.0,84907.4,16690.49,9031.65,6654.55,32376.69,117284.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52968,117651.56,989.37,12958.61,131599.54,24852.12,10741.76,9558.94,45152.82,176752.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,50080,21123.0,0.0,0.0,21123.0,3931.01,3249.49,1717.15,8897.65,30020.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42104,7233.57,0.0,0.0,7233.57,0.0,2705.95,560.84,3266.79,10500.36 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,43913,40668.3,3114.64,3202.08,46985.02,10333.41,12376.72,3796.94,26507.07,73492.09 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,37212,44143.42,256.02,5228.14,49627.58,11042.15,9557.31,4010.33,24609.79,74237.37 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,21278,51977.74,0.0,5178.52,57156.26,11403.9,5806.07,4666.48,21876.45,79032.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42839,59159.27,0.0,41.99,59201.26,0.0,5143.03,4594.97,9738.0,68939.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19751,77071.02,1408.56,780.0,79259.58,16035.23,12424.5,6163.45,34623.18,113882.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43139,66539.09,0.0,1678.2,68217.29,13859.99,10716.12,5400.87,29976.98,98194.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14900,123479.21,1429.48,27533.71,152442.4,27169.09,10932.38,7975.12,46076.59,198518.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,35980,113623.06,0.0,910.0,114533.06,22862.63,12424.5,9215.97,44503.1,159036.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,52166,96930.02,0.0,0.0,96930.02,19977.61,12424.5,7462.52,39864.63,136794.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,44680,0.0,0.0,244.16,244.16,0.0,0.0,18.68,18.68,262.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,22699,84599.06,0.0,624.0,85223.06,17565.04,12424.5,6972.25,36961.79,122184.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,16635,78929.96,0.0,800.0,79729.96,16440.4,12397.2,6318.56,35156.16,114886.12 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",28586,10936.22,1543.11,563.21,13042.54,0.0,2387.95,1010.64,3398.59,16441.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11999,134189.17,0.0,1325.0,135514.17,27222.38,11182.06,10051.05,48455.49,183969.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,20776,84599.08,84735.93,16974.82,186309.83,20047.18,12424.5,10842.37,43314.05,229623.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,33507,75063.63,0.0,11775.4,86839.03,16468.98,6403.39,15847.16,38719.53,125558.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,39288,119463.82,22409.65,7968.35,149841.82,23633.49,12424.5,2498.38,38556.37,188398.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,7189,878.0,0.0,0.0,878.0,193.05,238.93,68.05,500.03,1378.03 +Calendar,2015,4,Community Health,DPH,Public Health,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",28216,1850.0,0.0,0.0,1850.0,0.0,0.0,146.27,146.27,1996.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39662,13052.9,0.0,1936.1,14989.0,828.86,0.0,3228.76,4057.62,19046.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,46239,28629.62,0.0,200.0,28829.62,6326.23,5457.17,2430.64,14214.04,43043.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31255,43037.91,187.75,4504.65,47730.31,9567.48,4737.08,794.9,15099.46,62829.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,15891,69902.01,1085.97,0.0,70987.98,14407.13,12424.5,5764.37,32596.0,103583.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26918,101844.91,40296.69,11370.78,153512.38,21297.49,15052.75,2587.83,38938.07,192450.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,33397,129308.04,0.0,0.0,129308.04,26023.62,12424.5,9441.65,47889.77,177197.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,41351,4296.01,0.0,2894.94,7190.95,999.91,764.58,582.03,2346.52,9537.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30626,3505.76,0.0,0.0,3505.76,0.0,1472.12,279.82,1751.94,5257.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11982,104606.12,27362.56,16104.16,148072.84,22942.52,14039.09,2468.67,39450.28,187523.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,25076,47333.5,305.96,0.0,47639.46,11332.03,12423.01,3877.22,27632.26,75271.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,8334,51261.9,3327.58,2913.96,57503.44,12795.96,12116.29,4591.15,29503.4,87006.84 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,19652,52128.57,0.0,537.87,52666.44,10812.97,10709.56,4362.32,25884.85,78551.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,7281,107416.05,14195.16,45274.52,166885.73,22535.6,12424.51,10479.0,45439.11,212324.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,2837,88111.78,0.0,5320.7,93432.48,18303.33,12398.58,7696.6,38398.51,131830.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,10931,24090.0,0.0,2529.45,26619.45,4953.9,2867.19,2052.02,9873.11,36492.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4801,3498.85,0.0,0.0,3498.85,0.0,1517.22,278.35,1795.57,5294.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,10436,3027.0,0.0,0.0,3027.0,563.32,477.86,234.94,1276.12,4303.12 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,31227,67911.03,2255.87,9331.94,79498.84,15358.03,12424.5,6311.14,34093.67,113592.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",34549,150234.0,64272.42,19468.24,233974.66,33216.89,15196.11,3947.98,52360.98,286335.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,51914,81542.01,0.0,0.0,81542.01,16806.14,12424.5,6439.4,35670.04,117212.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19923,10276.15,0.0,324.33,10600.48,0.0,4456.1,850.57,5306.67,15907.15 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6124,Pr Environmental Hlth Insp,46129,124215.44,0.0,130.5,124345.94,24996.69,12412.56,9820.22,47229.47,171575.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,13366,118289.2,10823.97,4304.98,133418.15,23366.84,12424.5,2171.07,37962.41,171380.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,36932,28007.38,0.0,0.0,28007.38,6349.4,7144.09,1936.12,15429.61,43436.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",36250,130329.26,16125.21,17139.97,163594.44,29004.82,15052.75,2779.13,46836.7,210431.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,32243,135421.0,0.0,0.0,135421.0,27253.5,12424.5,10118.19,49796.19,185217.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",45870,24188.27,0.0,1463.88,25652.15,0.0,3925.49,1988.28,5913.77,31565.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,17216,52741.79,2268.69,5957.32,60967.8,12565.79,11695.76,4759.47,29021.02,89988.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,8402,67611.02,2216.91,4077.75,73905.68,14148.69,11110.37,6042.8,31301.86,105207.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,4968,25753.02,0.0,0.0,25753.02,5776.4,3345.06,2127.75,11249.21,37002.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,5286,23780.55,73.36,91.65,23945.56,1929.51,7234.17,1930.72,11094.4,35039.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,46552,119471.6,0.0,50.3,119521.9,24017.76,12424.51,9575.44,46017.71,165539.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,35298,92218.42,0.0,15527.73,107746.15,19885.99,7263.55,13694.04,40843.58,148589.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5618,67324.96,1854.7,4471.13,73650.79,19661.21,13264.59,5526.06,38451.86,112102.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10060,66008.39,1814.17,5409.35,73231.91,19599.01,13009.88,5376.85,37985.74,111217.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,8428,56531.0,0.0,6660.42,63191.42,12454.58,12424.5,4962.98,29842.06,93033.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,31267,49442.03,0.0,3523.52,52965.55,11089.83,6212.25,4319.72,21621.8,74587.35 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,14126,77071.0,0.0,165.0,77236.0,15892.14,12424.5,6103.26,34419.9,111655.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31825,32849.4,4.84,406.74,33260.98,7207.15,5065.37,2423.24,14695.76,47956.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,1972,26773.7,0.0,0.0,26773.7,5977.84,6403.39,2160.23,14541.46,41315.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,2643,66361.25,1963.2,1183.45,69507.9,13883.39,12424.5,5626.78,31934.67,101442.57 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,46735,111918.01,0.0,100.0,112018.01,22539.97,12424.5,8553.57,43518.04,155536.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,40324,10344.0,0.0,0.0,10344.0,1925.01,1433.6,837.43,4196.04,14540.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,33802,100761.01,2246.35,1040.0,104047.36,20982.34,12424.51,8416.71,41823.56,145870.92 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,27266,29233.8,10592.09,2952.66,42778.55,6902.9,4778.65,3297.55,14979.1,57757.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2977,3253.8,0.0,108.46,3362.26,0.0,286.78,260.31,547.09,3909.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,28880,61579.47,0.0,622.47,62201.94,12823.39,12393.98,5072.55,30289.92,92491.86 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,9003,59444.6,35599.36,7236.85,102280.81,14066.19,7932.57,8156.44,30155.2,132436.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,32285,53973.0,7691.42,9192.8,70857.22,14224.14,12424.5,5811.3,32459.94,103317.16 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23439,29143.16,0.0,353.53,29496.69,7045.19,7200.85,2427.09,16673.13,46169.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30122,67013.65,4860.4,4427.99,76302.04,19532.01,13202.59,5943.47,38678.07,114980.11 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,13838,35513.27,145.03,4328.11,39986.41,8170.59,4739.05,3343.99,16253.63,56240.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,16418,59197.6,0.0,21925.0,81122.6,12987.94,6451.18,6475.79,25914.91,107037.51 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,25464,133245.27,0.0,0.0,133245.27,26775.88,12424.5,18405.38,57605.76,190851.03 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,52717,108375.2,45950.11,19495.77,173821.08,30326.72,12424.52,2908.8,45660.04,219481.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16976,138635.26,23455.43,4166.17,166256.86,27395.36,12424.51,2787.98,42607.85,208864.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,45745,139015.46,18540.62,22397.45,179953.53,27452.28,12424.51,3067.64,42944.43,222897.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,33772,56531.0,121.56,1631.1,58283.66,11651.3,12424.5,4376.99,28452.79,86736.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,50858,6062.2,0.0,313.8,6376.0,0.0,812.37,106.58,918.95,7294.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,5991,91278.02,0.0,13068.2,104346.22,18969.28,11468.77,8483.25,38921.3,143267.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,11507,68722.01,864.35,6124.42,75710.78,14164.02,12424.5,6184.64,32773.16,108483.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,44005,97793.06,17600.71,18146.74,133540.51,22273.38,12424.5,9957.25,44655.13,178195.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,10008,65126.25,0.0,820.0,65946.25,13883.35,10208.41,5475.33,29567.09,95513.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5400,Community Development,5408,Coord Of Citizen Involvement,3138,55799.6,0.0,711.53,56511.13,712.02,7120.2,4429.49,12261.71,68772.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),34473,85040.05,38657.93,4143.14,127841.12,17819.31,12424.5,2133.08,32376.89,160218.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,10936,61735.0,1511.88,0.0,63246.88,12724.0,12424.5,5187.64,30336.14,93583.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,540,117517.02,343.13,18101.94,135962.09,25892.59,12424.5,10048.01,48365.1,184327.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,52630,41980.05,0.0,1185.0,43165.05,10151.34,9557.31,3558.15,23266.8,66431.85 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,35819,61499.0,3565.69,3926.17,68990.86,12907.58,12376.71,5694.18,30978.47,99969.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,1017,84299.61,18352.78,14869.36,117521.75,20254.18,12424.5,9533.67,42212.35,159734.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,36360,60997.96,0.0,250.0,61247.96,12595.63,12067.54,4813.87,29477.04,90725.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1093,67511.6,8459.22,4493.14,80463.96,19727.63,13303.11,6281.42,39312.16,119776.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,52248,64321.51,0.0,13402.98,77724.49,14104.27,6546.74,6202.96,26853.97,104578.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1663,Patient Accounts Supervisor,16129,80839.01,8133.3,0.0,88972.31,16539.58,11468.77,6735.37,34743.72,123716.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26662,605.53,227.08,0.0,832.61,171.36,0.0,65.77,237.13,1069.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5058,49482.62,530.23,8046.61,58059.46,12028.17,11008.83,4620.96,27657.96,85717.42 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4334,"Investigator, Tax Collector",4194,92337.04,307.69,0.0,92644.73,18757.35,12424.5,7446.64,38628.49,131273.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,21655,5469.0,0.0,0.0,5469.0,1202.64,1433.6,424.12,3060.36,8529.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,41083,95558.02,32665.18,0.0,128223.2,19695.12,12424.35,9861.01,41980.48,170203.68 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,33470,20944.96,0.0,342.12,21287.08,3961.52,3321.17,1702.64,8985.33,30272.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24626,65122.65,18828.96,533.23,84484.84,18001.42,12837.68,6562.22,37401.32,121886.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,47749,178312.83,13788.33,25246.57,217347.73,35687.74,12424.5,525.04,48637.28,265985.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,35066,54248.24,59.48,0.0,54307.72,7581.95,12181.09,4385.72,24148.76,78456.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,53219,31676.25,719.69,3473.57,35869.51,5624.24,0.0,616.96,6241.2,42110.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49473,7390.29,0.0,1101.59,8491.88,1965.29,3204.69,679.04,5849.02,14340.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,38745,72699.01,0.0,0.0,72699.01,14983.62,12424.5,5973.02,33381.14,106080.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39768,66320.4,14553.43,4299.87,85173.7,19344.63,13069.98,6653.3,39067.91,124241.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29083,57794.0,0.0,2139.3,59933.3,13895.01,12424.5,4781.32,31100.83,91034.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,15608,4110.0,2504.53,230.62,6845.15,770.74,477.86,115.03,1363.63,8208.78 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,47370,10980.0,360.28,0.0,11340.28,2043.36,1911.46,819.86,4774.68,16114.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11989,31074.91,0.0,25202.78,56277.69,7662.39,3441.41,824.19,11927.99,68205.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,34516,24959.5,0.0,0.0,24959.5,5572.15,6451.18,1935.13,13958.46,38917.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,38989,81116.13,0.0,0.0,81116.13,16718.61,12424.5,6657.09,35800.2,116916.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,27426,82637.97,0.0,0.0,82637.97,17030.74,12412.56,6855.33,36298.63,118936.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,5918,50819.45,1961.82,0.0,52781.27,10165.36,9390.07,3647.06,23202.49,75983.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,17209,98157.0,0.0,0.0,98157.0,20243.13,12424.5,8017.84,40685.47,138842.47 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,6587,74412.04,0.0,6595.0,81007.04,15790.2,12424.5,6543.07,34757.77,115764.81 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,155C,Court Reporter Coordinator,12965,133926.0,0.0,5575.5,139501.5,26969.5,12424.5,32462.64,71856.64,211358.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,17231,125815.0,0.0,0.0,125815.0,25320.87,12424.5,9923.74,47669.11,173484.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,38636,93281.03,0.0,2044.0,95325.03,19647.1,12424.5,7650.63,39722.23,135047.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19883,63371.72,5681.85,4159.52,73213.09,18505.01,12481.12,5667.91,36654.04,109867.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,22413,112776.01,0.0,5591.04,118367.05,23821.48,12424.5,9264.42,45510.4,163877.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48879,66943.35,7804.58,5219.32,79967.25,19743.11,13189.2,6074.28,39006.59,118973.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,3129,14839.0,0.0,0.0,14839.0,3328.4,2389.33,1236.89,6954.62,21793.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,14150,50498.67,111.23,407.79,51017.69,10195.67,8119.53,4226.64,22541.84,73559.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,34498,48734.41,2086.44,0.0,50820.85,9411.07,7215.77,4125.26,20752.1,71572.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,7008,82717.1,9126.1,2386.65,94229.85,17048.48,12424.5,7374.15,36847.13,131076.98 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,13694,5940.0,0.0,0.0,5940.0,0.0,354.82,460.49,815.31,6755.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31384,30601.35,461.59,363.68,31426.62,0.0,2604.36,2438.88,5043.24,36469.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,25170,99369.8,0.0,1000.0,100369.8,20646.13,12424.51,7943.08,41013.72,141383.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28681,45542.15,0.0,7708.48,53250.63,491.84,0.0,2247.25,2739.09,55989.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36792,29208.48,0.0,3889.16,33097.64,1701.18,0.0,825.69,2526.87,35624.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,48771,24910.55,0.0,15.5,24926.05,4636.8,3345.06,1867.59,9849.45,34775.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44868,55855.0,330.6,3111.7,59297.3,12844.05,12424.5,4790.63,30059.18,89356.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,11801,138635.91,32704.48,1680.86,173021.25,27392.94,12424.5,2894.62,42712.06,215733.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,10651,31305.01,1263.06,16802.96,49371.03,5663.67,2389.33,807.39,8860.39,58231.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,16659,59757.53,8817.2,5357.69,73932.42,13048.73,11882.36,5812.37,30743.46,104675.88 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,15825,63039.96,4414.4,6544.89,73999.25,13705.64,11527.85,5822.08,31055.57,105054.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,13169,92478.22,13476.1,11782.92,117737.24,20668.3,12257.19,9639.71,42565.2,160302.44 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,49178,208032.0,0.0,1562.5,209594.5,42181.17,12424.5,11385.34,65991.01,275585.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49837,32808.06,1382.46,3100.6,37291.12,7415.44,3822.92,605.84,11844.2,49135.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2647,7117.01,0.0,153.76,7270.77,1233.05,537.6,200.81,1971.46,9242.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,22538,3987.89,0.0,0.0,3987.89,0.0,1296.09,309.15,1605.24,5593.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,15296,56076.0,0.0,0.0,56076.0,11107.87,8601.58,4539.25,24248.7,80324.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,53072,47571.55,6239.61,2934.52,56745.68,9513.91,8816.61,1485.22,19815.74,76561.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,44387,85245.67,0.0,40.0,85285.67,17576.11,12406.58,6433.16,36415.85,121701.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,40.0,"Roofers and Waterproofers, Local 40",7200,Supervisory-Labor & Trade,9343,Roofer,41963,80918.0,0.0,170.0,81088.0,16714.16,12424.5,6650.4,35789.06,116877.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,26600,106953.0,20841.28,3149.14,130943.42,22106.2,12424.52,9770.88,44301.6,175245.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,17969,15958.36,0.0,169.86,16128.22,0.0,5272.95,1250.73,6523.68,22651.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,52066,147161.52,0.0,0.0,147161.52,29523.13,12424.5,17568.1,59515.73,206677.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37489,6601.05,0.0,61.98,6663.03,0.0,3312.21,516.63,3828.84,10491.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13419,55910.46,6354.65,0.0,62265.11,0.0,4904.27,4584.61,9488.88,71753.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,19612,111896.09,434.64,5287.82,117618.55,23524.76,12422.05,9618.58,45565.39,163183.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,14088,70791.01,730.59,2134.35,73655.95,15033.16,12424.51,5805.42,33263.09,106919.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,35854,84563.22,7592.82,8267.78,100423.82,17863.57,12412.55,8219.37,38495.49,138919.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,32389,13702.5,0.0,240.0,13942.5,3597.19,3583.99,1132.25,8313.43,22255.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,17114,20362.0,2809.28,1374.53,24545.81,2899.27,6684.14,1860.33,11443.74,35989.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,40607,120343.46,0.0,0.0,120343.46,24168.29,12424.48,9575.72,46168.49,166511.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26444,2066.25,0.0,59.72,2125.97,0.0,896.0,164.59,1060.59,3186.56 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),8955,184289.14,0.0,5248.28,189537.42,38144.37,12424.5,11010.14,61579.01,251116.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,14632,27509.2,0.0,0.0,27509.2,5470.34,2855.25,2787.13,11112.72,38621.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,30271,98431.82,0.0,0.0,98431.82,20272.72,12424.5,8140.05,40837.27,139269.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8162,69111.97,31991.0,9257.45,110360.42,21567.57,13620.84,8430.9,43619.31,153979.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38567,56427.97,0.0,78.73,56506.7,0.0,4904.1,4385.83,9289.93,65796.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,31487,128129.07,0.0,0.0,128129.07,25766.05,12424.5,18283.65,56474.2,184603.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,22236,78204.0,0.0,1000.0,79204.0,16323.93,12424.5,6498.84,35247.27,114451.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,377.0,"Iron Workers, Local 377",7200,Supervisory-Labor & Trade,9346,Fusion Welder,18943,99384.02,0.0,2164.62,101548.64,20928.4,12424.5,8369.03,41721.93,143270.57 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,48167,110071.2,0.0,0.0,110071.2,22392.56,12424.5,8647.4,43464.46,153535.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,24272,61735.01,0.0,624.0,62359.01,12850.34,12424.5,5169.23,30444.07,92803.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,47153,118414.86,6682.01,8829.09,133925.96,25022.9,12424.51,10010.28,47457.69,181383.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24562,54758.99,0.0,2552.09,57311.08,11788.9,12032.65,4754.34,28575.89,85886.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,4904,85368.03,14820.45,0.0,100188.48,17589.93,12424.5,8050.15,38064.58,138253.06 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,372C,Administrative Analyst II,26487,37857.6,0.0,3000.0,40857.6,7143.84,6307.83,3345.45,16797.12,57654.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15656,119455.88,2354.39,4100.04,125910.31,23662.82,12424.5,2019.61,38106.93,164017.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,8994,48890.35,2706.25,3792.03,55388.63,12026.1,12424.5,4292.73,28743.33,84131.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",8251,3813.3,0.0,0.0,3813.3,0.0,907.95,295.59,1203.54,5016.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",9972,4315.06,0.0,0.0,4315.06,0.0,1027.4,334.92,1362.32,5677.38 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,18470,58726.14,0.0,0.0,58726.14,12083.81,12424.5,4776.99,29285.3,88011.44 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27619,77437.59,30846.24,6732.83,115016.66,20345.67,9895.83,1957.18,32198.68,147215.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,27924,3369.74,0.0,0.0,3369.74,0.0,1209.6,272.16,1481.76,4851.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,52820,4896.55,0.0,28.66,4925.21,0.0,1617.27,248.47,1865.74,6790.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,686,104383.2,1354.12,2808.58,108545.9,21343.71,11420.99,8567.04,41331.74,149877.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11407,97772.96,23909.65,7524.19,129206.8,25618.29,12424.5,2194.08,40236.87,169443.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49670,48352.3,1609.85,3743.92,53706.07,13469.27,11490.76,3864.81,28824.84,82530.91 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,25896,3281.78,0.0,0.0,3281.78,610.74,561.49,259.92,1432.15,4713.93 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,22347,20254.0,849.6,477.14,21580.74,5225.48,6212.25,1747.39,13185.12,34765.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,7488,69902.01,1607.17,0.0,71509.18,14407.13,12424.5,5532.39,32364.02,103873.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,32414,15649.36,0.0,0.0,15649.36,0.0,5178.86,1239.77,6418.63,22067.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,9385,111366.61,2535.75,8367.55,122269.91,24177.52,11790.66,9768.26,45736.44,168006.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,38376,71513.81,0.0,0.0,71513.81,14724.53,12424.5,5727.09,32876.12,104389.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37440,56531.0,0.0,7875.49,64406.49,13689.26,12424.5,4957.23,31070.99,95477.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23134,54124.0,0.0,624.0,54748.0,12250.24,12424.5,4537.52,29212.26,83960.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,43241,75028.9,2106.0,295.0,77429.9,15493.07,12424.5,6290.77,34208.34,111638.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,21547,69383.79,1280.72,420.0,71084.51,7039.89,11229.77,5660.7,23930.36,95014.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,4836,75149.92,0.0,508.28,75658.2,16051.59,9079.45,5970.37,31101.41,106759.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,3710,85004.0,5602.88,1541.61,92148.49,17651.51,12424.5,7250.67,37326.68,129475.17 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),3247,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10997.86,60811.19,246600.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",14237,9708.87,0.0,0.0,9708.87,0.0,2311.68,753.17,3064.85,12773.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,41649,78309.76,0.0,0.0,78309.76,16134.62,12424.5,6495.73,35054.85,113364.61 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16087,48907.0,0.0,375.0,49282.0,9171.41,5734.39,3934.97,18840.77,68122.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,41821,80357.0,5612.97,7.9,85977.87,16562.14,12424.5,7091.69,36078.33,122056.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1502,56531.03,0.0,7709.37,64240.4,12814.63,12424.5,5045.99,30285.12,94525.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,24914,75605.0,22314.36,3788.39,101707.75,15587.79,12424.5,8278.43,36290.72,137998.47 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,37082,46924.15,0.0,7381.17,54305.32,8490.8,0.0,5643.9,14134.7,68440.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,30061,36926.34,0.0,0.0,36926.34,8752.56,8756.28,3070.49,20579.33,57505.67 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),47738,184289.02,0.0,5248.28,189537.3,38144.37,12424.5,11008.18,61577.05,251114.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,49912,74992.17,0.0,750.0,75742.17,15608.91,12418.53,6127.87,34155.31,109897.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,604,5433.6,0.0,0.0,5433.6,0.0,2293.76,437.16,2730.92,8164.52 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,37303,147149.02,0.0,0.0,147149.02,29613.71,12424.5,17512.66,59550.87,206699.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,30527,62468.81,23454.58,2671.23,88594.62,12996.29,12424.5,7181.25,32602.04,121196.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40380,77065.68,26634.32,5068.1,108768.1,16322.44,15196.12,1814.64,33333.2,142101.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1329,129975.1,1791.23,14432.25,146198.58,26992.61,10834.42,8266.35,46093.38,192291.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39344,81205.47,4854.52,23594.96,109654.95,18111.95,7190.68,5074.04,30376.67,140031.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2470,Diagnostic Imaging Tech IV,11776,9839.4,280.74,139.04,10259.18,1809.09,1099.09,796.28,3704.46,13963.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28863,11295.5,0.0,56.2,11351.7,0.0,4898.12,908.73,5806.85,17158.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,10366,9261.0,57.88,0.0,9318.88,1723.47,1433.6,716.9,3873.97,13192.85 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,42031,81116.04,0.0,0.0,81116.04,16718.55,12424.5,6370.11,35513.16,116629.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,23857,45001.71,1341.72,633.95,46977.38,7107.05,12018.31,3774.54,22899.9,69877.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22059,113233.61,30754.11,18214.03,162201.75,25036.04,15196.12,2710.24,42942.4,205144.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,234,92001.3,12937.8,2556.0,107495.1,19489.15,12424.5,8817.13,40730.78,148225.88 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1938,Stores & Equip Asst Sprv,42184,45220.01,0.0,0.0,45220.01,9807.57,8123.71,3418.37,21349.65,66569.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49266,39610.29,5591.11,1007.44,46208.84,10538.93,12382.93,3503.96,26425.82,72634.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,50488,90673.65,0.0,1538.21,92211.86,18986.83,12424.5,7446.32,38857.65,131069.51 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,16429,16690.36,850.85,0.0,17541.21,0.0,3996.14,1359.57,5355.71,22896.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41503,7708.0,0.0,1045.89,8753.89,1785.15,1911.46,667.91,4364.52,13118.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17990,64041.98,6212.05,1620.3,71874.33,17956.64,12620.43,5385.42,35962.49,107836.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,24936,0.0,0.0,0.0,0.0,0.0,45.68,143.68,189.36,189.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",46629,22198.25,571.56,0.0,22769.81,0.0,4635.3,1767.08,6402.38,29172.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,14024,20609.35,1073.47,69.63,21752.45,4547.3,4079.78,1794.63,10421.71,32174.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21897,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1780.95,10194.72,34198.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,30764,13320.0,11831.69,4012.31,29164.0,2867.18,1433.6,526.44,4827.22,33991.22 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,27163,5148.0,0.0,0.0,5148.0,958.03,1146.88,399.56,2504.47,7652.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47491,66673.47,10403.56,2544.62,79621.65,18957.9,13139.63,6208.63,38306.16,117927.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11174,1820.8,0.0,0.0,1820.8,0.0,764.58,141.32,905.9,2726.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,50860,39445.02,0.0,0.0,39445.02,7614.05,7167.97,3226.94,18008.96,57453.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,52906,114448.07,92.64,490.87,115031.58,22869.93,10990.9,8730.28,42591.11,157622.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36137,1051.63,0.0,0.0,1051.63,0.0,350.93,81.62,432.55,1484.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,33792,62538.35,0.0,0.0,62538.35,12866.16,11751.25,5159.16,29776.57,92314.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,3509,138629.96,6405.44,7753.76,152789.16,27959.85,12424.5,2548.2,42932.55,195721.71 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,44139,8620.0,0.0,0.0,8620.0,0.0,514.9,668.02,1182.92,9802.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44246,50089.8,15209.62,3122.8,68422.22,12018.67,12424.5,5223.35,29666.52,98088.74 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,3091,88296.01,0.0,3624.0,91920.01,18337.86,12424.5,7638.64,38401.0,130321.01 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,35617,23621.1,2900.96,3540.46,30062.52,5380.38,4637.98,2538.48,12556.84,42619.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,25342,658.83,0.0,0.0,658.83,0.0,218.03,51.14,269.17,928.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,15754,67261.0,0.0,3367.37,70628.37,14391.76,12424.5,5845.02,32661.28,103289.65 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,851,74268.95,0.0,3622.8,77891.75,15442.18,12400.61,6471.24,34314.03,112205.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,46983,120414.55,107145.21,17460.27,245020.03,27164.17,14837.72,4130.24,46132.13,291152.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44901,112690.77,8239.2,4163.42,125093.39,22311.19,12424.5,1641.18,36376.87,161470.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,39919,75053.49,0.0,8947.47,84000.96,16730.39,12334.37,6642.62,35707.38,119708.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",24794,135109.02,6689.84,10483.46,152282.32,28569.18,12424.5,2538.68,43532.36,195814.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,25700,74295.81,0.0,0.0,74295.81,15302.45,12424.5,6127.15,33854.1,108149.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47825,48739.36,23318.78,7884.66,79942.8,9667.82,6392.47,1343.97,17404.26,97347.06 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,27644,29819.01,0.0,0.0,29819.01,5549.31,4300.79,2243.53,12093.63,41912.64 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,18081,143188.02,0.0,0.0,143188.02,28816.76,12424.5,10233.73,51474.99,194663.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,47493,97762.85,741.09,2904.99,101408.93,24484.95,12424.5,1678.93,38588.38,139997.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",15774,130341.6,37184.51,15887.26,183413.37,28722.04,15052.76,2728.7,46503.5,229916.87 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,45843,51665.68,0.0,169.53,51835.21,11490.67,6379.5,4170.29,22040.46,73875.67 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,32600,101531.0,0.0,0.0,101531.0,20926.02,12424.5,8930.35,42280.87,143811.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,31566,29304.05,3959.55,987.53,34251.13,6794.4,5734.36,3037.52,15566.28,49817.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29421,117606.77,38920.93,14405.66,170933.36,23286.15,12424.5,2872.83,38583.48,209516.84 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,25124,67261.02,0.0,624.0,67885.02,13991.51,12424.5,4884.16,31300.17,99185.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,47742,12670.33,0.0,218.33,12888.66,3072.86,0.0,1019.69,4092.55,16981.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14297,43442.44,4830.85,624.77,48898.06,11424.83,12960.13,3667.45,28052.41,76950.47 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,16676,17839.89,0.0,1338.97,19178.86,3914.06,1888.58,1806.67,7609.31,26788.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,11609,85004.01,1123.64,9364.7,95492.35,19002.61,12424.5,7845.8,39272.91,134765.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35191,33803.4,4348.79,721.1,38873.29,8865.07,10548.04,2965.8,22378.91,61252.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48184,65571.27,12016.42,4850.82,82438.51,19325.5,12927.27,6438.46,38691.23,121129.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,53022,127521.61,1666.48,4523.04,133711.13,26516.73,11368.42,7322.98,45208.13,178919.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,20667,143188.02,0.0,0.0,143188.02,28816.76,12424.5,10249.99,51491.25,194679.27 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,40032,53503.33,523.89,616.8,54644.02,12118.37,12281.15,4277.41,28676.93,83320.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,7535,87531.02,0.0,0.0,87531.02,18040.63,12424.51,6844.97,37310.11,124841.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,21046,53813.31,1629.6,0.0,55442.91,11346.51,10035.18,4413.76,25795.45,81238.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,22572,87359.0,594.76,600.0,88553.76,18116.64,12424.51,6963.19,37504.34,126058.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,40394,46972.87,0.0,329.56,47302.43,9969.8,8173.95,4610.78,22754.53,70056.96 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,49349,47154.01,0.0,0.0,47154.01,10822.68,10035.18,3601.57,24459.43,71613.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,4576,90595.8,28958.69,13753.3,133307.79,20526.86,12424.5,9964.66,42916.02,176223.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,27892,81942.0,12158.95,18182.68,112283.63,19645.46,12424.5,9121.63,41191.59,153475.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23111,25325.24,0.0,888.62,26213.86,6292.22,6253.23,2167.3,14712.75,40926.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,51929,115769.79,0.0,5825.75,121595.54,26176.56,7446.94,4080.05,37703.55,159299.09 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,8651,25129.73,0.0,311.7,25441.43,6101.27,6206.22,2106.19,14413.68,39855.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37860,66053.63,6808.64,2175.96,75038.23,18693.15,13018.79,5635.4,37347.34,112385.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24645,112170.34,11525.34,11270.11,134965.79,23347.67,15052.76,2244.34,40644.77,175610.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35130,119463.83,11811.86,6067.44,137343.13,24103.01,12424.51,348.33,36875.85,174218.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,9947,83297.85,1028.83,10127.03,94453.71,21882.19,9578.94,772.13,32233.26,126686.97 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,19399,20189.9,27.04,143.1,20360.04,0.0,4248.65,1579.61,5828.26,26188.3 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,42936,94076.46,0.0,0.0,94076.46,19388.95,12420.43,7555.28,39364.66,133441.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50820,67100.55,851.58,14468.71,82420.84,0.0,5065.19,6386.56,11451.75,93872.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30986,11493.21,0.0,457.91,11951.12,567.77,0.0,298.61,866.38,12817.5 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,13447,76090.65,0.0,623.67,76714.32,15806.37,12417.99,6114.95,34339.31,111053.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,43745,128790.29,0.0,0.0,128790.29,25895.87,12143.52,9934.95,47974.34,176764.63 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,7344,7822.24,0.0,0.0,7822.24,1558.04,0.0,618.79,2176.83,9999.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39904,33507.37,4055.54,760.47,38323.38,9069.99,10557.24,2714.83,22342.06,60665.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49598,8069.93,0.0,285.83,8355.76,0.0,2013.01,647.35,2660.36,11016.12 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,29898,19785.0,0.0,380.0,20165.0,4523.01,2389.33,1623.16,8535.5,28700.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,38609,111836.81,2286.06,14491.31,128614.18,24833.08,12424.5,9875.88,47133.46,175747.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,48478,13277.64,0.0,146.71,13424.35,0.0,4960.87,1040.73,6001.6,19425.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,40688,49798.94,5407.25,1071.12,56277.31,10562.16,10057.76,4604.76,25224.68,81501.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44808,106791.23,10624.83,17616.98,135033.04,23429.03,14327.48,2254.97,40011.48,175044.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,4832,97276.53,0.0,1000.0,98276.53,20230.32,12195.73,8082.44,40508.49,138785.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30547,121249.36,7553.55,9038.04,137840.95,23935.52,12424.51,1718.47,38078.5,175919.45 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,12906,133301.8,0.0,0.0,133301.8,26758.46,12424.5,17283.8,56466.76,189768.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41242,7002.06,0.0,559.98,7562.04,0.0,1905.49,585.87,2491.36,10053.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,286,24779.55,5537.19,2411.52,32728.26,6305.51,6289.9,2576.46,15171.87,47900.13 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,8469,72692.6,0.0,0.0,72692.6,14971.44,12424.5,5950.2,33346.14,106038.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,10367,118767.48,0.0,0.0,118767.48,23870.42,12424.5,16999.24,53294.16,172061.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,29072,5307.01,0.0,92044.47,97351.48,1168.43,477.86,14.24,1660.53,99012.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,36942,86150.93,2243.17,720.0,89114.1,17903.08,12424.5,7331.29,37658.87,126772.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,7700,39342.28,15550.2,5097.13,59989.61,9536.69,4587.51,1017.06,15141.26,75130.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,7861,34824.47,0.0,0.0,34824.47,6820.2,11308.14,2819.25,20947.59,55772.06 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,45756,0.0,0.0,7338.73,7338.73,77.85,68.5,562.28,708.63,8047.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,10996,71055.62,0.0,40.0,71095.62,11624.87,12424.49,5738.22,29787.58,100883.2 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,45545,78631.84,0.0,0.0,78631.84,15309.8,8601.57,6379.4,30290.77,108922.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,13234,8492.77,0.0,61.31,8554.08,2049.16,0.0,676.51,2725.67,11279.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0965,Dept Head V,21992,235571.07,0.0,0.0,235571.07,45833.85,9079.44,22364.88,77278.17,312849.24 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1830,Perf Analyst III Project Mgr,22755,112225.15,0.0,0.0,112225.15,22822.2,12400.61,9054.59,44277.4,156502.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25953,51969.15,0.0,2618.11,54587.26,422.01,0.0,5836.34,6258.35,60845.61 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3108,97769.35,19084.27,17170.84,134024.46,27969.38,12424.5,2282.34,42676.22,176700.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,20944,5908.77,0.0,0.0,5908.77,0.0,692.9,457.64,1150.54,7059.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,7557,56276.0,0.0,0.0,56276.0,11598.68,12424.5,4577.71,28600.89,84876.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,46380,100554.0,0.0,0.0,100554.0,20724.83,12424.5,8108.55,41257.88,141811.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,32514,102287.0,0.0,11863.55,114150.55,21054.87,12424.5,9297.72,42777.09,156927.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",18657,10988.33,0.0,0.0,10988.33,0.0,2616.32,852.76,3469.08,14457.41 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",31537,75318.61,0.0,0.0,75318.61,15433.43,10017.44,6348.39,31799.26,107117.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,43825,16092.0,0.0,8976.27,25068.27,3647.75,1433.6,2030.36,7111.71,32179.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,17308,83189.74,0.0,0.0,83189.74,17136.47,12424.47,7211.37,36772.31,119962.05 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,30881,14446.18,0.0,770.44,15216.62,3823.92,3228.58,1303.4,8355.9,23572.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,1879,86663.02,0.0,2268.0,88931.02,18332.04,12424.5,7075.7,37832.24,126763.26 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,27960,99934.75,0.0,0.0,99934.75,20630.09,12089.99,8006.75,40726.83,140661.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",6035,66532.89,0.0,5576.18,72109.07,15492.38,8601.58,10980.45,35074.41,107183.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,804,74684.0,0.0,0.0,74684.0,3257.6,8123.71,6015.48,17396.79,92080.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,39038,64447.9,54.36,13973.29,78475.55,15813.53,12424.51,6063.0,34301.04,112776.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36085,118895.78,27574.48,14780.24,161250.5,24072.1,12364.76,2597.3,39034.16,200284.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7667,78566.83,2058.85,6527.89,87153.57,13917.85,8217.2,7289.18,29424.23,116577.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,19494,49342.6,0.0,2884.19,52226.79,10368.5,10292.03,4179.63,24840.16,77066.95 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,4290,1458.9,0.0,0.0,1458.9,125.68,167.25,796.65,1089.58,2548.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39426,12549.03,41.33,1250.09,13840.45,2192.86,5441.7,1108.34,8742.9,22583.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,5330,105484.88,0.0,0.0,105484.88,21242.39,11105.78,8690.2,41038.37,146523.25 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,44877,104647.33,0.0,0.0,104647.33,21565.19,12404.97,8622.71,42592.87,147240.2 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,43418,56624.2,0.0,0.0,56624.2,10955.92,7311.34,4443.59,22710.85,79335.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36094,40619.91,5200.15,793.53,46613.59,10786.53,12310.11,3366.89,26463.53,73077.12 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,13757,67128.07,0.0,6918.41,74046.48,14641.93,12281.15,6108.77,33031.85,107078.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49749,10448.8,0.0,0.0,10448.8,1894.37,1768.1,803.64,4466.11,14914.91 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,15599,68041.94,0.0,4624.67,72666.61,14033.44,11360.9,6052.31,31446.65,104113.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19573,45811.04,7106.67,5006.47,57924.18,11694.4,12101.95,4625.58,28421.93,86346.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31172,73265.9,9844.21,9104.79,92214.9,0.0,0.0,1576.67,1576.67,93791.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,16211,13048.58,800.5,337.05,14186.13,2869.41,2942.45,1138.05,6949.91,21136.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",46667,97256.02,0.0,6.18,97262.2,20031.52,12424.49,7649.51,40105.52,137367.72 +Calendar,2015,1,Public Protection,SHF,Sheriff,969.0,Institutional Police Officers' Association,8200,Protection & Apprehension,8205,Institutional Police Sergeant,41921,119053.71,29214.67,8150.47,156418.85,29020.04,12423.24,400.12,41843.4,198262.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,44668,10873.3,306.57,3849.08,15028.95,2805.33,2867.19,1154.96,6827.48,21856.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,15929,62468.85,16227.83,8540.2,87236.88,13071.57,12424.52,7054.79,32550.88,119787.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,45722,101733.0,0.0,0.0,101733.0,20967.28,12424.51,8272.6,41664.39,143397.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19542,9656.91,351.58,78.13,10086.62,2324.44,2953.87,772.0,6050.31,16136.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41421,98332.72,5499.13,8537.1,112368.95,20443.34,12424.5,1874.58,34742.42,147111.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,9229,82316.71,7680.04,11972.18,101968.93,18544.59,12364.77,8044.34,38953.7,140922.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3381,20128.03,2585.77,422.71,23136.51,4980.39,6244.21,1687.12,12911.72,36048.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11092,119384.89,2117.93,24525.84,146028.66,27287.31,10613.46,6514.81,44415.58,190444.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,49207,117140.97,54487.9,14172.94,185801.81,23164.17,12424.5,3169.48,38758.15,224559.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,9220,53369.7,379.05,379.05,54127.8,11254.61,10048.91,4282.1,25585.62,79713.42 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,25668,208898.64,0.0,56364.88,265263.52,48522.26,12113.89,12249.6,72885.75,338149.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),26663,23112.01,0.0,9633.4,32745.41,4183.12,1911.46,535.61,6630.19,39375.6 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,33217,32046.0,0.0,0.0,32046.0,5963.74,5256.52,2583.02,13803.28,45849.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46236,21586.8,0.0,4976.02,26562.82,14634.64,0.0,6384.65,21019.29,47582.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28877,356.21,0.0,50.29,406.5,170.58,0.0,447.72,618.3,1024.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10937,18816.41,5397.58,373.81,24587.8,5634.26,3741.98,1899.2,11275.44,35863.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1764,Mail & Reproduction Svc Sprv,33349,71014.81,0.0,0.0,71014.81,14604.73,12424.5,5839.83,32869.06,103883.87 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0655,"Counselor, Family Court Svc",49865,103571.74,0.0,12052.59,115624.33,22806.47,12379.52,8959.51,44145.5,159769.83 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,49642,22041.0,367.35,0.0,22408.35,4943.79,4300.79,1870.61,11115.19,33523.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7240,Water Meter Shop Supervisor 1,15913,88621.92,0.0,4306.74,92928.66,19068.5,12424.51,7286.65,38779.66,131708.32 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,23811,90775.04,0.0,0.0,90775.04,18709.21,12424.5,7407.86,38541.57,129316.61 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,29722,35362.81,0.0,0.0,35362.81,7931.92,5256.52,2812.94,16001.38,51364.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,10893,52502.47,3208.77,2201.25,57912.49,12894.99,12420.03,4621.45,29936.47,87848.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,29292,45643.36,0.0,2282.16,47925.52,0.0,5247.56,3715.28,8962.84,56888.36 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,48936,95343.02,0.0,0.0,95343.02,19814.27,11468.77,7844.61,39127.65,134470.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34246,119461.58,946.2,11997.97,132405.75,25050.85,12424.5,335.66,37811.01,170216.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,13378,82408.39,4837.54,187.48,87433.41,16956.89,12424.5,6942.91,36324.3,123757.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28527,9377.63,0.0,0.0,9377.63,0.0,4066.45,755.9,4822.35,14199.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17736,10861.58,0.0,0.0,10861.58,0.0,4709.96,870.78,5580.74,16442.32 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,21027,106116.08,0.0,0.0,106116.08,21882.46,12424.5,8615.19,42922.15,149038.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50832,11379.5,0.0,564.18,11943.68,0.0,4353.06,926.07,5279.13,17222.81 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,29906,101924.22,0.0,0.0,101924.22,20978.56,12233.36,8022.5,41234.42,143158.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,5970,61735.04,796.5,264.0,62795.54,12773.11,12424.5,5127.3,30324.91,93120.45 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,26744,28896.0,0.0,200.0,29096.0,6526.22,3345.06,2337.4,12208.68,41304.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",9725,54361.18,21562.78,35365.72,111289.68,13357.5,6307.83,1736.83,21402.16,132691.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,10698,0.0,0.0,600.0,600.0,111.66,34.25,74.92,220.83,820.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4133,119455.21,2229.34,6398.48,128083.03,23664.86,12424.5,2172.04,38261.4,166344.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18829,66713.72,27253.33,2252.58,96219.63,18880.59,13147.09,7487.64,39515.32,135734.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,44136,113238.93,0.0,0.0,113238.93,22249.43,12424.5,1648.79,36322.72,149561.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0963,Dept Head III,5274,221550.19,0.0,0.0,221550.19,44557.84,12424.5,18780.43,75762.77,297312.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,44628,66102.02,5878.49,3530.96,75511.47,14334.82,12424.5,6094.78,32854.1,108365.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,14745,46362.0,5280.71,811.65,52454.36,11116.27,12424.5,4247.14,27787.91,80242.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,47270,3787.37,0.0,0.0,3787.37,0.0,259.84,1357.19,1617.03,5404.4 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,12553,76923.72,0.0,3814.5,80738.22,16178.67,12400.61,6232.64,34811.92,115550.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20548,2938.46,0.0,319.77,3258.23,3700.42,0.0,2250.84,5951.26,9209.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,13720,79395.02,0.0,2084.0,81479.02,16792.43,12424.51,6221.98,35438.92,116917.94 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,48312,65845.6,0.0,0.0,65845.6,4006.47,9079.44,5026.42,18112.33,83957.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,25735,18334.15,0.0,9057.06,27391.21,4022.52,1433.6,3568.53,9024.65,36415.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20230,119455.95,31012.62,5511.91,155980.48,23662.85,12424.5,2611.76,38699.11,194679.59 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,24465,26204.6,0.0,320.0,26524.6,4936.24,3822.93,2109.99,10869.16,37393.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,18700,74664.7,25174.67,2515.04,102354.41,15508.08,12424.5,8316.2,36248.78,138603.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,37151,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,30025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2309,579.05,0.0,0.0,579.05,0.0,313.59,44.83,358.42,937.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15035,36567.07,0.0,0.0,36567.07,8022.83,3257.67,3064.12,14344.62,50911.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,23397,8336.07,0.0,92.57,8428.64,1890.56,1843.36,741.59,4475.51,12904.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,27138,62453.32,0.0,2247.91,64701.23,13260.82,12421.52,5282.09,30964.43,95665.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),44782,23112.0,0.0,16375.95,39487.95,4183.12,1911.46,637.66,6732.24,46220.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,3607,96254.02,0.0,0.0,96254.02,19839.97,12424.5,7860.57,40125.04,136379.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29415,117140.95,49606.42,16346.43,183093.8,23164.18,12424.5,3073.74,38662.42,221756.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9458,35.8,0.0,0.0,35.8,0.0,11.94,2.77,14.71,50.51 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,12360,117614.12,0.0,0.0,117614.12,23630.3,12424.5,9670.76,45725.56,163339.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,50212,112776.0,3879.9,2996.15,119652.05,22696.41,12424.5,9598.54,44719.45,164371.5 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,32626,65774.0,471.38,0.0,66245.38,13556.27,12424.5,5449.97,31430.74,97676.12 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),12207,75243.17,18431.19,2079.09,95753.45,15687.25,11468.77,1597.6,28753.62,124507.07 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,21789,41878.04,1035.78,3148.87,46062.69,8456.73,7632.41,3798.36,19887.5,65950.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,50750,0.0,0.0,234.78,234.78,0.0,0.0,17.96,17.96,252.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,14919,142716.49,0.0,0.0,142716.49,28715.83,12172.02,10111.67,50999.52,193716.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,30175,13221.99,0.0,0.0,13221.99,2346.39,4375.58,1062.8,7784.77,21006.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,22388,81089.38,8810.17,4209.88,94109.43,17427.4,12407.29,7252.64,37087.33,131196.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24773,37618.18,0.0,28438.23,66056.41,5205.16,0.0,8001.16,13206.32,79262.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25712,63767.4,20323.16,1591.09,85681.65,17889.91,12568.34,6477.59,36935.84,122617.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,34035,43039.38,2317.14,0.0,45356.52,10183.59,10491.77,3452.3,24127.66,69484.18 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,17421,111918.04,0.0,2672.66,114590.7,23058.98,12424.5,9230.62,44714.1,159304.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,41810,89935.01,0.0,0.0,89935.01,18777.43,10990.9,6548.05,36316.38,126251.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52839,2849.6,0.0,53.43,2903.03,1325.25,0.0,1048.74,2373.99,5277.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,34866,3486.5,0.0,899.15,4385.65,831.25,907.95,330.12,2069.32,6454.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43291,12797.3,1504.22,577.6,14879.12,3688.22,4039.63,1042.97,8770.82,23649.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,27269,19388.5,0.0,500.0,19888.5,0.0,4718.92,1592.17,6311.09,26199.59 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,1797,0.0,0.0,9788.09,9788.09,0.0,0.0,748.79,748.79,10536.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52979,18063.48,13.78,726.02,18803.28,819.26,7771.29,1518.34,10108.89,28912.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,46393,153012.61,0.0,10582.69,163595.3,30726.09,12424.49,10556.05,53706.63,217301.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,38616,37801.38,0.0,6408.48,44209.86,9237.88,6407.94,3493.21,19139.03,63348.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,6294,26430.6,1545.34,1484.0,29459.94,127.49,4444.15,2335.48,6907.12,36367.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,38897,83148.01,0.0,0.0,83148.01,17137.11,12424.5,6829.55,36391.16,119539.17 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,14901,41433.27,0.0,310.75,41744.02,8618.72,8338.76,3373.06,20330.54,62074.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,34315,73406.0,420.9,1035.0,74861.9,15342.98,12424.5,6116.61,33884.09,108745.99 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,48905,84973.01,0.0,600.0,85573.01,17636.61,12424.5,6844.52,36905.63,122478.64 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8677,19442.0,0.0,0.0,19442.0,4275.3,4778.65,100.8,9154.75,28596.75 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,30207,65651.09,209.63,1351.08,67211.8,13795.19,11220.23,5532.26,30547.68,97759.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,22821,86213.64,0.0,20.0,86233.64,17821.89,11612.13,7024.27,36458.29,122691.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,10231,29340.07,308.28,2371.18,32019.53,6041.97,7478.9,2640.84,16161.71,48181.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29335,65644.31,17947.12,1632.64,85224.07,18386.06,12932.89,6441.37,37760.32,122984.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,2222,129604.93,63168.33,16207.49,208980.75,28685.14,15052.76,3517.86,47255.76,256236.51 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,29801,81985.79,0.0,0.0,81985.79,18792.58,11086.47,1358.22,31237.27,113223.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10388,146791.66,7081.1,12250.85,166123.61,30253.65,12233.36,1030.98,43517.99,209641.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23189,1679.6,0.0,47.73,1727.33,0.0,907.95,133.73,1041.68,2769.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,51240,30254.8,0.0,0.0,30254.8,5630.41,5256.51,2418.81,13305.73,43560.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,25728,27034.01,0.0,0.0,27034.01,6063.75,3345.05,2191.93,11600.73,38634.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,35937,40803.92,240.19,5958.37,47002.48,9659.63,9064.39,3564.29,22288.31,69290.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5447,65257.5,1073.26,1635.32,67966.08,18298.08,12857.81,5252.9,36408.79,104374.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49535,5978.83,0.0,353.93,6332.76,3030.51,423.56,2131.79,5585.86,11918.62 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26531,96543.46,50143.47,9793.06,156479.99,25845.27,12266.22,2574.22,40685.71,197165.7 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,50974,78963.01,0.0,600.0,79563.01,16397.77,12424.5,6102.12,34924.39,114487.4 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,39821,88454.61,0.0,2593.87,91048.48,18321.73,9820.14,7422.32,35564.19,126612.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27317,1904.83,0.0,0.88,1905.71,0.0,1033.38,147.54,1180.92,3086.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,11772,138629.95,7253.29,3592.64,149475.88,27959.85,12424.5,2491.63,42875.98,192351.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,6322,24837.59,1882.15,1754.57,28474.31,5951.0,6218.22,2263.87,14433.09,42907.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,17554,70931.01,0.0,1884.0,72815.01,14965.6,12424.5,6016.46,33406.56,106221.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37780,2644.8,0.0,0.0,2644.8,0.0,1146.88,204.76,1351.64,3996.44 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,12818,97769.36,17115.44,17191.56,132076.36,27967.23,12424.5,2203.85,42595.58,174671.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,3209,108038.01,16500.47,3138.6,127677.08,22281.99,12424.5,9816.97,44523.46,172200.54 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,7094,6276.0,0.0,0.0,6276.0,1167.96,955.73,487.12,2610.81,8886.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,32695,7129.53,0.0,0.0,7129.53,0.0,2111.57,553.36,2664.93,9794.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,27262,27830.57,0.0,1379.98,29210.55,6137.35,6312.9,2620.36,15070.61,44281.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36283,3443.0,0.0,0.0,3443.0,624.22,525.65,265.63,1415.5,4858.5 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0961,Dept Head I,38368,165152.35,0.0,0.0,165152.35,33098.72,11946.64,17502.38,62547.74,227700.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17119,75550.33,949.0,0.0,76499.33,15543.57,12424.51,5931.26,33899.34,110398.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41387,12600.81,0.0,319.02,12919.83,1520.04,0.0,1021.89,2541.93,15461.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,18341,607.43,390.49,1969.8,2967.72,250.24,41.82,628.4,920.46,3888.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31815,3330.46,965.08,0.0,4295.54,856.01,1051.3,327.01,2234.32,6529.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",8229,93879.6,15436.77,3438.86,112755.23,19752.84,12424.5,9197.84,41375.18,154130.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5177,Safety Officer,24281,130910.02,0.0,0.0,130910.02,26360.82,12424.5,10026.22,48811.54,179721.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43768,77856.3,608.84,1648.15,80113.29,15750.04,11946.64,4301.43,31998.11,112111.4 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),30374,184289.01,0.0,5248.28,189537.29,38144.36,12424.5,11002.95,61571.81,251109.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,51904,56076.4,0.0,1280.0,57356.4,12796.21,12424.5,4660.65,29881.36,87237.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,21498,66410.62,0.0,696.57,67107.19,13721.25,12424.5,5456.67,31602.42,98709.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,29498,51678.18,302.7,0.0,51980.88,10782.54,8374.6,4244.35,23401.49,75382.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,36399,56531.0,0.0,2614.35,59145.35,11780.12,12424.5,4643.0,28847.62,87992.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,10048,2985.2,0.0,0.0,2985.2,656.45,812.37,231.52,1700.34,4685.54 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,32081,33675.63,0.0,702.92,34378.55,7115.4,6779.72,2790.28,16685.4,51063.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,36411,13398.42,2489.09,433.66,16321.17,0.0,3337.58,1266.79,4604.37,20925.54 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11559,44617.14,5040.79,5846.61,55504.54,11869.09,5729.91,986.08,18585.08,74089.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,11626,65462.55,0.0,1582.8,67045.35,13818.53,12400.6,5243.07,31462.2,98507.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,14846,66882.71,19384.36,9659.56,95926.63,15023.37,10990.9,8093.65,34107.92,130034.55 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),39340,157021.53,0.0,1500.0,158521.53,31862.2,12424.5,10524.98,54811.68,213333.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",1255,93738.05,9235.7,148.63,103122.38,19319.81,12424.5,8477.82,40222.13,143344.51 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,45449,600.0,0.0,0.0,600.0,248.28,35.84,1416.34,1700.46,2300.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,39189,85245.86,0.0,1701.91,86947.77,17932.17,12520.08,7203.6,37655.85,124603.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,21060,145518.9,0.0,4746.69,150265.59,30129.62,9772.35,10192.71,50094.68,200360.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,4831,36191.04,4380.04,3565.69,44136.77,1392.62,7962.44,3530.93,12885.99,57022.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,16925,5047.89,0.0,0.0,5047.89,0.0,1627.73,391.8,2019.53,7067.42 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,39652,21480.0,0.0,0.0,21480.0,4817.94,2867.19,1736.9,9422.03,30902.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47674,51284.98,10987.78,2590.32,64863.08,15325.68,10196.04,5057.18,30578.9,95441.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7744,70415.95,0.0,4462.36,74878.31,0.0,6140.57,5808.43,11949.0,86827.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,29765,1756.0,0.0,0.0,1756.0,386.14,477.86,136.31,1000.31,2756.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,44441,95740.31,0.0,0.0,95740.31,19706.23,12424.5,7678.42,39809.15,135549.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,17328,87263.57,972.72,2520.55,90756.84,18550.33,12405.27,7315.03,38270.63,129027.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37233,22310.07,0.0,250.0,22560.07,0.0,1905.49,1747.76,3653.25,26213.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",8100,Legal & Court,8121,Investigator/Transit Fare Supv,16102,38357.01,0.0,0.0,38357.01,0.0,5381.96,2973.36,8355.32,46712.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36906,67174.56,15838.74,6338.25,89351.55,20146.29,13237.65,6954.71,40338.65,129690.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,47577,158264.0,4786.28,5904.03,168954.31,32821.06,12424.5,10568.52,55814.08,224768.39 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,42312,96105.01,2258.74,0.0,98363.75,21932.83,12424.5,1671.82,36029.15,134392.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15056,33656.73,7556.62,1196.45,42409.8,8962.77,10501.93,3121.54,22586.24,64996.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,10006,103239.4,219.94,0.0,103459.34,21259.06,12424.5,8360.54,42044.1,145503.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,23270,83205.01,154.32,200.0,83559.33,4109.72,7167.99,6464.8,17742.51,101301.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,28643,85004.0,4296.76,3011.8,92312.56,17528.57,12424.5,7396.33,37349.4,129661.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,18241,61947.48,469.37,922.43,63339.28,12894.4,12321.58,5226.01,30441.99,93781.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,24859,92709.6,86357.46,7880.7,186947.76,19924.34,12520.08,10896.88,43341.3,230289.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3320,Animal Keeper,3558,65137.05,846.56,2309.7,68293.31,13450.81,12182.28,5581.51,31214.6,99507.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,48437,69247.1,399.45,984.68,70631.23,14400.86,12424.5,5758.58,32583.94,103215.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3784,21224.86,2116.31,832.54,24173.71,5337.7,6575.42,1847.92,13761.04,37934.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",43431,94095.21,15325.78,5806.54,115227.53,19881.76,12424.5,9224.84,41531.1,156758.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,15689,10252.28,0.0,0.0,10252.28,1928.43,3351.03,849.48,6128.94,16381.22 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,26779,80035.36,0.0,2200.0,82235.36,16961.4,11450.49,6718.55,35130.44,117365.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18378,52097.58,2006.88,1064.51,55168.97,14718.57,10247.58,3954.81,28920.96,84089.93 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,375C,Court Training Specialist,35084,99476.0,0.0,5537.0,105013.0,20643.6,12424.5,8609.75,41677.85,146690.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51206,9387.0,0.0,268.24,9655.24,355.27,0.0,1837.22,2192.49,11847.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,12654,554.4,0.0,0.0,554.4,0.0,71.68,42.93,114.61,669.01 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,43433,5867.94,0.0,0.0,5867.94,0.0,2162.35,455.44,2617.79,8485.73 +Calendar,2015,4,Community Health,DPH,Public Health,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,33370,79722.01,0.0,2948.5,82670.51,17046.14,12424.5,6841.55,36312.19,118982.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,36433,23997.2,0.0,0.0,23997.2,4480.93,5399.88,1892.74,11773.55,35770.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3934,43331.01,0.0,712.03,44043.04,1642.43,0.0,1541.52,3183.95,47226.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7364,Power House Operator,17067,85443.6,12335.66,11784.37,109563.63,19439.74,12424.5,8944.23,40808.47,150372.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29015,38737.12,2762.67,2917.64,44417.43,6876.08,3345.06,761.18,10982.32,55399.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,34463,3859.0,0.0,578.85,4437.85,825.88,477.86,341.21,1644.95,6082.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,51300,35358.0,0.0,25.0,35383.0,6584.79,4778.65,2846.78,14210.22,49593.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32815,7062.25,0.0,231.22,7293.47,0.0,2720.84,565.61,3286.45,10579.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15719,69900.01,110.78,4742.38,74753.17,14248.15,7167.99,6027.01,27443.15,102196.32 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,15940,150957.85,0.0,0.0,150957.85,30380.41,12424.5,17631.57,60436.48,211394.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51621,1006.95,0.0,33.57,1040.52,0.0,0.0,71.21,71.21,1111.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,31696,42536.38,1738.67,1009.01,45284.06,10358.3,10660.17,3424.29,24442.76,69726.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,46972,87359.01,0.0,13684.61,101043.62,19821.84,12424.5,8244.78,40491.12,141534.74 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,29316,74412.03,0.0,3572.4,77984.43,15345.94,12424.5,6476.97,34247.41,112231.84 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),51665,5797.0,0.0,5010.61,10807.61,1340.42,477.86,821.95,2640.23,13447.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,39715,79645.65,3767.85,8610.41,92023.91,17371.93,12448.4,1534.59,31354.92,123378.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40972,68989.51,20588.23,6717.99,96295.73,20756.82,13595.33,7317.32,41669.47,137965.2 +Calendar,2015,6,General Administration & Finance,CON,Controller,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,33749,106605.05,0.0,0.0,106605.05,21971.81,12424.5,8259.06,42655.37,149260.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,16158,73473.51,0.0,0.0,73473.51,15140.1,12430.47,5459.31,33029.88,106503.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,17510,3504.0,131.4,0.0,3635.4,770.52,955.73,281.98,2008.23,5643.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,8712,135421.0,0.0,0.0,135421.0,27253.5,12424.49,10128.14,49806.13,185227.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13319,2925.45,0.0,170.67,3096.12,0.0,215.04,184.22,399.26,3495.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",42405,61066.31,10558.8,2154.48,73779.59,11951.68,7120.2,5549.53,24621.41,98401.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,11443,0.0,0.0,0.0,0.0,0.0,68.5,212.49,280.99,280.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,5903,83404.31,31889.75,14676.09,129970.15,19234.27,12247.46,9845.67,41327.4,171297.55 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8314,Chief Deputy Sheriff,26439,172540.05,10646.4,19929.41,203115.86,45540.68,12424.5,518.35,58483.53,261599.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25938,119131.52,1123.05,11957.71,132212.28,23809.07,10880.99,8322.9,43012.96,175225.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15219,712.98,0.0,6.89,719.87,0.0,388.27,55.73,444.0,1163.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,48765,0.0,0.0,1339.74,1339.74,0.0,0.0,102.49,102.49,1442.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19677,42039.42,3835.61,714.1,46589.13,11110.74,12568.39,3488.14,27167.27,73756.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",5683,63226.84,1213.94,0.0,64440.78,12184.78,7167.99,5118.97,24471.74,88912.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3692,46906.4,3773.83,1998.63,52678.86,11254.74,12424.5,4247.31,27926.55,80605.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,14688,84644.01,1001.57,3905.9,89551.48,17720.05,12424.5,7016.48,37161.03,126712.51 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,37173,114720.0,0.0,11472.0,126192.0,23087.61,12424.5,9826.31,45338.42,171530.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",20942,98309.22,16900.93,11325.06,126535.21,20473.26,9557.3,2123.54,32154.1,158689.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,33940,130075.37,0.0,8903.82,138979.19,27299.68,8369.51,9473.67,45142.86,184122.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51325,65867.73,18364.69,538.5,84770.92,18200.41,12981.39,6607.6,37789.4,122560.32 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,20236,95.44,0.0,84.9,180.34,21.41,17.92,13.87,53.2,233.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,35720,7483.3,0.0,0.0,7483.3,1645.57,2341.54,622.88,4609.99,12093.29 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,6406,12808.6,0.0,240.0,13048.6,2428.34,2341.54,1026.99,5796.87,18845.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,2760,47010.0,0.0,0.0,47010.0,8964.16,6690.12,3779.22,19433.5,66443.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,36810,176257.01,0.0,0.0,176257.01,35471.94,12424.5,10754.8,58651.24,234908.25 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,353C,Ct Comp App Analyst,12449,109668.0,0.0,3624.0,113292.0,22210.02,12424.5,9204.0,43838.52,157130.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,20189,117140.92,5748.63,7458.3,130347.85,23164.18,12424.5,2219.06,37807.74,168155.59 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",40488,500.0,0.0,0.0,500.0,0.0,29.86,38.77,68.63,568.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12317,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,27846,59229.0,0.0,7698.14,66927.14,13331.41,12424.5,5520.87,31276.78,98203.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,9907,18313.32,0.0,32.09,18345.41,0.0,3664.63,1421.51,5086.14,23431.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,16056,70012.76,6448.5,1054.38,77515.64,12914.41,7167.99,1320.86,21403.26,98918.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16297,56531.0,0.0,10734.34,67265.34,12792.16,12424.5,5245.31,30461.97,97727.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,25176,79395.08,0.0,1520.0,80915.08,16672.77,12424.51,6573.1,35670.38,116585.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31786,14715.45,2340.52,922.84,17978.81,4193.77,1147.42,1502.46,6843.65,24822.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2303,56531.0,0.0,7221.29,63752.29,13799.4,12424.5,5108.87,31332.77,95085.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,16546,89028.0,0.0,8125.61,97153.61,18349.02,12424.51,7952.18,38725.71,135879.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,30440,113369.07,18163.76,8939.68,140472.51,24073.33,12424.47,10093.27,46591.07,187063.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46533,76219.56,464.59,17116.01,93800.16,17565.91,7822.66,7542.29,32930.86,126731.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,41754,72.2,0.0,0.0,72.2,0.0,23.89,5.6,29.49,101.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,112,28948.08,14574.22,18616.99,62139.29,5878.92,0.0,4918.33,10797.25,72936.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14070,142852.45,0.0,250.0,143102.45,28786.13,12264.35,10095.83,51146.31,194248.76 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,11095,69698.85,0.0,1384.0,71082.85,14914.72,10513.04,5869.56,31297.32,102380.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,27115,53231.1,16593.82,11806.58,81631.5,14621.19,12424.5,6291.31,33337.0,114968.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,31830,7067.39,0.0,0.0,7067.39,0.0,2562.56,547.77,3110.33,10177.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",31840,13816.14,0.0,0.0,13816.14,0.0,2923.94,1071.51,3995.45,17811.59 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,6334,5846.59,0.0,54.99,5901.58,1297.75,1726.29,478.61,3502.65,9404.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers Int, Local 261",3400,Agriculture & Horticulture,3408,Apprentice Arborist Tech I,20821,23668.0,3902.64,16.2,27586.84,5316.45,6690.11,2217.0,14223.56,41810.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,42469,50372.06,0.0,0.0,50372.06,10966.27,7080.9,4021.47,22068.64,72440.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,13914,13745.63,542.34,0.0,14287.97,0.0,2974.72,1142.92,4117.64,18405.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15738,2239.6,0.0,0.0,2239.6,0.0,191.14,173.83,364.97,2604.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,36134,97525.07,3933.87,1763.67,103222.61,20407.76,11946.63,8445.01,40799.4,144022.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,46614,82562.54,0.0,0.0,82562.54,16991.38,12424.5,6717.38,36133.26,118695.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,20992,107359.34,43544.47,7836.67,158740.48,22043.59,9079.44,2661.58,33784.61,192525.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,25064,7573.91,0.0,0.0,7573.91,0.0,2245.97,587.86,2833.83,10407.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,45111,83148.04,0.0,0.0,83148.04,17137.11,12424.51,6789.73,36351.35,119499.39 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,21867,81116.02,0.0,0.0,81116.02,16718.54,12424.5,5747.33,34890.37,116006.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,14593,62187.0,0.0,590.74,62777.74,12938.59,12424.5,4952.36,30315.45,93093.19 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1769,Media Production Supv,27410,12048.0,0.0,75.31,12123.31,2256.14,1911.46,930.54,5098.14,17221.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,6651,116976.0,0.0,0.0,116976.0,23541.49,12424.47,9323.45,45289.41,162265.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,16293,1513.5,0.0,0.0,1513.5,281.66,238.93,117.47,638.06,2151.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27951,27115.0,0.0,0.0,27115.0,0.0,2389.56,2099.24,4488.8,31603.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,30354,49679.0,0.0,4638.89,54317.89,12591.86,12424.5,4429.82,29446.18,83764.07 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,352C,Ct Comp Sys Engineer II,22375,109668.08,0.0,5733.0,115401.08,22210.09,12424.5,9536.66,44171.25,159572.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41667,38320.3,0.0,566.64,38886.94,8043.26,8442.63,3292.24,19778.13,58665.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,23985,30860.81,932.02,560.0,32352.83,8055.8,6690.11,2633.68,17379.59,49732.42 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,12067,88296.01,0.0,5322.0,93618.01,18337.86,12424.5,7768.54,38530.9,132148.91 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,10686,107978.05,0.0,675.0,108653.05,22411.44,12424.5,8767.62,43603.56,152256.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,9523,32851.02,1437.23,1464.33,35752.58,7696.92,6212.25,2930.82,16839.99,52592.57 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,19357,67484.42,0.0,0.0,67484.42,13350.75,8517.95,5460.85,27329.55,94813.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21491,119467.35,39830.22,39002.78,198300.35,23620.97,12424.5,3270.0,39315.47,237615.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1033,IS Trainer-Senior,43101,38423.9,0.0,0.0,38423.9,7150.69,5399.88,2900.21,15450.78,53874.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37859,56531.0,0.0,2055.15,58586.15,11664.71,12424.5,4801.08,28890.29,87476.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38038,112692.99,23085.12,1675.72,137453.83,22303.31,12424.5,2286.77,37014.58,174468.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,245,49916.53,0.0,5345.75,55262.28,10941.28,8827.78,4594.86,24363.92,79626.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2648,43943.36,2526.86,1308.06,47778.28,11704.81,13074.28,3620.41,28399.5,76177.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,43796,2161.69,0.0,19.22,2180.91,0.0,376.31,169.27,545.58,2726.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,32922,75605.03,291.4,1690.93,77587.36,15848.58,12424.5,6360.5,34633.58,112220.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,23463,3493.71,0.0,111.36,3605.07,0.0,1161.81,279.71,1441.52,5046.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40403,63707.62,7784.82,1011.78,72504.22,17870.63,12575.69,5322.82,35769.14,108273.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,52251,14441.26,40.61,0.0,14481.87,2980.4,4779.07,1150.56,8910.03,23391.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,16768,80983.53,0.0,468.0,81451.53,16779.9,9318.38,6505.2,32603.48,114055.01 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,38846,2382.13,787.31,0.0,3169.44,0.0,704.85,246.01,950.86,4120.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2406,Pharmacy Helper,8467,72319.02,0.0,2736.3,75055.32,15033.8,12424.5,6214.97,33673.27,108728.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,22092,62807.4,0.0,760.0,63567.4,13055.18,12423.78,4977.72,30456.68,94024.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,42777,31374.0,0.0,841.01,32215.01,7225.83,4300.8,2668.02,14194.65,46409.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4903,12855.0,48.21,280.0,13183.21,2946.19,2389.33,1101.15,6436.67,19619.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,10178,28375.0,0.0,215.21,28590.21,5320.64,4778.66,2289.71,12389.01,40979.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3226,6129.0,0.0,66.5,6195.5,0.0,2347.53,480.28,2827.81,9023.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,33581,116815.45,5331.53,10925.11,133072.09,23659.02,12424.5,1670.68,37754.2,170826.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,20734,28612.68,0.0,0.0,28612.68,6277.62,2867.19,5766.54,14911.35,43524.03 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,38738,1361.87,244.07,0.0,1605.94,0.0,416.64,124.65,541.29,2147.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,29492,546.9,0.0,0.0,546.9,120.26,143.35,42.45,306.06,852.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30807,27623.42,0.0,0.0,27623.42,0.0,2386.35,2144.02,4530.37,32153.79 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,31728,103075.0,0.0,0.0,103075.0,21244.17,12424.5,8152.69,41821.36,144896.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21445,56531.0,0.0,5613.17,62144.17,12597.42,12424.5,5087.0,30108.92,92253.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,18210,63760.95,1343.1,68.8,65172.85,13158.55,12400.61,5381.84,30941.0,96113.85 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2246,Asst Dir Of Clinical Svcs 1,29887,118427.04,0.0,0.0,118427.04,24426.0,12424.5,18151.77,55002.27,173429.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,28726,32160.0,6628.81,3819.81,42608.62,5709.66,2867.19,728.71,9305.56,51914.18 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,14326,72985.83,0.0,715.9,73701.73,15195.72,12472.29,6053.01,33721.02,107422.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,57,16715.06,0.0,2979.35,19694.41,0.0,1427.62,1477.23,2904.85,22599.26 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,8549,55188.31,0.0,0.0,55188.31,10732.52,7341.21,4418.48,22492.21,77680.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,1069,97934.02,0.0,4896.92,102830.94,21204.45,12424.5,8218.89,41847.84,144678.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42749,119461.65,2761.66,14993.72,137217.03,23641.9,12424.5,2329.0,38395.4,175612.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,45070,40.95,0.0,236.7,277.65,10.57,0.0,21.27,31.84,309.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,34641,90064.43,755.78,0.0,90820.21,18522.02,12424.5,7456.28,38402.8,129223.01 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1492,"Asst Clk, Board Of Supervisors",21450,88138.98,0.0,0.0,88138.98,18109.39,12245.3,6814.06,37168.75,125307.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,36073,56314.9,0.0,3918.15,60233.05,11739.46,12376.71,4980.81,29096.98,89330.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,40812,24792.9,2107.99,1599.66,28500.55,6325.28,6221.21,2301.29,14847.78,43348.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,19473,65592.01,16686.3,5701.14,87979.45,13965.26,12424.5,7167.09,33556.85,121536.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,41363,118104.09,0.0,0.0,118104.09,23768.42,12424.5,9359.7,45552.62,163656.71 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,36802,93681.0,1394.48,6136.63,101212.11,19717.71,12424.5,8074.41,40216.62,141428.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,32806,93860.91,0.0,0.0,93860.91,19347.44,12421.52,7665.8,39434.76,133295.67 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,3832,121335.36,0.0,5717.19,127052.55,24589.65,11386.34,9880.39,45856.38,172908.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,37717,19448.6,0.0,2705.73,22154.33,5110.6,4491.93,1815.0,11417.53,33571.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38882,71324.87,0.0,15579.57,86904.44,930.63,0.0,7702.7,8633.33,95537.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,6346,144671.3,43686.05,27263.95,215621.3,29884.92,12424.5,559.08,42868.5,258489.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37842,1763.2,0.0,0.0,1763.2,0.0,764.58,136.51,901.09,2664.29 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36478,51477.0,1236.77,4112.99,56826.76,13253.45,12424.5,4690.74,30368.69,87195.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1931,Senior Parts Storekeeper,36099,59954.2,6517.59,2352.31,68824.1,7757.02,12424.5,5465.47,25646.99,94471.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41462,119461.64,7224.52,3638.87,130325.03,23641.93,12424.5,2042.51,38108.94,168433.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51016,5348.25,0.0,0.0,5348.25,0.0,2257.91,429.61,2687.52,8035.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,39306,82717.07,2020.85,2127.5,86865.42,17048.48,12424.5,6528.82,36001.8,122867.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,22979,119651.9,0.0,0.0,119651.9,24087.12,12376.71,9644.3,46108.13,165760.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22645,77071.05,0.0,1540.0,78611.05,16202.68,12424.5,6458.43,35085.61,113696.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52479,61851.17,9655.39,1696.56,73203.12,17335.32,12185.87,5655.63,35176.82,108379.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39272,482.13,0.0,0.0,482.13,0.0,209.07,37.32,246.39,728.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,36413,89561.14,4138.96,7794.62,101494.72,19416.0,12289.21,1682.78,33387.99,134882.71 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,11980,51140.7,0.0,0.0,51140.7,12265.91,12424.5,4020.04,28710.45,79851.15 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,24352,98284.87,0.0,14039.7,112324.57,22641.88,5579.08,9031.25,37252.21,149576.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35950,113721.46,24679.24,24614.3,163015.0,25290.56,15148.33,2715.43,43154.32,206169.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,25386,117139.21,31732.19,3129.55,152000.95,23170.33,12424.5,2589.92,38184.75,190185.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,12844,62889.43,4272.59,0.0,67162.02,12943.63,12424.5,5395.71,30763.84,97925.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2536,Respiratory Care Practitioner,20840,15685.64,0.0,0.0,15685.64,0.0,0.0,1240.45,1240.45,16926.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,48237,69746.03,0.0,624.0,70370.03,14503.67,12376.71,5582.46,32462.84,102832.87 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,3762,183916.15,0.0,0.0,183916.15,36929.53,12424.5,19243.93,68597.96,252514.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7482,Power Generation Technician 2,53189,26449.76,4848.9,2305.84,33604.5,5110.27,3237.54,2694.51,11042.32,44646.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,7815,76506.92,1033.81,624.0,78164.73,15893.74,12281.15,6181.42,34356.31,112521.04 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,16400,47684.0,0.0,39706.1,87390.1,10461.88,3106.13,6900.17,20468.18,107858.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46598,43570.0,0.0,0.0,43570.0,7899.21,4778.65,3295.87,15973.73,59543.73 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,8300,Correction & Detention,8590,Chief Adult Prob Offcr (SFERS),23903,150978.34,0.0,0.0,150978.34,29370.27,9079.44,8558.4,47008.11,197986.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,22952,3160.0,0.0,39.5,3199.5,825.48,955.74,262.75,2043.97,5243.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,45940,106111.02,314.78,1881.0,108306.8,21348.16,12007.61,8861.86,42217.63,150524.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,41385,60925.99,6006.46,54.0,66986.45,12478.95,7980.41,5449.6,25908.96,92895.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,25990,70245.0,18249.66,9030.18,97524.84,15667.32,12424.5,7947.83,36039.65,133564.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,790,147206.22,0.0,20415.84,167622.06,30298.94,12265.79,7838.98,50403.71,218025.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,18496,79369.69,0.0,1970.0,81339.69,16756.13,12369.22,6607.67,35733.02,117072.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,33234,79683.91,9384.53,10.0,89078.44,16424.21,12418.53,7352.63,36195.37,125273.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,48872,71489.92,0.0,17455.0,88944.92,6264.24,9740.99,7012.09,23017.32,111962.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,47987,4158.0,0.0,0.0,4158.0,773.8,716.79,322.55,1813.14,5971.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3506,129229.05,0.0,10806.32,140035.37,27354.79,11096.03,10050.28,48501.1,188536.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2914,Social Work Supervisor,6994,89210.06,0.0,0.0,89210.06,18383.3,12424.5,7120.26,37928.06,127138.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20934,19095.27,0.0,350.0,19445.27,0.0,0.0,1225.7,1225.7,20670.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,46432,158998.51,5950.47,4115.97,169064.95,31412.42,12424.5,2763.21,46600.13,215665.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,1009,91047.0,0.0,0.0,91047.0,18685.02,12424.5,15294.85,46404.37,137451.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,40678,41335.0,0.0,0.0,41335.0,9914.28,12424.59,3316.25,25655.12,66990.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,43049,11760.0,0.0,0.0,11760.0,2637.76,1911.47,951.06,5500.29,17260.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2859,31356.1,5372.14,420.93,37149.17,7875.19,6115.3,2800.34,16790.83,53940.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2935,"Sr Marriage, Fam & Cld Cnslr",10034,71941.13,3621.16,1094.54,76656.83,15375.11,9163.78,6023.76,30562.65,107219.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48134,17609.35,3306.57,765.29,21681.21,4402.97,5439.0,1675.5,11517.47,33198.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28939,15621.05,1494.09,90.65,17205.79,3932.03,4848.96,1314.68,10095.67,27301.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",41914,10035.0,0.0,0.0,10035.0,0.0,2389.34,778.88,3168.22,13203.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,48650,98865.59,2733.83,2220.8,103820.22,20517.39,12424.5,1667.14,34609.03,138429.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,15909,53724.07,0.0,0.0,53724.07,12110.92,11890.72,4423.64,28425.28,82149.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,51825,130833.51,22068.86,15908.99,168811.36,28901.64,15196.11,2831.48,46929.23,215740.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,31785,47179.2,2609.73,2300.11,52089.04,11311.6,12424.5,4152.64,27888.74,79977.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,2954,71621.57,0.0,5288.56,76910.13,13817.81,8102.81,5821.0,27741.62,104651.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,41371,79722.01,21195.89,1800.0,102717.9,16808.01,12424.51,8270.28,37502.8,140220.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20574,124407.64,0.0,2055.22,126462.86,23014.69,12075.66,9784.44,44874.79,171337.65 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,35803,64511.01,485.5,0.0,64996.51,13295.98,12424.5,5336.92,31057.4,96053.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12842,136640.9,563.23,27120.58,164324.71,32581.13,12096.27,6780.28,51457.68,215782.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,14222,47120.0,0.0,0.0,47120.0,9089.6,7167.98,3637.14,19894.72,67014.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42674,115569.77,0.0,15960.75,131530.52,26364.95,10548.58,9678.68,46592.21,178122.73 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,47522,0.0,0.0,392.21,392.21,0.0,0.0,30.01,30.01,422.22 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,5719,104651.77,1658.08,14140.24,120450.09,23305.99,12340.88,9583.3,45230.17,165680.26 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,46363,413.0,0.0,0.0,413.0,84.75,0.0,31.05,115.8,528.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6272,Senior Housing Inspector,41454,124338.19,0.0,0.0,124338.19,25023.46,12424.5,9846.28,47294.24,171632.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29827,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2414.98,12868.33,44168.33 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,7076,75927.06,994.63,1674.22,78595.91,15777.43,12424.5,6499.8,34701.73,113297.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,8028,67261.01,0.0,624.0,67885.01,13991.51,12424.5,5576.19,31992.2,99877.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,36488,61616.01,7625.01,35304.1,104545.12,15076.3,7645.85,8274.11,30996.26,135541.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,31799,46464.78,657.98,2392.6,49515.36,11123.76,12301.93,3997.36,27423.05,76938.41 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,33444,78963.09,0.0,504.0,79467.09,16376.26,12424.5,6316.67,35117.43,114584.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,30419,69165.07,0.0,1844.34,71009.41,14374.6,11650.54,6482.37,32507.51,103516.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,33989,31445.95,172.83,683.35,32302.13,7945.75,7608.58,2635.18,18189.51,50491.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33988,33230.99,4046.43,1135.69,38413.11,8828.97,10372.9,2930.11,22131.98,60545.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,31192,59567.52,135.07,10885.81,70588.4,14255.6,9044.38,5647.21,28947.19,99535.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8682,31162.65,0.0,1038.77,32201.42,4525.75,0.0,6849.25,11375.0,43576.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,46008,89028.04,0.0,0.0,89028.04,18349.05,12424.51,7165.32,37938.88,126966.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,21750,70092.73,477.6,7971.59,78541.92,15511.53,11518.35,6451.7,33481.58,112023.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,22607,108038.0,31581.4,7996.51,147615.91,22299.87,12424.5,10244.17,44968.54,192584.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0402,Deputy Chief 3,20764,269898.91,0.0,6218.02,276116.93,54251.94,12424.5,13478.49,80154.93,356271.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,2172,16533.0,268.09,0.0,16801.09,3076.8,3345.05,1322.73,7744.58,24545.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16045,58089.89,9005.72,2673.08,69768.69,16586.32,11426.59,5390.67,33403.58,103172.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,26321,11406.41,0.0,279.02,11685.43,534.78,2383.35,947.22,3865.35,15550.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46149,15714.62,0.0,284.62,15999.24,4373.62,4014.07,1194.17,9581.86,25581.1 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,13704,88592.03,0.0,0.0,88592.03,18259.5,12424.5,6693.81,37377.81,125969.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33023,142595.1,607.41,22834.82,166037.33,28217.36,12424.5,2829.09,43470.95,209508.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,41062,53789.5,938.83,3297.79,58026.12,11180.33,11818.27,4436.0,27434.6,85460.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,3856,65452.15,0.0,1888.0,67340.15,13885.02,12424.5,5370.97,31680.49,99020.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,46502,146744.02,0.0,0.0,146744.02,29532.36,12424.5,10289.53,52246.39,198990.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,31363,7629.94,0.0,7039.23,14669.17,1742.96,1164.14,1217.54,4124.64,18793.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,34171,31584.0,5011.48,12041.43,48636.91,5607.96,2867.19,800.79,9275.94,57912.85 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,17406,54913.1,54.85,568.65,55536.6,11163.18,8833.76,4606.86,24603.8,80140.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42912,44160.35,5902.1,944.93,51007.38,11667.89,13011.74,3864.83,28544.46,79551.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45924,137150.67,1441.72,25880.53,164472.92,0.0,10324.35,9981.25,20305.6,184778.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,17502,57658.66,2901.62,13703.88,74264.16,14247.17,7371.07,6060.16,27678.4,101942.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38684,66475.07,5314.08,771.03,72560.18,15307.46,13096.74,5876.36,34280.56,106840.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11031,813.45,0.0,0.0,813.45,2954.01,0.0,1159.62,4113.63,4927.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,13625,12769.34,0.0,331.44,13100.78,0.0,4250.02,1015.39,5265.41,18366.19 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),49431,184289.01,0.0,1500.0,185789.01,37388.83,12424.5,10989.91,60803.24,246592.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,1062,60799.56,1078.94,2963.27,64841.77,12865.14,11452.76,5110.58,29428.48,94270.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,51213,38333.77,0.0,364.14,38697.91,8977.65,9198.91,2956.0,21132.56,59830.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,16699,73795.01,0.0,0.0,73795.01,15156.11,11946.64,5650.52,32753.27,106548.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,8933,69746.05,2536.86,30.0,72312.91,14380.91,12424.5,5855.23,32660.64,104973.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37253,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.23,5147.57,17667.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1777,Media/Security Sys Spec,9548,31062.83,0.0,0.0,31062.83,0.0,4933.97,2407.74,7341.71,38404.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,35063,44433.13,0.0,6735.01,51168.14,11524.86,10088.93,4177.71,25791.5,76959.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,22834,107842.01,7483.37,0.0,115325.38,22226.52,12424.5,9428.92,44079.94,159405.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24583,7518.98,0.0,682.76,8201.74,-0.01,0.0,1259.77,1259.76,9461.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,15172,142041.09,1672.02,22503.26,166216.37,28104.74,12424.5,2832.3,43361.54,209577.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,24109,93580.01,3600.62,212.5,97393.13,19406.15,11946.67,7992.21,39345.03,136738.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",17636,131493.92,9188.49,17622.87,158305.28,29174.87,15186.57,2642.61,47004.05,205309.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,39645,37985.68,0.0,798.93,38784.61,7953.82,7642.89,3122.51,18719.22,57503.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52061,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3376.05,18201.9,61969.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,33268,117129.69,4384.0,7488.76,129002.45,23205.2,12424.5,2196.23,37825.93,166828.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",39974,180314.38,49424.41,32154.81,261893.6,41767.21,15196.12,4394.53,61357.86,323251.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14955,117140.99,17391.86,9931.06,144463.91,23624.21,12424.5,2460.02,38508.73,182972.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,3475,61735.01,312.15,624.0,62671.16,12859.45,12424.5,4906.48,30190.43,92861.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27755,26324.23,2225.09,1050.86,29600.18,6863.76,8193.66,2232.25,17289.67,46889.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,8595,55874.37,590.36,409.25,56873.98,7627.1,8762.79,4559.88,20949.77,77823.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30767,25454.78,0.0,3681.99,29136.77,13592.83,0.0,756.37,14349.2,43485.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,41205,18583.25,1404.68,859.95,20847.88,0.0,4420.24,1614.07,6034.31,26882.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,9260,76401.38,0.0,510.9,76912.28,15842.46,10172.56,6392.02,32407.04,109319.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,5175,4885.2,0.0,0.0,4885.2,909.14,1099.09,375.2,2383.43,7268.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50807,2617.25,0.0,299.96,2917.21,0.0,1134.93,225.85,1360.78,4277.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33655,77537.08,45731.81,8045.92,131314.81,17032.82,15196.12,2231.71,34460.65,165775.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24171,57297.95,7921.22,629.2,65848.37,14016.07,11466.86,4933.8,30416.73,96265.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7482,Power Generation Technician 2,22967,101983.89,3493.5,12556.61,118034.0,21892.96,12090.0,9001.36,42984.32,161018.32 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,7479,56345.51,0.0,0.0,56345.51,12527.68,11946.64,4592.01,29066.33,85411.84 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6124,Pr Environmental Hlth Insp,12204,124397.52,0.0,130.5,124528.02,25031.95,12430.47,9847.64,47310.06,171838.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12671,40024.95,418.66,1828.89,42272.5,12166.44,7959.69,3155.03,23281.16,65553.66 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,26198,44172.45,0.0,0.0,44172.45,0.0,4602.44,3424.13,8026.57,52199.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41409,69071.89,0.0,15220.28,84292.17,15796.07,5791.73,5746.17,27333.97,111626.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,4823,12598.5,0.0,937.38,13535.88,0.0,1672.53,1049.25,2721.78,16257.66 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51799,19442.0,0.0,0.0,19442.0,4275.3,4778.65,1556.78,10610.73,30052.73 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,32328,74412.05,0.0,3000.0,77412.05,15345.94,12424.5,6433.19,34203.63,111615.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,6414,45624.0,17590.54,2899.6,66114.14,10943.04,12424.5,5027.09,28394.63,94508.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50199,60992.1,0.0,292.84,61284.94,7440.23,5913.1,3076.75,16430.08,77715.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1364,5950.8,0.0,874.02,6824.82,1535.29,2580.47,557.45,4673.21,11498.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,30417,84335.26,15949.13,1280.0,101564.39,17668.17,12273.26,8361.75,38303.18,139867.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,3022,75354.59,0.0,500.0,75854.59,15581.19,12406.58,5918.64,33906.41,109761.0 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",32119,112273.99,0.0,0.0,112273.99,22580.79,12424.5,16497.53,51502.82,163776.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52211,137524.7,0.0,9959.2,147483.9,28962.31,12176.67,10240.13,51379.11,198863.01 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,33933,86850.01,0.0,1200.0,88050.01,18146.56,12424.5,7085.03,37656.09,125706.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,13085,161810.27,0.0,0.0,161810.27,32501.64,12424.5,17818.46,62744.6,224554.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33004,56804.74,0.0,5349.85,62154.59,12868.04,11301.52,5638.2,29807.76,91962.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29277,15793.2,0.0,2997.97,18791.17,307.89,0.0,2551.33,2859.22,21650.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,7866,78204.05,0.0,2754.0,80958.05,16684.59,12424.5,6452.96,35562.05,116520.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,14429,59292.1,3807.37,227.63,63327.1,12257.55,12424.5,5106.07,29788.12,93115.22 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,4385,58147.61,1051.22,5862.46,65061.29,13917.71,12196.38,5007.92,31122.01,96183.3 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,330,94107.05,17641.96,5387.04,117136.05,19640.71,12424.5,9619.59,41684.8,158820.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",2407,150219.93,26264.83,27743.93,204228.69,34964.88,15196.12,3648.21,53809.21,258037.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,35021,101565.82,6351.37,11120.62,119037.81,21008.61,12424.5,1987.58,35420.69,154458.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",37695,97989.0,29122.29,14510.13,141621.42,22326.31,12424.5,10088.26,44839.07,186460.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,25298,77248.09,0.0,0.0,77248.09,15921.34,12424.5,6267.75,34613.59,111861.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,34396,20415.0,9026.09,2629.1,32070.19,4700.63,4778.64,2537.22,12016.49,44086.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,38332,158362.36,4630.52,12363.19,175356.07,31276.35,12424.5,2980.93,46681.78,222037.85 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8236,Chief Fire Alarm Dispatcher,27634,93681.0,0.0,4116.57,97797.57,19593.12,12424.5,8052.57,40070.19,137867.76 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,20013,169980.45,0.0,0.0,169980.45,34201.98,12424.5,17862.56,64489.04,234469.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,17195,51030.04,0.0,0.0,51030.04,10977.64,8601.58,4166.65,23745.87,74775.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7249,Automotive Mechanic Sprv 1,39693,109058.01,29316.37,7410.45,145784.83,22611.52,12424.5,10211.34,45247.36,191032.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,49488,61428.01,99.06,1818.08,63345.15,12989.2,12424.5,5107.94,30521.64,93866.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,41033,53508.12,150.08,1239.8,54898.0,11363.0,11134.27,4394.5,26891.77,81789.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,15790,0.0,0.0,152.05,152.05,0.0,17.12,11.63,28.75,180.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44371,93121.11,1178.45,4763.89,99063.45,19329.2,9872.52,7920.71,37122.43,136185.88 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,44152,113623.06,0.0,0.0,113623.06,22866.77,12424.5,8959.96,44251.23,157874.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,12549,23633.2,37.41,2871.24,26541.85,2086.24,6355.62,2065.65,10507.51,37049.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8109,5265.35,0.0,1127.78,6393.13,7620.71,421.54,42.6,8084.85,14477.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,33659,116976.04,0.0,0.0,116976.04,23541.49,12424.43,9366.91,45332.83,162308.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,3170,40025.78,0.0,0.0,40025.78,5680.7,12030.26,3206.34,20917.3,60943.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52002,30034.82,3808.46,475.77,34319.05,7764.28,9362.15,2618.09,19744.52,54063.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45375,97761.65,6656.54,14879.13,119297.32,27387.1,12424.5,2031.21,41842.81,161140.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,5003,86434.07,0.0,0.0,86434.07,17819.84,11758.48,7073.81,36652.13,123086.2 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,1368,175869.54,0.0,4275.0,180144.54,35276.05,11655.73,10674.63,57606.41,237750.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,42510,85928.0,0.0,1838.48,87766.48,17150.66,8601.58,7187.46,32939.7,120706.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,45078,20515.51,39.66,360.0,20915.17,5385.88,4635.3,1707.21,11728.39,32643.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3243,58953.99,4465.48,5795.02,69214.49,11491.54,6437.44,5818.23,23747.21,92961.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,42937,104354.08,3339.85,1519.88,109213.81,21515.44,12424.5,8732.49,42672.43,151886.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,4076,135552.56,282.65,15591.13,151426.34,36762.76,12340.81,2401.76,51505.33,202931.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19958,112159.76,25366.74,18877.03,156403.53,24822.82,15052.76,2610.37,42485.95,198889.48 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,8003,99738.78,0.0,0.0,99738.78,20563.15,10029.19,19548.31,50140.65,149879.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21493,44626.85,1197.63,1181.54,47006.02,11858.41,13153.97,3508.89,28521.27,75527.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30171,55869.93,5775.43,4556.15,66201.51,16747.43,11009.3,4969.07,32725.8,98927.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31360,20825.59,2601.25,398.9,23825.74,5140.22,6454.52,1697.2,13291.94,37117.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1326,Customer Service Agent Supv,15065,83528.01,6013.46,5887.72,95429.19,17655.48,12424.5,7698.53,37778.51,133207.7 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,30331,10348.5,1251.15,0.0,11599.65,0.0,2858.24,900.31,3758.55,15358.2 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0891,Mayoral Staff XI,5672,71372.0,0.0,0.0,71372.0,15241.72,9079.44,13583.36,37904.52,109276.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,15694,73176.2,0.0,0.0,73176.2,15058.3,12424.5,5890.76,33373.56,106549.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36046,67295.75,18199.59,5736.26,91231.6,20016.37,13263.76,6916.49,40196.62,131428.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,18669,64656.8,0.0,0.0,64656.8,13319.24,11946.64,5203.67,30469.55,95126.35 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,35588,59499.1,0.0,3943.99,63443.09,13054.05,6546.76,5164.23,24765.04,88208.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,50895,3177.62,0.0,142.33,3319.95,0.0,984.1,257.12,1241.22,4561.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36384,10647.44,0.0,0.0,10647.44,0.0,4554.65,856.77,5411.42,16058.86 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,30676,4583.7,0.0,77.61,4661.31,0.0,0.0,368.24,368.24,5029.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,35732,85004.0,24590.42,8779.71,118374.13,18780.55,12424.5,9652.15,40857.2,159231.33 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,20655,74355.99,0.0,496.34,74852.33,15411.54,12424.5,6023.82,33859.86,108712.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6884,4907.55,0.0,964.22,5871.77,101.35,0.0,299.63,400.98,6272.75 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,9849,40301.96,3592.85,2004.6,45899.41,9789.82,12269.2,3712.99,25772.01,71671.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,6827,56857.02,0.0,0.0,56857.02,11778.54,11086.48,4592.45,27457.47,84314.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",31527,46795.58,0.0,3423.03,50218.61,10090.37,4266.74,8787.89,23145.0,73363.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3550,49011.92,8137.78,3237.58,60387.28,14800.03,9466.69,3553.82,27820.54,88207.82 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,15509,72145.36,0.0,3183.06,75328.42,15517.82,12329.41,5945.17,33792.4,109120.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43694,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2412.83,12866.18,44166.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,31934,139002.0,0.0,4503.98,143505.98,27479.2,12424.5,1599.73,41503.43,185009.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,23529,115323.0,12069.15,31189.68,158581.83,23345.24,12424.5,10394.99,46164.73,204746.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,44160,2841.0,0.0,0.0,2841.0,624.74,477.86,220.33,1322.93,4163.93 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,33195,85004.17,28373.25,5134.36,118511.78,17652.34,12424.5,9439.66,39516.5,158028.28 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,37105,87854.12,0.0,3790.68,91644.8,18238.04,12362.32,7616.26,38216.62,129861.42 +Calendar,2015,4,Community Health,DPH,Public Health,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,44299,86663.0,2385.39,3508.48,92556.87,18554.49,12424.5,7362.43,38341.42,130898.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,36905,59146.24,0.0,1560.0,60706.24,13521.74,12383.94,4615.79,30521.47,91227.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,35521,51415.75,0.0,1117.85,52533.6,12593.55,12301.99,4302.01,29197.55,81731.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,30471,54209.27,3821.74,2819.31,60850.32,12446.7,12195.3,4895.39,29537.39,90387.71 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,49462,25154.01,0.0,312.0,25466.01,6108.05,6212.25,1697.44,14017.74,39483.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,3300,5578.23,0.0,0.0,5578.23,0.0,2013.01,453.62,2466.63,8044.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35254,87026.09,1007.82,6740.96,94774.87,0.0,7603.92,7351.02,14954.94,109729.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20107,9674.58,0.0,0.0,9674.58,0.0,4134.13,781.27,4915.4,14589.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47543,3350.38,0.0,0.0,3350.38,0.0,1633.7,259.89,1893.59,5243.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18236,70229.51,17592.36,8565.93,96387.8,21640.69,13842.27,7338.17,42821.13,139208.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38444,56531.0,0.0,8623.02,65154.02,12695.82,12424.5,5325.09,30445.41,95599.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,30693,15975.0,0.0,0.0,15975.0,2972.95,3345.06,1311.61,7629.62,23604.62 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8228,Museum Sec Supv,51659,68885.42,20217.56,3026.92,92129.9,14203.92,12184.08,7446.61,33834.61,125964.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,12403,17893.74,47.14,947.79,18888.67,4013.56,3401.26,1430.81,8845.63,27734.3 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,5108,59229.0,4215.19,1120.61,64564.8,12336.08,12424.5,5040.17,29800.75,94365.55 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,15760,5142.0,0.0,0.0,5142.0,1153.36,955.73,360.82,2469.91,7611.91 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,26255,163707.06,0.0,0.0,163707.06,32846.9,12424.5,17790.65,63062.05,226769.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,52425,28954.94,0.0,0.0,28954.94,5249.53,2849.28,2250.37,10349.18,39304.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37248,66102.01,0.0,110.7,66212.71,13646.16,12424.5,5478.6,31549.26,97761.97 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,335,2459.0,0.0,0.0,2459.0,457.62,477.86,190.86,1126.34,3585.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39252,8469.81,0.0,110.47,8580.28,0.0,2797.01,665.97,3462.98,12043.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2154,6915.06,0.0,0.0,6915.06,0.0,2998.6,554.04,3552.64,10467.7 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2819,Assistant Health Educator,25043,81116.06,271.34,1060.0,82447.4,16936.51,12424.5,6697.88,36058.89,118506.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5440,13871.52,0.0,234.81,14106.33,0.0,4614.38,1093.43,5707.81,19814.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",24111,1354.8,0.0,0.0,1354.8,0.0,286.72,104.89,391.61,1746.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51349,9154.57,0.0,0.0,9154.57,0.0,3928.06,734.43,4662.49,13817.06 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,51214,17282.27,0.0,0.0,17282.27,3876.42,2416.21,1340.48,7633.11,24915.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21607,47697.32,0.0,1298.6,48995.92,13136.14,0.0,6394.98,19531.12,68527.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,39393,82717.01,9379.05,4498.2,96594.26,17177.08,12424.5,7435.39,37036.97,133631.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,25887,5172.0,0.0,0.0,5172.0,0.0,1146.89,401.43,1548.32,6720.32 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,47192,7017.29,0.0,174.16,7191.45,1554.46,2078.71,578.72,4211.89,11403.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,44353,97424.07,0.0,1400.0,98824.07,20366.78,12424.5,8143.62,40934.9,139758.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,39536,1199.9,0.0,0.0,1199.9,0.0,155.31,93.02,248.33,1448.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26026,31960.09,10126.44,574.96,42661.49,8045.81,6232.38,3303.02,17581.21,60242.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,10818,80957.63,4015.41,4462.85,89435.89,16527.28,12424.5,3362.54,32314.32,121750.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52664,4963.88,1929.75,42.16,6935.79,0.0,1912.94,537.99,2450.93,9386.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,15714,36550.96,0.0,1544.65,38095.61,7779.62,5918.37,3192.05,16890.04,54985.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,46559,97424.0,19903.67,4214.0,121541.67,20927.54,12424.51,9801.62,43153.67,164695.34 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",41481,1196.0,0.0,0.0,1196.0,0.0,71.44,92.72,164.16,1360.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,36198,74031.08,0.0,0.0,74031.08,15054.34,10919.22,5868.25,31841.81,105872.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,32911,63887.09,0.0,624.0,64511.09,13296.02,12424.5,5302.97,31023.49,95534.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,17327,17254.55,0.0,0.0,17254.55,3794.3,5723.22,1401.18,10918.7,28173.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,9951,131146.75,4146.87,12322.5,147616.12,26736.75,11973.53,9317.74,48028.02,195644.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,40.0,"Roofers and Waterproofers, Local 40",7200,Supervisory-Labor & Trade,9343,Roofer,783,9579.0,0.0,0.0,9579.0,0.0,1433.58,743.11,2176.69,11755.69 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,28913,66610.0,0.0,0.0,66610.0,13711.01,12424.5,1106.46,27241.97,93851.97 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,4872,43632.6,0.0,3010.48,46643.08,9786.83,5973.32,3729.91,19490.06,66133.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8139,Industrial Injury Investigator,35912,67276.33,0.0,0.0,67276.33,13849.54,12424.5,5400.12,31674.16,98950.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,31321,92001.3,8370.14,7624.57,107996.01,19654.27,12424.5,8635.04,40713.81,148709.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21752,9390.93,0.0,0.0,9390.93,0.0,2335.57,727.98,3063.55,12454.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,34442,73970.4,0.0,200.0,74170.4,13017.93,10805.73,5851.87,29675.53,103845.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,43737,138635.29,69515.38,28770.88,236921.55,27395.36,12424.5,4031.89,43851.75,280773.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,453,82816.0,0.0,0.0,82816.0,17716.2,7645.86,6570.38,31932.44,114748.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,45378,84973.0,0.0,824.0,85797.0,17641.99,12424.5,6990.02,37056.51,122853.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41207,630.8,0.0,0.0,630.8,0.0,47.79,42.61,90.4,721.2 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,48336,60248.02,10.88,744.0,61002.9,12573.05,12424.5,4804.36,29801.91,90804.81 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,45052,100664.49,0.0,0.0,100664.49,20716.05,12424.5,16132.98,49273.53,149938.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",43471,2609.1,0.0,0.0,2609.1,1175.98,621.23,215.78,2012.99,4622.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,7805,123324.74,0.0,0.0,123324.74,24172.54,12759.01,8967.75,45899.3,169224.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,40720,2539.0,0.0,0.0,2539.0,472.51,477.86,197.07,1147.44,3686.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,32472,175113.02,0.0,250.0,175363.02,35123.44,11976.44,10673.16,57773.04,233136.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,7905,8826.24,493.99,216.0,9536.23,2028.17,1636.66,757.39,4422.22,13958.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34873,63245.56,17344.62,6812.89,87403.07,19339.23,12479.77,6613.05,38432.05,125835.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9141,Transit Manager 2,44128,121844.72,0.0,3578.23,125422.95,24489.22,12424.5,9874.41,46788.13,172211.08 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,51252,62976.46,885.09,2102.97,65964.52,13109.99,12399.77,5208.12,30717.88,96682.4 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,24501,58664.02,0.0,0.0,58664.02,11952.71,10990.9,3886.07,26829.68,85493.7 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",32522,67346.95,9206.38,2361.25,78914.58,15863.19,12058.93,1589.87,29511.99,108426.57 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,51452,62915.09,924.37,0.0,63839.46,12984.11,12387.47,5291.73,30663.31,94502.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,44275,20552.5,0.0,1556.52,22109.02,4538.23,0.0,1726.74,6264.97,28373.99 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,33695,208032.0,0.0,5723.14,213755.14,43018.44,12424.5,11461.56,66904.5,280659.64 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,42424,1813.21,668.8,119.2,2601.21,0.0,0.0,206.02,206.02,2807.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,3511,33821.01,542.86,2459.64,36823.51,7841.62,8601.58,2888.52,19331.72,56155.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,23816,148684.27,0.0,0.0,148684.27,29822.58,11976.98,10157.16,51956.72,200640.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,6386,82244.0,0.0,1100.0,83344.0,17400.29,10990.9,6788.87,35180.06,118524.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43697,25172.07,4466.04,588.19,30226.3,6813.49,7945.89,2303.61,17062.99,47289.29 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),31275,168636.42,0.0,1500.0,170136.42,34209.76,12424.5,10731.6,57365.86,227502.28 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,52728,3220.34,0.0,0.0,3220.34,0.0,194.13,249.32,443.45,3663.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,44202,31515.3,5991.38,7851.21,45357.89,7681.06,4635.3,3603.83,15920.19,61278.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,52478,71311.01,1786.41,624.0,73721.42,14826.41,12424.5,5787.95,33038.86,106760.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers Int, Local 261",3400,Agriculture & Horticulture,3408,Apprentice Arborist Tech I,20426,2340.8,125.4,0.0,2466.2,603.93,669.0,203.73,1476.66,3942.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42257,98830.81,19455.17,11250.94,129536.92,20518.11,12424.5,2160.68,35103.29,164640.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",38800,1200.0,0.0,0.0,1200.0,0.0,0.0,94.92,94.92,1294.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,3005,46908.0,5173.33,3700.17,55781.5,10127.34,4300.79,945.54,15373.67,71155.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,27795,48918.3,0.0,0.0,48918.3,0.0,4838.38,3924.12,8762.5,57680.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24539,68499.04,41300.14,8815.4,118614.58,21235.24,13499.46,9083.24,43817.94,162432.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1032,IS Trainer-Journey,9625,86995.2,0.0,0.0,86995.2,17941.4,12322.95,7143.85,37408.2,124403.4 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,36268,45548.54,964.07,7116.05,53628.66,11212.39,5988.01,4448.49,21648.89,75277.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,37375,48506.15,301.0,250.0,49057.15,10020.5,9595.18,3448.34,23064.02,72121.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11691,97757.2,16859.18,17518.58,132134.96,28032.85,12424.5,2199.45,42656.8,174791.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,41458,4848.73,0.0,86.38,4935.11,0.0,1609.81,335.6,1945.41,6880.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,460,136419.25,3902.82,8332.23,148654.3,26994.59,12424.5,2521.91,41941.0,190595.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,15339,1743.25,0.0,110.1,1853.35,0.0,453.98,143.85,597.83,2451.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,6691,145835.74,0.0,4776.76,150612.5,30317.1,12152.71,10272.88,52742.69,203355.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,16116,127129.1,0.0,0.0,127129.1,25584.76,12424.5,22810.31,60819.57,187948.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15750,56531.0,0.0,1975.95,58506.95,12649.07,12424.5,4751.76,29825.33,88332.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,22308,225.0,0.0,0.0,225.0,0.0,53.76,17.44,71.2,296.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6564,8085.3,0.0,0.0,8085.3,1666.58,1242.45,623.81,3532.84,11618.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,31457,136071.06,0.0,5541.88,141612.94,28444.81,12424.5,10128.76,50998.07,192611.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4367,47124.3,1332.45,1933.95,50390.7,11304.19,12424.5,4069.32,27798.01,78188.71 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,45990,16026.4,0.0,0.0,16026.4,2905.58,1051.3,1243.9,5200.78,21227.18 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,12232,104064.82,0.0,0.0,104064.82,21459.81,12424.5,8300.22,42184.53,146249.35 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,2229,72699.07,0.0,0.0,72699.07,14983.62,12424.5,5355.79,32763.91,105462.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,32778,67261.0,0.0,624.0,67885.0,13991.51,12424.5,5533.38,31949.39,99834.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2478,113222.98,11941.16,21026.53,146190.67,25525.39,15196.12,2434.64,43156.15,189346.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",10721,131577.1,69876.43,17595.45,219048.98,29428.96,15196.12,3847.32,48472.4,267521.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,2808,8540.0,0.0,64.8,8604.8,1601.34,1911.47,685.41,4198.22,12803.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,45787,59404.23,0.0,0.0,59404.23,12194.28,10399.55,4484.5,27078.33,86482.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,47476,41492.7,3742.35,2369.58,47604.63,10224.51,10741.52,3819.83,24785.86,72390.49 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,18804,90669.99,0.0,0.0,90669.99,18666.64,12424.5,7398.11,38489.25,129159.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46078,107037.94,30892.6,14755.66,152686.2,23613.21,13190.75,2174.78,38978.74,191664.94 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,24427,113672.01,0.0,11367.2,125039.21,25179.91,12424.5,9907.39,47511.8,172551.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,35369,72153.01,25696.88,2288.07,100137.96,14880.55,12424.51,8086.75,35391.81,135529.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,9771,67261.04,0.0,0.0,67261.04,13862.82,12424.5,5499.49,31786.81,99047.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11276,65932.23,21098.36,1972.72,89003.31,18584.37,12991.61,6951.05,38527.03,127530.34 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",48916,69153.61,18019.19,3244.73,90417.53,16506.31,12376.71,1233.34,30116.36,120533.89 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,42079,6128.1,0.0,0.0,6128.1,1649.08,358.4,852.52,2860.0,8988.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44568,97763.2,2095.6,8559.38,108418.18,25859.12,12424.5,1823.92,40107.54,148525.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",33654,131564.8,71781.04,21352.82,224698.66,30008.49,15196.12,3981.28,49185.89,273884.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20623,56164.05,0.0,9360.68,65524.73,6565.99,4228.45,2214.14,13008.58,78533.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,33431,136147.7,17007.23,3354.64,156509.57,26926.68,12424.5,404.64,39755.82,196265.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",26398,1806.3,0.0,0.0,1806.3,466.03,430.07,139.85,1035.95,2842.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,43142,52662.8,0.0,14441.43,67104.23,11812.28,6546.76,5449.61,23808.65,90912.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,40322,67500.06,0.0,0.0,67500.06,12237.79,5734.39,4336.08,22308.26,89808.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16648,560.97,0.0,10824.49,11385.46,125.83,0.0,872.5,998.33,12383.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,22457,1386.5,0.0,0.0,1386.5,0.0,280.75,107.34,388.09,1774.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33099,9236.4,0.0,55.98,9292.38,3.75,812.37,674.31,1490.43,10782.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31876,67929.4,10727.59,3142.8,81799.79,19468.96,13385.18,6258.56,39112.7,120912.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,10101,54124.02,0.0,0.0,54124.02,12110.45,12424.5,4402.52,28937.47,83061.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,7343,53333.32,2132.05,870.63,56336.0,12110.26,12424.5,4659.56,29194.32,85530.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,29548,85937.01,0.0,0.0,85937.01,17679.8,12424.53,7011.94,37116.27,123053.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,14858,37321.5,0.0,738.75,38060.25,8415.01,6642.33,3140.82,18198.16,56258.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19505,66174.63,502.91,8838.37,75515.91,14969.8,11709.08,5971.72,32650.6,108166.51 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,26506,109575.0,0.0,4141.35,113716.35,22326.06,12424.51,9287.58,44038.15,157754.5 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,35883,16944.2,0.0,0.0,16944.2,0.0,4683.08,1359.32,6042.4,22986.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,46522,75819.92,3963.95,0.0,79783.87,15644.99,12281.18,6564.35,34490.52,114274.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19252,50287.0,8742.45,5090.16,64119.61,11270.97,11086.48,5226.86,27584.31,91703.92 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,13018,198699.88,635.62,49395.06,248730.56,45962.82,11176.07,11906.55,69045.44,317776.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32240,91747.62,47376.09,11709.24,150832.95,18716.99,9557.3,2534.3,30808.59,181641.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10298,53885.59,0.0,0.0,53885.59,10737.11,9006.21,4223.43,23966.75,77852.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,44509,70073.73,0.0,11462.08,81535.81,15043.86,10339.15,6553.49,31936.5,113472.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,22781,79722.03,2949.69,301.5,82973.22,16495.36,12424.49,6865.41,35785.26,118758.48 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,36521,58076.35,0.0,0.0,58076.35,4270.8,9790.27,4526.47,18587.54,76663.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7406,6963.27,0.0,0.0,6963.27,0.0,3019.52,561.51,3581.03,10544.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21053,119455.26,30863.72,7631.75,157950.73,23664.87,12424.5,2646.16,38735.53,196686.26 +Calendar,2015,4,Community Health,DPH,Public Health,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,25341,100761.01,14790.16,1677.12,117228.29,20820.45,12424.5,9221.85,42466.8,159695.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,31000,70312.82,0.0,0.0,70312.82,14471.21,12424.51,5510.17,32405.89,102718.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,51007,15649.35,0.0,0.0,15649.35,4037.51,5178.87,1283.12,10499.5,26148.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,17536,59118.51,0.0,4456.58,63575.09,13057.14,7586.12,5264.63,25907.89,89482.98 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,30499,1119.13,0.0,0.0,1119.13,0.0,418.14,86.86,505.0,1624.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,1115,76728.0,0.0,0.0,76728.0,15813.98,12424.5,6364.45,34602.93,111330.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,46862,12350.34,0.0,0.0,12350.34,2715.86,3960.32,957.71,7633.89,19984.23 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50379,19442.0,0.0,0.0,19442.0,4275.3,4778.65,1558.42,10612.37,30054.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44764,56531.0,0.0,1631.1,58162.1,12680.14,12424.5,4673.18,29777.82,87939.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,40808,45220.47,1613.81,1046.85,47881.13,9430.11,8976.46,3970.41,22376.98,70258.11 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2453,Supervising Pharmacist,9680,128061.9,0.0,1751.85,129813.75,26057.01,10990.9,9722.68,46770.59,176584.34 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,27464,12941.65,0.0,0.0,12941.65,0.0,2955.31,1003.39,3958.7,16900.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,9421,296.25,0.0,0.0,296.25,76.43,89.6,25.3,191.33,487.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,21821,57484.43,0.0,0.0,57484.43,12858.97,12424.5,4675.81,29959.28,87443.71 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,36781,113568.72,2936.83,0.0,116505.55,22854.85,12418.53,9391.02,44664.4,161169.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24875,908.31,269.65,0.0,1177.96,257.05,286.72,91.2,634.97,1812.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,27512,81776.04,0.0,2794.0,84570.04,17420.24,12424.51,6909.57,36754.32,121324.36 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,18792,106605.0,0.0,0.0,106605.0,21971.81,12424.5,9159.62,43555.93,150160.93 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,16639,61735.0,0.0,734.0,62469.0,12877.29,12424.5,5759.98,31061.77,93530.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31155,3662.75,0.0,0.0,3662.75,0.0,1786.02,284.07,2070.09,5732.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,19336,108375.09,12655.08,21216.1,142246.27,31515.68,12424.5,2310.16,46250.34,188496.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,25845,31408.0,0.0,0.0,31408.0,0.0,5017.58,1614.42,6632.0,38040.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",14372,8755.54,0.0,0.0,8755.54,0.0,2084.69,679.18,2763.87,11519.41 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,10312,75927.02,832.27,987.96,77747.25,15782.08,12424.5,6030.42,34237.0,111984.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,10493,65585.43,0.0,1240.0,66825.43,13730.63,12423.24,5228.99,31382.86,98208.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,26264,96254.0,0.0,0.0,96254.0,19838.21,12424.51,7860.57,40123.29,136377.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15631,69162.33,28999.54,6075.82,104237.69,20585.09,13627.23,8119.83,42332.15,146569.84 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,6797,96332.0,5643.83,5956.6,107932.43,21080.38,12424.5,8834.21,42339.09,150271.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",41396,131577.12,71696.63,19341.26,222615.01,29652.2,15196.12,3791.28,48639.6,271254.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,50004,7881.0,394.05,0.0,8275.05,1767.72,1433.6,688.3,3889.62,12164.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,21685,137354.45,9051.45,11911.18,158317.08,27141.1,12285.98,2651.23,42078.31,200395.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,50640,58397.73,0.0,0.0,58397.73,11252.06,9443.82,4628.48,25324.36,83722.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",31970,147149.0,0.0,0.0,147149.0,29613.7,12424.5,18347.39,60385.59,207534.59 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,18978,252520.01,0.0,4500.0,257020.01,50802.78,12424.5,12113.42,75340.7,332360.71 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,2317,102019.04,0.0,0.0,102019.04,21026.28,12424.5,8141.81,41592.59,143611.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26227,48006.68,1007.82,7160.97,56175.47,0.0,4166.38,4360.11,8526.49,64701.96 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,34634,3330.1,0.0,0.0,3330.1,746.94,477.86,263.09,1487.89,4817.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,16446,73020.65,0.0,0.0,73020.65,15110.26,9436.36,5912.83,30459.45,103480.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17134,56531.0,0.0,9208.48,65739.48,12809.78,12424.5,5364.6,30598.88,96338.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18973,0.0,0.0,250.0,250.0,0.0,0.0,0.0,0.0,250.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20804,58138.49,14887.34,3645.87,76671.7,16878.84,11451.98,5764.97,34095.79,110767.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,18012,8616.84,0.0,0.0,8616.84,0.0,2741.75,687.67,3429.42,12046.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39951,112159.74,36130.04,18612.04,166901.82,24822.79,15052.76,2799.34,42674.89,209576.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22019,2731.2,0.0,0.0,2731.2,0.0,1146.88,211.99,1358.87,4090.07 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,24917,45594.5,0.0,0.0,45594.5,0.0,6451.18,3666.26,10117.44,55711.94 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1203,Personnel Technician,42637,25137.04,0.0,14417.46,39554.5,5638.23,4300.79,3168.3,13107.32,52661.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49008,101844.94,29559.32,11614.54,143018.8,22570.18,15052.76,2388.17,40011.11,183029.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34922,108739.76,15703.48,18698.61,143141.85,25200.36,15052.76,2307.78,42560.9,185702.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,48541,116976.06,0.0,4290.64,121266.7,24415.69,12424.49,9445.0,46285.18,167551.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",8814,76289.22,14447.61,3128.99,93865.82,16102.93,11507.83,7659.22,35269.98,129135.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,52613,106107.97,4151.25,0.0,110259.22,21501.69,11744.74,8834.84,42081.27,152340.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3885,85825.62,1670.43,4851.37,92347.42,17062.63,8309.18,7391.19,32763.0,125110.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,17280,130728.0,0.0,0.0,130728.0,26273.77,12424.49,10022.44,48720.7,179448.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8345,68053.11,31466.21,1660.93,101180.25,19088.88,13410.4,7703.69,40202.97,141383.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,17700,163.1,0.0,0.0,163.1,0.0,47.79,12.66,60.45,223.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46262,4146.28,0.0,0.0,4146.28,170.59,1797.97,328.48,2297.04,6443.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,1098,117129.7,15237.73,20264.0,152631.43,23205.2,12424.5,2525.15,38154.85,190786.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,36577,87531.02,0.0,0.0,87531.02,18040.63,12424.5,6834.44,37299.57,124830.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),20987,11556.0,541.69,852.54,12950.23,2050.76,955.73,217.58,3224.07,16174.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34159,106214.8,2932.53,9907.06,119054.39,22526.61,9715.01,9340.2,41581.82,160636.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,42625,13105.41,0.0,4.25,13109.66,2882.83,2389.33,1050.94,6323.1,19432.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,9528,139575.07,209.38,15097.02,154881.47,27583.67,12424.5,1858.71,41866.88,196748.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,11256,20513.0,30.16,340.64,20883.8,3843.64,4491.93,1659.12,9994.69,30878.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26659,45762.49,885.06,3460.0,50107.55,11466.58,11919.7,3994.32,27380.6,77488.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,10851,64298.06,0.0,0.0,64298.06,13229.23,12424.51,5230.41,30884.15,95182.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,13181,165116.23,16762.42,15537.47,197416.12,33244.39,12424.5,3312.15,48981.04,246397.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,14755,74165.01,0.0,1624.0,75789.01,15618.92,12424.5,5843.39,33886.81,109675.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,48978,116976.04,0.0,0.0,116976.04,23541.49,12424.51,9572.58,45538.58,162514.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,27546,36943.3,1738.73,136.81,38818.84,6239.49,10465.25,3129.0,19833.74,58652.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,23322,95053.0,4779.18,11005.42,110837.6,21551.56,12424.51,9092.84,43068.91,153906.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22871,65901.24,3573.08,615.62,70089.94,18239.71,12991.54,5134.12,36365.37,106455.31 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,32122,82717.03,5698.27,4664.37,93079.67,17226.29,12424.5,7342.48,36993.27,130072.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8558,99535.82,203.36,13.56,99752.74,0.0,8879.28,7659.9,16539.18,116291.92 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",18812,198139.07,0.0,3493.54,201632.61,40542.07,12424.5,11167.62,64134.19,265766.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1706,Telephone Operator,39575,53713.0,0.0,624.0,54337.0,13032.9,12424.5,4494.23,29951.63,84288.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4253,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7058,113233.6,23917.43,18781.68,155932.71,25036.03,15196.12,2606.16,42838.31,198771.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,42503,70801.31,0.0,0.0,70801.31,14590.05,12218.42,5660.13,32468.6,103269.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7482,Power Generation Technician 2,36657,97336.59,9149.17,13800.13,120285.89,20842.24,11542.3,9179.45,41563.99,161849.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,42494,51071.31,0.0,3322.64,54393.95,12401.0,12343.51,4492.94,29237.45,83631.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36111,119398.0,18230.23,848.24,138476.47,23621.77,12417.7,2144.84,38184.31,176660.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28430,108749.86,11605.57,11261.72,131617.15,23817.19,15052.77,2196.49,41066.45,172683.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52974,7523.98,338.47,27.5,7889.95,1784.54,2267.83,605.35,4657.72,12547.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,48058,116976.11,0.0,0.0,116976.11,23537.22,12424.5,9386.43,45348.15,162324.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,7863,5332.5,0.0,0.0,5332.5,0.0,1290.23,412.83,1703.06,7035.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31673,108925.52,21469.63,10663.34,141058.49,23780.96,15196.12,2290.44,41267.52,182326.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,45249,101887.8,0.0,0.0,101887.8,21083.98,11929.96,8274.52,41288.46,143176.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,10259,2948.5,0.0,0.0,2948.5,648.38,955.72,247.16,1851.26,4799.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,13982,54071.03,0.0,0.0,54071.03,10593.93,7645.85,4466.15,22705.93,76776.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,52327,43841.16,0.0,0.0,43841.16,0.0,0.0,3468.31,3468.31,47309.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,43073,84599.05,0.0,624.0,85223.05,17566.59,12424.5,7003.92,36995.01,122218.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,29414,9740.4,4965.73,2424.94,17131.07,2026.2,1051.3,292.37,3369.87,20500.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15868,3203.38,0.0,0.0,3203.38,0.0,1562.02,248.41,1810.43,5013.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32529,146725.0,76.74,10377.64,157179.38,31336.36,12424.5,5372.19,49133.05,206312.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,20913,79395.07,0.0,2044.0,81439.07,16779.83,12424.51,6302.49,35506.83,116945.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q037,Assistant Inspector 3,14072,137441.84,49869.01,18039.07,205349.92,27135.17,12316.98,3456.91,42909.06,248258.98 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1752,Sr Microphoto/Imaging Tech,11274,52014.57,0.0,11593.53,63608.1,11050.77,10278.47,5239.23,26568.47,90176.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,49849,58841.86,33013.15,10493.48,102348.49,13690.96,11634.77,8096.02,33421.75,135770.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,13089,53584.02,13571.46,2200.65,69356.13,11276.77,12424.5,5581.68,29282.95,98639.08 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,9426,31830.85,0.0,295.2,32126.05,6621.74,5877.74,2375.17,14874.65,47000.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44845,130644.7,0.0,13398.59,144043.29,28844.31,12148.41,10122.61,51115.33,195158.62 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,26231,8717.47,0.0,0.0,8717.47,1912.6,545.54,674.9,3133.04,11850.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",7784,30383.98,0.0,0.0,30383.98,658.41,6409.37,2355.2,9422.98,39806.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,352.0,Municipal Executive Association - Fire,0900,Management,H051,Assistant Deputy Chief 2,40767,231480.7,0.0,19028.45,250509.15,49088.51,12424.5,12922.58,74435.59,324944.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,22714,107416.05,4256.58,2214.0,113886.63,22601.06,12424.5,9168.35,44193.91,158080.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,4841,73648.85,0.0,0.0,73648.85,15274.04,11078.89,6024.42,32377.35,106026.2 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",22680,105082.0,0.0,0.0,105082.0,21657.93,12424.5,8635.73,42718.16,147800.16 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,4142,73370.12,0.0,0.0,73370.12,15088.4,12418.52,13581.48,41088.4,114458.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,48923,67720.7,5731.28,3214.45,76666.43,14515.36,12400.61,1274.87,28190.84,104857.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45379,75058.23,0.0,5155.32,80213.55,15048.3,6691.61,6472.76,28212.67,108426.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,8224,95968.01,0.0,0.0,95968.01,19779.2,12424.49,7961.45,40165.14,136133.15 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,37471,66649.97,60.02,6803.74,73513.73,14701.81,11244.29,6098.55,32044.65,105558.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43781,81091.15,8318.59,7046.09,96455.83,16873.82,12424.5,1606.69,30905.01,127360.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,3951,80408.3,0.0,2429.65,82837.95,17068.24,12424.5,6731.67,36224.41,119062.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,8092,62468.82,32055.37,1312.91,95837.1,13005.75,12424.5,7798.59,33228.84,129065.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32587,42205.51,8527.68,538.05,51271.24,11134.84,8274.48,3960.84,23370.16,74641.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,47723,47506.9,0.0,4073.48,51580.38,10655.84,5822.49,4128.66,20606.99,72187.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,26356,140441.94,29444.53,16405.23,186291.7,29431.64,12424.5,473.39,42329.53,228621.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,604.0,Port Director,9300,Port Operation,9399,Port Director,24079,266651.42,0.0,0.0,266651.42,53603.76,12424.5,29828.1,95856.36,362507.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,4024,58940.02,0.0,0.0,58940.02,12931.42,4778.65,4745.33,22455.4,81395.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36873,7237.75,0.0,0.0,7237.75,1615.7,3136.0,597.73,5349.43,12587.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1058,8816.01,0.0,0.0,8816.01,0.0,3822.92,704.95,4527.87,13343.88 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,31693,99266.3,0.0,0.0,99266.3,20436.92,12424.5,7832.52,40693.94,139960.24 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1767,Media Programming Spec,40681,27768.11,231.14,258.75,28258.0,0.0,5614.92,2190.79,7805.71,36063.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,22483,16928.6,0.0,151.32,17079.92,3561.36,3012.88,1574.67,8148.91,25228.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,26404,53909.34,0.0,0.0,53909.34,12030.85,12266.2,4373.38,28670.43,82579.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,32327,11084.01,0.0,0.0,11084.01,0.0,2743.84,859.32,3603.16,14687.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,37333,59336.43,8858.92,0.0,68195.35,13221.91,12424.5,6056.07,31702.48,99897.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27274,3738.08,0.0,203.16,3941.24,0.01,0.0,12.44,12.45,3953.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,634,80957.63,4902.67,5324.49,91184.79,16556.63,12424.5,3389.16,32370.29,123555.08 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,16721,13616.86,403.31,0.0,14020.17,0.0,3095.68,1087.03,4182.71,18202.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6937,128343.69,698.88,37252.58,166295.15,30119.05,10972.57,6192.27,47283.89,213579.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,12416,23664.5,0.0,0.0,23664.5,5203.86,5734.39,1914.78,12853.03,36517.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50213,119345.49,36485.38,28823.46,184654.33,24092.74,12412.54,2999.93,39505.21,224159.54 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,47290,205167.0,0.0,39020.94,244187.94,45426.18,12424.5,11874.69,69725.37,313913.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52592,64258.02,4761.38,800.09,69819.49,17873.29,12673.65,5333.2,35880.14,105699.63 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,12367,55768.14,0.0,1237.8,57005.94,11722.85,10309.94,4713.53,26746.32,83752.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,36964,41001.2,0.0,0.0,41001.2,9321.34,10943.12,3311.4,23575.86,64577.06 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,5424,116425.36,0.0,0.0,116425.36,23688.73,12424.5,17026.5,53139.73,169565.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",52334,93738.01,5356.13,304.5,99398.64,19319.82,12424.5,7770.67,39514.99,138913.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,51518,0.0,0.0,213.89,213.89,0.0,68.5,16.36,84.86,298.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,39818,67114.8,1140.89,1360.0,69615.69,14116.1,12397.32,5462.5,31975.92,101591.61 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,33911,67349.31,0.0,125.0,67474.31,13865.53,12424.5,5478.45,31768.48,99242.79 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,26330,99628.77,0.0,0.0,99628.77,22726.22,12421.34,1278.76,36426.32,136055.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,13520,27790.0,0.0,15333.59,43123.59,6287.1,4778.65,3394.55,14460.3,57583.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36597,138698.7,828.65,34637.93,174165.28,19688.16,12281.15,4577.55,36546.86,210712.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1071,IS Manager,44082,170237.03,0.0,0.0,170237.03,34260.48,12424.5,18994.52,65679.5,235916.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,7845,6204.0,0.0,2749.28,8953.28,1721.21,955.73,718.97,3395.91,12349.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45164,56531.02,0.0,4751.79,61282.81,12630.8,12424.5,5012.06,30067.36,91350.17 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",1400,"Clerical, Secretarial & Steno",1434,Shelter Service Rep,19056,58651.99,276.62,3655.7,62584.31,12658.24,12424.5,4923.09,30005.83,92590.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,32315,32608.0,0.0,0.0,32608.0,7604.97,9079.44,2576.98,19261.39,51869.39 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,34925,5974.43,0.0,262.8,6237.23,1215.69,394.23,483.75,2093.67,8330.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,39689,15650.01,0.0,0.0,15650.01,4037.7,4778.65,1277.92,10094.27,25744.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,49541,200107.15,0.0,4822.18,204929.33,40264.74,12424.49,3487.14,56176.37,261105.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,7529,25299.85,0.0,0.0,25299.85,972.86,7610.01,1960.98,10543.85,35843.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6267,17439.17,0.0,296.16,17735.33,4940.02,3450.78,1161.94,9552.74,27288.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,21851,55755.03,0.0,0.0,55755.03,11514.49,7126.58,4643.22,23284.29,79039.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,45675,200107.12,0.0,9609.68,209716.8,40264.74,12424.5,3521.47,56210.71,265927.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,33386,116976.08,0.0,0.0,116976.08,23537.22,12424.48,9494.96,45456.66,162432.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19142,68750.16,20176.59,5835.41,94762.16,20421.8,13550.84,7407.31,41379.95,136142.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,3738,102828.62,0.0,67.02,102895.64,21589.33,8704.74,8222.39,38516.46,141412.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,40285,2682.4,0.0,361.79,3044.19,601.66,382.28,263.57,1247.51,4291.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6430,4422.07,0.0,246.09,4668.16,1105.36,0.0,369.41,1474.77,6142.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47485,39371.66,2948.34,1797.74,44117.74,10944.61,11695.22,3092.43,25732.26,69850.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2936,97763.74,749.97,6814.98,105328.69,25435.88,12424.5,1783.08,39643.46,144972.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,37456,77071.01,27408.9,1560.0,106039.91,16204.87,12424.5,8563.33,37192.7,143232.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52531,135771.48,195.04,1321.45,137287.97,27530.86,12397.27,10066.02,49994.15,187282.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18216,69343.15,18942.2,6005.15,94290.5,20621.41,13665.75,7137.98,41425.14,135715.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,25667,53524.26,43.1,563.64,54131.0,11083.76,11222.91,4504.34,26811.01,80942.01 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,38315,16537.67,0.0,0.0,16537.67,0.0,6140.57,1326.2,7466.77,24004.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23426,7670.48,0.0,228.63,7899.11,0.0,0.0,478.17,478.17,8377.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,38438,1417.5,0.0,12.0,1429.5,320.63,238.93,118.28,677.84,2107.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,37897,49607.12,293.18,0.0,49900.3,11890.71,12424.5,4057.04,28372.25,78272.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16891,114296.83,87210.23,18822.93,220329.99,25292.71,15339.48,3685.45,44317.64,264647.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34937,702.53,0.0,21.08,723.61,0.0,304.64,56.02,360.66,1084.27 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,3940,109704.15,0.0,810.0,110514.15,22269.16,12177.21,8510.31,42956.68,153470.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,7290,7658.99,0.0,0.0,7658.99,0.0,0.0,441.22,441.22,8100.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,1493,22420.01,2672.89,2515.31,27608.21,4845.16,2389.33,459.12,7693.61,35301.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,51071,6842.83,0.0,0.0,6842.83,0.0,2248.95,530.46,2779.41,9622.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,7476,57665.03,0.0,2883.27,60548.3,13094.65,6392.04,5477.73,24964.42,85512.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,35116,107307.47,0.0,0.0,107307.47,22066.48,12424.5,9371.68,43862.66,151170.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,30694,9381.29,0.0,20.88,9402.17,0.0,3079.25,729.61,3808.86,13211.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,15385,60224.0,881.0,5898.77,67003.77,13593.57,11707.71,5507.53,30808.81,97812.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37765,881.61,0.0,0.0,881.61,217.48,382.3,75.91,675.69,1557.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,11531,3410.4,0.0,238.02,3648.42,0.0,573.44,283.17,856.61,4505.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,35733,91920.01,0.0,130081.43,222001.44,20925.02,5734.39,251.6,26911.01,248912.45 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,40757,74412.02,0.0,3624.0,78036.02,15474.52,12424.5,6168.49,34067.51,112103.53 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,31829,100503.2,0.0,17898.92,118402.12,24255.44,6546.76,9468.44,40270.64,158672.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",27188,94388.0,3961.77,2195.89,100545.66,19907.71,12424.51,8065.4,40397.62,140943.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,32397,81628.8,694.11,1984.38,84307.29,17233.15,12376.71,6599.07,36208.93,120516.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,15327,25142.04,0.0,1107.3,26249.34,6294.42,6209.26,2118.35,14622.03,40871.37 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,11089,57568.65,124.09,7155.28,64848.02,14353.52,12424.5,4995.13,31773.15,96621.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,23138,95715.79,0.0,0.0,95715.79,19782.85,12150.03,7896.98,39829.86,135545.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,47424,91677.04,0.0,0.0,91677.04,18885.43,12424.52,7308.57,38618.52,130295.56 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,42392,22449.84,0.0,405.97,22855.81,5470.88,6260.04,1858.87,13589.79,36445.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35311,24516.95,0.0,1046.66,25563.61,6110.93,6637.85,2054.39,14803.17,40366.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2107,Med Staff Svcs Dept Anl,19920,88368.1,0.0,2070.0,90438.1,18636.21,12424.5,7266.38,38327.09,128765.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,47807,1014.71,0.0,37.25,1051.96,0.0,253.86,81.45,335.31,1387.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53146,64870.05,4435.38,1575.71,70881.14,18178.69,12783.08,5308.29,36270.06,107151.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,13414,2074.0,505.54,32.4,2611.94,392.0,477.86,202.22,1072.08,3684.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,6212,8316.0,2146.44,1990.0,12452.44,1700.29,1433.6,959.12,4093.01,16545.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,20806,77071.09,0.0,2144.0,79215.09,16325.25,12424.5,6125.73,34875.48,114090.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42773,7531.12,225.31,35.2,7791.63,1788.06,2269.98,596.98,4655.02,12446.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,18605,97185.21,0.0,4955.26,102140.47,21046.97,12328.92,8341.12,41717.01,143857.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,44714,38815.33,10577.45,3049.4,52442.18,9272.37,9593.15,3955.86,22821.38,75263.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,32508,117141.0,1180.56,6746.13,125067.69,23164.17,12424.51,2074.38,37663.06,162730.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22715,68867.73,1551.16,1560.0,71978.89,14481.91,12424.5,5843.59,32750.0,104728.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6333,Senior Building Inspector,29643,124338.11,1225.55,843.66,126407.32,25023.46,12424.5,9844.01,47291.97,173699.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,28904,93281.0,0.0,0.0,93281.0,19225.75,12424.5,7558.56,39208.81,132489.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29196,5647.77,0.0,4.68,5652.45,0.0,2449.06,460.02,2909.08,8561.53 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,39703,113101.39,0.0,4545.0,117646.39,22760.96,7502.48,9418.95,39682.39,157328.78 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,34832,2813.63,0.0,0.0,2813.63,0.0,0.0,231.49,231.49,3045.12 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,850,133087.04,152.61,31463.77,164703.42,26783.95,12424.51,10609.98,49818.44,214521.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24604,149099.0,0.0,7075.96,156174.96,30692.88,12424.5,9826.28,52943.66,209118.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,17002,67261.02,0.0,624.0,67885.02,13991.51,12424.5,5430.92,31846.93,99731.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16099,112692.92,19196.93,6147.67,138037.52,22303.27,12424.5,2351.49,37079.26,175116.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,22839,139.13,0.0,0.0,139.13,0.0,44.8,10.8,55.6,194.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,42608,106605.0,0.0,0.0,106605.0,21971.81,12424.51,8975.25,43371.57,149976.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,13307,21173.8,13.51,114.48,21301.79,0.0,4456.1,1652.7,6108.8,27410.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24286,97764.62,2545.8,9957.16,110267.58,26200.26,12424.5,1877.12,40501.88,150769.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",34749,93738.0,851.86,4630.97,99220.83,19972.86,12424.5,7965.69,40363.05,139583.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41617,64084.07,11311.67,3552.26,78948.0,18424.2,12619.89,6039.05,37083.14,116031.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,3441,96254.04,0.0,0.0,96254.04,19838.22,12424.5,7906.35,40169.07,136423.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,23372,17288.0,0.0,1522.89,18810.89,4141.3,3822.92,1545.46,9509.68,28320.57 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,42177,88089.78,9114.48,15424.22,112628.48,25173.34,10099.27,1862.15,37134.76,149763.24 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,15568,15975.0,128.86,0.0,16103.86,2972.95,3345.06,1281.27,7599.28,23703.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,42893,62037.56,4615.72,1469.73,68123.01,13019.98,12338.31,5352.78,30711.07,98834.08 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,17583,2235.16,0.0,0.0,2235.16,490.4,238.93,152.8,882.13,3117.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",14172,148823.31,23558.47,9618.34,182000.12,30976.73,15052.76,3006.96,49036.45,231036.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17632,67819.37,7733.16,5877.34,81429.87,20186.63,13363.09,6141.32,39691.04,121120.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,46256,130845.84,19406.09,16355.7,166607.63,28930.04,15196.12,2794.01,46920.17,213527.8 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,11360,80570.0,0.0,1664.0,82234.0,16948.1,12424.5,6651.52,36024.12,118258.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,18067,93281.02,18513.88,12057.53,123852.43,19548.79,12424.5,9825.53,41798.82,165651.25 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,53063,76122.2,0.0,1118.79,77240.99,17019.28,11122.31,6217.88,34359.47,111600.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,35676,0.0,0.0,118.85,118.85,0.0,0.0,9.09,9.09,127.94 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,15221,67911.04,0.0,6509.14,74420.18,15201.14,12424.5,6147.47,33773.11,108193.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,41566,85368.01,0.0,688.8,86056.81,17736.32,12424.51,6884.28,37045.11,123101.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,12693,10038.0,0.0,16850.0,26888.0,2278.44,1433.6,2108.16,5820.2,32708.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48999,65997.2,3736.06,1904.78,71638.04,18604.69,13004.39,5578.51,37187.59,108825.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,8821,24251.1,0.0,0.0,24251.1,4526.52,2389.33,3537.92,10453.77,34704.87 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,42422,115444.39,0.0,1490.0,116934.39,23527.33,12414.05,9599.17,45540.55,162474.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2087,56476.97,0.0,5069.56,61546.53,12244.98,12412.56,4735.58,29393.12,90939.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32161,44437.47,0.0,158.39,44595.86,147.31,3792.29,3183.11,7122.71,51718.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16200,138032.28,25827.51,13158.45,177018.24,27288.31,12370.73,2962.21,42621.25,219639.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33488,8630.83,0.0,85.02,8715.85,0.0,2159.36,675.84,2835.2,11551.05 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16746,5358.5,0.0,299.25,5657.75,1382.5,2286.29,456.98,4125.77,9783.52 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,9199,101140.87,0.0,0.0,101140.87,20847.07,12436.45,7543.77,40827.29,141968.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47717,2724.93,482.54,250.0,3457.47,771.16,860.16,243.7,1875.02,5332.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39665,7817.42,0.0,0.0,7817.42,0.0,3333.11,618.33,3951.44,11768.86 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29123,92807.11,0.0,0.0,92807.11,19126.32,12424.52,7432.48,38983.32,131790.43 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,4938,74167.68,0.0,3621.95,77789.63,15419.26,12383.71,6416.39,34219.36,112008.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,41280,1279.57,0.0,0.0,1279.57,0.0,0.0,101.35,101.35,1380.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,46675,76728.03,9819.4,1380.0,87927.43,16100.29,12424.47,7174.93,35699.69,123627.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,48490,62446.23,28084.33,1916.78,92447.34,12895.39,12420.01,7502.37,32817.77,125265.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,31355,56276.04,0.0,0.0,56276.04,0.0,5393.91,4361.09,9755.0,66031.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,32923,85368.05,0.0,0.0,85368.05,17594.6,12424.5,6984.66,37003.76,122371.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32612,3001.48,0.0,122.92,3124.4,0.0,1260.37,251.34,1511.71,4636.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,49304,18583.71,0.0,14451.39,33035.1,4077.28,1986.24,2596.58,8660.1,41695.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38855,1521.9,0.0,274.71,1796.61,1015.48,119.59,539.1,1674.17,3470.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48857,126975.22,792.7,26552.32,154320.24,28592.85,12156.6,4791.68,45541.13,199861.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,17992,62811.0,26823.4,14572.15,104206.55,15047.89,12424.5,8437.66,35910.05,140116.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,48069,107101.83,12812.71,18644.63,138559.17,23665.36,11753.4,2283.19,37701.95,176261.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,8049,93276.0,0.0,6694.7,99970.7,20057.96,0.0,8264.98,28322.94,128293.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11433,97765.37,3274.37,8174.61,109214.35,25778.73,12424.5,1858.3,40061.53,149275.88 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,11402,88296.0,0.0,5322.0,93618.0,18337.86,12424.5,7768.54,38530.9,132148.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",43181,27460.74,4682.72,1839.15,33982.61,5137.62,2198.18,582.91,7918.71,41901.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7216,Electrical Trnst Shop Sprv 1,19930,119111.03,56177.12,7370.91,182659.06,24275.85,12424.5,10807.1,47507.45,230166.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21315,65731.11,23709.02,4074.07,93514.2,19114.06,12950.33,7273.66,39338.05,132852.25 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,38504,56690.35,4462.74,8564.57,69717.66,13953.17,12304.86,5346.03,31604.06,101321.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,47639,59336.44,0.0,1520.0,60856.44,13557.96,12424.5,4949.45,30931.91,91788.35 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,40107,150393.52,0.0,0.0,150393.52,30117.21,12424.63,17623.65,60165.49,210559.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,45970,62468.8,29333.04,7533.7,99335.54,13922.55,12424.5,7781.1,34128.15,133463.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,26747,66842.55,14385.46,10708.83,91936.84,20367.09,12376.71,7230.64,39974.44,131911.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",52758,82535.01,23242.56,9084.05,114861.62,17812.88,12424.5,9365.84,39603.22,154464.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9048,10695.65,0.0,150.25,10845.9,0.0,4575.57,872.18,5447.75,16293.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25286,35188.89,0.0,277.32,35466.21,5036.4,0.0,845.99,5882.39,41348.6 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,45502,19464.67,291.21,0.0,19755.88,0.0,5853.86,1585.67,7439.53,27195.41 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,10326,119066.04,72390.71,17342.08,208798.83,33207.03,12424.5,3505.65,49137.18,257936.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,17545,56507.69,13497.46,6819.74,76824.89,13622.8,12352.82,5860.51,31836.13,108661.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,31572,10473.4,1634.24,320.99,12428.63,0.0,3345.06,984.76,4329.82,16758.45 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,19291,13113.0,634.5,0.0,13747.5,2537.28,2962.77,1090.47,6590.52,20338.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12140,420.28,0.0,50.55,470.83,2087.25,31.84,14.32,2133.41,2604.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42531,947.7,0.0,157.95,1105.65,0.0,71.68,73.17,144.85,1250.5 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,45770,22479.02,0.0,0.0,22479.02,4943.13,5256.52,1778.84,11978.49,34457.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,45145,26004.3,0.0,0.0,26004.3,5718.38,5734.38,2058.28,13511.04,39515.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32235,67607.36,0.0,9394.58,77001.94,598.22,0.0,2175.7,2773.92,79775.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",23014,79316.19,10545.4,9307.9,99169.49,17323.62,11939.47,7830.77,37093.86,136263.35 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,23985,22461.0,0.0,60.0,22521.0,4191.16,3822.92,1817.98,9832.06,32353.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41103,23537.35,0.0,4707.47,28244.82,534.99,0.0,1013.57,1548.56,29793.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,51997,122737.1,0.0,140167.93,262905.03,27306.53,7645.85,337.68,35290.06,298195.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,15609,117517.78,0.0,0.0,117517.78,23612.73,11600.19,9586.71,44799.63,162317.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25420,5207.61,0.0,0.0,5207.61,0.0,2252.24,434.55,2686.79,7894.4 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,27875,58782.02,0.0,624.0,59406.02,12243.97,12424.5,4924.18,29592.65,88998.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18976,116763.31,67.05,27288.1,144118.46,26872.03,10334.26,10161.26,47367.55,191486.01 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,5093,28737.0,0.0,890.05,29627.05,6445.71,4300.79,2139.85,12886.35,42513.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,37922,74165.0,0.0,0.0,74165.0,15285.75,12424.5,5858.88,33569.13,107734.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,14400,69453.9,0.0,333.3,69787.2,14389.2,12424.51,5306.03,32119.74,101906.94 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,23344,95968.01,0.0,0.0,95968.01,19779.21,12424.5,7889.3,40093.01,136061.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1760,Offset Machine Operator,37592,32811.5,0.0,7645.53,40457.03,7433.35,6546.76,3317.47,17297.58,57754.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,5976,74528.63,10687.1,1474.1,86689.83,15502.42,12401.57,7076.45,34980.44,121670.27 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,25195,88126.22,0.0,5320.8,93447.02,18306.04,12400.61,7755.0,38461.65,131908.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,27424,54393.0,0.0,0.0,54393.0,10691.53,8123.71,4166.81,22982.05,77375.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36266,55855.0,3765.08,1882.3,61502.38,12497.61,12424.5,4961.39,29883.5,91385.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,33293,135421.0,0.0,0.0,135421.0,27253.5,12424.49,10032.96,49710.95,185131.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,17098,62751.0,3370.99,6081.0,72202.99,13551.49,12412.56,5700.78,31664.83,103867.82 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,40081,74165.01,0.0,1664.0,75829.01,15627.9,12424.5,6231.58,34283.98,110112.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23357,56531.0,0.0,4929.96,61460.96,12317.85,12424.5,4728.93,29471.28,90932.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,31686,32192.0,0.0,0.0,32192.0,7414.97,8123.71,2606.46,18145.14,50337.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,35892,104942.01,0.0,11516.12,116458.13,23964.46,6546.76,286.26,30797.48,147255.61 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,5745,34674.0,0.0,0.0,34674.0,6681.9,7167.97,2520.26,16370.13,51044.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19385,69501.42,48097.11,9279.73,126878.26,21527.28,13692.52,9498.57,44718.37,171596.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24910,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2400.62,12853.97,44153.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,26074,56956.33,0.0,604.5,57560.83,11879.99,12036.23,4778.15,28694.37,86255.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5188,148244.15,0.0,12341.62,160585.77,30890.15,12352.82,6469.87,49712.84,210298.61 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13700,51547.7,5509.48,0.0,57057.18,12358.38,12424.5,4457.87,29240.75,86297.93 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,11500,33.8,0.0,0.0,33.8,6.13,2.99,0.88,10.0,43.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,7771,102019.02,0.0,0.0,102019.02,21026.26,12424.5,8010.31,41461.07,143480.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,30772,22674.02,0.0,0.0,22674.02,4219.63,2867.19,1799.69,8886.51,31560.53 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,36274,60918.35,0.0,7064.9,67983.25,12228.21,9557.31,5540.03,27325.55,95308.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,40378,7576.1,0.0,0.0,7576.1,0.0,669.02,587.38,1256.4,8832.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,49449,137101.03,0.0,0.0,137101.03,27592.09,12424.5,17382.25,57398.84,194499.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30865,1390.39,0.0,35.28,1425.67,0.0,677.97,110.57,788.54,2214.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8250,80957.65,7694.29,5701.75,94353.69,16746.17,12424.5,1759.61,30930.28,125283.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,47821,101531.01,0.0,0.0,101531.01,20926.02,12424.5,8241.45,41591.97,143122.98 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,53017,72153.06,0.0,0.0,72153.06,14868.44,12424.5,5869.35,33162.29,105315.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8483,68657.51,39429.38,7246.44,115333.33,20840.58,13529.57,8987.27,43357.42,158690.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,22496,67261.0,0.0,0.0,67261.0,13862.82,12424.5,5533.63,31820.95,99081.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,25958,103953.69,0.0,0.0,103953.69,21393.73,12424.5,17142.48,50960.71,154914.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12286,46.5,0.0,0.0,46.5,0.0,17.92,3.6,21.52,68.02 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16148,113233.6,45669.83,15238.68,174142.11,24432.35,15196.12,2922.62,42551.09,216693.2 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,25702,25288.91,0.0,686.79,25975.7,5826.35,4348.58,2170.35,12345.28,38320.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,25193,817.0,0.0,19.61,836.61,215.85,238.93,64.77,519.55,1356.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20561,10736.74,0.0,814.92,11551.66,0.0,910.93,895.42,1806.35,13358.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,8248,77124.95,17740.43,3203.56,98068.94,15758.25,11313.46,7633.18,34704.89,132773.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,4361,2081.51,0.0,0.0,2081.51,457.72,477.86,159.3,1094.88,3176.39 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,27228,49187.42,274.73,811.53,50273.68,10396.03,9678.75,4192.1,24266.88,74540.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,19911,261.84,0.0,0.0,261.84,0.0,0.0,20.68,20.68,282.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31769,97759.42,11558.98,18153.02,127471.42,28182.64,12424.51,2098.69,42705.84,170177.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,38451,18887.8,0.0,100.0,18987.8,3533.65,3488.42,1505.67,8527.74,27515.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17210,68011.14,12238.46,1757.55,82007.15,19073.68,13392.36,6190.54,38656.58,120663.73 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,9194,101531.0,0.0,14548.61,116079.61,20926.02,12424.5,9464.16,42814.68,158894.29 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,24590,93045.76,4557.56,5405.56,103008.88,19331.55,12340.88,8464.93,40137.36,143146.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,709,62468.8,34048.53,7106.69,103624.02,13866.7,12424.5,8404.77,34695.97,138319.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20443,44322.44,0.0,429.71,44752.15,9120.64,8899.47,3476.56,21496.67,66248.82 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,40075,72400.56,0.0,0.0,72400.56,14909.06,12388.66,4870.79,32168.51,104569.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,14335,1272.6,0.0,0.0,1272.6,0.0,334.51,98.52,433.03,1705.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,7256,13471.37,0.0,130.63,13602.0,2663.13,2601.02,1222.14,6486.29,20088.29 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,315C,Civil Case Settlmnt Specialist,46485,135010.2,0.0,3520.0,138530.2,27191.6,12407.06,10188.57,49787.23,188317.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,23933,38374.14,0.0,0.0,38374.14,9150.37,11528.98,3082.71,23762.06,62136.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,18271,79395.04,0.0,1576.0,80971.04,16680.89,12424.51,6658.72,35764.12,116735.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,42636,66907.01,0.0,441.0,67348.01,13502.27,10035.17,5349.63,28887.07,96235.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,10787,105395.95,0.0,3158.97,108554.92,7708.21,9163.31,8662.58,25534.1,134089.02 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,51750,99003.55,0.0,0.0,99003.55,20368.23,12424.5,7533.9,40326.63,139330.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,29327,19694.95,4304.79,1422.25,25421.99,4846.34,5088.19,2023.37,11957.9,37379.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17915,32735.33,3385.45,607.44,36728.22,9519.87,6510.02,2622.55,18652.44,55380.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52275,63802.81,23191.78,1602.14,88596.73,17872.33,12568.7,6852.87,37293.9,125890.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25747,115874.32,16884.19,25012.42,157770.93,25826.56,14670.47,2672.75,43169.78,200940.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,40669,60603.68,6634.49,3372.53,70610.7,13071.64,10736.32,5582.18,29390.14,100000.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23413,112692.92,9379.78,4173.24,126245.94,22303.27,12424.5,2148.99,36876.76,163122.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,26400,26328.86,0.0,0.0,26328.86,5905.54,3760.2,2136.67,11802.41,38131.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,46676,112822.54,0.0,0.0,112822.54,22963.12,12424.51,9092.23,44479.86,157302.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,3077,63887.0,22.89,1704.3,65614.19,13519.28,12424.5,5422.59,31366.37,96980.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,37966,64432.07,61.52,7384.61,71878.2,14514.03,10597.56,5709.49,30821.08,102699.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,11221,5184.4,796.36,119.64,6100.4,0.0,1242.45,473.49,1715.94,7816.34 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",52656,50.0,0.0,0.0,50.0,0.0,5.97,3.87,9.84,59.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,12036,97424.02,9934.24,2003.0,109361.26,20495.06,12424.5,8601.56,41521.12,150882.38 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,50899,9665.6,0.0,0.0,9665.6,0.0,3586.97,749.86,4336.83,14002.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,36653,100795.04,3922.19,554.55,105271.78,20760.96,12424.5,8423.28,41608.74,146880.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,36027,38646.72,0.0,1072.2,39718.92,8339.59,6216.26,3282.93,17838.78,57557.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51611,119455.92,0.0,11765.56,131221.48,24524.19,12424.5,338.72,37287.41,168508.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,52390,74165.03,0.0,0.0,74165.03,15285.77,12424.5,5858.88,33569.15,107734.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3126,118178.73,2018.4,10931.3,131128.43,24497.21,11038.69,9650.18,45186.08,176314.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,24101,93766.5,2706.24,11089.75,107562.49,20883.91,12663.43,8759.36,42306.7,149869.19 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,8336,3617.9,0.0,0.0,3617.9,765.5,0.0,285.96,1051.46,4669.36 +Calendar,2015,5,Culture & Recreation,LLB,Law Library,220.0,Law Librarian and Assistant,8100,Legal & Court,0170,Assistant Law Librarian,41931,130000.0,0.0,0.0,130000.0,36491.35,12424.5,17158.77,66074.62,196074.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,50626,36570.01,0.0,387.88,36957.89,7129.65,7167.99,2988.72,17286.36,54244.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,47229,181622.03,0.0,3514.46,185136.49,37182.14,12424.5,10735.34,60341.98,245478.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,4555,3367.77,0.0,0.0,3367.77,868.88,1018.58,287.52,2174.98,5542.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49046,76950.24,419.25,8265.36,85634.85,15858.9,7448.01,6861.53,30168.44,115803.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,41722,38960.0,6771.83,360.0,46091.83,7396.63,6212.24,3574.72,17183.59,63275.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,17812,199907.95,0.0,0.0,199907.95,40116.24,12424.5,18447.41,70988.15,270896.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,37814,37012.32,0.0,0.0,37012.32,1472.38,8116.73,2863.55,12452.66,49464.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,37570,158351.69,2796.3,12373.1,173521.09,31315.07,12424.51,2911.54,46651.12,220172.21 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,24236,67911.04,6063.21,6540.27,80514.52,14515.7,12424.5,6457.48,33397.68,113912.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,2133,50765.33,98.15,520.0,51383.48,0.0,12275.17,4100.4,16375.57,67759.05 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,48864,70451.84,2473.73,5584.61,78510.18,15243.83,11865.58,6163.73,33273.14,111783.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48998,42640.71,1953.03,545.42,45139.16,10204.24,8577.03,3436.14,22217.41,67356.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21094,71928.18,11515.34,5313.51,88757.03,15488.36,9079.45,1278.67,25846.48,114603.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,36811,79722.01,12152.72,940.0,92814.73,16626.62,12424.49,7262.57,36313.68,129128.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,14327,82051.41,0.0,0.0,82051.41,16893.01,11630.05,6570.29,35093.35,117144.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41489,97850.07,333.61,12027.32,110211.0,18541.59,8601.58,1843.29,28986.46,139197.46 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0648,"Court Invstgtor, Superior Crt",47358,103948.17,0.0,3624.0,107572.17,21560.04,12424.5,8901.28,42885.82,150457.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,44477,2151.0,0.0,32.4,2183.4,563.32,477.87,169.04,1210.23,3393.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,50777,4442.0,0.0,0.0,4442.0,996.34,955.73,335.09,2287.16,6729.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49252,67470.85,16341.48,5354.7,89167.03,19965.7,13294.16,6959.68,40219.54,129386.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,26272,113369.02,53744.25,9006.92,176120.19,24440.2,12424.45,10735.85,47600.5,223720.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,33816,7924.8,0.0,56.14,7980.94,0.0,1146.88,619.45,1766.33,9747.27 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,18817,81542.0,0.0,0.0,81542.0,16806.13,12424.5,6690.85,35921.48,117463.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39442,56917.5,1090.31,715.88,58723.69,15770.12,11207.32,4357.14,31334.58,90058.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10819,16800.0,0.0,0.0,16800.0,2043.36,5017.58,1264.52,8325.46,25125.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,6050,56084.47,15105.26,536.45,71726.18,11837.38,10681.19,5807.79,28326.36,100052.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,12120,31598.0,4906.83,6743.01,43247.84,6728.65,6212.25,3848.83,16789.73,60037.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,11630,6944.0,146.94,136.4,7227.34,0.0,2676.05,560.54,3236.59,10463.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48130,69523.47,38800.16,6434.69,114758.32,20863.4,13701.95,8941.01,43506.36,158264.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,43844,1596.5,0.0,0.0,1596.5,297.1,238.93,135.9,671.93,2268.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,41115,49083.12,0.0,920.0,50003.12,10176.93,10990.9,4011.64,25179.47,75182.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,5548,75927.1,0.0,0.0,75927.1,15645.97,12424.5,6297.9,34368.37,110295.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,2867,84644.0,17629.29,5918.4,108191.69,17978.76,12424.5,8632.61,39035.87,147227.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,26086,62005.86,0.0,222.54,62228.4,12743.58,8435.28,4945.92,26124.78,88353.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28134,8070.11,0.0,160.38,8230.49,0.0,2007.03,638.08,2645.11,10875.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20328,116419.91,292.56,29124.38,145836.85,18568.08,10631.19,9504.87,38704.14,184540.99 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,47090,55191.41,1129.91,3684.13,60005.45,11431.15,10866.96,4957.76,27255.87,87261.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3261,118659.05,595.13,9505.73,128759.91,23477.36,12340.88,2146.61,37964.85,166724.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),9533,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10942.2,60755.53,246544.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,34534,47531.2,17853.33,6551.34,71935.87,12335.58,12424.5,5485.56,30245.64,102181.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,25964,236431.68,8916.56,19895.34,265243.58,51548.23,11214.9,12233.46,74996.59,340240.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,29444,98085.21,0.0,0.0,98085.21,20243.35,12124.82,8020.44,40388.61,138473.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49976,56531.01,0.0,1387.84,57918.85,11956.67,12424.5,5304.15,29685.32,87604.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,8522,6563.05,0.0,612.4,7175.45,0.0,1786.02,555.52,2341.54,9516.99 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,30263,56276.02,0.0,0.0,56276.02,12591.79,12424.5,4666.73,29683.02,85959.04 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46979,43477.5,0.0,375.0,43852.5,9621.24,3583.99,3558.89,16764.12,60616.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29296,69819.09,17065.52,5087.55,91972.16,14807.26,12348.7,7241.71,34397.67,126369.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,881,65510.99,7349.85,1370.72,74231.56,18302.29,12910.79,5669.68,36882.76,111114.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1634,24004.0,0.0,0.0,24004.0,4351.92,4061.84,1850.29,10264.05,34268.05 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,51868,45581.58,0.0,1438.83,47020.41,9801.19,9169.05,3711.33,22681.57,69701.98 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51096,41594.78,266.7,3147.11,45008.59,10432.2,10931.17,3602.95,24966.32,69974.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,35581,91789.74,4937.55,13465.91,110193.2,19029.59,12424.5,1874.55,33328.64,143521.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",21978,15435.09,0.0,0.0,15435.09,0.0,3675.08,1196.5,4871.58,20306.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,29754,112209.04,0.0,0.0,112209.04,22870.16,12424.5,9010.39,44305.05,156514.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,53200,61853.55,3398.13,3760.39,69012.07,13000.22,12301.87,5555.38,30857.47,99869.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41851,142182.6,307.06,1188.15,143677.81,28163.07,12424.5,2422.74,43010.31,186688.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,49065,5839.18,0.0,0.0,5839.18,0.0,1932.37,453.21,2385.58,8224.76 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8146,District Attry's Investigator,47569,109144.21,0.0,6548.65,115692.86,26386.5,12376.73,1823.2,40586.43,156279.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18021,66388.54,10247.32,888.91,77524.77,15318.54,13081.15,5869.79,34269.48,111794.25 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35429,97764.2,1852.03,12242.75,111858.98,26766.93,12424.5,1903.0,41094.43,152953.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43150,80949.92,7726.55,3530.86,92207.33,16774.33,12424.5,1723.63,30922.46,123129.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28609,895.0,0.0,14.31,909.31,0.0,298.66,70.4,369.06,1278.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",7652,82398.75,14364.75,7950.19,104713.69,18001.03,12404.5,8521.35,38926.88,143640.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43413,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2414.98,12868.33,44168.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1581,125346.39,17500.42,19096.84,161943.65,25321.58,12418.53,2736.06,40476.17,202419.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,13615,73406.0,930.78,4264.4,78601.18,15258.02,12424.5,6434.28,34116.8,112717.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42263,67970.05,30572.41,5019.94,103562.4,19968.94,13386.93,7891.53,41247.4,144809.8 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,12958,116206.88,0.0,1250.0,117456.88,23624.54,6146.55,9438.25,39209.34,156666.22 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8435,"Div Director, Adult Probation",27900,126507.05,0.0,0.0,126507.05,28870.26,12424.5,9867.58,51162.34,177669.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4892,4389.0,0.0,0.0,4389.0,816.79,716.79,340.47,1874.05,6263.05 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,37000,89028.05,0.0,0.0,89028.05,18349.04,12424.5,7197.08,37970.62,126998.67 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,43878,93928.91,0.0,120.0,94048.91,19394.26,12430.48,7517.07,39341.81,133390.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24403,27042.62,2439.69,758.05,30240.36,6971.98,8418.85,2363.4,17754.23,47994.59 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7333,Apprentice Stationary Engineer,30030,78513.0,7354.57,239.03,86106.6,16140.87,12424.5,7072.56,35637.93,121744.53 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,4869,5228.8,0.0,1198.84,6427.64,1172.82,907.95,519.65,2600.42,9028.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,31333,100761.01,73.65,3882.83,104717.49,21571.05,12424.5,8582.43,42577.98,147295.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,46388,62468.81,3475.03,1330.26,67274.1,13003.82,12424.5,5537.18,30965.5,98239.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,42,57394.46,939.53,1307.62,59641.61,11950.96,11346.92,5183.06,28480.94,88122.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",30546,106090.12,3726.49,2776.72,112593.33,21892.67,12424.49,9232.07,43549.23,156142.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,8370,7722.68,0.0,30.66,7753.34,0.0,2798.5,600.94,3399.44,11152.78 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,192C,Court Administrator,44577,135876.67,0.0,5704.0,141580.67,27295.07,12006.43,32242.74,71544.24,213124.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2997,139698.31,19562.05,11914.83,171175.19,29784.51,12424.5,10635.37,52844.38,224019.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,11376,63102.0,0.0,699.81,63801.81,13149.36,12424.5,5243.73,30817.59,94619.4 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,53142,85897.37,0.0,0.0,85897.37,17674.24,12165.74,6343.23,36183.21,122080.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,46679,11579.16,0.0,181.18,11760.34,0.0,4438.18,911.53,5349.71,17110.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49588,67218.14,12967.68,3683.52,83869.34,19430.25,13247.27,6510.85,39188.37,123057.71 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,50025,16752.01,0.0,0.0,16752.01,3117.56,1911.46,1288.94,6317.96,23069.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,25528,84791.02,0.0,0.0,84791.02,17475.8,12424.5,6913.54,36813.84,121604.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,1725,41842.8,0.0,1849.43,43692.23,8550.08,7836.99,3454.37,19841.44,63533.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48687,9752.71,0.0,0.0,9752.71,408.7,4229.11,784.94,5422.75,15175.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14057,12520.0,0.0,0.0,12520.0,2269.88,1911.46,971.76,5153.1,17673.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,36833,86772.49,5311.04,12481.13,104564.66,19145.18,12321.4,1779.67,33246.25,137810.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,26739,144161.71,33269.72,12210.74,189642.17,29016.54,12424.5,467.27,41908.31,231550.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,34837,6678.56,80.79,0.0,6759.35,0.0,925.86,524.64,1450.5,8209.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,31201,54124.03,0.0,0.0,54124.03,12110.46,12424.5,4150.72,28685.68,82809.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43608,97791.35,89864.19,18288.55,205944.09,28236.66,12424.5,3515.21,44176.37,250120.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2030,2361.35,0.0,245.06,2606.41,0.0,991.57,202.31,1193.88,3800.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16859,63748.82,12172.22,1135.75,77056.79,17766.91,12558.12,6007.01,36332.04,113388.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,10581,100988.0,1834.13,2434.32,105256.45,20790.35,12424.51,8505.98,41720.84,146977.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,15019,57153.6,578.82,0.0,57732.42,12194.53,9079.47,4584.96,25858.96,83591.38 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,36930,2679.6,0.0,0.0,2679.6,386.38,669.02,207.46,1262.86,3942.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,3728,158366.95,85.26,17021.71,175473.92,32270.74,12424.48,448.4,45143.62,220617.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7762,11381.5,0.0,213.68,11595.18,0.0,4360.52,899.49,5260.01,16855.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5994,149668.91,0.0,1184.54,150853.45,26729.76,12472.29,4973.53,44175.58,195029.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17325,53991.7,0.0,372.16,54363.86,11540.97,5638.58,251.55,17431.1,71794.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,34964,62523.89,1314.75,2099.98,65938.62,13115.02,12369.13,5725.67,31209.82,97148.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,13617,63887.02,9306.21,2090.57,75283.8,13597.18,12424.51,6187.62,32209.31,107493.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,43791,113670.25,36304.93,14104.68,164079.86,23803.08,12472.29,2741.6,39016.97,203096.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43527,42356.47,2740.26,1884.34,46981.07,11473.31,12583.51,3553.84,27610.66,74591.73 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,25349,72699.05,745.41,1528.97,74973.43,15300.6,12424.5,6138.35,33863.45,108836.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,41277,44211.32,0.0,413.38,44624.7,8987.81,8230.76,3770.01,20988.58,65613.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,38730,7728.15,0.0,0.0,7728.15,0.0,2801.49,598.92,3400.41,11128.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,7856,69847.35,886.97,1250.0,71984.32,14544.26,11304.52,5696.84,31545.62,103529.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,2912,7414.0,0.0,0.0,7414.0,1626.63,477.86,573.98,2678.47,10092.47 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,2670,186241.21,0.0,0.0,186241.21,37481.27,12424.49,24204.3,74110.06,260351.27 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35922,17912.54,0.0,0.0,17912.54,0.0,5890.89,1388.56,7279.45,25191.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36348,113233.59,73949.5,20945.22,208128.31,25642.38,15196.11,3540.78,44379.27,252507.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,27785,67099.52,0.0,0.0,67099.52,14059.55,10608.62,5538.03,30206.2,97305.72 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,3721,61571.28,0.0,1339.15,62910.43,12968.04,12392.0,5167.88,30527.92,93438.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,14109,64135.71,10769.52,1755.72,76660.95,13389.21,12052.66,6177.11,31618.98,108279.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28460,5579.06,0.0,46.71,5625.77,0.0,1850.25,436.51,2286.76,7912.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8603,35440.85,0.0,4359.93,39800.78,7849.71,7789.21,3286.35,18925.27,58726.05 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,21765,88296.01,0.0,3624.0,91920.01,18337.86,12424.5,7638.64,38401.0,130321.01 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,8137,11718.31,0.0,55.77,11774.08,3037.7,2911.99,978.14,6927.83,18701.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,42180,108564.11,0.0,0.0,108564.11,22099.92,12424.5,8441.41,42965.83,151529.94 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,7289,4819.5,0.0,152.25,4971.75,0.0,2056.32,384.91,2441.23,7412.98 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,51940,2604.7,77.09,3531.1,6212.89,801.09,334.51,98.8,1234.4,7447.29 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,3601,50198.81,0.0,3988.64,54187.45,11564.27,2962.77,4261.24,18788.28,72975.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,53082,32160.0,3871.54,12941.74,48973.28,5709.66,2867.19,792.52,9369.37,58342.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,21319,55855.0,3711.64,7414.62,66981.26,13414.34,12424.5,5134.64,30973.48,97954.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32144,17833.18,3491.22,385.86,21710.26,4368.26,5506.2,1575.99,11450.45,33160.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28474,65833.33,26579.07,1536.35,93948.75,18420.29,12970.1,7132.91,38523.3,132472.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4357,67264.62,11967.69,3204.87,82437.18,19261.04,13253.65,6397.78,38912.47,121349.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,42110,31443.01,0.0,0.0,31443.01,409.23,6976.83,2493.45,9879.51,41322.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,49263,80357.01,1526.4,0.0,81883.41,16562.14,12424.5,6493.38,35480.02,117363.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38021,24766.72,160.3,4590.99,29518.01,6137.22,0.0,5488.26,11625.48,41143.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6130,Safety Analyst,17939,100783.0,0.0,0.0,100783.0,20289.61,11074.54,7635.62,38999.77,139782.77 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,20425,85865.55,921.0,0.0,86786.55,13920.49,10166.1,6919.35,31005.94,117792.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14040,100052.96,6981.62,7377.16,114411.74,20743.56,12424.5,1862.32,35030.38,149442.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,13991,78963.05,0.0,1539.95,80503.0,16603.45,12424.5,6671.8,35699.75,116202.75 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,9081,6080.0,0.0,0.0,6080.0,0.0,363.18,471.32,834.5,6914.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25638,76753.98,138.99,1320.0,78212.97,16094.32,12373.07,6190.4,34657.79,112870.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26565,34347.52,0.0,1124.01,35471.53,0.0,3010.13,2746.85,5756.98,41228.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,517,156746.0,0.0,6024.37,162770.37,32764.09,12424.49,10595.72,55784.3,218554.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",35705,16277.98,1285.9,2507.79,20071.67,2808.98,2455.04,1525.04,6789.06,26860.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50455,5004.03,0.0,0.0,5004.03,2389.64,424.1,250.21,3063.95,8067.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4634,3514.3,0.0,20.39,3534.69,0.0,1164.79,274.1,1438.89,4973.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,50890,117288.02,0.0,694.35,117982.37,23905.32,12424.5,9487.18,45817.0,163799.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13055,73360.12,15139.61,6980.26,95479.99,16108.73,15196.11,1591.41,32896.25,128376.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38525,101844.92,44602.74,16706.92,163154.58,23603.27,15052.75,2679.35,41335.37,204489.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21236,72664.26,8389.58,5179.66,86233.5,15566.77,15052.75,1428.67,32048.19,118281.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,16561,66102.14,3508.65,2321.4,71932.19,14099.69,12424.51,5909.12,32433.32,104365.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46294,3474.74,0.0,80.8,3555.54,525.04,1506.77,282.73,2314.54,5870.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11498,30664.11,3393.21,1307.25,35364.57,5747.67,3345.06,580.49,9673.22,45037.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51495,119463.8,9822.23,2060.01,131346.04,23633.47,12424.5,2190.49,38248.46,169594.5 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0965,Dept Head V,9185,279570.67,0.0,0.0,279570.67,56209.65,12424.5,27526.62,96160.77,375731.44 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,4574,72153.13,0.0,0.0,72153.13,14871.1,12424.49,5838.01,33133.6,105286.73 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4371,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10919.01,60732.34,246521.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10907,1119.8,0.0,0.0,1119.8,0.0,95.58,86.91,182.49,1302.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29041,6997.73,0.0,861.76,7859.49,1805.42,3034.45,643.39,5483.26,13342.75 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,37651,86850.01,0.0,1200.0,88050.01,18146.56,12424.5,7224.32,37795.38,125845.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35712,66590.01,10164.44,4445.96,81200.41,19455.02,13117.11,6344.12,38916.25,120116.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,20072,85368.04,0.0,0.0,85368.04,17594.59,12424.5,6685.31,36704.4,122072.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29165,119461.71,42.87,7116.56,126621.14,23641.93,12424.5,2057.77,38124.2,164745.34 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,47365,5109.88,0.0,254.1,5363.98,0.0,1463.46,416.33,1879.79,7243.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36143,3641.61,0.0,0.0,3641.61,0.0,1529.17,290.36,1819.53,5461.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,23879,113369.04,44039.93,10300.21,167709.18,23932.12,12424.5,10597.45,46954.07,214663.25 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,30593,61920.0,0.0,495.0,62415.0,13788.77,7167.99,5036.14,25992.9,88407.9 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,10353,93048.7,44006.98,9534.54,146590.22,20167.29,12340.88,10219.04,42727.21,189317.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2758,3120.04,0.0,0.0,3120.04,0.0,1352.96,256.49,1609.45,4729.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,51300,50500.01,0.0,485.0,50985.01,11151.62,7645.85,4133.69,22931.16,73916.17 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,31208,166253.96,0.0,0.0,166253.96,33682.14,11621.09,19048.4,64351.63,230605.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,18181,22420.0,0.0,0.0,22420.0,4064.75,2389.33,1834.86,8288.94,30708.94 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,52102,97762.81,15629.1,17386.24,130778.15,27995.79,12424.52,2216.33,42636.64,173414.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41011,30939.05,0.0,2220.57,33159.62,2322.49,0.0,4686.66,7009.15,40168.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,7699,69902.0,1223.37,0.0,71125.37,14407.12,12424.5,5642.84,32474.46,103599.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",37857,118858.0,27250.04,3584.73,149692.77,24482.59,12424.5,10288.07,47195.16,196887.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20838,75526.56,0.0,14160.41,89686.97,642.79,0.0,7538.14,8180.93,97867.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,32765,44126.63,0.0,0.0,44126.63,9565.98,7645.61,3591.59,20803.18,64929.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39028,35196.42,5494.55,584.41,41275.38,9040.62,6876.72,3050.0,18967.34,60242.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23410,39703.27,0.0,2134.74,41838.01,9794.56,0.0,1694.79,11489.35,53327.36 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",9050,19567.61,2938.01,8726.67,31232.29,4678.47,3523.24,150.38,8352.09,39584.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16477,1770.13,0.0,6.4,1776.53,0.0,664.51,137.88,802.39,2578.92 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,16415,86850.03,0.0,2200.0,89050.03,18327.91,12424.5,7246.58,37998.99,127049.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3115,119461.63,2067.15,14931.17,136459.95,24111.54,12424.5,2322.2,38858.24,175318.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,31357,33174.27,0.0,0.0,33174.27,6173.72,5559.98,2644.41,14378.11,47552.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,50608,56120.04,443.0,2412.43,58975.47,12969.16,12424.5,4567.06,29960.72,88936.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,30890,85368.03,0.0,15.0,85383.03,17597.76,12424.5,7003.77,37026.03,122409.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",45538,20410.96,0.0,0.0,20410.96,4478.15,2389.33,2950.54,9818.02,30228.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17220,66046.15,12280.38,1316.33,79642.86,18422.99,13015.21,6201.42,37639.62,117282.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,9788,63639.16,8607.11,3788.65,76034.92,13221.67,11987.79,6548.12,31757.58,107792.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6280,56531.01,0.0,2930.55,59461.56,11796.81,12424.5,4883.98,29105.29,88566.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,7249,84475.35,6585.48,7811.75,98872.58,17466.62,12424.5,1648.61,31539.73,130412.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21482,67137.44,8518.53,1130.53,76786.5,18709.56,13232.63,5995.1,37937.29,114723.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,32213,85455.41,0.0,1608.18,87063.59,17930.54,11832.96,7094.6,36858.1,123921.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25514,124069.95,0.0,4404.72,128474.67,0.0,10751.67,9500.21,20251.88,148726.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29172,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1850.29,10264.06,34268.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,17560,5116.5,296.1,125.96,5538.56,1346.6,1290.23,456.34,3093.17,8631.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23254,128259.47,1104.18,24730.47,154094.12,29719.32,10695.04,7650.02,48064.38,202158.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,21216,50948.83,318.6,65.88,51333.31,12185.78,11753.65,4189.76,28129.19,79462.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,21921,76943.7,77579.75,6260.82,160784.27,17326.91,10620.56,10401.6,38349.07,199133.34 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,19491,62424.67,1810.88,7261.2,71496.75,13811.04,12292.68,5645.62,31749.34,103246.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",15090,136698.39,58667.44,19554.02,214919.85,30590.02,15052.77,3620.04,49262.83,264182.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,45487,33183.51,0.0,1600.34,34783.85,7646.12,7337.92,2892.8,17876.84,52660.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,18477,49679.01,0.0,2958.6,52637.61,12065.34,12424.5,4301.45,28791.29,81428.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33531,68941.7,4639.84,4685.7,78267.24,20177.29,13586.02,6100.38,39863.69,118130.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,47968,84791.02,0.0,0.0,84791.02,17471.15,12424.5,6614.75,36510.4,121301.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,43003,81942.0,23829.0,7457.66,113228.66,17955.75,12424.5,9196.13,39576.38,152805.04 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,20895,9597.0,0.0,0.0,9597.0,1785.99,1433.6,759.71,3979.3,13576.3 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",48862,850.0,0.0,0.0,850.0,0.0,0.0,67.25,67.25,917.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,51885,69708.02,1620.6,1125.82,72454.44,14495.15,12328.94,6000.94,32825.03,105279.47 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8234,Fire Alarm Dispatcher,50664,13656.5,1147.15,635.64,15439.29,0.0,2628.26,1195.31,3823.57,19262.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,44620,39947.12,0.0,378.14,40325.26,8519.03,9079.44,3266.27,20864.74,61190.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,16062,85357.0,3354.85,1860.0,90571.85,17690.88,10513.04,7229.98,35433.9,126005.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,16498,97424.01,3236.32,846.0,101506.33,20248.42,12424.52,8153.52,40826.46,142332.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12024,119450.09,2511.44,29594.76,151556.29,23683.73,12424.5,2173.0,38281.23,189837.52 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,12198,9463.59,0.0,6381.6,15845.19,0.0,0.0,229.76,229.76,16074.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,12890,135421.04,0.0,0.0,135421.04,27253.5,12424.48,10036.56,49714.54,185135.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,44343,97934.03,21262.84,6079.77,125276.64,21188.57,12424.5,9864.3,43477.37,168754.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,19872,84791.08,0.0,0.0,84791.08,17475.8,12424.5,6748.89,36649.19,121440.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35281,60479.68,9353.58,4733.56,74566.82,17862.11,11910.56,5597.99,35370.66,109937.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",16145,131577.1,3968.0,8828.67,144373.77,27589.98,15196.12,2460.63,45246.73,189620.5 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,34084,1724.47,0.0,0.0,1724.47,0.0,415.14,133.5,548.64,2273.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,7912,61735.06,0.0,624.0,62359.06,12852.62,12424.5,5124.28,30401.4,92760.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,37430,65437.91,1871.6,10478.99,77788.5,14617.44,12327.91,6386.44,33331.79,111120.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9402,55562.8,2241.07,324.15,58128.02,12430.29,12424.5,4673.14,29527.93,87655.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,44142,77965.66,0.0,394.8,78360.46,16147.61,12386.39,6376.88,34910.88,113271.34 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,33878,107782.76,0.0,0.0,107782.76,21833.96,12424.5,16221.99,50480.45,158263.21 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,40315,121472.0,0.0,5336.0,126808.0,24461.52,12424.5,32243.08,69129.1,195937.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,5002,22174.21,0.0,0.0,22174.21,4126.6,3536.21,1728.68,9391.49,31565.7 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,53093,93681.01,0.0,624.0,94305.01,19436.77,12424.5,7759.34,39620.61,133925.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,51486,35164.5,0.0,0.0,35164.5,7887.4,4061.97,2834.39,14783.76,49948.26 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,23714,99847.55,0.0,0.0,99847.55,22777.61,12424.5,1698.83,36900.94,136748.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,8305,68067.06,0.0,0.0,68067.06,14029.01,12424.86,5645.48,32099.35,100166.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,29766,87531.06,0.0,0.0,87531.06,18040.63,12424.49,7029.97,37495.09,125026.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,35865,10561.94,0.0,0.0,10561.94,2369.04,1433.6,882.07,4684.71,15246.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21057,3337.49,0.0,4.42,3341.91,0.0,1263.84,259.38,1523.22,4865.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,27107,86057.0,0.0,0.0,86057.0,17372.68,10035.17,6625.81,34033.66,120090.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,9001,65348.0,0.0,2100.75,67448.75,14173.0,8123.76,5182.83,27479.59,94928.34 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,13521,55715.8,0.0,0.0,55715.8,11456.43,11803.27,4446.92,27706.62,83422.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47629,98621.18,0.0,677.72,99298.9,19927.47,10268.14,1584.53,31780.14,131079.04 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,27657,3189.0,0.0,0.0,3189.0,593.47,477.86,247.52,1318.85,4507.85 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",6604,73867.92,13057.59,6333.77,93259.28,18284.89,12409.51,1875.03,32569.43,125828.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,28811,30786.08,0.0,0.0,30786.08,5729.26,4269.84,2498.43,12497.53,43283.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39799,132092.35,132.4,17493.49,149718.24,34595.58,11007.63,2902.65,48505.86,198224.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,42774,49120.4,0.0,0.0,49120.4,11790.37,12424.5,3959.05,28173.92,77294.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1931,Senior Parts Storekeeper,17708,60899.0,595.99,1259.88,62754.87,13052.79,10513.04,5177.11,28742.94,91497.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,52020,77071.01,1380.94,0.0,78451.95,15884.7,12424.5,6502.01,34811.21,113263.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41470,56531.0,0.0,6684.46,63215.46,12772.01,12424.5,5130.62,30327.13,93542.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,6744,2139.3,0.0,128.36,2267.66,0.0,430.07,175.56,605.63,2873.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",33427,705.0,0.0,0.0,705.0,0.0,0.0,55.78,55.78,760.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,8526,81849.6,0.0,0.0,81849.6,16847.7,12424.5,6422.29,35694.49,117544.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32102,47992.65,48.8,10678.34,58719.79,9999.37,5219.07,4720.49,19938.93,78658.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7317,Senior Water Service Inspector,1791,117750.01,0.0,0.0,117750.01,23696.97,12424.5,9327.64,45449.11,163199.12 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,19362,79945.78,760.21,5780.93,86486.92,8549.8,11885.42,6831.35,27266.57,113753.49 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,21692,45310.4,0.0,0.0,45310.4,7383.4,11353.43,3604.4,22341.23,67651.63 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,16971,114711.19,0.0,0.0,114711.19,23084.27,12334.91,9204.37,44623.55,159334.74 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,3127,29833.18,5009.4,1279.29,36121.87,6691.57,4139.51,2902.73,13733.81,49855.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,7150,1133.08,0.0,0.0,1133.08,0.0,370.34,132.32,502.66,1635.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16607,80949.91,1982.04,1424.99,84356.94,16744.98,12424.5,1732.4,30901.88,115258.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,33345,39094.01,121.84,0.0,39215.85,7734.62,5734.39,3142.06,16611.07,55826.92 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,18096,45123.51,0.0,0.0,45123.51,10811.12,12424.5,3417.75,26653.37,71776.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43465,7075.28,0.0,11.24,7086.52,0.0,2707.4,549.41,3256.81,10343.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32022,21077.02,0.0,701.8,21778.82,0.0,5641.8,1688.16,7329.96,29108.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,3791,82497.33,0.0,0.0,82497.33,16794.47,9172.04,6504.4,32470.91,114968.24 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,5406,56948.55,0.0,0.0,56948.55,11372.86,8912.19,4102.1,24387.15,81335.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,49903,62461.11,1851.21,1120.0,65432.32,13070.46,12424.5,5311.16,30806.12,96238.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,36083,19958.8,0.0,0.0,19958.8,4158.74,6605.0,1613.06,12376.8,32335.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,29620,92051.78,3160.98,10483.83,105696.59,20175.5,12472.29,1761.33,34409.12,140105.71 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,26211,61392.5,0.0,0.0,61392.5,12184.96,4055.88,4760.05,21000.89,82393.39 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,49879,65309.07,0.0,0.0,65309.07,13435.65,12424.5,5307.18,31167.33,96476.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,26245,63887.05,526.56,1894.38,66307.99,13557.29,12424.5,5476.09,31457.88,97765.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,24177,37219.72,6172.11,20.0,43411.83,7133.4,4817.42,3500.84,15451.66,58863.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,7.0,"Bricklayers, Local 3",7300,Journeyman Trade,7307,Bricklayer,28605,95053.0,0.0,2596.0,97649.0,20133.14,12424.5,8003.71,40561.35,138210.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,19545,52511.8,20811.65,1395.19,74718.64,12719.13,12424.51,5924.5,31068.14,105786.78 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,28759,101770.01,0.0,0.0,101770.01,20975.25,12424.5,7944.9,41344.65,143114.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,29880,2639.43,0.0,131.94,2771.37,608.03,259.84,226.17,1094.04,3865.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,12794,37296.11,8692.84,0.0,45988.95,8365.55,5256.52,3795.4,17417.47,63406.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,34616,158351.71,251.21,13457.32,172060.24,31938.12,12424.5,2877.58,47240.2,219300.44 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,29266,92792.0,5852.55,1098.3,99742.85,19124.86,12424.5,8093.98,39643.34,139386.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35383,910.41,0.0,0.0,910.41,0.0,382.3,70.67,452.97,1363.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32879,119455.91,23597.69,6759.14,149812.74,23662.84,12424.51,2541.74,38629.09,188441.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31306,13380.61,0.0,478.67,13859.28,234.74,0.0,4230.63,4465.37,18324.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33991,62283.97,10776.08,9029.64,82089.69,13949.8,11007.63,6463.67,31421.1,113510.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,42462,54373.09,0.0,0.0,54373.09,11131.81,11570.62,4358.85,27061.28,81434.37 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,49834,70080.0,0.0,2336.0,72416.0,15144.19,7167.99,18883.71,41195.89,113611.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,48294,45583.83,2579.03,5859.79,54022.65,11337.39,12325.64,4061.44,27724.47,81747.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51530,131110.17,1274.91,13212.76,145597.84,27600.71,12339.57,9143.36,49083.64,194681.48 +Calendar,2015,4,Community Health,DPH,Public Health,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,4351,71878.56,114.26,1996.38,73989.2,15402.72,11207.8,5801.92,32412.44,106401.64 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,9792,71368.65,1648.8,346.19,73363.64,14696.62,12424.5,5532.34,32653.46,106017.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,19907,75808.4,9711.89,3737.51,89257.8,15857.29,11612.13,7203.42,34672.84,123930.64 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,50448,62596.0,8849.11,5277.45,76722.56,13246.11,10513.04,6116.39,29875.54,106598.1 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,32599,37204.24,0.0,3006.28,40210.52,8429.84,8459.71,3112.83,20002.38,60212.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,35807,67246.8,0.0,2632.39,69879.19,14241.16,11211.91,5754.9,31207.97,101087.16 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,36156,15026.66,770.63,10184.0,25981.29,3051.65,2210.12,2075.98,7337.75,33319.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34562,73486.82,0.0,13240.07,86726.89,16249.15,6546.76,7010.76,29806.67,116533.56 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,38961,84922.46,0.0,929.16,85851.62,17701.95,12472.29,6994.3,37168.54,123020.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,12018,31442.25,0.0,234.0,31676.25,0.0,4659.19,2412.39,7071.58,38747.83 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,28967,233620.72,0.0,0.0,233620.72,46916.64,12424.5,26731.46,86072.6,319693.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48025,70599.93,1821.27,6744.56,79165.76,0.0,6152.39,6143.18,12295.57,91461.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6715,30909.93,0.0,3132.25,34042.18,3170.5,0.0,4210.76,7381.26,41423.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,46387,56759.74,607.59,6379.31,63746.64,13865.61,12423.49,4919.28,31208.38,94955.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16983,67632.92,7380.6,3823.46,78836.98,19577.83,13328.08,6013.46,38919.37,117756.35 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,34264,14421.97,0.0,0.0,14421.97,3464.55,6358.6,920.24,10743.39,25165.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15930,6846.19,0.0,97.77,6943.96,0.0,2968.74,560.0,3528.74,10472.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14257,5262.06,0.0,0.0,5262.06,0.0,2281.81,430.83,2712.64,7974.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,30368,138624.68,11496.8,13333.16,163454.64,27434.17,12424.5,2774.58,42633.25,206087.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,40576,61735.01,0.0,2994.65,64729.66,13339.05,12424.5,5063.93,30827.48,95557.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,13972,49449.23,0.0,2504.41,51953.64,12198.48,12366.68,4047.27,28612.43,80566.07 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,33297,7358.4,0.0,0.0,7358.4,0.0,0.0,582.79,582.79,7941.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,41853,15283.1,368.1,0.0,15651.2,2844.18,3010.55,1188.18,7042.91,22694.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,51431,9880.87,0.0,61.31,9942.18,0.0,3581.0,770.63,4351.63,14293.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,43701,108038.0,4331.02,3820.38,116189.4,22289.68,12424.5,9141.25,43855.43,160044.83 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38918,28245.0,0.0,0.0,28245.0,7193.89,7167.99,2237.47,16599.35,44844.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,14204,79049.82,2589.08,7199.29,88838.19,17114.38,12323.56,1472.1,30910.04,119748.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,28016,60392.64,0.0,0.0,60392.64,12395.39,9246.22,5022.68,26664.29,87056.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,9670,101393.32,7217.91,17426.19,126037.42,22351.74,13607.58,2134.98,38094.3,164131.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49975,119467.36,89184.96,14920.17,223572.49,24090.22,12424.5,3767.49,40282.21,263854.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,10362,84644.0,27194.7,10893.66,122732.36,19017.94,12424.5,9768.02,41210.46,163942.82 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,14427,9768.0,0.0,0.0,9768.0,2190.96,1433.6,808.17,4432.73,14200.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,40658,100554.01,0.0,0.0,100554.01,20719.32,12424.5,8227.79,41371.61,141925.62 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,9015,34593.46,8771.42,4324.21,47689.09,8351.75,4014.07,765.05,13130.87,60819.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,26203,101724.47,0.0,0.0,101724.47,20467.64,9951.55,7611.33,38030.52,139754.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,45281,66102.0,3517.74,5747.89,75367.63,14799.35,12424.5,6077.65,33301.5,108669.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31151,2936.38,0.0,92.79,3029.17,1895.7,227.22,1101.26,3224.18,6253.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,25662,14267.35,0.0,0.0,14267.35,458.05,3013.54,1134.51,4606.1,18873.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",6316,65074.0,9144.23,2553.71,76771.94,1561.13,8601.58,6044.39,16207.1,92979.04 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),36122,184289.02,0.0,5248.28,189537.3,38144.36,12424.5,10944.44,61513.3,251050.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8832,56531.01,0.0,3066.36,59597.37,12002.22,12424.5,4930.58,29357.3,88954.67 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,28657,19361.6,0.0,0.0,19361.6,0.0,5160.95,1500.95,6661.9,26023.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,36017,135421.0,0.0,0.0,135421.0,27268.29,12424.49,10108.4,49801.18,185222.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,36011,30023.0,0.0,0.0,30023.0,6734.14,3345.06,2492.56,12571.76,42594.76 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,21729,97764.05,3049.13,8928.33,109741.51,25950.72,12424.51,1044.19,39419.42,149160.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7333,Apprentice Stationary Engineer,42961,41992.16,5773.88,493.03,48259.07,9446.7,6178.62,3845.55,19470.87,67729.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,3174,138.64,0.0,0.0,138.64,30.49,36.44,10.64,77.57,216.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12335,63718.3,3248.04,1001.12,67967.46,14729.66,12556.89,4968.7,32255.25,100222.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,16485,119992.22,5716.22,0.0,125708.44,24146.48,12424.5,9787.56,46358.54,172066.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,5472,56531.01,0.0,7169.76,63700.77,12404.78,12424.5,5166.81,29996.09,93696.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6537,9418.8,0.0,170.7,9589.5,0.0,4026.02,774.65,4800.67,14390.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10425,62801.46,3499.71,6151.78,72452.95,12225.72,7167.98,1213.92,20607.62,93060.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51573,124827.74,0.0,3998.99,128826.73,26218.2,10742.83,10725.15,47686.18,176512.91 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,21990,67911.0,0.0,7709.13,75620.13,15495.47,12424.5,6122.74,34042.71,109662.84 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,44027,21357.45,0.0,0.0,21357.45,4685.87,2516.26,1813.42,9015.55,30373.0 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,5039,94107.05,0.0,1204.59,95311.64,19646.12,12424.5,7857.29,39927.91,135239.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23839,56531.0,40.52,1965.6,58537.12,11659.55,12424.5,4842.06,28926.11,87463.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,22252,61735.01,0.0,749.42,62484.43,12878.58,12424.5,5179.16,30482.24,92966.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,45862,6534.0,0.0,0.0,6534.0,1465.59,1433.6,519.01,3418.2,9952.2 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,21261,85004.0,121.84,0.0,85125.84,17532.01,12424.5,6890.89,36847.4,121973.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,39463,139197.56,12169.19,11930.06,163296.81,28084.6,12424.51,414.6,40923.71,204220.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,11812,111845.81,0.0,2645.84,114491.65,23140.89,11886.89,9235.48,44263.26,158754.91 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,42897,115206.17,0.0,0.0,115206.17,23196.1,12388.66,9457.92,45042.68,160248.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,26553,61578.92,1296.7,1837.34,64712.96,13018.89,12251.28,5290.77,30560.94,95273.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3418,129604.97,83424.52,16200.57,229230.06,28683.63,15052.76,3912.37,47648.76,276878.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41128,3248.6,0.0,0.0,3248.6,0.0,884.05,251.61,1135.66,4384.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5303,"Sprv, Traffic & Street Signs",2968,93970.32,5542.37,0.0,99512.69,19338.96,12424.5,8155.75,39919.21,139431.9 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,27966,58520.0,0.0,760.0,59280.0,12663.8,9079.44,4818.09,26561.33,85841.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32010,7806.52,0.0,885.08,8691.6,1589.13,3370.92,711.22,5671.27,14362.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43819,117818.99,5709.03,6052.54,129580.56,23343.28,12424.5,2206.36,37974.14,167554.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,16651,84791.09,0.0,0.0,84791.09,17471.15,12424.5,6627.7,36523.35,121314.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,50456,93281.0,0.0,624.0,93905.0,9272.09,12424.5,7792.38,29488.97,123393.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,23323,61971.04,0.0,626.4,62597.44,12906.09,12472.29,5183.5,30561.88,93159.32 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,13561,32851.54,0.0,356.87,33208.41,7409.89,7027.61,2659.93,17097.43,50305.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31592,12562.63,496.31,82.06,13141.0,3029.83,3873.1,1003.03,7905.96,21046.96 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,50948,117411.03,0.0,0.0,117411.03,23822.84,11468.77,17042.21,52333.82,169744.85 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,44712,50404.16,0.0,0.0,50404.16,9138.25,4300.79,6808.35,20247.39,70651.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,53046,12899.0,0.0,0.0,12899.0,2400.49,2867.19,1036.88,6304.56,19203.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2408,Senior Pharmacy Helper,48773,74384.14,870.6,1717.65,76972.39,15361.59,12424.5,6373.99,34160.08,111132.47 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,23061,100554.02,0.0,480.0,101034.02,20824.84,12424.5,8154.44,41403.78,142437.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,15498,62991.09,310.64,9972.02,73273.75,14714.08,12460.35,5991.82,33166.25,106440.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2909,119455.92,37667.5,9153.02,166276.44,23662.83,12424.5,2762.0,38849.33,205125.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,28300,8910.0,0.0,0.0,8910.0,2298.8,2389.33,734.39,5422.52,14332.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,40804,93479.52,0.0,136.8,93616.32,17394.83,6690.09,4699.93,28784.85,122401.17 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7322,Automotive Body And Fender Worker Asst S,50441,97793.05,876.09,600.0,99269.14,20267.16,12424.5,7977.88,40669.54,139938.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,33558,72614.91,0.0,0.0,72614.91,14956.87,12424.51,5735.11,33116.49,105731.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,48885,158841.73,7548.53,4623.04,171013.3,31360.95,12424.5,2859.62,46645.07,217658.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,51383,36675.12,0.0,24105.78,60780.9,6735.16,2891.08,405.79,10032.03,70812.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,225,119467.33,2832.76,7311.2,129611.29,23620.92,12424.5,1219.34,37264.76,166876.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9206,Airport Property Specialist 1,19335,20140.01,0.0,0.0,20140.01,4517.4,2389.33,1644.65,8551.38,28691.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9019,4165.0,0.0,0.0,4165.0,0.0,2030.93,323.04,2353.97,6518.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,23922,23848.35,0.0,211.12,24059.47,5396.54,4203.72,1994.3,11594.56,35654.03 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,51852,24904.22,0.0,493.36,25397.58,6094.04,6150.72,2102.74,14347.5,39745.08 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1867,Auditor I,4685,10881.0,0.0,3271.55,14152.55,2440.62,2150.4,1125.81,5716.83,19869.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,30443,79395.07,0.0,1500.0,80895.07,16668.28,12424.51,6652.68,35745.47,116640.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46202,149099.0,0.0,250.0,149349.0,30006.36,12424.5,10280.22,52711.08,202060.08 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,44130,118104.03,0.0,0.0,118104.03,23768.42,12424.5,9506.81,45699.73,163803.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,48243,56276.01,0.0,624.0,56900.01,12731.53,12424.5,4716.09,29872.12,86772.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30874,68204.17,16103.66,4938.59,89246.42,20009.72,13436.26,6925.39,40371.37,129617.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48489,129335.04,3657.58,6142.3,139134.92,26477.57,12221.41,10100.36,48799.34,187934.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,48673,82883.0,1189.8,1269.6,85342.4,17331.89,12424.5,6713.95,36470.34,121812.74 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,35821,204900.05,0.0,10245.01,215145.06,43316.12,12328.92,11287.15,66932.19,282077.25 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,40046,61646.52,0.0,1663.1,63309.62,13052.83,12406.58,5177.99,30637.4,93947.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,13800,118104.06,0.0,0.0,118104.06,23768.42,12424.5,8715.0,44907.92,163011.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41393,111241.19,1169.64,19841.6,132252.43,0.0,9434.86,9564.26,18999.12,151251.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19674,72161.58,0.0,5159.93,77321.51,12784.66,7636.29,5622.71,26043.66,103365.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,42744,21036.45,0.0,0.0,21036.45,159.95,4229.1,1687.43,6076.48,27112.93 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,450C,Building Services Technician,38635,86530.2,0.0,3000.0,89530.2,17813.17,12424.5,7923.38,38161.05,127691.25 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,50184,11397.0,0.0,0.0,11397.0,2120.97,1433.6,908.04,4462.61,15859.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28603,120876.29,128.76,26758.56,147763.61,27954.71,10803.65,9587.95,48346.31,196109.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38751,67669.48,19288.34,1244.49,88202.31,18897.76,13339.61,6637.78,38875.15,127077.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,44327,85004.0,4626.76,10961.38,100592.14,19035.74,12424.5,8197.2,39657.44,140249.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,44025,40201.01,0.0,0.0,40201.01,7716.73,6785.69,3017.28,17519.7,57720.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,31339,84644.0,34915.05,14059.29,133618.34,19334.92,12424.5,9954.41,41713.83,175332.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10670,64334.0,19417.96,1620.44,85372.4,18031.75,12675.21,6453.32,37160.28,122532.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,28969,15931.31,0.0,605.86,16537.17,0.0,2413.22,1092.48,3505.7,20042.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,38423,107787.73,0.0,0.0,107787.73,21927.61,12424.5,16696.46,51048.57,158836.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28479,111096.51,6095.96,15912.99,133105.46,24566.11,14909.4,2194.26,41669.77,174775.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,21739,55414.2,302.48,2994.02,58710.7,12532.71,12328.92,4839.18,29700.81,88411.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,24269,18909.8,0.0,3086.29,21996.09,4563.23,5573.11,1854.37,11990.71,33986.8 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,48370,92716.62,134.89,11074.52,103926.03,20393.7,12299.06,8582.22,41274.98,145201.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24786,51477.0,2440.94,4022.08,57940.02,13248.39,12424.5,4733.72,30406.61,88346.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34716,118221.92,1248.49,26467.28,145937.69,25967.28,10497.99,6941.87,43407.14,189344.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42268,25891.59,0.0,180.0,26071.59,5721.73,5849.97,1993.7,13565.4,39636.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",49942,131577.13,111223.43,16447.22,259247.78,29091.9,15196.12,4369.88,48657.9,307905.68 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,19213,55487.82,0.0,0.0,55487.82,10707.06,7071.81,4359.71,22138.58,77626.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,35030,8836.92,0.0,579.42,9416.34,1982.16,1348.29,849.6,4180.05,13596.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,1326,65207.0,0.0,1560.0,66767.0,13005.99,9079.44,5146.7,27232.13,93999.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29459,5304.88,0.0,39.68,5344.56,0.0,2044.4,414.74,2459.14,7803.7 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,52023,48990.0,0.0,0.0,48990.0,2193.0,8123.71,3902.86,14219.57,63209.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",39179,130329.32,9076.51,22092.92,161498.75,29096.1,15052.76,2698.13,46846.99,208345.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40279,56531.0,0.0,3594.0,60125.0,11788.47,12424.5,4972.21,29185.18,89310.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20995,73731.63,0.0,8709.63,82441.26,0.0,0.0,1410.61,1410.61,83851.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,41061,41972.73,1273.43,270.26,43516.42,9292.97,6054.15,3628.66,18975.78,62492.2 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6138,Industrial Hygienist,21370,60823.03,0.0,0.0,60823.03,12255.06,6364.57,4725.89,23345.52,84168.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,30733,102583.5,0.0,0.0,102583.5,21069.33,12424.5,8357.33,41851.16,144434.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28540,122658.55,2016.04,11313.41,135988.0,25661.54,11200.87,9969.05,46831.46,182819.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,6421,126838.7,26946.26,12825.11,166610.07,25294.97,11468.76,2773.64,39537.37,206147.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23087,17750.83,2929.74,672.19,21352.76,4416.92,5481.3,1634.92,11533.14,32885.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,19868,35173.5,1192.14,6142.11,42507.75,7959.96,6260.04,3477.08,17697.08,60204.83 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,21199,96465.48,0.0,0.0,96465.48,19888.1,12424.5,7653.07,39965.67,136431.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,2765,126653.59,0.0,0.0,126653.59,25468.4,9265.51,9843.45,44577.36,171230.95 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",17960,74196.44,6297.51,1104.69,81598.64,17170.81,12342.86,1686.62,31200.29,112798.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",51167,31300.02,0.0,0.0,31300.02,5674.7,2389.33,2272.04,10336.07,41636.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,51132,84644.0,29780.87,5252.05,119676.92,17583.4,12424.51,9351.49,39359.4,159036.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,40835,56531.0,5730.89,6886.41,69148.3,12353.95,12424.5,5640.46,30418.91,99567.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,42411,37289.36,721.79,1843.25,39854.4,7735.78,7390.37,3294.89,18421.04,58275.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,15645,164581.64,0.0,0.0,164581.64,33122.14,12424.5,10529.92,56076.56,220658.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14918,17234.73,0.0,227.55,17462.28,3593.29,0.0,2037.67,5630.96,23093.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49611,119467.45,11687.81,4275.66,135430.92,23620.99,12424.5,2261.41,38306.9,173737.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3435,Urban Forestry Inspector,24802,61915.5,0.0,0.0,61915.5,12742.21,12424.5,4954.08,30120.79,92036.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,52994,128629.1,0.0,0.0,128629.1,25856.71,12424.5,17163.24,55444.45,184073.55 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,46951,21564.75,302.48,0.0,21867.23,0.0,4913.06,1695.25,6608.31,28475.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,8617,63577.41,10317.39,4518.37,78413.17,13107.36,11238.79,6383.65,30729.8,109142.97 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,49988,107842.0,25049.9,32385.75,165277.65,22226.51,12424.5,10549.43,45200.44,210478.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,2212,133087.01,0.0,0.0,133087.01,26783.95,12424.5,10081.43,49289.88,182376.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13905,67687.09,20968.58,4843.62,93499.29,19897.68,13338.06,7100.84,40336.58,133835.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,5372,107761.5,0.0,22.48,107783.98,21925.39,12421.5,16623.53,50970.42,158754.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21950,81075.41,4651.28,6700.18,92426.87,16855.94,12424.5,1531.68,30812.12,123238.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,26703,91537.02,0.0,0.0,91537.02,18863.09,12424.5,7020.21,38307.8,129844.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,26643,72699.0,937.0,1881.75,75517.75,15133.71,12424.5,6201.22,33759.43,109277.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,42997,19012.85,1344.98,2336.71,22694.54,3761.18,4282.86,1814.0,9858.04,32552.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5219,17017.21,0.0,3242.3,20259.51,3399.67,0.0,5366.97,8766.64,29026.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,8872,66325.5,16915.84,8746.86,91988.2,14648.83,12376.71,7465.58,34491.12,126479.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,26664,98157.0,0.0,0.0,98157.0,20230.58,12424.5,8010.9,40665.98,138822.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15907,53235.02,25878.77,5944.9,85058.69,16807.97,10586.76,6460.72,33855.45,118914.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,42058,10361.33,0.0,337.4,10698.73,2669.68,3125.84,843.24,6638.76,17337.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,35447,70245.0,23742.58,8555.78,102543.36,15643.18,12424.5,8108.64,36176.32,138719.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,34776,23265.5,0.0,0.0,23265.5,5218.43,3775.13,1879.88,10873.44,34138.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,46865,53668.74,0.0,150.0,53818.74,10821.58,8628.46,4270.29,23720.33,77539.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,49381,82765.66,2640.74,606.1,86012.5,15688.99,8601.46,1446.2,25736.65,111749.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,42189,135421.0,0.0,5883.63,141304.63,28437.86,12424.49,10132.07,50994.42,192299.05 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,4355,42544.42,0.0,20350.59,62895.01,9334.22,4491.93,5027.38,18853.53,81748.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,21698,57382.84,1409.4,0.0,58792.24,12108.13,8723.91,4877.39,25709.43,84501.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6092,67252.11,23424.23,9269.03,99945.37,20945.49,13249.96,7606.89,41802.34,141747.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,26847,10344.0,0.0,0.0,10344.0,0.0,2293.77,802.86,3096.63,13440.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,30919,1563.31,0.0,78.19,1641.5,297.63,155.31,132.42,585.36,2226.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6581,11818.0,0.0,0.0,11818.0,2598.77,2867.19,940.89,6406.85,18224.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,42611,94494.0,0.0,0.0,94494.0,19443.41,12424.51,7607.59,39475.51,133969.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,12479,56023.4,0.0,0.0,56023.4,11063.75,8267.07,4293.49,23624.31,79647.71 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,22800,48004.27,0.0,1474.88,49479.15,11663.43,12423.01,4052.0,28138.44,77617.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,29171,82717.02,7279.05,2897.78,92893.85,17049.7,12424.5,7414.7,36888.9,129782.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11062,33801.25,1158.94,4652.49,39612.68,6825.49,3664.63,3164.7,13654.82,53267.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,965,3612.66,0.0,181.68,3794.34,0.0,940.79,294.5,1235.29,5029.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",48696,130360.11,4965.61,15646.22,150971.94,28683.56,15054.91,1350.76,45089.23,196061.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,11930,36666.54,0.0,5996.69,42663.23,8789.39,6062.86,3517.76,18370.01,61033.24 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),2483,20486.4,0.0,15522.71,36009.11,4577.0,2102.62,2874.21,9553.83,45562.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,11991,156746.01,0.0,1430.0,158176.01,31545.23,12424.52,10456.3,54426.05,212602.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,3829,72996.93,0.0,1280.0,74276.93,15321.1,11417.11,6133.69,32871.9,107148.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10981,24178.0,0.0,1607.87,25785.87,0.0,2102.61,2001.4,4104.01,29889.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38410,114226.4,1162.56,8771.99,124160.95,21017.59,11084.09,8309.56,40411.24,164572.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,8154,84644.0,49377.38,11505.3,145526.68,19047.22,12424.5,10110.3,41582.02,187108.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,16257,80870.64,0.0,1582.38,82453.02,16990.73,12412.56,6703.21,36106.5,118559.52 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,23479,63784.0,0.0,1606.33,65390.33,13833.73,8123.71,20087.31,42044.75,107435.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4769,3270.41,0.0,250.0,3520.41,978.83,650.37,249.88,1879.08,5399.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40892,111768.69,39311.14,10667.17,161747.0,24450.54,15000.55,2656.79,42107.88,203854.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,22328,81598.9,755.6,10683.5,93038.0,18855.46,11976.2,7393.05,38224.71,131262.71 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,42098,82228.8,239.4,1303.35,83771.55,17217.48,12328.92,6693.79,36240.19,120011.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,41762,33002.61,304.32,0.0,33306.93,6295.04,6606.62,2649.5,15551.16,48858.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41642,8350.2,0.0,1265.37,9615.57,1039.08,645.24,467.95,2152.27,11767.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28641,93613.07,889.55,8437.85,102940.47,24799.19,11904.82,1075.04,37779.05,140719.52 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,34839,13945.01,0.0,0.0,13945.01,0.0,5196.78,1108.5,6305.28,20250.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,41477,4980.53,0.0,0.0,4980.53,0.0,2523.73,386.0,2909.73,7890.26 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,3166,42299.63,0.0,621.15,42920.78,8865.35,6212.25,3378.5,18456.1,61376.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3385,53262.45,1387.94,454.71,55105.1,14882.23,10527.5,4154.54,29564.27,84669.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8606,41341.64,0.0,1948.36,43290.0,138.93,0.0,5749.41,5888.34,49178.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,42337,81108.24,5325.2,18828.95,105262.39,19914.7,12416.98,8563.5,40895.18,146157.57 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,29188,103670.3,0.0,1520.0,105190.3,21671.57,12424.51,8387.83,42483.91,147674.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,42737,72096.4,6441.4,5851.4,84389.2,15172.43,12424.5,6749.05,34345.98,118735.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,27325,84644.02,0.0,2710.0,87354.02,17994.93,12424.5,6943.11,37362.54,124716.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42812,37343.57,4652.39,1155.34,43151.3,11182.2,7426.45,3156.33,21764.98,64916.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,18856,23989.53,5568.65,4864.24,34422.42,6097.14,5728.42,2739.73,14565.29,48987.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3346,46806.85,728.95,4750.44,52286.24,12028.27,12375.22,4212.25,28615.74,80901.98 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,7693,2225.67,863.02,0.0,3088.69,0.0,658.55,239.73,898.28,3986.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19440,1886.15,0.0,22.92,1909.07,0.0,471.9,147.8,619.7,2528.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,9276,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1831.16,10244.94,34248.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",1076,93433.84,4260.23,228.38,97922.45,19449.54,10933.03,8366.53,38749.1,136671.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,12372,11256.0,0.0,0.0,11256.0,2524.71,1433.6,916.81,4875.12,16131.12 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),9101,184289.02,0.0,1562.5,185851.52,37402.57,12424.5,10840.43,60667.5,246519.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,3059,58631.51,137.36,1035.45,59804.32,12198.75,11396.07,4934.66,28529.48,88333.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,12631,113623.03,0.0,0.0,113623.03,22866.77,12424.5,9105.61,44396.88,158019.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47083,120084.41,0.0,0.0,120084.41,0.0,8002.75,9308.99,17311.74,137396.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,9303,4397.0,0.0,0.0,4397.0,818.28,477.86,340.47,1636.61,6033.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,15147,42737.0,0.0,0.0,42737.0,9850.33,9461.73,3452.17,22764.23,65501.23 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,21732,54979.6,0.0,4016.5,58996.1,12296.55,12424.5,4892.38,29613.43,88609.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4726,40506.44,708.89,3492.39,44707.72,9268.02,6570.47,3705.76,19544.25,64251.97 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,31986,62360.98,0.0,0.0,62360.98,12511.02,7581.22,4811.04,24903.28,87264.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2023,117140.98,9910.34,12273.56,139324.88,23164.17,12424.5,2317.88,37906.55,177231.43 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,26089,70438.83,0.0,3521.97,73960.8,14894.05,3727.35,6121.98,24743.38,98704.18 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2555,Physical Therapist Assistant,23782,70074.11,0.0,0.0,70074.11,14653.57,9696.66,5705.94,30056.17,100130.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32463,68956.04,17340.12,5751.14,92047.3,20497.67,13587.63,7157.49,41242.79,133290.09 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,7327,55134.6,0.0,12412.21,67546.81,12438.58,6382.49,5504.78,24325.85,91872.66 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,44621,61230.62,0.0,1000.0,62230.62,12844.91,12185.57,4861.8,29892.28,92122.9 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8344,"Director, Juvenile Hall",44802,126308.55,0.0,0.0,126308.55,28814.54,12424.5,20049.85,61288.89,187597.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,12486,63887.0,2469.94,435.08,66792.02,13264.05,12424.5,5198.12,30886.67,97678.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,51795,37921.9,0.0,284.29,38206.19,7769.2,7114.64,3259.15,18142.99,56349.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,39565,55996.58,979.65,3925.05,60901.28,11668.05,12307.84,4781.85,28757.74,89659.02 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),23591,74247.01,0.0,750.0,74997.01,14371.59,8123.71,6055.47,28550.77,103547.78 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,32936,77267.51,2514.48,0.0,79781.99,16050.53,11516.55,6433.39,34000.47,113782.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,4751,73188.77,14.8,683.39,73886.96,15128.34,12330.3,5966.63,33425.27,107312.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,3443,60751.71,0.0,0.0,60751.71,13584.69,12424.5,4817.94,30827.13,91578.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,49286,95748.5,0.0,0.0,95748.5,19734.7,12424.52,7544.96,39704.18,135452.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2059,112043.69,20547.22,18153.1,150744.01,24676.16,15037.12,2567.81,42281.09,193025.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,34009,0.0,0.0,0.0,0.0,0.0,0.0,48.96,48.96,48.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5218,Structural Engineer,4298,145604.45,0.0,0.0,145604.45,29300.9,12116.88,10247.85,51665.63,197270.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,29960,20592.93,13300.72,2099.71,35993.36,3899.72,6200.31,2334.51,12434.54,48427.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,44219,53669.61,0.0,2294.91,55964.52,11496.75,9539.39,4470.46,25506.6,81471.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,29470,88831.02,18508.01,11501.67,118840.7,19961.09,12424.5,9491.27,41876.86,160717.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,1648,98772.04,0.0,3339.16,102111.2,21086.16,12185.55,8376.1,41647.81,143759.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,50160,66651.06,70.59,0.0,66721.65,14892.39,12424.5,5220.67,32537.56,99259.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,10614,129895.01,0.0,0.0,129895.01,26141.48,12424.51,9999.42,48565.41,178460.42 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42218,114843.8,0.0,1562.5,116406.3,23406.05,12424.5,9274.26,45104.81,161511.11 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",20196,131577.08,61073.75,17761.02,210411.85,29305.94,15196.12,3526.77,48028.83,258440.68 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,1240,65544.8,0.0,0.0,65544.8,12314.41,7120.2,5278.62,24713.23,90258.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51830,126155.82,0.0,16059.28,142215.1,17225.85,12424.5,6131.89,35782.24,177997.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7242,Painter Supervisor 1,12163,23744.5,958.91,9460.36,34163.77,5325.9,3106.13,2740.56,11172.59,45336.36 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",5300,Sub-Professional Engineering,5322,Graphic Artist,39287,24855.83,0.0,0.0,24855.83,5575.15,4850.04,1885.81,12311.0,37166.83 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,25966,77421.38,0.0,2200.0,79621.38,16385.59,12373.73,6361.76,35121.08,114742.46 +Calendar,2015,4,Community Health,DPH,Public Health,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,49660,56628.71,559.48,0.0,57188.19,12654.82,12322.95,4639.12,29616.89,86805.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,51728,3619.47,0.0,0.0,3619.47,242.06,1203.62,102.4,1548.08,5167.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,24346,70245.0,25.32,2938.9,73209.22,14606.45,12424.5,6041.13,33072.08,106281.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35152,119467.39,21767.03,13741.45,154975.87,24090.21,12424.5,394.92,36909.63,191885.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,12203,81157.0,9614.14,10104.82,100875.96,18367.52,12424.51,8097.34,38889.37,139765.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33857,123879.33,342.66,17976.59,142198.58,21362.48,10968.21,6966.91,39297.6,181496.18 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,52421,30896.0,0.0,0.0,30896.0,6930.0,3822.92,2498.59,13251.51,44147.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,2609,52240.6,1950.28,0.0,54190.88,12510.76,12424.5,4148.18,29083.44,83274.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7986,59816.43,183.38,2651.16,62650.97,17037.33,11783.45,4718.77,33539.55,96190.52 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,14713,50997.34,59.84,1651.25,52708.43,11676.93,10996.88,4286.17,26959.98,79668.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,3630,75577.91,51769.1,11618.32,138965.33,16943.43,12420.02,9961.25,39324.7,178290.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30139,4544.89,0.0,0.0,4544.89,0.0,1908.47,360.47,2268.94,6813.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50435,77071.14,0.0,0.0,77071.14,15893.14,12424.5,6392.92,34710.56,111781.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,22151,10728.79,0.0,0.0,10728.79,0.0,1487.36,832.73,2320.09,13048.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51655,3743.35,0.0,0.0,3743.35,0.0,1623.25,304.75,1928.0,5671.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50712,139547.52,0.0,9665.45,149212.97,27124.92,12411.06,5483.24,45019.22,194232.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31655,3785.25,0.0,0.0,3785.25,0.0,1845.75,293.63,2139.38,5924.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,29130,51405.0,3038.65,3816.13,58259.78,12597.67,12424.5,4804.71,29826.88,88086.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,4192,12413.92,0.0,221.82,12635.74,0.0,3088.2,979.52,4067.72,16703.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2691,3356.51,0.0,0.0,3356.51,0.0,1636.68,260.32,1897.0,5253.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,23482,28359.12,10.69,642.2,29012.01,6273.07,5977.32,2510.49,14760.88,43772.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",21808,130329.31,35023.89,18635.5,183988.7,29257.89,15052.76,3092.91,47403.56,231392.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,10826,66109.0,0.0,0.0,66109.0,13525.65,11468.77,5320.09,30314.51,96423.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,9395,"Property Manager, Port",40966,61256.42,0.0,0.0,61256.42,11822.97,7167.99,4869.41,23860.37,85116.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,4865,66907.43,0.0,0.0,66907.43,13491.78,9993.38,4674.34,28159.5,95066.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,32680,26964.39,80.35,3011.96,30056.7,6949.22,6207.29,2309.21,15465.72,45522.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21496,113889.15,42356.55,12520.6,168766.3,23732.3,12496.18,2747.62,38976.1,207742.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22379,1763.65,0.0,32.51,1796.16,2228.88,131.53,-0.02,2360.39,4156.55 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,24268,94393.0,0.0,0.0,94393.0,19394.59,12424.5,15632.47,47451.56,141844.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,333,53270.71,30.32,2072.1,55373.13,11471.71,7823.8,4367.9,23663.41,79036.54 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,22688,58559.91,0.0,0.0,58559.91,0.0,4945.91,4539.28,9485.19,68045.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",26969,131577.12,37220.27,16928.18,185725.57,29159.38,15196.12,3160.74,47516.24,233241.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,20646,72622.0,0.0,850.0,73472.0,15151.65,11946.64,6082.57,33180.86,106652.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47884,65256.83,9410.06,3548.13,78215.02,18852.26,12860.02,6130.15,37842.43,116057.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,28390,33032.28,124.24,13558.18,46714.7,7794.94,4764.56,3777.05,16336.55,63051.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18264,14967.71,0.0,0.0,14967.71,0.0,1290.23,1161.73,2451.96,17419.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19216,48890.45,370.18,1941.16,51201.79,11865.53,12424.5,4155.33,28445.36,79647.15 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,10033,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8758.4,43154.71,149759.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,15320,41503.8,0.0,160.0,41663.8,7553.65,3536.21,3265.5,14355.36,56019.16 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,21681,74394.11,0.0,5991.0,80385.11,15661.88,12421.52,6665.03,34748.43,115133.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18245,64660.8,17016.29,1846.76,83523.85,18197.3,12743.67,6514.22,37455.19,120979.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,49845,86172.14,11269.14,10828.81,108270.09,23581.21,10951.96,1787.2,36320.37,144590.46 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,472C,Fiscal Technician,12960,74331.29,0.0,5054.32,79385.61,15456.28,12411.01,6292.12,34159.41,113545.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,38985,5880.0,0.0,0.0,5880.0,1318.88,955.74,467.49,2742.11,8622.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36922,119455.89,45072.53,8495.63,173024.05,23662.79,12424.5,2911.42,38998.71,212022.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,30504,69976.52,946.95,4570.15,75493.62,14556.05,12376.71,6176.68,33109.44,108603.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,34693,29316.55,345.78,40.0,29702.33,0.0,5214.69,2305.37,7520.06,37222.39 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,50643,146532.13,0.0,0.0,146532.13,29478.35,12424.5,18632.45,60535.3,207067.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,20662,66102.02,0.0,100.0,66202.02,13642.68,12424.5,5444.29,31511.47,97713.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2204,Dental Hygienist,38171,37340.53,0.0,0.0,37340.53,7659.22,5841.9,3045.36,16546.48,53887.01 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,13798,23238.89,0.0,14121.67,37360.56,5212.49,2854.77,2929.2,10996.46,48357.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41719,56531.0,0.0,1965.6,58496.6,12680.14,12424.5,4793.99,29898.63,88395.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,30724,35922.0,0.0,740.0,36662.0,6985.84,6690.11,2973.25,16649.2,53311.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19371,19675.35,0.0,0.0,19675.35,1069.29,8475.79,1525.29,11070.37,30745.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46135,8488.5,0.0,170.7,8659.2,0.0,3619.83,694.98,4314.81,12974.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17334,89138.83,0.0,2901.35,92040.18,13068.58,7427.82,3901.71,24398.11,116438.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",11204,93738.04,949.81,667.49,95355.34,19469.03,12424.5,7649.76,39543.29,134898.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,28351,125815.03,0.0,0.0,125815.03,25320.89,12424.51,9872.63,47618.03,173433.06 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,27243,69253.3,0.0,0.0,69253.3,14215.24,11914.62,5413.29,31543.15,100796.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,19282,45214.0,2774.92,4733.87,52722.79,11391.19,12424.5,4238.88,28054.57,80777.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,49334,117135.29,5953.88,9084.08,132173.25,23184.68,12424.5,2204.72,37813.9,169987.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,6318,154414.2,0.0,0.0,154414.2,30918.05,12424.5,17638.64,60981.19,215395.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43529,76298.61,12621.51,12773.6,101693.72,17714.56,15052.76,1695.48,34462.8,136156.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",16381,30249.3,0.0,31.44,30280.74,0.0,3966.28,2350.27,6316.55,36597.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,34722,92226.76,0.0,0.0,92226.76,18997.74,12424.51,7216.54,38638.79,130865.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,39467,113964.17,5407.39,8016.23,127387.79,22865.61,11851.0,1364.92,36081.53,163469.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7220,Asphalt Finisher Supervisor 1,44477,77641.0,6557.72,1902.11,86100.83,17292.93,10513.08,6958.89,34764.9,120865.73 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8414,"Sprv Prob Ofc, Juv Court",26807,111091.07,0.0,0.0,111091.07,25340.74,12424.5,1887.82,39653.06,150744.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21507,55989.15,224.5,667.97,56881.62,11672.0,12304.69,4715.74,28692.43,85574.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48324,79384.17,905.22,19811.13,100100.52,18476.58,8150.6,7973.13,34600.31,134700.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,48667,51067.94,975.5,4320.49,56363.93,12878.06,11591.52,4439.74,28909.32,85273.25 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,27857,44891.74,0.0,81.28,44973.02,9849.22,5014.54,3575.09,18438.85,63411.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",42027,151567.45,0.0,0.0,151567.45,30571.43,12424.5,17575.08,60571.01,212138.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,44798,10017.52,0.0,0.0,10017.52,0.0,913.38,775.56,1688.94,11706.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51668,2534.6,0.0,0.0,2534.6,0.0,1099.09,196.23,1295.32,3829.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,26214,51405.0,6397.18,3530.29,61332.47,12610.47,12424.5,5038.38,30073.35,91405.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,42760,77098.43,0.0,1655.27,78753.7,16234.77,12250.38,6268.31,34753.46,113507.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,10559,61947.57,856.44,471.49,63275.5,12813.99,12252.65,5176.6,30243.24,93518.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,18684,56531.02,81.64,3930.9,60543.56,11780.12,12424.5,5000.77,29205.39,89748.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,35795,37082.0,0.0,0.0,37082.0,1660.0,8123.71,2967.28,12750.99,49832.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42596,2917.77,0.0,90.5,3008.27,344.05,0.0,638.75,982.8,3991.07 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",20830,2292.0,687.6,41.25,3020.85,0.0,0.0,239.09,239.09,3259.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,13134,13351.0,0.0,0.0,13351.0,2935.89,3536.2,1041.92,7514.01,20865.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6847,4885.2,106.2,57.35,5048.75,919.81,1099.09,387.9,2406.8,7455.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,28979,55492.71,676.35,1050.0,57219.06,11638.16,10968.74,4404.34,27011.24,84230.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,36643,70245.01,25154.1,9771.99,105171.1,15731.8,12424.5,8568.6,36724.9,141896.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,35493,53919.0,0.0,0.0,53919.0,11829.87,4300.79,4170.57,20301.23,74220.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",9300,Port Operation,9355,Wharfinger 1,13015,21062.0,0.0,778.8,21840.8,4724.19,3822.92,1777.59,10324.7,32165.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,458,44686.75,16142.52,4396.44,65225.71,12825.95,8762.85,5073.37,26662.17,91887.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,25734,7126.19,0.0,0.0,7126.19,0.0,1929.37,551.71,2481.08,9607.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,40572,124151.73,0.0,2453.76,126605.49,25689.9,11416.96,9870.74,46977.6,173583.09 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,6767,67536.01,0.0,0.0,67536.01,14531.98,8601.58,5343.13,28476.69,96012.7 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,22306,82320.0,0.0,0.0,82320.0,16612.59,10035.18,6585.77,33233.54,115553.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6627,29173.5,0.0,8989.05,38162.55,6725.57,6451.18,3122.69,16299.44,54461.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,11308,52711.03,0.0,0.0,52711.03,10441.38,8601.58,4329.5,23372.46,76083.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",7668,135109.0,22837.28,8106.54,166052.82,28149.67,12424.5,2775.39,43349.56,209402.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,15532,55087.65,0.0,0.0,55087.65,11420.81,7415.87,4252.8,23089.48,78177.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39324,43741.99,15352.94,3438.3,62533.23,13626.18,8698.89,4717.43,27042.5,89575.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,23240,2976.76,0.0,40.0,3016.76,676.66,477.86,238.32,1392.84,4409.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,28708,26815.0,0.0,0.0,26815.0,0.0,4969.8,2078.38,7048.18,33863.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",47089,182354.5,0.0,0.0,182354.5,36699.2,12424.5,18169.25,67292.95,249647.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,28163,108373.51,38287.48,14758.52,161419.51,28904.49,12424.5,2750.36,44079.35,205498.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,38517,1249.6,0.0,36.71,1286.31,0.0,382.29,99.84,482.13,1768.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,47446,27232.0,2516.66,1602.74,31351.4,5276.18,4396.4,2419.97,12092.55,43443.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47690,62096.38,3130.85,1683.64,66910.87,17406.65,12236.64,5209.4,34852.69,101763.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18702,0.0,0.0,250.0,250.0,0.0,34.25,0.0,34.25,284.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5191,6411.6,0.0,240.46,6652.06,232.48,430.07,73.42,735.97,7388.03 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,21844,133087.05,0.0,7404.32,140491.37,26783.95,12424.5,10163.82,49372.27,189863.64 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,374C,Admin Analyst 3,17625,16656.0,0.0,2376.52,19032.52,3735.94,0.0,1579.93,5315.87,24348.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",5787,132583.66,0.0,0.0,132583.66,26642.32,12424.5,17214.91,56281.73,188865.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",11853,7626.6,0.0,0.0,7626.6,0.0,1815.87,591.55,2407.42,10034.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,28141,81262.01,1697.86,600.0,83559.87,16927.08,11946.63,6851.79,35725.5,119285.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51661,67074.89,7488.27,2127.9,76691.06,15757.47,13214.71,5602.17,34574.35,111265.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,34663,64728.2,0.0,0.0,64728.2,2875.6,8314.86,5126.96,16317.42,81045.62 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,24187,191926.01,0.0,19192.6,211118.61,42487.89,12424.5,11306.66,66219.05,277337.66 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",52448,1961.31,0.0,0.0,1961.31,0.0,0.0,33.6,33.6,1994.91 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1031,IS Trainer-Assistant,15764,71707.64,0.0,0.0,71707.64,14771.15,12424.5,5533.96,32729.61,104437.25 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,14054,2907.0,772.18,242.25,3921.43,0.0,860.16,304.37,1164.53,5085.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23989,66498.15,9025.35,602.28,76125.78,15284.89,13102.47,5811.59,34198.95,110324.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,5231,119033.67,7763.0,12036.42,138833.09,23530.62,12370.74,2319.01,38220.37,177053.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,20110,6891.05,0.0,89.74,6980.79,0.0,2291.24,541.25,2832.49,9813.28 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,9597,11601.0,0.0,0.0,11601.0,2158.96,2150.39,933.47,5242.82,16843.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,6058,93546.39,0.0,0.0,93546.39,19173.73,11553.33,7673.73,38400.79,131947.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",7056,80449.9,0.0,0.0,80449.9,16664.27,11707.71,6490.26,34862.24,115312.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,143,8237.45,0.0,1124.31,9361.76,2189.3,3572.04,746.4,6507.74,15869.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,4409,4621.0,0.0,0.0,4621.0,837.79,477.87,335.98,1651.64,6272.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,43287,102019.0,0.0,0.0,102019.0,21026.26,12424.5,8296.61,41747.37,143766.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,36403,101417.59,11264.79,14508.84,127191.22,21812.35,11128.35,2128.09,35068.79,162260.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,28277,25177.0,0.0,2444.31,27621.31,5965.0,6690.11,2217.39,14872.5,42493.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,20643,62468.86,15898.64,2042.37,80409.87,13150.02,12424.5,6576.63,32151.15,112561.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17556,77071.07,286.59,0.0,77357.66,15893.14,12424.5,6282.98,34600.62,111958.28 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,157,44605.81,0.0,0.0,44605.81,9851.12,7167.99,3531.75,20550.86,65156.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14358,11171.53,0.0,1366.27,12537.8,2766.59,4844.36,1014.56,8625.51,21163.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5420,102490.77,12196.69,6742.75,121430.21,21720.91,15196.12,2017.35,38934.38,160364.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,25070,47570.25,4775.71,5145.95,57491.91,9894.44,8816.61,1439.62,20150.67,77642.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,531,74925.44,463.42,1220.0,76608.86,15674.18,12424.5,5675.49,33774.17,110383.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,34406,56732.6,0.0,0.0,56732.6,10285.63,5576.08,4472.42,20334.13,77066.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,4759,99300.05,0.0,2097.71,101397.76,20594.66,9557.31,8169.72,38321.69,139719.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46259,80957.63,4442.46,3322.1,88722.19,16556.63,12424.5,3222.08,32203.21,120925.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1386,6286.75,0.0,0.0,6286.75,0.0,2664.1,497.71,3161.81,9448.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7216,Electrical Trnst Shop Sprv 1,18398,119111.02,22023.76,7767.4,148902.18,24275.85,12424.5,10220.22,46920.57,195822.75 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,18011,192829.52,0.0,28924.45,221753.97,44620.46,11182.06,11520.24,67322.76,289076.73 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,28435,15134.27,0.0,224.72,15358.99,3802.23,4509.85,1165.59,9477.67,24836.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,30555,61735.03,0.0,624.0,62359.03,12852.62,12424.5,5103.57,30380.69,92739.72 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,25690,56276.02,80.66,2559.58,58916.26,12873.88,12424.5,4875.58,30173.96,89090.22 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,35626,100761.01,8942.08,5036.83,114739.92,21808.07,12424.5,9042.37,43274.94,158014.86 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,42745,12611.92,0.0,1545.69,14157.61,2828.84,2054.82,1259.65,6143.31,20300.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20487,4960.56,0.0,34.21,4994.77,0.0,68.5,0.0,68.5,5063.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7243,Parking Meter Repairer Sprv 1,39134,85368.02,4492.27,0.0,89860.29,17594.59,12424.5,7185.27,37204.36,127064.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,46195,122327.57,57852.67,11739.49,191919.73,24211.04,12424.5,3217.61,39853.15,231772.88 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,6930,182293.0,0.0,0.0,182293.0,36686.83,12424.5,18385.37,67496.7,249789.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52821,5679.64,120.6,122.52,5922.76,0.0,445.01,99.83,544.84,6467.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,2144,2458.33,0.0,845.83,3304.16,718.2,378.7,469.42,1566.32,4870.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,52817,138629.27,29551.36,8130.52,176311.15,27417.19,12424.5,2991.66,42833.35,219144.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,42615,19672.02,0.0,0.0,19672.02,4668.73,3822.92,1589.11,10080.76,29752.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,13171,28019.06,0.0,0.0,28019.06,7228.92,6242.12,2392.83,15863.87,43882.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33277,142293.08,82968.33,23197.5,248458.91,28319.76,12424.5,4185.32,44929.58,293388.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7398,Apprentice Cement Mason I,49402,11500.0,258.3,0.0,11758.3,0.0,2807.45,930.0,3737.45,15495.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,30750,96344.89,14993.96,4571.15,115910.0,20665.55,11876.68,9519.66,42061.89,157971.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,47812,84644.02,3978.45,3768.51,92390.98,17695.18,12424.5,7133.75,37253.43,129644.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43100,62361.09,6819.11,2268.53,71448.73,17575.13,12277.8,5200.29,35053.22,106501.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,9354,Elevator And Crane Technician,52022,112776.0,38599.09,792.48,152167.57,22696.41,12424.5,10236.08,45356.99,197524.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23572,65155.51,603.45,4559.42,70318.38,2615.62,0.0,7106.91,9722.53,80040.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10475,63887.0,0.0,798.68,64685.68,13332.0,12424.51,5338.61,31095.12,95780.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23743,18472.86,0.0,1525.56,19998.42,3164.89,0.0,2074.38,5239.27,25237.69 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,10376,23661.75,0.0,280.36,23942.11,5742.53,6930.07,1934.38,14606.98,38549.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,46303,67025.56,2949.78,2884.12,72859.46,13948.16,11853.22,6013.32,31814.7,104674.16 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,35902,3910.2,0.0,351.92,4262.12,877.06,477.86,334.89,1689.81,5951.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,23644,55047.65,10289.66,8970.84,74308.15,14529.34,12462.74,5959.64,32951.72,107259.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,49866,84405.03,0.0,0.0,84405.03,17894.19,8123.71,6920.73,32938.63,117343.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,22824,85004.03,7266.16,14638.68,106908.87,18844.93,12424.5,8744.12,40013.55,146922.42 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,28804,9894.75,0.0,0.0,9894.75,0.0,3682.55,801.65,4484.2,14378.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38209,66743.68,20246.25,4804.69,91794.62,19591.34,13150.75,7132.7,39874.79,131669.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14417,43269.33,0.0,0.0,43269.33,0.0,3763.19,3358.39,7121.58,50390.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,47538,47895.0,0.0,0.0,47895.0,10584.29,7167.98,3812.0,21564.27,69459.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,42330,57524.01,913.42,604.88,59042.31,11981.0,12424.5,4890.51,29296.01,88338.32 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,20408,9842.59,0.0,0.0,9842.59,0.0,0.0,778.56,778.56,10621.15 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),28011,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10946.38,60759.71,246548.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,21356,0.0,0.0,19072.24,19072.24,0.0,68.5,0.0,68.5,19140.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,19481,108038.0,26738.57,7866.51,142643.08,22270.33,12424.5,10072.85,44767.68,187410.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,51004,39305.01,0.0,825.95,40130.96,8350.04,7914.65,3290.06,19554.75,59685.71 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",10946,63464.23,6224.94,7707.15,77396.32,14223.66,12332.21,1573.2,28129.07,105525.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,38578,4464.88,0.0,39.86,4504.74,0.0,2087.67,349.37,2437.04,6941.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,50739,97221.31,0.0,0.0,97221.31,20152.95,11726.51,7918.97,39798.43,137019.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48339,97099.05,25973.59,10086.36,133159.0,21339.7,15052.76,2175.84,38568.3,171727.3 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",47020,20556.0,0.0,3000.0,23556.0,0.0,3440.63,1877.37,5318.0,28874.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,44774,89823.42,0.0,1310.0,91133.42,18800.23,12424.51,6992.15,38216.89,129350.31 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",4100,Property Administration,4119,Events & Facilities Specialist,49583,3401.89,0.0,0.0,3401.89,0.0,0.0,269.23,269.23,3671.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,36038,41796.1,0.0,0.0,41796.1,8057.64,7024.62,3131.23,18213.49,60009.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,27108,82297.01,18721.92,2341.65,103360.58,16966.34,12424.51,8101.73,37492.58,140853.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,4225,97763.67,15521.64,16296.27,129581.58,27744.06,12424.5,2160.63,42329.19,171910.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33883,76066.78,0.0,0.0,76066.78,0.0,6640.84,5898.69,12539.53,88606.31 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,32024,87047.82,0.0,0.0,87047.82,17903.55,12424.5,6831.65,37159.7,124207.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,17837,13590.32,0.0,409.94,14000.26,0.0,0.0,1107.65,1107.65,15107.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27723,3416.21,0.0,0.0,3416.21,0.0,1481.39,280.09,1761.48,5177.69 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,40921,34635.93,0.0,0.0,34635.93,7653.06,7167.99,2719.88,17540.93,52176.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,49262,69137.39,1925.07,3735.12,74797.58,14387.5,12227.5,6166.67,32781.67,107579.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,14788,62034.95,268.5,9004.45,71307.9,13655.13,10972.99,5862.99,30491.11,101799.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,608,7129.47,0.0,250.0,7379.47,2075.46,1416.69,495.89,3988.04,11367.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,12345,28696.01,0.0,0.0,28696.01,5340.34,5256.52,2308.73,12905.59,41601.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,6073,1818.0,0.0,0.0,1818.0,0.0,477.86,140.74,618.6,2436.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,49987,135812.3,8685.6,13851.03,158348.93,26845.48,12376.71,2652.53,41874.72,200223.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,36275,97934.04,0.0,624.0,98558.04,20309.94,12424.5,8173.79,40908.23,139466.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,1668,116976.02,0.0,0.0,116976.02,23541.49,12424.52,9618.36,45584.37,162560.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,28805,15457.4,321.46,440.0,16218.86,3451.84,4109.64,1234.63,8796.11,25014.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50402,66366.04,5621.66,1699.35,73687.05,18625.35,13076.61,5702.18,37404.14,111091.19 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5177,Safety Officer,7592,0.0,0.0,327.83,327.83,0.0,68.5,25.08,93.58,421.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,718.0,"Glaziers, Metal, and Glass Workers, Local 718",7300,Journeyman Trade,7326,Glazier,40547,87531.05,501.9,1986.0,90018.95,18445.83,12424.51,7206.26,38076.6,128095.55 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),42706,184289.01,0.0,5248.28,189537.29,38144.36,12424.5,11060.67,61629.53,251166.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13669,14883.93,0.0,2034.97,16918.9,6589.72,0.0,161.45,6751.17,23670.07 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,27033,67911.03,12427.88,5074.27,85413.18,14442.85,12424.5,6882.27,33749.62,119162.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,45014,66102.0,0.0,330.0,66432.0,13693.86,12424.5,5467.01,31585.37,98017.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,29550,101531.02,4849.62,0.0,106380.64,20926.02,12424.49,8597.76,41948.27,148328.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,21088,67261.0,0.0,918.44,68179.44,14066.88,12424.5,5606.24,32097.62,100277.06 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,809,5744.67,0.0,0.0,5744.67,0.0,1814.4,444.75,2259.15,8003.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,9471,35469.0,13540.9,3358.73,52368.63,6972.71,4300.79,4162.39,15435.89,67804.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30984,11100.66,0.0,250.0,11350.66,2986.72,2190.77,780.72,5958.21,17308.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,10545,19334.95,0.0,0.0,19334.95,1433.36,6319.77,1551.9,9305.03,28639.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33056,61445.9,268.5,6109.26,67823.66,12988.53,10871.44,5303.79,29163.76,96987.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,90,24081.61,4642.01,938.15,29661.77,5611.93,3822.92,2419.71,11854.56,41516.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,15256,139052.19,5523.29,12898.33,157473.81,27539.34,12424.5,2681.52,42645.36,200119.17 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,16476,10684.01,0.0,0.0,10684.01,2344.07,955.73,863.12,4162.92,14846.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,26191,50479.49,0.0,2711.78,53191.27,12268.71,12201.76,4403.8,28874.27,82065.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4378,56531.0,0.0,7362.7,63893.7,13749.33,12424.5,5124.3,31298.13,95191.83 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,52684,15238.0,0.0,0.0,15238.0,0.0,5015.19,1181.23,6196.42,21434.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34967,54378.1,1065.74,4098.35,59542.19,16416.14,10786.67,4629.12,31831.93,91374.12 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,49287,59930.52,7.92,0.0,59938.44,12236.79,11229.84,4769.32,28235.95,88174.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32085,4459.54,0.0,0.0,4459.54,0.0,1872.64,353.84,2226.48,6686.02 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,26498,83627.01,0.0,0.0,83627.01,17234.04,12424.51,6730.48,36389.03,120016.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,30028,71116.05,1065.92,1480.0,73661.97,14924.45,12216.69,5441.44,32582.58,106244.55 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,32940,72239.72,0.0,1502.13,73741.85,15196.24,12346.85,6033.37,33576.46,107318.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,2957,14800.0,279.54,394.24,15473.78,2827.65,2389.33,1224.35,6441.33,21915.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,44660,33550.3,753.38,1528.03,35831.71,8637.24,7980.36,2903.71,19521.31,55353.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7811,67749.19,23202.03,6117.36,97068.58,20245.99,13351.21,7337.79,40934.99,138003.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,4403,15544.95,0.0,1458.5,17003.45,0.0,1128.95,762.16,1891.11,18894.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,27026,964.25,0.0,0.0,964.25,0.0,418.13,74.65,492.78,1457.03 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),50797,112563.61,0.0,1500.0,114063.61,22831.29,11884.39,8579.31,43294.99,157358.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,26484,119015.2,34585.7,4507.1,158108.0,24765.0,12424.5,10376.95,47566.45,205674.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25832,64521.23,1713.58,691.63,66926.44,17844.25,12713.73,5064.7,35622.68,102549.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",25675,180414.17,44096.98,27521.81,252032.96,40708.42,15100.54,4255.08,60064.04,312097.0 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,50993,95267.9,19663.1,1288.71,116219.71,10135.37,12376.71,9283.87,31795.95,148015.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8817,4516.44,0.0,0.0,4516.44,0.0,1896.53,358.26,2254.79,6771.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,17619,29666.49,0.0,595.82,30262.31,6772.02,6260.04,2452.26,15484.32,45746.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52530,120571.27,640.93,27457.39,148669.59,27731.3,11010.02,9709.49,48450.81,197120.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,12289,54124.0,0.0,624.0,54748.0,12250.24,12424.5,4837.08,29511.82,84259.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",7000,8454.49,0.0,0.0,8454.49,0.0,2013.01,655.95,2668.96,11123.45 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",36262,225.0,0.0,0.0,225.0,0.0,0.0,17.79,17.79,242.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,50032,130833.49,60813.83,7850.04,199497.36,27305.78,15196.12,3351.73,45853.63,245350.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,35479,3452.08,0.0,0.0,3452.08,0.0,1142.4,267.42,1409.82,4861.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,42651,76880.02,396.41,0.0,77276.43,16319.11,9557.31,6250.53,32126.95,109403.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,22940,8309.25,260.53,162.06,8731.84,0.0,1992.11,676.6,2668.71,11400.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,19813,92959.7,0.0,0.0,92959.7,19121.16,12424.51,7564.3,39109.97,132069.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,9696,78493.2,7779.56,1704.5,87977.26,14627.82,12233.35,6838.64,33699.81,121677.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,49732,88914.51,0.0,4730.88,93645.39,19394.11,9557.31,7688.67,36640.09,130285.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,11163,62584.55,704.97,2141.25,65430.77,12876.88,8951.44,5530.59,27358.91,92789.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9508,Prpl Permit And Citation Clerk,16071,82073.62,2184.53,0.0,84258.15,16916.1,12420.26,6981.11,36317.47,120575.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46097,5460.0,0.0,0.0,5460.0,0.0,1433.6,423.79,1857.39,7317.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,34240,119427.0,0.0,1296.48,120723.48,24278.54,12424.5,17091.36,53794.4,174517.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,48212,44033.2,32910.53,3774.48,80718.21,10550.45,12424.5,6405.79,29380.74,110098.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,30989,9492.12,0.0,67.44,9559.56,0.0,0.0,756.04,756.04,10315.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,32425,97424.02,69.83,290.0,97783.85,20138.63,12424.52,7704.32,40267.47,138051.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4151,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3376.05,18201.9,61969.2 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,7188,58652.01,649.15,7184.81,66485.97,14507.3,12424.5,5378.42,32310.22,98796.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35624,119455.93,6602.34,7058.52,133116.79,23662.81,12424.5,2252.97,38340.28,171457.07 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,34181,72618.24,0.0,0.0,72618.24,14949.57,12424.5,5505.93,32880.0,105498.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26953,12581.02,0.0,874.99,13456.01,1568.66,0.0,3411.35,4980.01,18436.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,32473,102019.05,0.0,0.0,102019.05,21022.56,12424.5,8382.67,41829.73,143848.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,5744,112692.91,1854.68,3030.68,117578.27,22303.28,12424.5,1710.5,36438.28,154016.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,14585,52710.0,48878.33,12636.02,114224.35,12337.43,9557.31,8331.04,30225.78,144450.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,849,60598.79,1244.29,4400.77,66243.85,12935.15,11984.32,5480.36,30399.83,96643.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,36200,84644.0,606.38,600.0,85850.38,17581.16,12424.51,6906.03,36911.7,122762.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,4155,70337.35,0.0,0.0,70337.35,14460.64,12325.94,5680.12,32466.7,102804.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,21138,52858.17,1696.8,250.0,54804.97,11637.56,12424.5,4394.69,28456.75,83261.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,1658,9416.05,34.09,0.0,9450.14,0.0,2419.19,733.49,3152.68,12602.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37825,63828.39,461.5,4284.31,68574.2,12725.59,6543.18,5125.78,24394.55,92968.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,38749,15912.0,2013.87,0.0,17925.87,2961.24,1911.47,1411.24,6283.95,24209.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,23602,100.0,0.0,0.0,100.0,0.0,23.89,7.76,31.65,131.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6463,0.0,0.0,860.94,860.94,0.0,68.5,65.86,134.36,995.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,12259,71311.01,817.81,0.0,72128.82,14697.59,12424.5,5865.4,32987.49,105116.31 +Calendar,2015,4,Community Health,DPH,Public Health,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,4300,79956.69,1602.74,2900.0,84459.43,16970.26,11457.18,7358.12,35785.56,120244.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9711,45069.25,3513.19,824.91,49407.35,12451.29,8847.38,3906.41,25205.08,74612.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44720,20873.09,4369.24,993.75,26236.08,6075.11,6588.87,1866.46,14530.44,40766.52 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,476C,Personnel/Payroll Repres,41192,88296.03,0.0,4698.0,92994.03,18209.2,12424.5,7648.95,38282.65,131276.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,31269,72876.0,29083.04,341.4,102300.44,15088.36,12424.51,8215.04,35727.91,138028.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27247,54522.51,0.0,7546.17,62068.68,14209.01,12424.5,5019.96,31653.47,93722.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",2694,27887.0,0.0,0.0,27887.0,5189.77,2867.19,4028.04,12085.0,39972.0 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,29101,107753.84,34160.58,12382.7,154297.12,23581.12,12513.75,2576.17,38671.04,192968.16 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,7455,19133.02,0.0,315.45,19448.47,4639.67,5734.39,1571.09,11945.15,31393.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17344,112653.12,4551.77,11118.78,128323.67,22303.04,12420.32,2175.25,36898.61,165222.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,866,74165.09,0.0,624.0,74789.09,15422.66,12424.5,5908.25,33755.41,108544.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,9429,105557.02,0.0,0.0,105557.02,21732.84,12424.5,8594.78,42752.12,148309.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20010,6171.2,0.0,0.0,6171.2,0.0,2676.05,492.71,3168.76,9339.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,36079,43239.51,0.0,360.0,43599.51,8405.94,7167.97,3475.88,19049.79,62649.3 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,20305,403.76,355.8,0.0,759.56,0.0,119.47,58.95,178.42,937.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,3075,63887.02,0.0,624.0,64511.02,13295.99,12424.5,5347.91,31068.4,95579.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39381,97764.58,63120.33,18265.95,179150.86,28102.79,12424.5,3054.46,43581.75,222732.61 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,12389,71819.9,0.0,1211.08,73030.98,14903.17,12400.6,5891.61,33195.38,106226.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38081,80949.93,6700.01,7091.51,94741.45,16721.5,12424.51,1766.41,30912.42,125653.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,39329,21236.45,0.0,0.0,21236.45,732.59,6881.55,1264.88,8879.02,30115.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24214,21441.01,0.0,590.63,22031.64,0.0,1830.11,1674.09,3504.2,25535.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,32006,54318.65,8772.16,1086.36,64177.17,12155.88,5734.39,5152.82,23043.09,87220.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,13402,55202.7,0.0,828.51,56031.21,11629.27,10981.95,4581.49,27192.71,83223.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27794,2505.13,0.0,4.9,2510.03,0.0,1221.54,194.66,1416.2,3926.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,47396,12346.95,0.0,0.0,12346.95,0.0,1596.37,956.1,2552.47,14899.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,42407,116709.28,36724.39,5156.95,158590.62,23129.61,12305.04,2648.31,38082.96,196673.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4277,1084.6,0.0,108.46,1193.06,0.0,95.58,92.36,187.94,1381.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,347,5186.72,0.0,250.0,5436.72,1256.73,1031.48,377.23,2665.44,8102.16 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,37353,25375.35,0.0,978.06,26353.41,5639.0,5138.13,2263.43,13040.56,39393.97 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,8466,82794.49,0.0,3585.12,86379.61,17173.52,11650.36,7198.8,36022.68,122402.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,4522,19680.65,0.0,192.92,19873.57,4737.04,5898.66,1608.28,12243.98,32117.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,48095,97424.0,8990.53,528.5,106943.03,20189.47,12424.54,8799.88,41413.89,148356.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,26971,0.0,0.0,1528.52,1528.52,0.0,13.7,119.31,133.01,1661.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9706,Employment & Training Spec 5,36225,97664.5,0.0,40.0,97704.5,20063.68,11946.64,8110.72,40121.04,137825.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,20782,45223.34,0.0,4540.88,49764.22,9994.67,9954.53,4071.84,24021.04,73785.26 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,26694,62562.51,1322.65,1020.42,64905.58,13179.76,11551.21,5330.1,30061.07,94966.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,32554,62497.74,15114.54,4856.0,82468.28,13107.48,12362.97,6158.42,31628.87,114097.15 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,38740,67911.0,601.42,3395.55,71907.97,14696.7,12424.5,5687.4,32808.6,104716.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,36267,63887.0,3825.87,5085.89,72798.76,14223.72,12424.49,5969.47,32617.68,105416.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20334,5791.93,0.0,15.77,5807.7,3893.18,0.0,-1182.53,2710.65,8518.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,7906,8316.0,0.0,740.2,9056.2,1561.02,1433.6,690.13,3684.75,12740.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,12738,36427.53,0.0,0.0,36427.53,8876.51,8123.69,2936.76,19936.96,56364.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3392,67687.92,11516.61,2035.74,81240.27,19118.23,13336.93,5997.95,38453.11,119693.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,21390,74421.13,1078.48,2086.0,77585.61,15430.16,10015.22,6309.84,31755.22,109340.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27001,148988.68,0.0,9673.25,158661.93,27479.81,12415.54,5530.38,45425.73,204087.66 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2462,Microbiologist,18045,42427.7,0.0,0.0,42427.7,8176.38,6776.73,3399.4,18352.51,60780.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,14702,154664.85,0.0,0.0,154664.85,31071.09,12424.51,17486.78,60982.38,215647.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49501,7273.95,0.0,134.94,7408.89,0.0,1808.25,544.5,2352.75,9761.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12412,3216.25,0.0,53.32,3269.57,0.0,1239.47,253.13,1492.6,4762.17 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,42493,38507.77,0.0,0.0,38507.77,0.0,0.0,3046.02,3046.02,41553.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7213,Plumber Supervisor 1,21358,56342.04,1049.62,7492.4,64884.06,12979.5,6212.25,5178.76,24370.51,89254.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,44288,58219.73,12589.01,5373.46,76182.2,13148.22,10465.25,1238.13,24851.6,101033.8 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,35674,79264.84,0.0,1752.2,81017.04,16705.87,12472.29,6667.45,35845.61,116862.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,23105,116976.02,0.0,1285.65,118261.67,23810.22,12424.5,9689.12,45923.84,164185.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2487,Chemist III,8906,119321.0,0.0,0.0,119321.0,24013.56,12424.5,9614.41,46052.47,165373.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26472,1766.75,0.0,28.65,1795.4,0.0,442.01,139.0,581.01,2376.41 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1492,"Asst Clk, Board Of Supervisors",39723,100555.84,854.3,0.0,101410.14,20707.3,12424.5,8112.47,41244.27,142654.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,18114,133087.0,0.0,4640.6,137727.6,26783.95,12424.5,9984.91,49193.36,186920.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,50892,74359.01,22157.04,11044.49,107560.54,17509.98,9175.02,1799.9,28484.9,136045.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,47783,85962.1,426.43,740.0,87128.53,17871.11,12418.53,7144.12,37433.76,124562.29 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,25940,55755.1,0.0,0.0,55755.1,11482.82,12424.5,4434.29,28341.61,84096.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",37906,37155.0,3689.45,0.0,40844.45,6914.56,4300.77,3350.8,14566.13,55410.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7596,92273.29,6787.61,9450.44,108511.34,0.0,7544.37,7842.61,15386.98,123898.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21391,11893.5,0.0,355.36,12248.86,2949.23,920.07,668.45,4537.75,16786.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1839,Water Conservation Admin,50432,123476.07,0.0,0.0,123476.07,24829.58,12424.5,16992.23,54246.31,177722.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,27731,3003.43,0.0,57.65,3061.08,650.79,295.68,248.7,1195.17,4256.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,24196,113128.47,3773.57,10259.04,127161.08,23701.21,12413.15,2238.64,38353.0,165514.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6200,Public Safety Inspection,6220,"Inspector, Weights & Measures",33712,56024.4,0.0,0.0,56024.4,11536.65,10448.23,4546.88,26531.76,82556.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,2790,20842.18,0.0,0.0,20842.18,3467.27,6303.65,1619.67,11390.59,32232.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,9088,57536.0,0.0,0.0,57536.0,11309.45,8123.71,4497.57,23930.73,81466.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,8624,183569.91,0.0,0.0,183569.91,36943.66,12424.51,18174.54,67542.71,251112.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7392,Window Cleaner,15113,76338.0,0.0,651.83,76989.83,15867.51,12424.5,6331.87,34623.88,111613.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,27338,46094.32,0.0,1214.01,47308.33,9768.75,6140.57,3844.85,19754.17,67062.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10099,45359.08,0.0,4696.99,50056.07,0.0,3910.67,3862.83,7773.5,57829.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,20315,77071.04,8837.29,624.0,86532.33,16013.39,12424.5,7141.57,35579.46,122111.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29797,16824.61,2286.77,2731.63,21843.01,3636.96,1863.67,361.55,5862.18,27705.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,7356,69902.0,4354.82,0.0,74256.82,14407.12,12424.5,5767.98,32599.6,106856.42 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,44075,223269.3,0.0,11163.46,234432.76,47106.04,12424.5,11737.3,71267.84,305700.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,18600,83515.4,20217.33,8133.13,111865.86,18272.46,12663.44,8901.32,39837.22,151703.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,21219,170335.0,0.0,0.0,170335.0,34279.68,12424.5,17924.2,64628.38,234963.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,42486,24521.55,0.0,0.0,24521.55,4445.76,1911.46,2973.64,9330.86,33852.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22618,9705.67,544.69,87.35,10337.71,2340.06,2968.56,792.12,6100.74,16438.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9168,39554.04,889.49,532.04,40975.57,10789.96,7802.71,3033.62,21626.29,62601.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,21975,87971.54,0.0,0.0,87971.54,18194.41,11639.49,7068.27,36902.17,124873.71 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,11924,22404.5,0.0,3024.57,25429.07,4061.95,1911.46,475.08,6448.49,31877.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,16436,97424.02,10814.96,11121.96,119360.94,20079.53,12424.5,8638.68,41142.71,160503.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,43200,57537.73,19041.77,12234.93,88814.43,13450.35,11377.09,7014.54,31841.98,120656.41 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,49244,107842.0,26550.73,309.15,134701.88,22226.51,12424.5,9985.91,44636.92,179338.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,31148,18832.4,0.0,200.0,19032.4,0.0,4587.51,1523.41,6110.92,25143.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,35398,3408.9,0.0,0.0,3408.9,747.91,525.65,262.27,1535.83,4944.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,33914,54894.62,0.0,1380.0,56274.62,11504.22,11098.43,4220.89,26823.54,83098.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48192,55593.7,81.04,0.0,55674.74,12407.19,12424.5,4276.02,29107.71,84782.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,25251,91235.29,0.0,2494.5,93729.79,19425.43,11179.83,7724.7,38329.96,132059.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30128,17104.83,0.0,1107.32,18212.15,1735.96,0.0,5178.91,6914.87,25127.02 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1958,Supervising Purchaser,52807,126886.07,0.0,0.0,126886.07,25531.4,12400.61,9955.35,47887.36,174773.43 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,19561,10425.92,0.0,0.0,10425.92,0.0,3894.61,808.21,4702.82,15128.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,32066,55855.0,363.66,7718.14,63936.8,13651.49,12424.5,5105.3,31181.29,95118.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4186,56163.3,2384.18,1274.02,59821.5,10885.46,8601.58,4015.57,23502.61,83324.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39059,64811.81,7096.64,1004.01,72912.46,17981.41,12768.45,5644.26,36394.12,109306.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,49288,6534.0,0.0,0.0,6534.0,1465.59,1433.6,502.27,3401.46,9935.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35271,64907.11,55.54,3231.45,68194.1,13927.47,10513.04,5659.83,30100.34,98294.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,20511,64361.02,0.0,372.0,64733.02,13339.49,7406.92,5317.13,26063.54,90796.56 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,21937,42299.61,0.0,900.14,43199.75,8922.93,6212.25,3526.06,18661.24,61860.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,46182,60399.75,686.1,0.0,61085.85,12426.26,12424.51,5433.56,30284.33,91370.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22797,23953.9,2910.22,344.48,27208.6,5995.75,7439.93,2077.83,15513.51,42722.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,7059,129811.04,0.0,0.0,129811.04,26124.2,12424.5,9943.57,48492.27,178303.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,20573,88831.0,21500.23,5990.16,116321.39,18727.17,12424.5,9534.69,40686.36,157007.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33716,35823.43,2170.07,823.28,38816.78,9779.04,10518.53,2913.38,23210.95,62027.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52488,112190.77,72853.25,15268.12,200312.14,24238.94,15004.97,3364.41,42608.32,242920.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,36743,176257.03,0.0,0.0,176257.03,35471.94,12424.52,10789.05,58685.51,234942.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,43609,37436.9,2515.83,1804.45,41757.18,0.0,5399.88,3374.6,8774.48,50531.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17505,2989.0,0.0,0.0,2989.0,0.0,1457.49,231.8,1689.29,4678.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26463,936.7,0.0,737.24,1673.94,241.67,406.19,136.38,784.24,2458.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,23433,52971.7,0.0,6765.3,59737.0,11680.82,11678.32,5383.79,28742.93,88479.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,52604,85368.04,2377.34,22984.76,110730.14,17594.6,12424.5,8968.86,38987.96,149718.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,8580,5353.76,0.0,0.0,5353.76,0.0,0.0,368.2,368.2,5721.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,19631,22461.0,0.0,0.0,22461.0,4180.0,3822.92,1768.22,9771.14,32232.14 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,30636,35076.34,0.0,0.0,35076.34,7867.62,4226.35,2659.51,14753.48,49829.82 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,26132,87531.13,0.0,624.0,88155.13,18180.6,12424.5,7100.61,37705.71,125860.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,51092,98157.0,0.0,0.0,98157.0,20230.58,12424.5,7912.93,40568.01,138725.01 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,27193,69178.13,0.0,3733.28,72911.41,15486.57,8559.77,5806.36,29852.7,102764.11 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,9968,24009.41,0.0,450.34,24459.75,5864.01,6696.09,2017.31,14577.41,39037.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52895,102919.4,0.0,6216.67,109136.07,20906.33,13812.34,1802.44,36521.11,145657.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,37542,93281.05,0.0,0.0,93281.05,19225.77,12424.5,7445.64,39095.91,132376.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,42850,94020.41,0.0,759.21,94779.62,19531.0,12281.14,7462.56,39274.7,134054.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,5852,100761.0,27028.63,7624.33,135413.96,21035.74,12424.5,10154.27,43614.51,179028.47 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,41538,88296.01,0.0,6106.42,94402.43,18501.07,12424.5,7755.58,38681.15,133083.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7300,Journeyman Trade,7324,Beautician,25438,57239.5,0.0,250.0,57489.5,11907.25,10728.32,4754.4,27389.97,84879.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,15896,109008.05,21377.41,9388.78,139774.24,23726.57,12669.4,10118.36,46514.33,186288.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,26045,125284.04,0.0,0.0,125284.04,25213.79,12424.5,9921.39,47559.68,172843.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15275,5024.31,0.0,318.56,5342.87,0.0,2171.3,437.34,2608.64,7951.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7964,13891.8,0.0,543.21,14435.01,11234.57,0.0,4266.08,15500.65,29935.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,50530,77037.62,0.0,223.1,77260.72,15875.79,11851.06,6115.94,33842.79,111103.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1777,Media/Security Sys Spec,40021,97033.49,0.0,14672.88,111706.37,20049.01,12651.49,8754.26,41454.76,153161.13 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,48063,74412.04,0.0,5040.85,79452.89,15661.44,12424.5,6404.45,34490.39,113943.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5700,33023.6,0.0,2692.12,35715.72,8253.06,0.0,4481.56,12734.62,48450.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,51362,49069.06,898.65,1060.0,51027.71,10204.45,10987.73,4083.23,25275.41,76303.12 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,13608,106828.32,0.0,0.0,106828.32,21744.93,12424.5,8442.35,42611.78,149440.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,13795,72687.1,4314.51,7548.71,84550.32,16265.2,11946.64,6978.9,35190.74,119741.06 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,2883,53917.92,4945.57,543.06,59406.55,11146.17,10841.58,4812.26,26800.01,86206.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,39277,62468.8,6035.66,1650.93,70155.39,13026.54,12424.5,5613.04,31064.08,101219.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32575,45611.1,314.11,3596.06,49521.27,8875.94,3870.71,956.18,13702.83,63224.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,35053,78733.68,1724.27,965.59,81423.54,16368.32,11934.98,6715.15,35018.45,116441.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,41091,150710.0,0.0,133.4,150843.4,30354.99,12424.5,10262.94,53042.43,203885.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,6180,72421.14,166.2,621.6,73208.94,15049.46,12376.71,6070.34,33496.51,106705.45 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9848,21315.26,0.0,0.0,21315.26,5081.33,9378.11,1653.38,16112.82,37428.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,10674,57855.26,0.0,0.0,57855.26,12908.26,12424.5,4648.37,29981.13,87836.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,35028,95787.54,0.0,0.0,95787.54,19020.37,9929.15,16497.53,45447.05,141234.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,23059,139279.74,18245.39,1112.5,158637.63,27520.52,12424.5,2702.51,42647.53,201285.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,42417,54967.44,5371.43,2566.96,62905.83,12321.91,12225.89,4818.7,29366.5,92272.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15747,56531.0,17477.06,3382.44,77390.5,11788.47,12424.5,6338.2,30551.17,107941.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15807,12786.39,902.21,175.03,13863.63,3104.78,3940.54,1059.12,8104.44,21968.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,16435,46867.31,15400.65,8137.91,70405.87,12141.45,10584.9,5609.34,28335.69,98741.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,6383,110041.08,5959.06,4542.42,120542.56,22267.46,12424.5,9787.77,44479.73,165022.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,40441,61428.04,0.0,1162.07,62590.11,12897.85,12424.5,5063.61,30385.96,92976.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,12996,166171.01,0.0,624.0,166795.01,33567.58,12424.5,10589.27,56581.35,223376.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49808,7842.92,0.0,260.94,8103.86,0.0,2592.4,628.32,3220.72,11324.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,48193,7335.9,0.0,216.32,7552.22,1868.27,1863.67,553.78,4285.72,11837.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,50951,139822.75,37067.25,27516.26,204406.26,28170.13,12388.67,3423.77,43982.57,248388.83 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,16351,133087.0,0.0,0.0,133087.0,26783.95,12424.5,10035.91,49244.36,182331.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,31158,70069.0,0.0,5141.32,75210.32,14211.51,10513.04,6039.22,30763.77,105974.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,17398,72209.18,0.0,1660.0,73869.18,15440.41,10387.54,6088.95,31916.9,105786.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,15144,11739.95,0.0,0.0,11739.95,0.0,3846.82,911.2,4758.02,16497.97 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,42001,25207.42,0.0,587.58,25795.0,6139.79,7012.68,2123.16,15275.63,41070.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,28406,170118.63,0.0,0.0,170118.63,34183.2,12424.5,17895.65,64503.35,234621.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3455,123311.42,2402.61,27180.56,152894.59,26768.11,11262.09,10136.07,48166.27,201060.86 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10956,91212.34,9607.52,11667.74,112487.6,25033.39,11588.24,283.2,36904.83,149392.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15899,4511.7,0.0,88.9,4600.6,0.0,1212.58,356.17,1568.75,6169.35 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,1632,56912.74,6555.06,125.0,63592.8,11793.32,10516.03,5180.99,27490.34,91083.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,43066,4958.68,0.0,96.49,5055.17,0.0,1645.65,392.08,2037.73,7092.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,7900,72144.39,4259.36,0.0,76403.75,14869.12,12423.01,6217.2,33509.33,109913.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32754,59925.8,0.0,11227.72,71153.52,9406.12,0.0,8356.83,17762.95,88916.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),40764,50112.82,5538.85,950.0,56601.67,9959.45,7645.85,946.44,18551.74,75153.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,51386,8278.4,0.0,0.0,8278.4,1820.41,2102.61,689.98,4613.0,12891.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44730,44342.26,7983.64,1634.92,53960.82,11910.63,13340.99,4099.35,29350.97,83311.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49542,55986.03,3831.89,3559.51,63377.43,12483.81,10220.05,1044.58,23748.44,87125.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,40727,7205.54,0.0,0.0,7205.54,0.0,836.26,558.72,1394.98,8600.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,44626,70005.14,0.0,0.0,70005.14,14472.86,9924.49,5749.15,30146.5,100151.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,28679,35892.02,0.0,0.0,35892.02,0.0,5850.89,2711.36,8562.25,44454.27 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8496,30505.87,285.66,98.95,30890.48,7309.36,7753.37,2552.23,17614.96,48505.44 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),5849,183561.7,0.0,5233.73,188795.43,38009.86,12376.71,10936.96,61323.53,250118.96 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,38173,133087.0,0.0,7112.7,140199.7,26783.95,12424.5,10147.18,49355.63,189555.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,20040,23461.21,10607.39,4937.92,39006.52,6264.33,7167.97,3109.95,16542.25,55548.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47978,77856.3,326.4,1225.11,79407.81,15750.04,11946.64,4321.75,32018.43,111426.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,6486,46799.12,0.0,1020.0,47819.12,9837.66,6021.11,3847.72,19706.49,67525.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29528,52383.23,0.0,2544.94,54928.17,306.79,0.0,6919.28,7226.07,62154.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,7320,81157.01,31975.27,20125.13,133257.41,19672.34,12424.5,9926.45,42023.29,175280.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,48977,2883.98,0.0,0.0,2883.98,0.0,1348.48,223.61,1572.09,4456.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,3398,57466.69,0.0,0.0,57466.69,10418.72,5256.52,11382.24,27057.48,84524.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4854,138635.94,88124.76,6215.26,232975.96,27392.94,12424.5,3919.34,43736.78,276712.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31759,77071.0,5261.68,624.0,82956.68,16013.39,12424.5,6606.62,35044.51,118001.19 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,2422,8756.0,0.0,0.0,8756.0,0.0,1188.69,675.92,1864.61,10620.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,28573,5626.0,0.0,0.0,5626.0,1261.92,955.72,438.59,2656.23,8282.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,29626,35740.0,1876.35,0.0,37616.35,8016.5,4778.65,2994.35,15789.5,53405.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6137,Assistant Industrial Hygienist,52267,89413.04,0.0,0.0,89413.04,18428.55,12424.5,7130.75,37983.8,127396.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,35395,26535.25,0.0,0.0,26535.25,4938.21,4456.05,2048.77,11443.03,37978.28 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,19705,109853.12,0.0,0.0,109853.12,22393.66,12255.75,8676.85,43326.26,153179.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2946,95888.44,3102.98,18504.48,117495.9,27112.2,12186.48,1953.74,41252.42,158748.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,5621,58393.07,555.95,2019.0,60968.02,12088.94,12369.3,5011.88,29470.12,90438.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,23360,63041.43,828.57,1080.0,64950.0,12954.91,10148.78,5183.86,28287.55,93237.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,8900,113671.74,0.0,0.0,113671.74,23181.99,12424.5,9332.09,44938.58,158610.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21563,27297.73,2880.23,387.48,30565.44,6942.47,8496.2,2358.27,17796.94,48362.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,49029,23674.08,39.67,1031.98,24745.73,0.0,6028.57,2065.79,8094.36,32840.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,49710,105728.46,0.0,0.0,105728.46,20255.01,8123.71,10625.94,39004.66,144733.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4549,40711.74,0.0,10642.21,51353.95,6875.11,0.0,8150.91,15026.02,66379.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7307,119389.46,5427.2,17814.35,142631.01,29439.76,9949.46,3856.59,43245.81,185876.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,51960,74304.0,15564.1,33180.85,123048.95,17523.01,8601.59,9635.98,35760.58,158809.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,7087,4769.69,0.0,0.0,4769.69,0.0,1057.27,370.0,1427.27,6196.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,32101,95053.01,19503.65,4907.44,119464.1,20488.5,12424.5,9523.56,42436.56,161900.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51787,113223.0,20456.0,19233.14,152912.14,25307.11,15196.12,2558.85,43062.08,195974.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,34062,156746.06,0.0,0.0,156746.06,31545.23,12424.46,10491.74,54461.43,211207.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,17393,74657.06,0.0,0.0,74657.06,15457.82,13000.93,6170.67,34629.42,109286.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,35031,68497.29,0.0,1697.9,70195.19,14269.05,10710.17,5566.33,30545.55,100740.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16179,65891.48,9164.83,2596.15,77652.46,18704.6,12982.23,5856.72,37543.55,115196.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,40750,70862.03,0.0,576.0,71438.03,14616.28,11468.77,5921.93,32006.98,103445.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7390,Welder,17761,85083.87,21516.69,3343.31,109943.87,17532.83,12404.35,8950.15,38887.33,148831.2 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,3854,54406.0,1618.28,6395.69,62419.97,11826.9,10035.18,5024.19,26886.27,89306.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,3629,3799.0,0.0,0.0,3799.0,706.99,477.86,294.86,1479.71,5278.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10882,48045.5,213.5,8892.1,57151.1,11610.05,10687.17,4350.56,26647.78,83798.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,1357,52905.03,0.0,0.0,52905.03,11691.48,7167.99,4246.63,23106.1,76011.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,32289,24687.0,0.0,7958.9,32645.9,6728.99,6212.25,2539.35,15480.59,48126.49 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,12220,78963.06,0.0,624.0,79587.06,16403.15,12424.5,6424.19,35251.84,114838.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,37691,35340.02,0.0,0.0,35340.02,6646.03,6212.25,2747.43,15605.71,50945.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32125,144599.62,58148.76,14785.6,217533.98,29129.3,12424.5,3707.9,45261.7,262795.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,13985,637.31,0.0,0.0,637.31,189.85,207.56,49.46,446.87,1084.18 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,374C,Admin Analyst 3,35964,102433.59,0.0,3000.0,105433.59,21092.12,12412.79,8695.28,42200.19,147633.78 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,8259,46626.74,945.96,0.0,47572.7,11145.14,12000.4,3619.94,26765.48,74338.18 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),53154,184289.02,0.0,5248.28,189537.3,38144.37,12424.5,11061.95,61630.82,251168.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,45682,18874.3,0.0,0.0,18874.3,4601.24,5708.46,1504.08,11813.78,30688.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29604,5951.6,0.0,289.46,6241.06,1266.74,430.07,1718.53,3415.34,9656.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),12188,7118.55,0.0,0.0,7118.55,0.0,2030.92,552.51,2583.43,9701.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,50471,73712.63,776.0,4660.62,79149.25,15528.58,12418.53,6544.23,34491.34,113640.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",13090,250.0,0.0,0.0,250.0,0.0,59.73,19.37,79.1,329.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45358,66865.07,5833.37,2277.9,74976.34,18917.55,0.0,5887.26,24804.81,99781.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H050,Asst Chf Of Dept (Fire Dept),44220,204497.2,2152.66,32423.48,239073.34,44131.99,14909.4,131.16,59172.55,298245.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,611,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,32325,121477.76,15787.68,7956.59,145222.03,24480.79,12334.91,2419.41,39235.11,184457.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,26571,11818.0,0.0,0.0,11818.0,2598.77,2867.19,940.89,6406.85,18224.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,18382,63856.48,3724.86,5437.83,73019.17,14281.41,12418.53,6002.33,32702.27,105721.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,12043,144975.9,1338.98,10292.67,156607.55,29245.16,12424.5,2665.73,44335.39,200942.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,17195,24457.51,1362.2,0.0,25819.71,4551.54,3583.99,2078.14,10213.67,36033.38 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,37654,149551.1,20619.47,0.0,170170.57,29384.08,12424.5,2892.07,44700.65,214871.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,32790,97793.04,26413.2,6934.57,131140.81,20530.26,0.0,9971.05,30501.31,161642.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,45679,107627.35,0.0,0.0,107627.35,23482.3,6690.11,8700.67,38873.08,146500.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,20656,38368.0,0.0,0.0,38368.0,7814.91,3822.93,3071.16,14709.0,53077.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5690,152.98,0.0,0.0,152.98,1074.04,0.0,381.92,1455.96,1608.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,14341,199123.58,0.0,250.0,199373.58,40088.82,12426.3,11130.32,63645.44,263019.02 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,9627,48149.89,8687.15,1664.79,58501.83,10755.91,10868.45,4718.49,26342.85,84844.68 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,52964,129895.0,0.0,19859.17,149754.17,26141.48,12424.5,10300.69,48866.67,198620.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11125,112159.77,34326.04,18719.95,165205.76,24822.83,15052.76,2760.21,42635.8,207841.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,30379,84644.06,10415.97,9876.38,104936.41,19297.2,12424.5,8333.95,40055.65,144992.06 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,37911,8732.0,0.0,0.0,8732.0,1625.04,1911.46,696.23,4232.73,12964.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49888,46713.98,0.0,1850.97,48564.95,698.39,0.0,6167.92,6866.31,55431.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,1878,69247.01,9132.83,1923.56,80303.4,14272.17,12424.5,6617.78,33314.45,113617.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,50186,113233.61,14191.69,25632.31,153057.61,26803.79,15196.11,2608.69,44608.59,197666.2 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,23698,63355.65,0.0,125.0,63480.65,13014.55,11698.63,4917.66,29630.84,93111.49 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,51730,4674.0,0.0,490.76,5164.76,1268.6,1433.6,425.71,3127.91,8292.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52284,148505.59,142.33,35644.36,184292.28,35601.39,12374.75,6932.11,54908.25,239200.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19172,4087.38,312.23,15.14,4414.75,1148.89,1290.23,333.47,2772.59,7187.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,45306,145297.65,0.0,1450.0,146747.65,29465.8,9939.6,10181.44,49586.84,196334.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,45501,116976.04,0.0,1367.98,118344.02,23827.53,12424.52,9516.07,45768.12,164112.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,44504,77071.02,1224.13,1000.0,79295.15,16091.38,12424.5,6098.87,34614.75,113909.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,43590,159630.06,11760.99,4310.72,175701.77,31571.16,12424.5,2940.98,46936.64,222638.41 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,5931,35420.0,0.0,3217.83,38637.83,7944.66,5495.46,3091.56,16531.68,55169.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,6703,151953.26,0.0,0.0,151953.26,30607.82,12042.22,10480.67,53130.71,205083.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34036,120654.73,7294.61,5593.51,133542.85,23895.68,12364.78,2274.9,38535.36,172078.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50930,49535.37,0.0,5773.28,55308.65,11126.03,10892.46,4210.09,26228.58,81537.23 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2924,Medical Social Work Supervisor,47329,102295.54,0.0,0.0,102295.54,21124.75,12185.57,8412.49,41722.81,144018.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,51777,78603.04,0.0,1535.34,80138.38,16410.15,9079.44,23359.91,48849.5,128987.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,37993,13818.0,0.0,0.0,13818.0,3099.36,2867.19,1140.13,7106.68,20924.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,14384,18462.55,148.13,0.0,18610.68,2557.57,4467.15,1470.55,8495.27,27105.95 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",22291,15850.76,0.0,1437.19,17287.95,0.0,3280.72,1340.1,4620.82,21908.77 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,7647,62988.23,20521.39,4095.14,87604.76,13109.38,12402.11,7172.07,32683.56,120288.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,10874,64849.7,0.0,0.0,64849.7,13337.01,12424.5,5275.62,31037.13,95886.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25391,0.0,0.0,873.34,873.34,0.0,0.0,66.82,66.82,940.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47850,11492.82,0.0,0.0,11492.82,0.0,4922.02,929.85,5851.87,17344.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49492,59125.75,2937.11,3405.88,65468.74,16236.75,13344.86,4952.19,34533.8,100002.54 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,15990,97764.05,6688.84,7953.61,112406.5,25703.76,12424.5,1912.3,40040.56,152447.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,16062,15376.0,1006.69,300.0,16682.69,3516.13,1911.46,1347.44,6775.03,23457.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31381,0.0,0.0,783.75,783.75,0.0,68.5,40.83,109.33,893.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39416,55577.22,2979.05,1793.39,60349.66,15639.85,10939.3,4602.65,31181.8,91531.46 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,11077,8113.86,0.0,0.0,8113.86,1784.24,2100.64,659.76,4544.64,12658.5 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,35317,201586.6,0.0,0.0,201586.6,40464.11,12089.98,11007.07,63561.16,265147.76 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23558,8118.2,329.25,263.4,8710.85,0.0,2245.97,676.1,2922.07,11632.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6435,52473.4,0.0,5161.22,57634.62,0.0,3784.04,7470.77,11254.81,68889.43 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,19288,18108.0,0.0,0.0,18108.0,3972.88,0.0,2411.41,6384.29,24492.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,25608,2282.4,0.0,0.0,2282.4,471.77,0.0,179.78,651.55,2933.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,42147,62029.52,268.5,10015.7,72313.72,13841.16,10972.99,5933.45,30747.6,103061.32 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,12358,61920.0,0.0,7177.5,69097.5,13695.48,7167.99,5395.22,26258.69,95356.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,19626,89478.42,0.0,0.0,89478.42,18402.14,12424.48,6933.97,37760.59,127239.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2650,Assistant Cook,15411,52689.03,9416.73,3930.97,66036.73,12931.76,12424.5,5319.92,30676.18,96712.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20359,91753.32,5357.67,1915.05,99026.04,18696.05,9557.31,1676.51,29929.87,128955.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9746,30885.45,0.0,1007.9,31893.35,726.31,0.0,4674.11,5400.42,37293.77 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,10438,767.83,0.0,0.0,767.83,0.0,234.45,60.32,294.77,1062.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48893,52338.6,3964.5,2734.5,59037.6,12539.77,12424.5,4731.64,29695.91,88733.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,6045,45110.02,0.0,13519.55,58629.57,10118.16,6212.25,4698.8,21029.21,79658.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,49418,16802.67,3808.6,374.73,20986.0,4349.87,6867.35,1668.59,12885.81,33871.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8219,Parking Enforcement Admin,26908,22534.0,1190.26,889.95,24614.21,4229.24,3345.06,1953.78,9528.08,34142.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,7339,5857.48,0.0,43.72,5901.2,0.0,2944.84,457.57,3402.41,9303.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,33641,77753.01,0.0,1782.7,79535.71,15502.08,8601.56,6342.53,30446.17,109981.88 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,38586,160467.39,0.0,0.0,160467.39,32234.39,12424.5,17756.24,62415.13,222882.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4710,692.13,0.0,12.74,704.87,0.0,337.49,54.72,392.21,1097.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39639,3415.2,0.0,597.68,4012.88,176.97,0.0,2134.97,2311.94,6324.82 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,19152,73379.0,12757.46,600.0,86736.46,15062.31,10990.9,7631.16,33684.37,120420.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,35376,5294.0,549.24,48.0,5891.24,1198.22,955.73,489.8,2643.75,8534.99 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,24038,22176.0,0.0,203.4,22379.4,5019.69,3345.06,1813.88,10178.63,32558.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23687,865.35,0.0,144.23,1009.58,1037.79,71.8,-0.02,1109.57,2119.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,46435,5729.13,0.0,2192.04,7921.17,1319.78,1092.04,647.31,3059.13,10980.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2753,117129.69,13723.04,16066.62,146919.35,23205.2,12424.5,2362.89,37992.59,184911.94 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,1043,21097.0,0.0,681.94,21778.94,4053.06,3345.06,1740.82,9138.94,30917.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,32457,95518.3,17677.39,2860.06,116055.75,23941.96,12137.01,1965.04,38044.01,154099.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2871,62827.4,13930.74,2053.25,78811.39,17882.28,12401.98,6100.27,36384.53,115195.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,30246,56120.0,4929.99,1424.23,62474.22,12874.11,12424.49,5104.94,30403.54,92877.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51417,71075.16,0.0,3947.8,75022.96,14148.1,7760.53,6163.46,28072.09,103095.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29216,119353.05,2242.62,11480.32,133075.99,23596.27,12412.56,2211.17,38220.0,171295.99 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,40685,73794.0,0.0,0.0,73794.0,15086.11,11373.2,5789.25,32248.56,106042.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20082,103794.89,6036.41,13850.18,123681.48,23888.51,13858.1,2036.11,39782.72,163464.2 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,17307,101770.03,0.0,0.0,101770.03,20975.25,12424.5,8311.77,41711.52,143481.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,50105,11306.58,2646.75,165.26,14118.59,2573.14,1923.41,1150.69,5647.24,19765.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36288,44795.08,0.0,1624.63,46419.71,544.13,0.0,1411.65,1955.78,48375.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41295,149099.06,0.0,250.0,149349.06,30006.36,12424.5,10276.74,52707.6,202056.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,3530,62811.03,3271.81,3921.6,70004.44,13074.36,12424.5,5461.32,30960.18,100964.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,19824,63726.92,0.0,0.0,63726.92,13108.76,6255.49,12814.29,32178.54,95905.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36672,26202.77,3136.88,709.44,30049.09,7342.54,8271.25,2263.82,17877.61,47926.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40254,65622.67,14158.64,5899.52,85680.83,19626.13,12925.72,6436.97,38988.82,124669.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44817,121386.88,1042.97,15789.32,138219.17,24195.69,11088.69,9933.42,45217.8,183436.97 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),23562,178028.6,0.0,1562.5,179591.1,36093.71,0.0,10896.06,46989.77,226580.87 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,38696,504.88,0.0,0.0,504.88,113.26,47.79,44.8,205.85,710.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28071,112690.83,2771.95,12803.94,128266.72,22311.2,12424.5,2138.46,36874.16,165140.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35859,149099.01,0.0,278.5,149377.51,20002.86,12424.5,5780.96,38208.32,187585.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,28655,21378.29,0.0,0.0,21378.29,0.0,3805.0,1659.3,5464.3,26842.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,48822,78904.71,0.0,1140.0,80044.71,16435.99,12334.91,5782.91,34553.81,114598.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,17329,67261.07,0.0,624.0,67885.07,13987.79,12424.5,5576.19,31988.48,99873.55 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,33525,11101.2,0.0,0.0,11101.2,0.0,2771.62,861.07,3632.69,14733.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29931,56531.0,16764.63,6406.07,79701.7,12918.16,12424.5,6474.41,31817.07,111518.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39078,61058.94,359.24,8691.75,70109.93,13670.33,10803.11,5768.19,30241.63,100351.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,52541,40356.0,23801.98,3321.07,67479.05,8721.27,4300.79,1141.66,14163.72,81642.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46892,20766.56,0.0,4381.76,25148.32,4079.21,0.0,4228.47,8307.68,33456.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,50224,30955.56,0.0,0.0,30955.56,0.0,2723.83,2401.12,5124.95,36080.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,18555,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5124.28,30401.4,92760.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19782,2054.77,0.0,1851.23,3906.0,0.0,146.35,172.88,319.23,4225.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30054,120004.3,46650.77,34177.32,200832.39,23736.96,12364.77,3388.8,39490.53,240322.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,47217,100761.0,7065.93,11748.93,119575.86,23187.15,12424.51,9655.14,45266.8,164842.66 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,44939,42863.19,0.0,0.0,42863.19,8807.43,5401.97,3256.19,17465.59,60328.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,26288,17760.0,0.0,0.0,17760.0,3305.12,1911.46,1398.62,6615.2,24375.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,28226,68916.27,3491.92,5379.69,77787.88,14336.52,9656.88,6307.05,30300.45,108088.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,16780,29233.8,3491.87,2854.57,35580.24,6986.41,4778.65,2738.1,14503.16,50083.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,45818,63887.0,3157.28,1296.2,68340.48,13437.18,12424.5,5371.47,31233.15,99573.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,21609,88901.4,0.0,0.0,88901.4,16417.52,12424.51,7142.46,35984.49,124885.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10283,0.0,0.0,2159.3,2159.3,0.0,0.0,165.19,165.19,2324.49 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,33785,110100.43,1202.96,10494.3,121797.69,22677.5,12130.01,9808.67,44616.18,166413.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,6831,612.03,0.0,595.83,1207.86,157.9,175.98,92.97,426.85,1634.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38322,112170.36,75942.84,14869.18,202982.38,23942.83,15052.76,3452.38,42447.97,245430.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5283,Planner 5,12584,149312.0,0.0,0.0,149312.0,30049.2,12424.5,10311.22,52784.92,202096.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,15962,62811.01,0.0,1400.0,64211.01,13191.92,12424.5,5304.12,30920.54,95131.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,34249,41051.8,3964.78,2414.61,47431.19,7350.67,9500.56,3678.2,20529.43,67960.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,28751,26658.01,0.0,0.0,26658.01,4961.06,5256.52,2193.01,12410.59,39068.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",29641,9508.16,0.0,0.0,9508.16,0.0,2263.88,737.6,3001.48,12509.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",32934,75807.5,38148.4,5787.54,119743.44,14994.03,8601.58,2022.83,25618.44,145361.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45353,40258.21,5849.75,2157.46,48265.42,10985.27,12590.26,3435.22,27010.75,75276.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4073,1516.6,0.0,0.0,1516.6,0.0,452.95,117.71,570.66,2087.26 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,44372,9327.18,0.0,2053.63,11380.81,2113.88,1935.36,1011.25,5060.49,16441.3 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),31216,136542.39,0.0,1562.5,138104.89,27778.41,12415.54,10012.06,50206.01,188310.9 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,7656,90412.87,0.0,0.0,90412.87,18622.8,11964.75,7250.35,37837.9,128250.77 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,35599,3307.5,0.0,16.66,3324.16,0.0,1612.8,257.87,1870.67,5194.83 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,27815,86049.04,0.0,0.0,86049.04,17734.95,12424.5,7012.86,37172.31,123221.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,17342,16176.0,11714.97,2638.72,30529.69,3628.28,1911.45,2441.37,7981.1,38510.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2461,63828.99,9677.86,2022.86,75529.71,17946.27,13326.65,5884.32,37157.24,112686.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47056,24937.37,0.0,2760.9,27698.27,3277.03,0.0,5655.69,8932.72,36630.99 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),38240,50895.0,0.0,375.0,51270.0,9295.24,4778.65,3848.18,17922.07,69192.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6232,54202.6,3684.44,6967.36,64854.4,13935.54,12424.5,5215.47,31575.51,96429.91 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,49321,6827.47,0.0,726.35,7553.82,0.0,1542.61,584.82,2127.43,9681.25 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,38689,24814.11,0.0,275.07,25089.18,0.0,0.0,1984.6,1984.6,27073.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,43862,54124.06,0.0,0.0,54124.06,12110.46,12424.5,4289.22,28824.18,82948.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20609,9049.74,0.0,9017.25,18066.99,2031.73,831.49,1438.52,4301.74,22368.73 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38227,3399.38,0.0,71.54,3470.92,0.0,1657.6,269.21,1926.81,5397.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,28599,58995.23,29.79,3800.68,62825.7,12757.17,12132.94,5201.12,30091.23,92916.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),48475,16270.2,0.0,0.0,16270.2,0.0,4683.09,1261.91,5945.0,22215.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,22870,12936.01,0.0,247.4,13183.41,2957.05,1911.46,1085.29,5953.8,19137.21 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,36683,165566.52,0.0,31342.36,196908.88,36637.3,12424.5,11086.91,60148.71,257057.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,32823,24280.02,0.0,15487.0,39767.02,5489.06,3822.92,3204.92,12516.9,52283.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,18888,49935.8,0.0,4536.56,54472.36,12548.96,12424.5,4413.03,29386.49,83858.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,34723,347.1,0.0,0.0,347.1,76.15,0.0,27.41,103.56,450.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,31488,67052.8,0.0,0.0,67052.8,13807.34,12424.5,5975.57,32207.41,99260.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,13443,118104.01,0.0,0.0,118104.01,23768.42,12424.5,9588.19,45781.11,163885.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,4632,83835.39,11787.07,12089.78,107712.24,18877.95,12376.71,8560.56,39815.22,147527.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,51601,63102.0,0.0,131.29,63233.29,13032.23,12424.5,5143.67,30600.4,93833.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40106,66618.4,18542.22,1846.87,87007.49,18725.93,13125.48,6541.22,38392.63,125400.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,30099,101365.9,6656.78,4646.48,112669.16,21814.27,12376.71,9254.55,43445.53,156114.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47065,105833.77,21745.72,726.99,128306.48,21226.7,11014.79,1987.63,34229.12,162535.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34911,13934.58,2188.59,7416.15,23539.32,4531.65,2771.15,1780.84,9083.64,32622.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,44571,33839.01,0.0,0.0,33839.01,6854.48,7645.85,2801.19,17301.52,51140.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,28772,20499.0,3871.61,2286.42,26657.03,4994.46,6212.25,2307.42,13514.13,40171.16 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,7564,70478.73,0.0,0.0,70478.73,13933.02,8601.57,5702.49,28237.08,98715.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,19836,53212.51,0.0,2781.82,55994.33,11317.08,10751.97,4586.79,26655.84,82650.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42288,10072.58,0.0,17.56,10090.14,0.0,4308.26,813.52,5121.78,15211.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,503,73406.0,2131.5,1045.0,76582.5,15344.65,12424.5,6304.56,34073.71,110656.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,8364,135421.0,0.0,0.0,135421.0,27253.5,12424.51,10115.97,49793.98,185214.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,41232,63887.01,434.98,1036.8,65358.79,13380.75,12424.5,5391.9,31197.15,96555.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,5197,42712.44,981.0,6120.6,49814.04,9580.4,5256.52,3955.5,18792.42,68606.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,660,58351.51,0.0,0.0,58351.51,12802.35,5256.52,11429.97,29488.84,87840.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47845,7796.65,0.0,0.0,7796.65,0.0,3380.9,626.03,4006.93,11803.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,24559,182373.65,0.0,0.0,182373.65,36702.91,12424.5,25801.84,74929.25,257302.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,19024,67946.8,0.0,0.0,67946.8,14183.46,10990.88,5365.35,30539.69,98486.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48325,83024.86,0.0,3240.0,86264.86,16911.37,8639.03,212.9,25763.3,112028.16 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",22749,16067.59,1507.5,21.28,17596.37,0.0,3514.22,1363.95,4878.17,22474.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6875,1693.17,0.0,100.17,1793.34,0.0,0.0,450.51,450.51,2243.85 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1280,Employee Relations Representat,50515,44352.0,0.0,2794.64,47146.64,9948.12,5734.39,3803.6,19486.11,66632.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,21084,60989.78,3351.29,1240.0,65581.07,12813.31,12142.97,5271.09,30227.37,95808.44 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,42814,31551.1,0.0,9904.99,41456.09,7150.71,6546.76,3181.08,16878.55,58334.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,45208,58616.72,11471.24,3864.24,73952.2,12340.88,11284.55,6052.82,29678.25,103630.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,183,9462.0,0.0,0.0,9462.0,1841.64,955.74,778.78,3576.16,13038.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2661,97762.02,10559.18,12373.23,120694.43,26479.11,12424.5,2009.15,40912.76,161607.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,32796,95878.66,0.0,5108.4,100987.06,20003.36,11063.84,8364.18,39431.38,140418.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35465,2946.75,0.0,0.0,2946.75,0.0,1111.02,228.71,1339.73,4286.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45835,246.0,0.0,8.08,254.08,60.25,77.65,19.08,156.98,411.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,15392,37648.15,0.0,0.0,37648.15,8972.43,9282.53,3094.56,21349.52,58997.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,14387,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,16661,68316.0,11304.04,20.0,79640.04,15250.86,12424.52,6404.56,34079.94,113719.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23398,55828.31,1769.22,7399.99,64997.52,13738.24,12418.53,5310.17,31466.94,96464.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1763,122334.25,0.0,9629.45,131963.7,16120.28,11170.71,9692.03,36983.02,168946.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",28195,9056.59,0.0,0.0,9056.59,0.0,2156.36,702.82,2859.18,11915.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,9461,11596.47,0.0,2384.04,13980.51,2629.99,2564.34,1190.36,6384.69,20365.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,17310,47904.64,6808.98,3063.27,57776.89,9955.51,8878.14,1509.36,20343.01,78119.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51608,112170.36,1966.99,21122.77,135260.12,24779.34,15052.77,2303.66,42135.77,177395.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17531,68117.25,36932.61,1635.13,106684.99,19091.49,13419.66,8187.23,40698.38,147383.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,12600,84644.02,28205.95,14094.58,126944.55,19601.51,12424.5,9793.3,41819.31,168763.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9236,Airport Ground Transport Tech,39877,33415.01,319.59,550.0,34284.6,6612.96,6690.12,2669.36,15972.44,50257.04 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,168C,"Mgr, Unified Family Court Svcs",17797,127530.0,0.0,5452.5,132982.5,25681.53,12424.5,32349.88,70455.91,203438.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33258,69069.83,27006.54,7804.15,103880.52,21062.5,13607.94,7876.35,42546.79,146427.31 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,47332,130833.51,15867.46,16755.82,163456.79,29058.74,15196.12,2783.84,47038.7,210495.49 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,10111,13490.45,0.0,0.0,13490.45,0.0,1484.37,1044.43,2528.8,16019.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2863,13559.05,0.0,421.07,13980.12,0.0,5818.01,1129.96,6947.97,20928.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,23377,156746.0,0.0,0.0,156746.0,31545.23,12424.48,10482.82,54452.53,211198.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8301,Sheriff's Property Keeper,36864,24277.97,0.0,0.0,24277.97,0.0,0.0,1920.31,1920.31,26198.28 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,29410,93499.01,0.0,624.0,94123.01,19399.27,12424.5,7717.71,39541.48,133664.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21545,85541.79,0.0,16904.93,102446.72,3153.95,0.0,5942.65,9096.6,111543.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,45340,79309.04,0.0,579.44,79888.48,16374.19,11537.17,6538.35,34449.71,114338.19 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,52665,11407.64,0.0,0.0,11407.64,2558.73,2389.33,920.02,5868.08,17275.72 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,43303,19358.46,0.0,3000.0,22358.46,4256.93,4845.87,1814.88,10917.68,33276.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,51284,767.0,0.0,0.0,767.0,190.37,238.93,59.53,488.83,1255.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51418,67657.0,25157.01,4940.69,97754.7,19854.42,13329.52,7609.38,40793.32,138548.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",25035,5060.0,94.88,35.49,5190.37,898.66,477.86,88.57,1465.09,6655.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45905,56201.53,0.0,623.17,56824.7,12712.1,12407.95,4458.34,29578.39,86403.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,11709,62342.83,290.18,4301.15,66934.16,13670.12,12399.11,5258.59,31327.82,98261.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,49430,144462.1,7107.23,16394.11,167963.44,30586.58,12411.06,10527.18,53524.82,221488.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15314,113233.59,43192.6,11412.93,167839.12,23589.53,15196.12,2786.49,41572.14,209411.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,31920,87713.0,0.0,0.0,87713.0,18078.17,12424.5,7162.29,37664.96,125377.96 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,37290,6678.56,0.0,0.0,6678.56,0.0,925.86,518.36,1444.22,8122.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,8183,68465.0,0.0,0.0,68465.0,12412.7,4778.66,3059.0,20250.36,88715.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51152,2383.08,0.0,0.0,2383.08,0.0,1033.38,180.83,1214.21,3597.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,17661,85368.01,0.0,1424.0,86792.01,17890.57,12424.5,7137.9,37452.97,124244.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,2260,158357.09,3653.78,14545.43,176556.3,31511.86,12424.5,437.54,44373.9,220930.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45140,113233.59,63440.4,16074.22,192748.21,24818.83,15196.12,3246.21,43261.16,236009.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,39291,41300.44,118.5,0.0,41418.94,5013.68,12414.11,3329.62,20757.41,62176.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,14210,41022.01,8697.13,8496.73,58215.87,10186.69,6212.25,4619.24,21018.18,79234.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18276,42490.69,2931.91,6155.31,51577.91,11085.11,11487.35,4104.67,26677.13,78255.04 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0904,Mayoral Staff XVI,46680,148242.03,0.0,0.0,148242.03,29834.3,12424.52,17554.72,59813.54,208055.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49024,54448.21,1782.99,2547.45,58778.65,10607.16,5931.5,4742.66,21281.32,80059.97 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,53047,107288.41,0.0,3105.0,110393.41,21979.51,7141.58,8896.89,38017.98,148411.39 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",38611,26037.96,8949.88,546.21,35534.05,0.0,0.0,2811.14,2811.14,38345.19 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28459,97764.44,1901.73,8857.04,108523.21,25932.88,12424.5,1800.7,40158.08,148681.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,13105,66102.0,10446.54,1764.57,78313.11,13961.29,12424.5,7315.34,33701.13,112014.24 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,39398,59017.28,596.68,0.0,59613.96,12194.99,11454.19,4747.83,28397.01,88010.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",21526,96091.87,335.91,358.3,96786.08,19849.03,12424.5,7765.74,40039.27,136825.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,46520,70008.2,9.46,0.0,70017.66,14167.76,10050.45,5436.61,29654.82,99672.48 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,37540,63306.97,0.0,0.0,63306.97,13050.21,12424.51,5095.63,30570.35,93877.32 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,48283,68617.1,0.0,0.0,68617.1,14121.48,12424.5,1131.79,27677.77,96294.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33731,3939.65,0.0,0.0,3939.65,0.0,1708.37,312.47,2020.84,5960.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43795,70800.59,29063.19,5114.91,104978.69,20840.6,13954.69,7963.64,42758.93,147737.62 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0889,Mayoral Staff IX,41376,10434.6,0.0,0.0,10434.6,1765.35,1576.95,1790.95,5133.25,15567.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,39660,28399.8,0.0,0.0,28399.8,0.0,5113.17,2138.2,7251.37,35651.17 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,31460,5422.0,0.0,0.0,5422.0,1009.04,955.73,410.57,2375.34,7797.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,11422,100845.7,0.0,0.0,100845.7,20780.87,12424.5,8122.27,41327.64,142173.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34116,77071.0,32092.96,1360.0,110523.96,16165.36,12424.5,9039.2,37629.06,148153.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,575,78147.26,0.0,4310.46,82457.72,16249.8,12204.69,6828.54,35283.03,117740.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,10118,904.06,0.0,14.31,918.37,0.0,491.31,71.1,562.41,1480.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,31974,222273.37,0.0,0.0,222273.37,44672.93,12424.5,18821.19,75918.62,298191.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,6883,24853.52,0.0,0.0,24853.52,4505.94,2389.32,3285.97,10181.23,35034.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7153,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13977,87407.91,0.0,983.65,88391.56,0.0,7511.92,1481.18,8993.1,97384.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),53011,18184.5,0.0,0.0,18184.5,0.0,5208.74,1411.41,6620.15,24804.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,29016,119620.52,0.0,0.0,119620.52,24377.11,12424.51,9567.8,46369.42,165989.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17479,70622.59,13580.89,5263.71,89467.19,15229.21,14264.34,1435.95,30929.5,120396.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1226,Chf Payroll & Personnel Clerk,45402,23646.01,0.0,620.04,24266.05,5341.49,3345.06,2016.87,10703.42,34969.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41294,44224.71,17554.52,909.27,62688.5,12635.25,8747.1,4853.48,26235.83,88924.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,20906,66666.71,4127.63,8266.06,79060.4,15430.12,12424.5,6132.61,33987.23,113047.63 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,17747,62815.59,1419.99,7197.09,71432.67,13890.04,12367.75,5640.61,31898.4,103331.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,6835,104660.91,0.0,623.1,105284.01,21696.59,12406.58,8714.44,42817.61,148101.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,6286,147825.26,0.0,25067.82,172893.08,29839.7,12424.5,10616.04,52880.24,225773.32 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,20150,9081.6,0.0,0.0,9081.6,1690.08,1051.3,719.26,3460.64,12542.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,7595,51658.73,0.0,0.0,51658.73,10397.41,9790.26,4040.65,24228.32,75887.05 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,12205,36967.51,0.0,0.0,36967.51,6879.64,5732.9,2931.02,15543.56,52511.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10453,762.71,0.0,27376.81,28139.52,400.57,0.0,4662.43,5063.0,33202.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),28221,23112.01,0.0,16085.38,39197.39,4346.28,1911.46,65.08,6322.82,45520.21 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8314,Chief Deputy Sheriff,29019,172540.05,0.0,16478.61,189018.66,44701.66,12424.5,3177.0,60303.16,249321.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,4457,2115.0,0.0,0.0,2115.0,393.6,477.86,164.16,1035.62,3150.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9190,"Board Scty, MTA",218,178989.72,0.0,0.0,178989.72,36035.39,12472.29,18096.14,66603.82,245593.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,41798,85368.03,91.77,85.0,85544.8,17611.95,12424.5,6868.7,36905.15,122449.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,12645,88060.57,3878.96,12914.34,104853.87,19583.63,11892.34,8147.51,39623.48,144477.35 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",30947,72727.77,24497.57,4064.93,101290.27,17508.8,12096.99,2074.04,31679.83,132970.1 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,15996,61414.61,357.45,1804.35,63576.41,12641.16,12424.51,4831.41,29897.08,93473.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51637,51228.6,3568.35,1750.9,56547.85,12275.75,12424.5,4307.17,29007.42,85555.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,50132,156746.0,0.0,7413.07,164159.07,33039.85,12424.51,10612.16,56076.52,220235.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,9822,135421.0,0.0,0.0,135421.0,27253.5,12424.52,10020.99,49699.01,185120.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,42671,21033.05,21.11,151.04,21205.2,0.0,4426.23,1645.21,6071.44,27276.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16613,52756.28,2183.41,1004.21,55943.9,15106.43,10475.9,4350.86,29933.19,85877.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41607,68111.4,8468.51,8183.75,84763.66,20901.09,13421.15,6621.52,40943.76,125707.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31793,60044.76,2167.88,577.5,62790.14,16483.39,11825.68,4626.39,32935.46,95725.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35292,68670.27,28081.14,5555.54,102306.95,20370.74,13532.08,7794.97,41697.79,144004.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,43581,47508.39,0.0,2110.59,49618.98,10300.45,9569.27,3979.73,23849.45,73468.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,24667,17555.73,0.0,0.0,17555.73,0.0,3052.36,1361.56,4413.92,21969.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15354,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.23,5147.57,17667.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16671,6315.2,0.0,0.0,6315.2,0.0,2676.05,505.58,3181.63,9496.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47851,130970.99,37326.87,24838.92,193136.78,28983.96,13045.73,3359.47,45389.16,238525.94 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14998,97775.85,38462.72,12637.71,148876.28,26846.88,12424.5,2482.34,41753.72,190630.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,22812,30856.0,0.0,13238.7,44094.7,6972.14,4539.72,3405.68,14917.54,59012.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44561,66271.57,4912.01,2064.73,73248.31,18735.57,13059.7,5670.68,37465.95,110714.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9837,80957.64,5416.94,3989.57,90364.15,16746.17,12424.5,1694.65,30865.32,121229.47 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,51748,39073.06,0.0,1210.59,40283.65,8623.53,4306.58,281.12,13211.23,53494.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,29329,96815.76,0.0,1999.5,98815.26,20365.88,11140.24,8000.35,39506.47,138321.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,46323,100807.86,34111.24,13718.31,148637.41,22912.84,12367.1,10262.43,45542.37,194179.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33068,50477.4,0.0,0.0,50477.4,0.0,4311.55,3908.19,8219.74,58697.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,17637,130979.0,0.0,8547.74,139526.74,27278.95,12424.5,2229.05,41932.5,181459.24 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,49484,35787.06,0.0,399.22,36186.28,8687.96,7948.63,3076.64,19713.23,55899.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,11002,210874.52,0.0,0.0,210874.52,42443.79,12424.5,28883.77,83752.06,294626.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26480,8189.24,0.0,252.91,8442.15,0.0,3551.14,632.77,4183.91,12626.06 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,1883,33235.01,229.1,0.0,33464.11,8328.82,8123.71,2560.84,19013.37,52477.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48067,68592.64,18752.69,3937.31,91282.64,19896.41,13516.96,6879.66,40293.03,131575.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,44978,60000.41,1079.66,525.29,61605.36,12626.46,10459.28,5103.82,28189.56,89794.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19453,2731.2,0.0,0.0,2731.2,0.0,1146.88,221.62,1368.5,4099.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18242,119467.38,176.67,13440.1,133084.15,24090.21,12424.5,2266.08,38780.79,171864.94 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,4525,98238.15,0.0,0.0,98238.15,19737.54,0.0,7771.07,27508.61,125746.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49379,113233.58,26533.07,19771.1,159537.75,25208.19,15196.12,2720.65,43124.96,202662.71 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,19879,67911.02,789.18,2431.88,71132.08,14490.23,12424.5,5842.45,32757.18,103889.26 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,30899,13912.56,0.0,339.6,14252.16,3120.58,1957.7,1218.34,6296.62,20548.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,21202,39795.5,17806.45,2444.86,60046.81,8600.15,4241.06,1000.34,13841.55,73888.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,26339,35438.01,0.0,6481.63,41919.64,8018.79,6212.25,3366.19,17597.23,59516.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27488,119463.81,22549.74,820.04,142833.59,23633.48,12424.5,2423.09,38481.07,181314.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3906,136038.49,0.0,9015.36,145053.85,22888.26,12421.52,5080.69,40390.47,185444.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39184,47540.02,0.0,900.0,48440.02,10538.02,10513.03,3891.16,24942.21,73382.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,31712,81942.0,8166.6,15765.5,105874.1,18393.02,12424.5,8619.18,39436.7,145310.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,49507,69604.0,0.0,0.0,69604.0,14046.35,10035.18,5392.62,29474.15,99078.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,32840,176257.01,0.0,0.0,176257.01,35471.94,12424.5,10764.1,58660.54,234917.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29012,73360.12,28799.14,7186.36,109345.62,16108.73,15196.12,1767.19,33072.04,142417.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,47100,84399.5,0.0,0.0,84399.5,17364.63,12424.5,6933.8,36722.93,121122.43 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",22926,198139.02,0.0,3796.5,201935.52,40608.53,12424.5,11227.35,64260.38,266195.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24208,2255.5,0.0,20.58,2276.08,0.0,860.18,176.63,1036.81,3312.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,46785,50932.02,646.01,1200.0,52778.03,12494.42,12424.5,4344.88,29263.8,82041.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,44475,53457.01,0.0,0.0,53457.01,10463.04,7884.75,4296.83,22644.62,76101.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,17196,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5169.23,30446.35,92805.36 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,26202,91741.87,630.16,16668.85,109040.88,19110.09,9557.31,1775.99,30443.39,139484.27 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,50014,92369.48,0.0,0.0,92369.48,18861.86,11241.85,7586.23,37689.94,130059.42 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,40507,96472.93,753.15,10938.27,108164.35,25814.87,12265.73,1826.49,39907.09,148071.44 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,40968,23887.44,0.0,767.76,24655.2,0.0,5344.63,1912.82,7257.45,31912.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2538,Audiometrist,45758,77170.13,0.0,0.0,77170.13,15790.91,11217.91,6164.66,33173.48,110343.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33262,9711.38,0.0,0.0,9711.38,0.0,4211.19,782.5,4993.69,14705.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,39014,135421.02,0.0,0.0,135421.02,27253.51,12424.47,9995.85,49673.83,185094.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,27216,63515.02,0.0,0.0,63515.02,13076.65,12424.5,4984.57,30485.72,94000.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,21204,74255.02,0.0,0.0,74255.02,16576.93,12424.5,5971.17,34972.6,109227.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,27199,182969.9,0.0,0.0,182969.9,36930.8,12472.29,19228.2,68631.29,251601.19 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,42770,9396.0,0.0,0.0,9396.0,2424.16,1911.47,720.1,5055.73,14451.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,44995,4296.53,0.0,0.0,4296.53,1108.5,952.75,329.45,2390.7,6687.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,47924,138637.93,33527.86,13448.66,185614.45,27385.65,12424.5,3119.36,42929.51,228543.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,31007,87834.54,0.0,0.0,87834.54,17831.87,10223.34,7179.76,35234.97,123069.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,6060,89961.27,17926.51,11274.98,119162.76,18355.04,9557.31,1992.1,29904.45,149067.21 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,36263,77051.64,0.0,1365.0,78416.64,16137.05,12421.46,6433.15,34991.66,113408.3 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,45357,104876.02,34996.29,5030.17,144902.48,21572.76,12424.5,10146.35,44143.61,189046.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,11774,60509.38,0.0,0.0,60509.38,12385.62,10447.34,4889.82,27722.78,88232.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,18761,127313.63,0.0,0.0,127313.63,25618.19,12346.85,18267.7,56232.74,183546.37 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,19963,103283.06,0.0,1045.0,104328.06,21502.39,12424.5,8509.73,42436.62,146764.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20835,3129.5,0.0,0.0,3129.5,0.0,1314.13,243.29,1557.42,4686.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36774,66523.8,22508.22,1561.71,90593.73,18653.12,13111.67,7076.68,38841.47,129435.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30262,56531.0,0.0,1975.95,58506.95,11659.55,12424.5,4592.45,28676.5,87183.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,72,86872.9,0.0,7960.91,94833.81,22834.14,9121.86,1325.47,33281.47,128115.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,36400,62468.86,0.0,1738.53,64207.39,13162.76,12424.5,5252.15,30839.41,95046.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33403,112685.46,14614.51,22284.39,149584.36,22330.91,12424.5,2493.74,37249.15,186833.51 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),38479,184289.03,0.0,5185.78,189474.81,38144.15,12424.5,10322.61,60891.26,250366.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9914,Public Service Aide-Admin,38427,37653.95,8086.44,1017.5,46757.89,9276.62,12417.52,3840.88,25535.02,72292.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,36947,66102.0,12971.11,2442.31,81515.42,15109.96,12424.5,6563.59,34098.05,115613.47 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,890,64894.4,0.0,30168.51,95062.91,14949.68,3470.49,7629.29,26049.46,121112.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),8884,50127.82,13857.34,3768.78,67753.94,10400.28,7645.85,1133.67,19179.8,86933.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,9443,46218.01,0.0,39.22,46257.23,9226.14,9079.44,4092.8,22398.38,68655.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24064,936.7,0.0,880.36,1817.06,241.67,406.19,147.34,795.2,2612.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",35780,130865.34,49697.93,16358.25,196921.52,28950.57,15114.35,3358.46,47423.38,244344.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,32348,81542.04,0.0,0.0,81542.04,16806.17,12424.5,6544.13,35774.8,117316.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,34939,60755.56,0.0,0.0,60755.56,11855.15,7406.91,4854.21,24116.27,84871.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,25329,138618.08,15537.74,16801.07,170956.89,27458.42,12424.51,2859.32,42742.25,213699.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,21292,47531.2,9326.56,6032.69,62890.45,12203.73,12424.5,5036.37,29664.6,92555.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,21187,97760.87,4597.2,6814.78,109172.85,25428.56,12424.5,1717.31,39570.37,148743.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,8256,76393.0,0.0,2924.78,79317.78,16217.62,11468.77,6377.8,34064.19,113381.97 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,48235,95627.62,14592.42,4915.82,115135.86,20583.18,12424.5,9441.26,42448.94,157584.8 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,20091,51332.0,0.0,0.0,51332.0,9657.11,6212.25,4054.95,19924.31,71256.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1958,Supervising Purchaser,37482,127129.1,0.0,3813.87,130942.97,26352.35,12424.5,10024.71,48801.56,179744.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51854,10542.02,0.0,0.0,10542.02,0.0,4571.38,846.04,5417.42,15959.44 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,258,63339.51,0.0,1160.0,64499.51,13273.62,12424.5,5224.62,30922.74,95422.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29486,117140.97,63248.83,20404.63,200794.43,23164.17,12424.5,3378.04,38966.71,239761.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,10957,94916.71,0.0,0.0,94916.71,19503.8,12011.81,7787.97,39303.58,134220.29 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,41052,113672.0,0.0,13553.2,127225.2,25179.91,12424.5,9939.09,47543.5,174768.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",6416,137064.51,6213.71,21786.84,165065.06,31084.3,15052.76,2768.56,48905.62,213970.68 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",45272,93281.04,0.0,0.0,93281.04,19232.57,12424.5,7738.46,39395.53,132676.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,26731,85609.97,3904.98,11533.85,101048.8,19551.71,12356.58,8067.49,39975.78,141024.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43616,51848.6,0.0,6781.72,58630.32,13566.69,12424.5,4697.53,30688.72,89319.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,45917,129907.38,0.0,0.0,129907.38,26158.97,11919.76,9634.57,47713.3,177620.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,23462,386.75,0.0,6.63,393.38,0.0,209.07,30.45,239.52,632.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,6896,11999.86,0.0,64.42,12064.28,0.0,3972.24,936.0,4908.24,16972.52 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,22327,14848.69,0.0,0.0,14848.69,0.0,4877.81,1151.33,6029.14,20877.83 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",17365,900.0,0.0,0.0,900.0,0.0,107.52,69.77,177.29,1077.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19328,2593.19,0.0,28.81,2622.0,536.6,573.44,874.62,1984.66,4606.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,46841,82603.05,0.0,0.0,82603.05,17512.17,8123.71,11708.81,37344.69,119947.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,43914,135421.02,0.0,3193.17,138614.19,27903.7,12424.49,10171.63,50499.82,189114.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,11483,47155.45,1198.72,3132.2,51486.37,11604.07,12339.39,4107.49,28050.95,79537.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,41910,27440.0,0.0,0.0,27440.0,0.0,0.0,2170.06,2170.06,29610.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52270,144038.0,0.0,8693.14,152731.14,25774.81,12424.5,5298.25,43497.56,196228.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),18289,11556.0,3282.45,321.28,15159.73,2091.56,955.73,259.15,3306.44,18466.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,37728,90181.05,0.0,0.0,90181.05,18660.9,11946.64,7375.13,37982.67,128163.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,44820,55482.62,992.78,540.0,57015.4,12379.45,12422.54,4547.3,29349.29,86364.69 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2591,Health Program Coordinator 2,10951,0.0,0.0,166.13,166.13,0.0,0.0,12.71,12.71,178.84 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,52030,282.63,317.95,0.0,600.58,0.0,83.62,46.61,130.23,730.81 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,42822,99675.91,0.0,14841.36,114517.27,23225.19,8171.5,9246.77,40643.46,155160.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,21394,138635.93,5042.22,10089.51,153767.66,27392.93,12424.5,2620.37,42437.8,196205.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,51698,117124.08,76949.53,4320.62,198394.23,23225.7,12424.5,3316.49,38966.69,237360.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,20762,61274.54,0.0,619.33,61893.87,12747.45,12331.5,4948.91,30027.86,91921.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,11808,49462.24,276.6,2246.5,51985.34,11849.37,12381.08,4198.74,28429.19,80414.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,19739,158707.03,0.0,1560.0,160267.03,31940.4,12424.5,25432.83,69797.73,230064.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,1336,92292.0,0.0,1170.0,93462.0,18364.39,10035.18,7192.03,35591.6,129053.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11607,65692.78,23755.24,1633.61,91081.63,18424.11,12944.77,7069.58,38438.46,129520.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",49505,103344.24,26085.31,76.38,129505.93,21315.99,12424.5,9917.7,43658.19,173164.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33779,29087.45,0.0,0.0,29087.45,0.0,3810.97,2192.36,6003.33,35090.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49403,128053.07,13119.18,10678.25,151850.5,25873.05,12418.53,2584.77,40876.35,192726.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,6149,45038.5,0.0,0.0,45038.5,10792.43,12424.5,3591.2,26808.13,71846.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4159,3338.13,0.0,1.47,3339.6,0.0,1627.73,259.05,1886.78,5226.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",37845,7476.08,0.0,0.0,7476.08,0.0,1780.05,579.68,2359.73,9835.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26896,19211.62,0.0,0.0,19211.62,0.0,4778.66,1489.22,6267.88,25479.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,52155,69789.47,0.0,0.0,69789.47,14390.63,12160.9,5432.14,31983.67,101773.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,16369,74165.1,0.0,624.0,74789.1,15414.48,12424.5,6201.07,34040.05,108829.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,17795,106116.01,0.0,0.0,106116.01,21870.85,12424.5,8547.54,42842.89,148958.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,8381,81157.0,8484.41,22220.2,111861.61,20307.75,12424.5,9081.05,41813.3,153674.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43023,49083.1,0.0,0.0,49083.1,9998.81,10990.9,4108.87,25098.58,74181.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15452,3178.88,0.0,0.0,3178.88,0.0,1550.08,246.55,1796.63,4975.51 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,49706,21825.0,570.57,0.0,22395.57,0.0,5256.52,1787.11,7043.63,29439.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,36398,106605.01,0.0,0.0,106605.01,21971.81,12424.5,8767.52,43163.83,149768.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,35675,72348.39,0.0,1040.0,73388.39,15131.81,12364.78,5954.2,33450.79,106839.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16225,63484.63,23547.56,1498.79,88530.98,17805.41,12506.57,6661.86,36973.84,125504.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36503,5413.58,0.0,0.0,5413.58,0.0,2347.52,434.06,2781.58,8195.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14256,147959.2,0.0,30864.32,178823.52,31994.36,12328.92,5646.82,49970.1,228793.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,40530,43068.61,0.0,0.0,43068.61,9256.37,8601.58,3517.9,21375.85,64444.46 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,48935,100034.92,0.0,8737.74,108772.66,24814.86,12472.29,1850.22,39137.37,147910.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,7,120111.03,0.0,0.0,120111.03,24172.55,12424.5,9666.88,46263.93,166374.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,37501,2868.0,0.0,0.0,2868.0,0.0,955.74,221.22,1176.96,4044.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,31205,24420.0,2394.24,1139.19,27953.43,5732.94,4778.65,2418.1,12929.69,40883.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44226,15592.71,0.0,1559.28,17151.99,2765.23,1137.92,2754.52,6657.67,23809.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,16872,106116.0,0.0,0.0,106116.0,21870.85,12424.46,8510.65,42805.96,148921.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,23365,94693.08,0.0,24.0,94717.08,19498.22,12424.5,7856.66,39779.38,134496.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,36682,720.56,0.0,21.96,742.52,0.0,125.44,57.63,183.07,925.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43030,31325.0,0.0,0.0,31325.0,908.18,7406.92,2464.41,10779.51,42104.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37141,66118.83,5408.79,3525.31,75052.93,19024.89,13029.53,5695.02,37749.44,112802.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2738,Porter Assistant Supervisor,19027,61785.89,0.0,1139.29,62925.18,12960.72,12343.87,5170.85,30475.44,93400.62 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,16795,56506.8,0.0,4125.0,60631.8,11083.47,7024.62,4871.87,22979.96,83611.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",34570,135109.01,14046.07,8106.54,157261.62,28149.67,12424.5,2624.86,43199.03,200460.65 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",13140,147883.19,35381.85,18801.27,202066.31,32684.26,14335.96,3365.79,50386.01,252452.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",3933,131577.12,79875.62,21277.02,232729.76,29743.96,15196.12,3974.13,48914.21,281643.97 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,122,21470.0,0.0,0.0,21470.0,4721.24,5734.39,1614.25,12069.88,33539.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,3377,2557.63,0.0,1491.32,4048.95,475.98,773.54,322.06,1571.58,5620.53 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,47602,70416.31,0.0,0.0,70416.31,14496.61,12376.71,5645.98,32519.3,102935.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7200,Supervisory-Labor & Trade,7251,Track Maint Wrk Sprv 1,33285,56476.35,12890.01,3444.32,72810.68,11903.08,9951.13,5753.58,27607.79,100418.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,9203,77071.05,0.0,621.6,77692.65,16012.95,12424.5,6442.09,34879.54,112572.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,2261,97424.11,0.0,3924.25,101348.36,20883.45,12424.5,8343.29,41651.24,142999.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,1392,25515.0,0.0,0.0,25515.0,5690.52,4300.78,2044.82,12036.12,37551.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,29546,81942.03,1145.14,600.0,83687.17,17000.25,12424.5,6894.04,36318.79,120005.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,36121,44775.02,0.0,0.0,44775.02,8985.93,9557.31,3603.9,22147.14,66922.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,48111,102.44,0.0,4.03,106.47,376.39,0.0,-105.7,270.69,377.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,13293,84644.0,11821.54,2557.2,99022.74,17556.45,12424.5,8001.99,37982.94,137005.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7531,20444.58,0.0,3252.32,23696.9,5934.46,1756.58,1574.31,9265.35,32962.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,37584,99380.1,0.0,3009.73,102389.83,20730.08,12424.5,8184.57,41339.15,143728.98 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0963,Dept Head III,28903,204209.59,0.0,0.0,204209.59,41049.18,12424.5,18500.69,71974.37,276183.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1752,Sr Microphoto/Imaging Tech,50584,66257.11,94.97,528.0,66880.08,13763.0,12424.5,5488.29,31675.79,98555.87 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,52259,92282.03,0.0,0.0,92282.03,19019.51,12424.51,7534.63,38978.65,131260.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7270,Watershed Keeper Supervisor,36136,78610.0,4587.67,4099.95,87297.62,16213.44,12424.5,6956.34,35594.28,122891.9 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7368,Senior Comm Systems Technican,11316,130566.07,26434.27,4723.45,161723.79,26276.86,12424.5,10447.84,49149.2,210872.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7246,Sewer Repair Supervisor,43810,106116.0,15175.48,7161.27,128452.75,21870.85,12424.51,9870.01,44165.37,172618.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16167,74456.42,994.28,295.5,75746.2,15453.97,12000.41,5994.98,33449.36,109195.56 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,40338,111436.0,0.0,6128.98,117564.98,23674.78,12424.5,9719.74,45819.02,163384.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43168,147460.54,106.86,26480.0,174047.4,29204.35,12287.12,302.6,41794.07,215841.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23576,20946.6,4243.5,0.0,25190.1,3797.63,2121.72,2007.63,7926.98,33117.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,21384,85930.92,31341.03,3146.55,120418.5,17793.47,12414.89,9289.59,39497.95,159916.45 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,34895,90893.71,41729.0,12032.63,144655.34,20350.45,12424.5,10071.24,42846.19,187501.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38510,139286.43,107.17,27796.98,167190.58,32415.69,11958.58,10347.24,54721.51,221912.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40633,49339.66,9637.93,2759.22,61736.81,13852.2,9694.63,4559.19,28106.02,89842.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,34083,67241.0,8183.18,9414.43,84838.61,15333.4,11892.28,6708.83,33934.51,118773.12 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),17394,99011.79,4246.66,5940.7,109199.15,21616.35,12180.19,1826.91,35623.45,144822.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,52000,50547.03,0.0,0.0,50547.03,0.0,0.0,3997.73,3997.73,54544.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2944,112696.22,1878.39,4891.98,119466.59,22291.44,12424.5,1962.1,36678.04,156144.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,48196,49466.76,0.0,309.61,49776.37,11942.34,12079.18,3802.04,27823.56,77599.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,29341,57745.12,1888.01,4429.56,64062.69,12222.64,12424.5,5187.04,29834.18,93896.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23354,43140.0,16329.17,7709.72,67178.89,9325.5,4778.65,1122.21,15226.36,82405.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",42748,77055.31,8487.15,5984.47,91526.93,15008.59,8744.94,1556.32,25309.85,116836.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,43672,117139.2,57493.96,14927.3,189560.46,23170.33,12424.5,3233.61,38828.44,228388.9 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,27359,218182.35,0.0,0.0,218182.35,43839.64,12424.5,28905.25,85169.39,303351.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23727,102809.87,13666.11,10757.84,127233.82,22574.95,15196.12,2076.31,39847.38,167081.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,11484,66102.01,0.0,809.37,66911.38,13793.57,12424.5,5516.82,31734.89,98646.27 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,29725,206.5,0.0,0.0,206.5,0.0,0.0,16.35,16.35,222.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,15214,8810.2,1104.74,330.78,10245.72,933.16,1481.38,790.04,3204.58,13450.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,3945,64838.5,0.0,280.0,65118.5,13396.62,12185.57,5301.27,30883.46,96001.96 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,29711,1357.8,0.0,22630.0,23987.8,297.9,143.35,1838.45,2279.7,26267.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,16796,81580.68,0.0,622.5,82203.18,16939.12,12394.64,6565.43,35899.19,118102.37 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,36049,218511.56,0.0,0.0,218511.56,43828.16,12418.53,28930.57,85177.26,303688.82 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,12047,149632.71,0.0,0.0,149632.71,30063.79,12424.5,17541.74,60030.03,209662.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",14857,139067.82,17459.56,15880.52,172407.9,30366.91,14288.18,2893.37,47548.46,219956.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45452,66895.78,21708.09,3487.41,92091.28,19268.81,13180.25,7161.13,39610.19,131701.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,2300,101082.45,58596.16,8076.44,167755.05,22174.0,12400.61,10541.45,45116.06,212871.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23569,20319.31,0.0,2700.99,23020.3,4909.91,1729.22,1434.85,8073.98,31094.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,41791,69708.0,6051.93,3339.25,79099.18,14484.92,12328.92,6507.34,33321.18,112420.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22571,67803.0,5156.13,2157.0,75116.13,19141.12,13357.29,5641.87,38140.28,113256.41 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,37114,84599.03,0.0,928.88,85527.91,17628.95,12424.5,7041.77,37095.22,122623.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,19112,51355.89,741.7,2555.9,54653.49,12583.37,12412.56,4474.44,29470.37,84123.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6333,Senior Building Inspector,11659,124338.0,90.9,3730.14,128159.04,25774.04,12424.5,9877.09,48075.63,176234.67 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,49,50945.4,5285.61,0.0,56231.01,12215.53,12424.5,4508.98,29149.01,85380.02 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,2200,63102.0,11847.75,1619.59,76569.34,13195.17,12424.5,6005.53,31625.2,108194.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38458,98802.69,6104.79,9995.74,114903.22,20530.79,12424.5,1917.16,34872.45,149775.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,36828,27114.95,369.9,1235.42,28720.27,0.0,5348.1,2311.38,7659.48,36379.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,44782,19749.02,0.0,1241.88,20990.9,3572.34,1433.6,358.65,5364.59,26355.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,10229,62468.81,25388.76,4372.06,92229.63,13164.75,12424.5,7511.17,33100.42,125330.05 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,3130,81542.02,0.0,0.0,81542.02,16806.15,12424.5,6424.69,35655.34,117197.36 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,11279,16552.01,0.0,192.0,16744.01,4319.93,3822.92,1362.06,9504.91,26248.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10671,119455.92,34989.45,5687.54,160132.91,23662.82,12424.5,2673.61,38760.93,198893.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,42697,90998.83,0.0,1965.75,92964.58,19163.38,12423.78,7704.46,39291.62,132256.2 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,41818,39988.82,0.0,0.0,39988.82,0.0,6155.5,3100.27,9255.77,49244.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,21533,155245.01,0.0,0.0,155245.01,31316.97,12424.5,18738.23,62479.7,217724.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,47815,71612.02,0.0,624.0,72236.02,14888.01,12424.5,5773.28,33085.79,105321.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8033,119461.61,6739.95,9252.4,135453.96,23641.9,12424.51,2251.72,38318.13,173772.09 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,51910,54909.01,460.27,1664.0,57033.28,12656.75,12424.49,4721.35,29802.59,86835.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19353,65542.6,12962.56,927.16,79432.32,18220.36,12923.15,5861.09,37004.6,116436.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",52710,107175.14,0.0,0.0,107175.14,21825.93,12424.5,16462.14,50712.57,157887.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6549,56531.0,0.0,5096.93,61627.93,12408.41,12424.5,5091.12,29924.03,91551.96 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,2204,158707.06,0.0,0.0,158707.06,31940.4,12424.5,22396.79,66761.69,225468.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,31051,81942.01,8454.57,4924.0,95320.58,17564.17,12424.5,7603.77,37592.44,132913.02 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,4794,9463.59,0.0,3903.24,13366.83,0.0,0.0,193.82,193.82,13560.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,2658,49679.0,0.0,2036.25,51715.25,11935.34,12424.5,4223.97,28583.81,80299.06 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7430,Asst Electronic Main Tech,32108,72744.0,11615.0,0.0,84359.0,8514.7,11468.77,6389.4,26372.87,110731.87 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,22527,61284.2,0.0,0.0,61284.2,12096.96,12424.5,4886.95,29408.41,90692.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,36471,40458.55,0.0,300.0,40758.55,9736.71,11879.5,3031.46,24647.67,65406.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,30184,97424.03,1790.63,2248.0,101462.66,20543.29,12424.5,8200.04,41167.83,142630.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33995,140813.57,2640.31,21028.53,164482.41,27893.52,12424.5,2709.17,43027.19,207509.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,694,82717.02,0.0,624.0,83341.02,17177.08,12424.5,6910.94,36512.52,119853.54 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,21190,59488.31,0.0,0.0,59488.31,12039.76,8523.92,4846.29,25409.97,84898.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,14388,13339.16,0.0,0.0,13339.16,2482.42,2610.34,1046.0,6138.76,19477.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,48438,4588.39,0.0,10.53,4598.92,0.0,1509.75,356.48,1866.23,6465.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16401,61687.53,18749.46,4063.95,84500.94,18270.42,12194.47,6652.68,37117.57,121618.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48677,72660.8,342.11,1540.0,74542.91,15228.35,11940.3,5934.94,33103.59,107646.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,26418,176257.0,0.0,0.0,176257.0,35471.94,12424.51,10751.05,58647.5,234904.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43376,112159.76,70334.16,21170.96,203664.88,25302.03,15052.76,3418.68,43773.47,247438.35 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,52590,46228.56,0.0,0.0,46228.56,11078.71,12424.5,3780.92,27284.13,73512.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,39737,39965.11,0.0,526.25,40491.36,8762.71,6496.29,3370.13,18629.13,59120.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,718,26916.5,2795.07,5733.95,35445.52,6286.92,6212.25,2834.6,15333.77,50779.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51199,55855.0,16164.73,4780.95,76800.68,12883.03,12424.5,6146.97,31454.5,108255.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25807,147017.76,641.14,31050.77,178709.67,33665.24,12252.48,10542.97,56460.69,235170.36 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,38085,112085.41,0.0,0.0,112085.41,22555.19,12424.5,9057.48,44037.17,156122.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",52125,94388.0,4229.1,0.0,98617.1,19453.78,12424.48,8077.74,39956.0,138573.1 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,20236,18112.0,0.0,163.01,18275.01,4099.09,3822.92,1490.29,9412.3,27687.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7310,Transit Power Cable Splicer,39045,96939.53,19593.43,10.0,116542.96,19745.68,11110.08,9333.95,40189.71,156732.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,21343,64071.45,3141.18,15557.65,82770.28,15642.19,12347.74,6795.36,34785.29,117555.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,49476,83720.0,3825.3,987.0,88532.3,17450.02,12424.49,7325.98,37200.49,125732.79 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,6974,25452.0,0.0,909.0,26361.0,6545.78,6690.11,2200.22,15436.11,41797.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9100,Street Transit,9195,Light Rail Vehicle Equip Eng,18248,132210.02,0.0,1572.99,133783.01,26893.95,12424.51,10033.3,49351.76,183134.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,46766,68876.02,957.11,540.0,70373.13,14078.35,10513.04,5671.93,30263.32,100636.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33522,100619.06,16203.98,5181.62,122004.66,21094.18,14953.9,1989.75,38037.83,160042.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11794,18543.12,0.0,3708.66,22251.78,0.0,0.0,3298.32,3298.32,25550.1 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,36353,71320.72,0.0,760.52,72081.24,14824.13,12424.5,5861.9,33110.53,105191.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,19324,84157.09,18134.8,5355.59,107647.48,17590.7,12424.5,8668.8,38684.0,146331.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,42953,66991.1,1471.25,650.09,69112.44,11535.28,9509.54,5395.13,26439.95,95552.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,36225,3527.01,0.0,0.0,3527.01,791.11,477.86,278.63,1547.6,5074.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,45211,129895.02,0.0,0.0,129895.02,26141.5,12424.5,10005.34,48571.34,178466.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19516,946.2,0.0,31.54,977.74,0.0,71.8,16.29,88.09,1065.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,21989,36805.96,136.3,0.0,36942.26,7614.19,6414.22,3011.84,17040.25,53982.51 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,32720,10442.5,0.0,0.0,10442.5,1893.23,1194.67,807.3,3895.2,14337.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29539,3457.0,0.0,1037.1,4494.1,0.0,0.0,11.24,11.24,4505.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",20631,60893.82,22346.31,8263.78,91503.91,12146.95,5686.6,1565.49,19399.04,110902.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,4103,66102.01,473.81,0.0,66575.82,13624.06,12424.5,5396.07,31444.63,98020.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47164,144713.62,323.23,34365.03,179401.88,34751.16,12058.39,10684.45,57494.0,236895.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,39767,33385.07,0.0,0.0,33385.07,6501.44,6684.14,2712.25,15897.83,49282.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20188,113264.61,77466.0,22322.77,213053.38,25947.48,15148.34,3591.54,44687.36,257740.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26541,66855.53,5775.82,6329.98,78961.33,20076.94,13173.56,5488.71,38739.21,117700.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,12999,86663.0,993.9,146.0,87802.9,17891.1,12424.5,7105.11,37420.71,125223.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,14673,84320.68,872.98,8014.57,93208.23,18205.95,12376.71,7406.21,37988.87,131197.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,35828,3527.0,0.0,0.0,3527.0,791.11,477.86,273.06,1542.03,5069.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",14245,148312.41,51061.94,33447.12,232821.47,35805.65,15002.76,3915.19,54723.6,287545.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17687,6157.43,0.0,0.0,6157.43,0.0,2670.07,491.66,3161.73,9319.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43239,66986.34,10994.9,2646.23,80627.47,19049.57,13199.54,6748.98,38998.09,119625.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48971,33858.61,0.0,163.66,34022.27,212.8,0.0,4851.68,5064.48,39086.75 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,11712,208208.2,0.0,39559.56,247767.76,45805.4,12424.5,11196.76,69426.66,317194.42 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,14837,269.59,0.0,0.0,269.59,1518.19,17.92,0.0,1536.11,1805.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49319,6507.6,0.0,1084.61,7592.21,0.0,573.14,587.79,1160.93,8753.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21126,56531.0,0.0,4728.24,61259.24,12625.03,12424.5,5017.01,30066.54,91325.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,32777,0.0,0.0,159.45,159.45,0.0,68.5,12.2,80.7,240.15 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8208,Park Patrol Officer,22382,55854.8,18259.75,2976.19,77090.74,12823.43,12424.5,5937.97,31185.9,108276.64 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,13822,87713.01,0.0,4044.17,91757.18,18406.47,12424.5,7526.96,38357.93,130115.11 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,48680,55809.83,0.0,868.99,56678.82,12525.27,11503.6,4506.18,28535.05,85213.87 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1249,Personnel Trainee,23720,33659.1,0.0,0.0,33659.1,7437.51,7120.2,2649.15,17206.86,50865.96 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,49101,20518.81,1669.08,241.09,22428.98,4141.77,4668.15,1826.03,10635.95,33064.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,12821,48766.32,1276.46,1780.74,51823.52,10388.3,9222.81,4074.91,23686.02,75509.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,34878,85367.99,0.0,1025.0,86392.99,17805.46,12424.5,6869.84,37099.8,123492.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,2077,110982.58,0.0,233.34,111215.92,22497.18,11804.18,9163.33,43464.69,154680.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7382,Automotive Mechanic Asst Sprv,12632,26771.0,6358.03,2170.68,35299.71,4982.08,3345.06,2809.2,11136.34,46436.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37038,26448.98,2276.48,567.74,29293.2,7529.26,6754.27,2102.24,16385.77,45678.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44207,43686.31,2239.25,1997.97,47923.53,11843.13,13285.31,3671.66,28800.1,76723.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39132,74884.27,10928.42,6821.1,92633.79,16361.15,15052.76,1543.22,32957.13,125590.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,49209,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8711.22,43107.53,149712.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47156,19011.69,71.3,0.0,19082.99,636.55,0.0,4496.4,5132.95,24215.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5779,130055.83,8162.49,17365.8,155584.12,29007.48,14813.82,403.8,44225.1,199809.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,15448,39748.36,524.64,4229.29,44502.29,9885.03,10546.55,3338.51,23770.09,68272.38 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,17786,62838.06,0.0,0.0,62838.06,13521.14,8601.58,5030.7,27153.42,89991.48 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,30771,56276.04,0.0,1624.0,57900.04,12952.14,12424.5,4680.85,30057.49,87957.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41049,138624.69,13910.51,12660.64,165195.84,27434.17,12424.5,2814.47,42673.14,207868.98 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",30360,68704.08,1001.96,3806.37,73512.41,16511.6,12295.77,768.1,29575.47,103087.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,6572,20596.0,0.0,400.0,20996.0,0.0,5017.59,1591.86,6609.45,27605.45 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,30851,66237.94,0.0,0.0,66237.94,13444.08,9891.81,5355.64,28691.53,94929.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,9814,22833.5,0.0,0.0,22833.5,4249.33,3106.12,1805.55,9161.0,31994.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29380,107905.28,15463.9,8567.43,131936.61,22946.1,12997.93,2113.14,38057.17,169993.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52726,120883.32,587.23,11574.7,133045.25,25378.74,11038.69,9975.76,46393.19,179438.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16482,140136.62,997.15,3854.7,144988.47,27708.31,0.0,2479.14,30187.45,175175.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34928,50082.05,4557.1,1000.0,55639.15,11072.99,8123.71,4535.9,23732.6,79371.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,40854,127129.04,0.0,0.0,127129.04,25584.71,12424.5,24891.45,62900.66,190029.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,19768,66102.04,5674.07,11501.01,83277.12,13633.72,12424.5,6620.2,32678.42,115955.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45750,1835.7,0.0,305.96,2141.66,798.13,143.48,358.81,1300.42,3442.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14230,447.6,0.0,5.6,453.2,99.43,47.79,35.09,182.31,635.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,34017,36959.9,0.0,0.0,36959.9,9127.37,9079.44,3131.56,21338.37,58298.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13819,78578.72,0.0,0.0,78578.72,0.0,6459.9,6292.19,12752.09,91330.81 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,14343,54688.03,0.0,0.0,54688.03,11966.25,7645.85,4219.21,23831.31,78519.34 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,8301,76295.84,0.0,3539.19,79835.03,16080.81,10735.91,6629.07,33445.79,113280.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3328,48457.62,0.0,6762.3,55219.92,12656.43,12254.86,4467.62,29378.91,84598.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43780,96602.45,8729.07,11082.59,116414.11,26210.68,12274.45,1741.28,40226.41,156640.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19198,120830.21,5012.57,17386.61,143229.39,22926.81,10928.78,5075.18,38930.77,182160.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,33892,79395.02,0.0,1500.0,80895.02,16667.6,12424.51,6652.68,35744.79,116639.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48006,49083.11,4255.8,980.0,54318.91,10192.67,10990.9,4286.69,25470.26,79789.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2770,Senior Laundry Worker,27057,54909.0,981.5,3052.16,58942.66,12554.46,12424.5,4604.84,29583.8,88526.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,30223,45233.0,6261.86,13157.37,64652.23,0.0,5734.39,5015.11,10749.5,75401.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,35176,29533.22,1537.3,3213.09,34283.61,7562.6,8216.3,2694.91,18473.81,52757.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41423,137894.1,2920.4,32518.83,173333.33,20075.06,12209.46,9698.37,41982.89,215316.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",4144,97989.0,23669.39,4108.88,125767.27,20535.28,12424.5,9863.03,42822.81,168590.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,51402,43652.23,0.0,2885.26,46537.49,9657.81,9618.6,3851.02,23127.43,69664.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,18027,86663.01,0.0,1864.92,88527.93,18169.08,12424.49,7230.33,37823.9,126351.83 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,4477,34312.02,0.0,0.0,34312.02,7528.08,3822.92,2788.93,14139.93,48451.95 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,51037,64606.84,0.0,3417.15,68023.99,13317.04,12424.5,5648.35,31389.89,99413.88 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,29379,70025.74,0.0,1105.0,71130.74,14502.85,11281.69,5340.52,31125.06,102255.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,43432,84765.0,7924.39,600.0,93289.39,17578.99,12424.5,7306.19,37309.68,130599.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,29364,31184.62,321.3,542.18,32048.1,5752.07,2345.12,2300.8,10397.99,42446.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,10073,38154.81,932.81,739.71,39827.33,8092.36,8694.16,3198.53,19985.05,59812.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13706,120580.66,0.0,7485.04,128065.7,25668.08,11182.06,9934.48,46784.62,174850.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,25911,11740.02,0.0,280.0,12020.02,2696.08,2389.32,1002.5,6087.9,18107.92 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,39332,23429.77,545.75,0.0,23975.52,0.0,0.0,1896.64,1896.64,25872.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,4501,8292.0,0.0,0.0,8292.0,1543.14,1433.6,672.76,3649.5,11941.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17230,60333.74,0.0,5025.18,65358.92,12526.37,0.0,7189.09,19715.46,85074.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,46699,3090.1,0.0,0.0,3090.1,0.0,621.23,239.23,860.46,3950.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,38392,134644.6,0.0,0.0,134644.6,27105.34,12352.83,10015.47,49473.64,184118.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41957,66856.92,5939.25,934.1,73730.27,18565.08,13174.87,5747.24,37487.19,111217.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52294,42007.75,0.0,2851.67,44859.42,10289.1,11062.58,3573.8,24925.48,69784.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,20509,118411.05,0.0,0.0,118411.05,23830.29,12424.5,9574.06,45828.85,164239.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,15094,135421.0,0.0,0.0,135421.0,27253.5,12424.5,10062.7,49740.7,185161.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52941,123763.29,4243.58,11811.78,139818.65,26196.41,11059.9,9086.27,46342.58,186161.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,33670,4363.88,0.0,0.0,4363.88,978.82,967.68,370.73,2317.23,6681.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24170,80955.35,2497.38,4193.54,87646.27,16856.7,12424.49,698.94,29980.13,117626.4 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,42594,113672.0,0.0,13575.06,127247.06,25183.87,12424.5,9939.46,47547.83,174794.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,39651,26358.57,0.0,0.0,26358.57,0.0,2281.81,2043.18,4324.99,30683.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",18256,94678.85,0.0,0.0,94678.85,19429.68,11946.64,15113.48,46489.8,141168.65 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,2174,108373.68,42223.35,7451.33,158048.36,28170.29,12424.5,2647.6,43242.39,201290.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22819,43559.16,526.8,1839.1,45925.06,10194.55,11786.08,3684.35,25664.98,71590.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,36980,93738.01,0.0,5597.03,99335.04,19319.82,12424.5,8143.68,39888.0,139223.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13931,971.15,0.0,841.93,1813.08,237.17,421.12,147.25,805.54,2618.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,43375,72315.51,0.0,600.0,72915.51,14999.37,12424.5,5929.61,33353.48,106268.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,19441,4457.06,0.0,0.0,4457.06,0.0,1600.85,356.56,1957.41,6414.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,46728,49679.0,35.61,0.0,49714.61,6036.31,12424.5,4015.72,22476.53,72191.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,28722,138629.96,30733.51,17189.72,186553.19,27414.76,12424.5,3179.54,43018.8,229571.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,26663,19749.03,1523.57,489.6,21762.2,3572.11,1433.6,371.92,5377.63,27139.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",36631,132119.9,15394.78,21413.77,168928.45,30060.49,15196.12,2791.11,48047.72,216976.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,5291,48255.81,0.0,40.0,48295.81,9086.3,6731.93,3905.64,19723.87,68019.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28910,136071.01,0.0,250.0,136321.01,25102.58,12424.5,7729.09,45256.17,181577.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,23755,19452.78,250.31,0.0,19703.09,0.0,4244.06,1529.27,5773.33,25476.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42108,18870.54,0.0,0.0,18870.54,0.0,0.0,1492.74,1492.74,20363.28 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,46977,2666.3,0.0,19675.87,22342.17,587.12,334.51,6.67,928.3,23270.47 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15621,56531.0,40.52,216.0,56787.52,11691.53,12424.5,4712.83,28828.86,85616.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,42230,147149.03,0.0,0.0,147149.03,29613.71,12424.5,17551.72,59589.93,206738.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,9975,6753.06,0.0,42.78,6795.84,1524.31,1357.62,576.6,3458.53,10254.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,6952,93766.5,56901.14,14328.64,164996.28,21307.71,12663.43,10512.3,44483.44,209479.72 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,1142,11484.7,0.0,0.0,11484.7,2525.49,2389.33,916.16,5830.98,17315.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,45728,92001.31,3121.37,2502.75,97625.43,19458.56,12424.5,8036.17,39919.23,137544.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50881,58699.75,4538.51,3266.72,66504.98,16106.83,13439.97,4855.89,34402.69,100907.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4031,1584.38,0.0,61.63,1646.01,0.0,860.16,127.43,987.59,2633.6 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,25894,94371.58,0.0,0.0,94371.58,18434.97,6872.9,21088.57,46396.44,140768.02 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,556.0,Elected Officials,4200,Appraisal & Taxation,4290,Assessor,12718,184502.01,0.0,0.0,184502.01,37107.56,12424.5,17683.32,67215.38,251717.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",39215,88820.98,1632.86,0.0,90453.84,18617.03,10767.92,7263.28,36648.23,127102.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,46211,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,10134,13030.0,0.0,0.0,13030.0,2865.29,2867.19,902.68,6635.16,19665.16 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,15162,72598.72,0.0,0.0,72598.72,14961.02,12405.51,5970.4,33336.93,105935.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,794,0.0,0.0,438.46,438.46,0.0,0.0,33.54,33.54,472.0 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,275,47354.2,956.72,5047.87,53358.79,12070.16,10333.84,4298.82,26702.82,80061.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,1067,126994.0,0.0,0.0,126994.0,25557.71,12424.52,9912.86,47895.09,174889.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18119,44881.2,0.0,6402.7,51283.9,0.0,3010.37,3974.47,6984.84,58268.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,9068,73554.7,16254.37,3334.04,93143.11,15252.2,12424.5,7582.54,35259.24,128402.35 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",1183,66529.59,25888.0,4120.5,96538.09,16122.74,11904.52,1866.81,29894.07,126432.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,11051,112776.02,2153.36,2925.22,117854.6,22696.43,12424.5,9416.42,44537.35,162391.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,15146,57521.39,3336.02,8033.71,68891.12,12800.9,10162.22,5677.74,28640.86,97531.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,23476,12561.0,0.0,0.0,12561.0,0.0,3799.03,974.24,4773.27,17334.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10450,63247.32,15978.27,585.95,79811.54,17437.45,12460.1,6219.84,36117.39,115928.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,43359,70791.01,5878.14,922.51,77591.66,14781.23,12424.51,6035.3,33241.04,110832.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1898,18482.39,0.0,0.0,18482.39,4515.02,3598.56,1454.61,9568.19,28050.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,43021,61355.01,0.0,0.0,61355.01,13715.33,12424.5,4991.02,31130.85,92485.86 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,22626,61735.02,0.0,2124.0,63859.02,13160.87,12424.5,5236.12,30821.49,94680.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,34947,71115.92,0.0,0.0,71115.92,14713.18,11701.74,5864.11,32279.03,103394.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42256,112159.75,45926.65,21446.58,179532.98,24822.8,15052.76,3061.47,42937.03,222470.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,35240,148374.63,0.0,5744.5,154119.13,30963.63,12420.02,10333.15,53716.8,207835.93 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,41977,77071.08,0.0,1881.15,78952.23,16147.28,12424.5,6480.14,35051.92,114004.15 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1958,Supervising Purchaser,16901,52250.03,0.0,25430.08,77680.11,11463.7,4778.65,6256.78,22499.13,100179.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11320,105928.64,0.0,741.19,106669.83,20749.8,11229.84,1766.05,33745.69,140415.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,21168,10754.61,0.0,61.31,10815.92,0.0,3902.07,838.35,4740.42,15556.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7472,Wire Rope Cable Maint Mechanic,5990,84831.02,28215.6,11535.18,124581.8,19337.36,11976.62,9804.07,41118.05,165699.85 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,30587,34349.25,0.0,980.57,35329.82,8447.03,9575.22,2877.23,20899.48,56229.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35878,113233.61,36901.41,18585.69,168720.71,25036.04,15196.12,2821.51,43053.67,211774.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,18065,83148.03,0.0,0.0,83148.03,17137.11,12424.49,6739.42,36301.02,119449.05 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",2901,1200.0,0.0,0.0,1200.0,0.0,71.68,93.02,164.7,1364.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44825,15038.4,27.55,526.26,15592.21,0.0,6496.58,1261.43,7758.01,23350.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,47046,96254.04,0.0,0.0,96254.04,19838.22,12424.5,7695.92,39958.64,136212.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,3579,116792.82,3128.35,7973.2,127894.37,23134.58,12388.66,1735.02,37258.26,165152.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,42286,15320.0,0.0,369.48,15689.48,3366.96,955.73,264.17,4586.86,20276.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,26077,47376.03,0.0,386.88,47762.91,10713.21,5734.39,4149.96,20597.56,68360.47 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3179,119467.31,3716.24,5493.96,128677.51,23620.96,12424.5,2188.45,38233.91,166911.42 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,34827,67261.05,0.0,1969.0,69230.05,14243.01,12424.5,5729.0,32396.51,101626.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26471,55508.52,10502.07,774.22,66784.81,15228.88,10924.48,5207.11,31360.47,98145.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,19695,56463.5,23168.01,4183.39,83814.9,12611.35,12424.5,6496.47,31532.32,115347.22 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,23798,87244.49,0.0,0.0,87244.49,17973.1,12357.72,7129.83,37460.65,124705.14 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",35312,198139.07,0.0,5462.78,203601.85,40974.08,12424.5,11295.66,64694.24,268296.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,3289,136060.02,0.0,5482.98,141543.0,28350.83,11931.64,10109.66,50392.13,191935.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,18892,3027.0,0.0,0.0,3027.0,563.32,477.86,234.94,1276.12,4303.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,43860,64389.9,0.0,0.0,64389.9,13251.47,12424.5,4986.08,30662.05,95051.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,14209,2246.09,0.0,169.87,2415.96,0.0,492.8,187.04,679.84,3095.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30963,119455.94,2514.82,8303.67,130274.43,23662.84,12424.5,2219.33,38306.67,168581.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,39439,52765.59,1285.52,250.0,54301.11,11614.95,12424.52,4357.08,28396.55,82697.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10280,4529.01,0.0,31.54,4560.55,804.94,477.88,78.04,1360.86,5921.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,23724,5880.0,0.0,0.0,5880.0,1318.88,955.72,476.06,2750.66,8630.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,24720,71871.01,0.0,2281.67,74152.68,15279.48,10378.65,5967.7,31625.83,105778.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,43094,109935.96,0.0,0.0,109935.96,22116.84,12412.56,9490.46,44019.86,153955.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,32359,113320.39,14710.84,11260.7,139291.93,22931.25,12424.5,2271.97,37627.72,176919.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44785,70245.0,3709.41,9306.74,83261.15,15781.56,12424.5,6584.88,34790.94,118052.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,4183,80732.64,0.0,0.0,80732.64,16638.72,12424.5,6252.84,35316.06,116048.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45107,118945.09,0.0,7881.04,126826.13,25790.09,11174.88,9857.57,46822.54,173648.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,11464,24431.0,0.0,0.0,24431.0,5479.87,5256.52,1946.06,12682.45,37113.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,36472,97185.23,0.0,619.2,97804.43,20140.9,12328.92,7862.3,40332.12,138136.55 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,13316,86897.04,0.0,0.0,86897.04,17953.06,12424.5,7009.67,37387.23,124284.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24648,145594.11,1880.67,19639.58,167114.36,33354.39,12130.62,7192.66,52677.67,219792.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,52507,62330.81,1147.53,2620.57,66098.91,13331.33,12328.92,5440.29,31100.54,97199.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,24658,84644.0,60148.3,13071.92,157864.22,18734.54,12424.5,10269.51,41428.55,199292.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33724,82489.82,0.0,0.0,82489.82,15976.87,8465.68,6658.39,31100.94,113590.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,27250,4183.2,0.0,14380.19,18563.39,938.29,573.44,1430.56,2942.29,21505.68 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,9010,37842.09,3596.72,1968.62,43407.43,8142.11,8368.08,3607.86,20118.05,63525.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",21933,178604.31,75456.85,27484.43,281545.59,40389.11,15052.76,4765.47,60207.34,341752.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,6148,138635.27,7496.8,11069.64,157201.71,27940.06,12424.5,2623.46,42988.02,200189.73 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26411,97765.09,3307.79,11816.63,112889.51,25939.89,12424.51,1848.7,40213.1,153102.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,36165,128619.53,0.0,0.0,128619.53,25836.41,12424.5,17206.08,55466.99,184086.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,6185,86663.0,0.0,435.63,87098.63,17946.31,12424.5,7219.06,37589.87,124688.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50957,56531.0,0.0,3482.18,60013.18,12368.94,12424.5,4911.63,29705.07,89718.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,23984,49083.11,29.74,0.0,49112.85,9998.81,10990.9,3752.24,24741.95,73854.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8986,80949.88,1955.75,4006.4,86912.03,16584.79,12424.51,3290.44,32299.74,119211.77 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48342,67201.65,54.23,11248.7,78504.58,15074.66,7335.24,6277.29,28687.19,107191.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45646,112694.61,13461.17,3775.2,129930.98,22297.41,12424.5,2157.6,36879.51,166810.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,20238,84360.0,0.0,0.0,84360.0,18230.08,7167.99,14827.27,40225.34,124585.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,11493,86663.01,2034.62,6875.96,95573.59,18773.58,12424.5,7806.71,39004.79,134578.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28154,36111.09,0.0,707.4,36818.49,7764.0,7066.44,2910.59,17741.03,54559.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,21478,4766.11,0.0,271.73,5037.84,0.0,0.0,397.47,397.47,5435.31 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",42784,63918.01,28941.54,6031.4,98890.95,13904.57,12424.5,1897.25,28226.32,127117.27 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,25921,25154.04,0.0,312.0,25466.04,6110.38,6212.25,2063.18,14385.81,39851.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,42990,16482.73,438.8,2153.3,19074.83,3122.92,1758.54,1453.63,6335.09,25409.92 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),3335,105797.3,0.0,1500.0,107297.3,22085.69,12376.71,8527.19,42989.59,150286.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,53018,145945.48,0.0,0.0,145945.48,29349.59,12424.5,17470.64,59244.73,205190.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,4484,77297.76,0.0,1830.98,79128.74,16377.99,10958.06,6443.43,33779.48,112908.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,20357,97424.01,1605.99,0.0,99030.0,20079.52,12424.5,8200.35,40704.37,139734.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,8610,38388.03,4388.64,0.0,42776.67,8610.48,5734.39,3426.33,17771.2,60547.87 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,28761,58499.01,855.11,321.19,59675.31,11805.31,10035.17,4646.87,26487.35,86162.66 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,18150,46540.68,1228.95,1124.51,48894.14,10123.31,11128.29,3930.74,25182.34,74076.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7220,Asphalt Finisher Supervisor 1,33208,90466.81,11889.42,3864.2,106220.43,19443.14,12262.67,8502.96,40208.77,146429.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34799,53554.57,20004.43,554.89,74113.89,14519.59,10532.4,5783.0,30834.99,104948.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,23120,7790.01,0.0,409.75,8199.76,2115.54,2389.33,674.73,5179.6,13379.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,46157,79235.52,0.0,0.0,79235.52,16327.98,12424.5,6539.92,35292.4,114527.92 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),23335,133397.62,0.0,1562.5,134960.12,27145.83,12424.5,9979.54,49549.87,184509.99 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,2500,Med Therapy & Auxiliary,2576,Sprv Clincal Psychologist,24707,120449.0,0.0,0.0,120449.0,24240.62,12424.5,9766.3,46431.42,166880.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25505,881.6,0.0,0.0,881.6,0.0,382.3,68.26,450.56,1332.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3828,114433.57,1722.02,3107.58,119263.17,22546.59,11898.85,1989.54,36434.98,155698.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51454,61929.0,1620.6,1362.3,64911.9,13045.43,10990.9,5380.62,29416.95,94328.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31822,1184.65,0.0,36.3,1220.95,0.0,513.71,94.52,608.23,1829.18 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0905,Mayoral Staff XVII,7757,199820.21,0.0,0.0,199820.21,40143.59,12287.59,18452.81,70883.99,270704.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32001,39376.21,10507.26,2064.64,51948.11,6989.44,3392.84,877.9,11260.18,63208.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,5122,79357.1,0.0,1444.0,80801.1,16644.07,12418.53,6210.25,35272.85,116073.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42806,6238.38,1607.94,42.25,7888.57,1532.49,1969.23,595.81,4097.53,11986.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,33900,65589.65,45.92,0.0,65635.57,13487.86,12424.51,5343.67,31256.04,96891.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,19004,6829.61,0.0,49.05,6878.66,0.0,2475.29,543.78,3019.07,9897.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,6386,11532.0,0.0,120.0,11652.0,2168.43,1433.6,936.41,4538.44,16190.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,28615,72519.18,24399.25,6444.63,103363.06,15582.9,9079.45,1722.19,26384.54,129747.6 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,22876,24095.45,0.0,2876.47,26971.92,6710.11,3037.85,451.65,10199.61,37171.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34024,113223.0,17113.45,15166.88,145503.33,24475.82,15196.12,2415.21,42087.15,187590.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,42306,116976.01,0.0,1560.0,118536.01,23541.49,12424.49,9293.95,45259.93,163795.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,39734,104995.01,0.0,0.0,104995.01,21012.59,11558.38,16398.76,48969.73,153964.74 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20109,35572.66,0.0,0.0,35572.66,8758.85,8830.48,2838.3,20427.63,56000.29 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,11475,444.13,333.09,0.0,777.22,0.0,131.41,60.32,191.73,968.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47845,11543.11,0.0,0.0,11543.11,993.49,4943.52,941.23,6878.24,18421.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,578,99773.93,6997.79,9951.59,116723.31,20680.97,12424.49,1900.79,35006.25,151729.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,29011,106605.05,0.0,0.0,106605.05,21971.81,12424.51,8391.45,42787.77,149392.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,45556,17165.0,0.0,0.0,17165.0,3194.4,2389.33,1352.28,6936.01,24101.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,27008,4125.25,0.0,0.0,4125.25,0.0,1732.26,327.9,2060.16,6185.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30359,112170.34,30560.37,15994.08,158724.79,24273.29,15052.76,2685.37,42011.42,200736.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",35188,12830.5,0.0,378.85,13209.35,2599.84,1672.53,1071.27,5343.64,18552.99 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,13038,108415.3,0.0,0.0,108415.3,22096.63,12424.5,8669.29,43190.42,151605.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36561,67517.65,3246.58,4274.27,75038.5,16367.27,13303.71,5681.57,35352.55,110391.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,29466,14205.0,0.0,0.0,14205.0,2643.55,2389.32,1150.67,6183.54,20388.54 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,44520,0.0,0.0,245.46,245.46,0.0,68.5,18.78,87.28,332.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,48859,63102.03,0.0,0.0,63102.03,13005.54,12424.5,4881.69,30311.73,93413.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19706,56531.0,0.0,6737.4,63268.4,12387.94,12424.5,5175.89,29988.33,93256.73 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,47873,101047.08,0.0,4279.95,105327.03,21694.06,12424.5,8296.74,42415.3,147742.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9450,44042.44,1434.7,1174.0,46651.14,11483.6,9835.61,3502.18,24821.39,71472.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,18575,78641.06,0.0,0.0,78641.06,16194.64,12424.5,6398.12,35017.26,113658.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,45230,31595.01,0.0,0.0,31595.01,0.0,2317.65,2446.29,4763.94,36358.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,44629,118104.02,0.0,0.0,118104.02,23768.42,12424.5,9650.91,45843.83,163947.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51952,47053.1,0.0,5800.33,52853.43,12303.66,12424.5,4024.01,28752.17,81605.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,7280,24119.9,45.99,1113.58,25279.47,1745.24,5256.52,2016.65,9018.41,34297.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2991,"Coord, Human Rights Comm",41672,48210.61,0.0,11405.61,59616.22,10577.38,5447.67,4851.89,20876.94,80493.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,32705,7936.61,0.0,0.0,7936.61,0.0,0.0,627.61,627.61,8564.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18321,2866.5,0.0,0.0,2866.5,0.0,1397.75,222.48,1620.23,4486.73 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,36249,15621.26,0.0,0.0,15621.26,0.0,5800.09,1211.3,7011.39,22632.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,147,1926.75,0.0,60.56,1987.31,0.0,501.76,154.25,656.01,2643.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50678,64443.75,5611.84,4665.33,74720.92,16195.75,12705.25,5668.58,34569.58,109290.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,46836,66102.0,0.0,3393.61,69495.61,14330.18,12424.5,5732.27,32486.95,101982.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22272,20939.92,0.0,110.71,21050.63,0.0,1786.5,1631.25,3417.75,24468.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,21791,61028.96,137.37,1392.03,62558.36,12817.57,11865.99,4952.15,29635.71,92194.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,32097,62811.01,0.0,250.0,63061.01,12945.66,12424.5,4957.4,30327.56,93388.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23342,100758.13,0.0,8114.58,108872.71,21396.74,9480.97,8651.6,39529.31,148402.02 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,17518,34241.95,0.0,0.0,34241.95,6208.07,2699.94,2657.72,11565.73,45807.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32518,116877.25,0.0,22354.1,139231.35,24087.56,10950.88,9892.5,44930.94,184162.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,51541,125284.04,0.0,0.0,125284.04,25209.24,12424.5,9820.4,47454.14,172738.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,21339,9770.6,0.0,240.0,10010.6,2201.31,2341.54,781.26,5324.11,15334.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,24387,10799.6,69.83,0.0,10869.43,2251.64,1385.81,838.12,4475.57,15345.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25599,12520.0,0.0,0.0,12520.0,2269.88,1911.46,965.37,5146.71,17666.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29252,97174.03,0.0,0.0,97174.03,20027.8,12424.5,7944.18,40396.48,137570.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2618,Food Service Supervisor,40860,63414.01,0.0,3626.65,67040.66,13626.25,12424.5,5546.38,31597.13,98637.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,17959,98166.01,0.0,1430.0,99596.01,20157.02,11538.89,7782.54,39478.45,139074.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29929,95988.3,16661.64,8717.47,121367.41,25452.1,12472.29,1041.64,38966.03,160333.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,37750,117140.96,1587.47,4680.3,123408.73,23164.17,12424.49,2067.65,37656.31,161065.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,28786,78963.03,0.0,624.0,79587.03,16403.15,12424.5,6599.34,35426.99,115014.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19455,56531.0,0.0,4837.97,61368.97,12290.5,12424.5,4721.86,29436.86,90805.83 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,9126,75927.11,2747.83,0.0,78674.94,15648.75,12424.5,6453.33,34526.58,113201.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28504,17804.33,0.0,0.0,17804.33,3118.31,4157.43,1412.22,8687.96,26492.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,26906,61428.0,88.05,1230.0,62746.05,12862.07,12424.5,4798.02,30084.59,92830.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1897,39926.74,6278.41,3277.19,49482.34,12471.04,7940.16,3798.15,24209.35,73691.69 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,47360,73862.18,0.0,3619.38,77481.56,15359.9,12332.7,6438.75,34131.35,111612.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29437,110292.22,101.68,774.1,111168.0,0.0,9714.11,8615.15,18329.26,129497.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,38553,55072.85,16040.39,7655.3,78768.54,13527.77,12367.7,6043.02,31938.49,110707.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,47631,113668.77,0.0,0.0,113668.77,22832.61,12424.5,17737.56,52994.67,166663.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",32,0.0,0.0,28156.82,28156.82,0.0,68.5,0.0,68.5,28225.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,32596,90205.42,0.0,2003.3,92208.72,18947.32,12012.36,7653.83,38613.51,130822.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,36371,8897.38,0.0,0.0,8897.38,1569.41,2690.98,698.99,4959.38,13856.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,28999,2714.0,0.0,4607.5,7321.5,622.88,549.54,565.16,1737.58,9059.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,32996,49093.44,317.26,900.0,50310.7,10948.94,10993.88,3549.05,25491.87,75802.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,13843,64438.84,0.0,528.35,64967.19,12015.56,5664.21,5125.72,22805.49,87772.68 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,285C,Court Computer Sys Manager,34241,148382.04,0.0,5853.5,154235.54,29880.6,12424.5,32544.49,74849.59,229085.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",13017,45141.13,0.0,2649.79,47790.92,10336.88,6049.18,3862.83,20248.89,68039.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13270,62272.69,5591.49,919.98,68784.16,15432.79,12880.45,5232.88,33546.12,102330.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,25507,16839.94,792.66,0.0,17632.6,0.0,3661.65,1374.87,5036.52,22669.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,43064,33024.0,154.8,310.0,33488.8,7476.81,3822.92,2700.71,14000.44,47489.24 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,12330,197191.72,0.0,0.0,197191.72,39684.69,12424.5,19397.13,71506.32,268698.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,18519,92869.82,4839.27,9745.33,107454.42,21165.53,12400.6,8392.28,41958.41,149412.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,15666,59663.95,0.0,0.0,59663.95,13304.02,12424.5,4853.37,30581.89,90245.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,40199,17463.79,0.0,102.91,17566.7,3729.67,3061.39,1460.46,8251.52,25818.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",23744,75562.72,0.0,0.0,75562.72,14220.95,7167.99,14473.98,35862.92,111425.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,14867,54124.01,0.0,624.0,54748.01,12250.24,12424.5,4537.52,29212.26,83960.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,33634,82103.0,1650.16,2002.05,85755.21,17333.22,12424.5,7057.86,36815.58,122570.79 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,33809,30670.0,0.0,0.0,30670.0,5707.7,4778.65,2356.94,12843.29,43513.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,10909,56163.3,508.62,357.01,57028.93,10885.46,8601.58,3961.98,23449.02,80477.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,45944,75292.31,1900.43,1870.65,79063.39,15576.88,10170.53,6264.91,32012.32,111075.71 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),43681,184289.04,0.0,1562.5,185851.54,37402.58,12424.5,10879.35,60706.43,246557.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,27126,61119.51,20362.12,13865.7,95347.33,14365.35,11785.35,7784.14,33934.84,129282.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20653,45010.9,0.0,1464.26,46475.16,744.99,3966.34,3759.15,8470.48,54945.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36237,112331.42,0.0,18822.26,131153.68,25056.33,11042.58,9364.41,45463.32,176617.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,42280,56531.0,0.0,3196.89,59727.89,12319.28,12424.5,4940.79,29684.57,89412.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,5209,55365.2,0.0,1220.0,56585.2,11524.99,10250.21,4560.72,26335.92,82921.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,24835,24768.0,619.2,16923.25,42310.45,5555.46,2867.19,3385.89,11808.54,54118.99 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,34906,24285.32,0.0,190.0,24475.32,5489.81,2861.22,1897.46,10248.49,34723.81 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,46383,24552.02,0.0,17635.24,42187.26,5507.02,3440.63,3370.43,12318.08,54505.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,1280,84593.76,0.0,0.0,84593.76,17434.43,12395.41,6939.13,36768.97,121362.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10701,119991.25,982.74,3879.36,124853.35,0.0,10112.17,9439.52,19551.69,144405.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,49880,41173.63,23.8,6843.69,48041.12,10684.14,10926.33,3864.09,25474.56,73515.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19803,62821.6,0.0,8831.48,71653.08,13208.17,6853.79,5786.06,25848.02,97501.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48024,19665.53,0.0,3543.07,23208.6,524.04,0.0,4029.35,4553.39,27761.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,1144,112237.15,0.0,4296.36,116533.51,23399.57,12364.76,9168.37,44932.7,161466.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,13354,47075.0,287.1,0.0,47362.1,11273.05,12424.5,3806.21,27503.76,74865.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,46197,28813.7,247.8,354.0,29415.5,5362.24,5877.74,2382.35,13622.33,43037.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23910,70832.13,63746.51,10016.03,144594.67,22114.9,13954.81,9765.13,45834.84,190429.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33755,68115.46,12423.16,3963.34,84501.96,19745.53,13422.16,6466.98,39634.67,124136.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6295,77856.3,4528.67,1508.77,83893.74,15750.04,11946.64,4398.96,32095.64,115989.38 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,11458,88165.8,0.0,0.0,88165.8,18127.08,12130.98,6832.23,37090.29,125256.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42390,1923.25,0.0,0.0,1923.25,0.0,937.81,149.09,1086.9,3010.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,5145,80183.8,0.0,0.0,80183.8,16563.07,10872.81,6244.2,33680.08,113863.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33132,97226.05,2367.51,5642.44,105236.0,20186.44,9557.31,1781.23,31524.98,136760.98 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,19576,13410.97,0.0,1215.56,14626.53,2947.34,764.58,923.73,4635.65,19262.18 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,34946,81370.06,0.0,0.0,81370.06,16182.66,9025.68,6615.97,31824.31,113194.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,20848,38698.11,0.0,255.76,38953.87,9189.81,9683.42,3112.49,21985.72,60939.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30460,119455.2,0.0,17593.61,137048.81,23664.85,12424.5,2162.85,38252.2,175301.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33647,58500.81,10386.96,1110.63,69998.4,16512.8,11567.4,5446.41,33526.61,103525.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2538,97766.65,21758.18,9408.33,128933.16,25965.97,12424.51,2121.43,40511.91,169445.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36499,119455.91,37544.21,12903.19,169903.31,23662.85,12424.5,2897.03,38984.38,208887.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,31213,108038.01,24946.19,11174.41,144158.61,23479.97,12424.5,10148.71,46053.18,190211.79 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,27409,3130.0,0.0,0.0,3130.0,0.0,955.73,243.68,1199.41,4329.41 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,9901,83835.33,5164.03,764.1,89763.46,17240.89,12424.5,7192.5,36857.89,126621.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,43211,84302.52,0.0,0.0,84302.52,17212.97,11010.44,6964.06,35187.47,119489.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,47669,116976.0,0.0,0.0,116976.0,23541.49,12424.49,9611.6,45577.58,162553.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,52780,84973.02,0.0,1584.0,86557.02,17840.46,12424.49,7027.13,37292.08,123849.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,4749,129895.06,0.0,0.0,129895.06,26141.52,12424.49,9960.87,48526.88,178421.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,30283,49516.21,3933.6,351.99,53801.8,11875.51,11420.99,4262.41,27558.91,81360.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,53090,49143.08,4584.61,3500.04,57227.73,10427.33,8601.58,4676.5,23705.41,80933.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37145,25934.61,0.0,2996.11,28930.72,6005.53,5681.94,2476.06,14163.53,43094.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,2146,48579.35,0.0,22570.98,71150.33,10658.34,5519.35,5757.92,21935.61,93085.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,52552,33761.0,0.0,0.0,33761.0,6282.93,5686.62,2648.39,14617.94,48378.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33778,62468.8,825.83,306.44,63601.07,12867.67,12424.5,5195.13,30487.3,94088.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,5747,97934.02,0.0,2044.0,99978.02,20599.17,12424.5,8234.36,41258.03,141236.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,38877,30030.01,2191.95,0.0,32221.96,7701.48,6690.11,2540.01,16931.6,49153.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52372,2897.4,0.0,77.26,2974.66,0.0,788.48,230.3,1018.78,3993.44 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2595,Sr Employee Asst Counselor,24529,53567.01,0.0,19550.0,73117.01,12015.05,6546.76,5802.96,24364.77,97481.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,51984,109813.6,35737.89,11042.96,156594.45,23956.15,15196.11,2616.53,41768.79,198363.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20553,119455.95,1952.57,6868.79,128277.31,23662.83,12424.5,2174.12,38261.45,166538.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,6478,94049.61,6528.1,1767.64,102345.35,19531.31,11928.71,8474.55,39934.57,142279.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17150,62576.96,7621.9,6770.28,76969.14,18886.04,12323.31,5749.85,36959.2,113928.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,23346,15907.77,0.0,840.79,16748.56,4046.79,4557.65,1357.81,9962.25,26710.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,34104,3409.75,0.0,0.0,3409.75,0.0,1105.06,264.65,1369.71,4779.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,17327,13700.63,0.0,0.0,13700.63,840.89,5941.07,1098.28,7880.24,21580.87 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,5546,72921.63,0.0,3467.5,76389.13,15105.15,12175.66,6351.78,33632.59,110021.72 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,41266,80793.02,0.0,0.0,80793.02,16803.16,11468.77,6661.81,34933.74,115726.76 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),27879,137447.11,0.0,1562.5,139009.61,27973.02,12424.5,10153.32,50550.84,189560.45 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46532,113421.53,23746.21,13956.44,151124.18,24230.54,14909.4,2467.71,41607.65,192731.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,10484,39162.32,0.0,0.0,39162.32,5844.51,6435.64,3086.44,15366.59,54528.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,29289,71612.05,0.0,624.0,72236.05,14888.02,12424.5,5941.71,33254.23,105490.28 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,33667,13617.47,0.0,421.34,14038.81,0.0,3040.12,1089.43,4129.55,18168.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49655,113233.6,6244.4,21403.93,140881.93,25481.14,15196.12,2252.86,42930.12,183812.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0490,Commander 3,31084,152916.2,0.0,5815.85,158732.05,28948.36,8601.58,2674.15,40224.09,198956.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,15881,63887.01,2989.81,3219.45,70096.27,13835.19,12424.47,5537.91,31797.57,101893.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,10577,3539.8,0.0,0.0,3539.8,0.0,1293.22,274.06,1567.28,5107.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,18650,59349.78,9858.5,8021.47,77229.75,12938.21,9971.02,6195.63,29104.86,106334.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19821,65503.06,1876.94,1297.08,68677.08,18279.36,12906.73,5132.62,36318.71,104995.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,43117,103682.41,0.0,0.0,103682.41,21324.99,12137.78,7997.9,41460.67,145143.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,43233,75605.0,0.0,12324.34,87929.34,17059.88,12424.5,7236.61,36720.99,124650.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,28502,52175.1,0.0,1520.0,53695.1,12855.08,12091.55,4321.81,29268.44,82963.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6378,65570.8,8830.35,922.42,75323.57,18201.5,12919.52,5538.87,36659.89,111983.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30931,112685.47,6500.49,9542.09,128728.05,22330.91,12424.5,2145.67,36901.08,165629.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",7216,91918.81,0.0,614.82,92533.63,19056.52,12241.96,7386.59,38685.07,131218.7 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,27304,80227.12,4997.6,8229.97,93454.69,17403.93,12424.5,7558.39,37386.82,130841.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,41479,39413.67,1786.1,3228.38,44428.15,9162.06,7827.13,3457.08,20446.27,64874.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42122,1199.3,0.0,8.59,1207.89,0.0,400.22,93.61,493.83,1701.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1663,Patient Accounts Supervisor,52093,87531.02,1254.75,0.0,88785.77,18040.63,12424.5,7232.75,37697.88,126483.65 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,23284,7609.41,0.0,0.0,7609.41,0.0,0.0,601.96,601.96,8211.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,53102,14412.03,79.93,452.11,14944.07,0.0,2407.25,1159.9,3567.15,18511.22 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,21429,15066.74,0.0,0.0,15066.74,0.0,4505.37,1168.04,5673.41,20740.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,33633,42453.4,4111.3,2350.53,48915.23,8814.22,9335.28,4039.99,22189.49,71104.72 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,8253,3750.6,0.0,0.0,3750.6,0.0,453.96,290.38,744.34,4494.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33551,59923.83,10401.45,1275.16,71600.44,17054.28,11862.36,5430.32,34346.96,105947.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,46677,40974.01,0.0,1468.36,42442.37,9356.05,4743.24,3493.78,17593.07,60035.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,10924,8618.8,0.0,0.0,8618.8,0.0,1720.32,668.16,2388.48,11007.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,15175,9610.64,0.0,67.44,9678.08,0.0,0.0,765.41,765.41,10443.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,3129,72013.0,0.0,0.0,72013.0,14532.57,10035.18,5899.63,30467.38,102480.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24158,2435.25,0.0,87.86,2523.11,0.0,609.28,195.77,805.05,3328.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28147,17715.17,2974.77,841.53,21531.47,4446.19,5470.54,1561.2,11477.93,33009.4 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14143,184289.03,0.0,1562.5,185851.53,37402.57,12424.5,10892.25,60719.32,246570.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,35879,42186.49,329.99,1380.0,43896.48,9168.58,8396.27,3059.07,20623.92,64520.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,31924,62666.05,5760.89,188.21,68615.15,12976.91,12185.57,5379.47,30541.95,99157.1 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,2206,67710.1,2757.8,5114.58,75582.48,14482.13,12388.66,6239.38,33110.17,108692.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,33745,137380.79,0.0,0.0,137380.79,27548.03,11934.7,9625.31,49108.04,186488.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,2156,56897.17,0.0,2500.21,59397.38,12119.31,10029.2,4917.78,27066.29,86463.67 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,38143,67911.02,3039.8,8067.24,79018.06,15123.6,12424.5,6259.33,33807.43,112825.49 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,8046,49759.23,0.0,1140.0,50899.23,10925.68,7765.37,4132.33,22823.38,73722.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21870,57317.37,588.81,13431.59,71337.77,12832.12,6257.77,5025.6,24115.49,95453.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,38432,18590.4,0.0,0.0,18590.4,0.0,2293.74,1462.71,3756.45,22346.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45577,91995.59,1155.97,23317.1,116468.66,0.0,7024.33,8484.28,15508.61,131977.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7122,119467.45,39258.39,15501.98,174227.82,23621.01,12424.5,2969.37,39014.88,213242.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator,Taxi & Accesssvcs",33718,93037.0,0.0,0.0,93037.0,19175.76,12424.5,7535.57,39135.83,132172.83 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16147,139515.95,0.0,1562.5,141078.45,27876.0,10328.47,10219.05,48423.52,189501.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,20317,68067.0,0.0,624.0,68691.0,14157.65,12424.51,5619.35,32201.51,100892.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31824,77071.0,0.0,3189.0,80260.0,16539.0,12424.5,6600.22,35563.72,115823.72 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,28644,52148.0,3764.84,0.0,55912.84,9943.84,6690.11,4562.35,21196.3,77109.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",49188,39823.04,0.0,0.0,39823.04,0.0,0.0,3150.03,3150.03,42973.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,20479,53191.52,521.71,1449.86,55163.09,10902.72,11013.06,4421.65,26337.43,81500.52 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,44492,24224.0,0.0,3000.0,27224.0,5326.89,5734.39,2184.18,13245.46,40469.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,19527,125476.03,0.0,0.0,125476.03,25252.12,12424.49,9867.54,47544.15,173020.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25293,80953.79,3344.76,7442.2,91740.75,16760.25,12424.5,1661.73,30846.48,122587.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48606,12151.1,0.0,284.4,12435.5,0.0,1060.32,964.52,2024.84,14460.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,48293,213413.22,0.0,0.0,213413.22,42881.73,12424.52,28850.44,84156.69,297569.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,40755,4336.94,0.0,0.0,4336.94,0.0,961.72,335.77,1297.49,5634.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10904,48195.47,7672.26,1060.0,56927.73,11397.82,10244.24,4551.24,26193.3,83121.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2922,Senior Medical Social Worker,29971,97424.05,0.0,624.0,98048.05,20208.22,12424.5,8131.73,40764.45,138812.5 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,49531,19916.0,1636.51,0.0,21552.51,2321.03,5543.24,1671.64,9535.91,31088.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,24024,33999.0,9504.65,5858.12,49361.77,7137.83,6690.11,4029.69,17857.63,67219.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,45915,62811.0,11694.53,3264.45,77769.98,12964.0,12424.5,5942.72,31331.22,109101.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32512,18400.94,0.0,1276.93,19677.87,0.01,0.0,2616.18,2616.19,22294.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1431,Senior Unit Clerk,51343,67193.06,222.54,814.78,68230.38,13989.61,12240.88,5647.68,31878.17,100108.55 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8152,"Srclaimsinvstgtor,Cty Atty Ofc",37344,115838.04,0.0,0.0,115838.04,23312.71,12424.5,8992.73,44729.94,160567.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,19267,60040.21,0.0,0.0,60040.21,12340.71,11994.43,4833.63,29168.77,89208.98 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,43646,6156.5,0.0,0.0,6156.5,0.0,2626.77,476.63,3103.4,9259.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,15322,6345.0,0.0,0.0,6345.0,1423.17,1433.6,526.52,3383.29,9728.29 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,30869,88993.43,15958.79,6052.83,111005.05,18337.56,12424.5,8856.38,39618.44,150623.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6699,21191.3,2634.01,924.61,24749.92,5351.69,6565.08,1873.5,13790.27,38540.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42129,1998.61,0.0,60.7,2059.31,0.0,839.26,159.83,999.09,3058.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43496,688.12,0.0,38.54,726.66,0.0,179.2,56.4,235.6,962.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,47822,5603.99,0.0,0.0,5603.99,0.0,2047.36,434.12,2481.48,8085.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,38697,76243.61,11997.24,3890.15,92131.0,16532.1,9700.68,7573.35,33806.13,125937.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46750,5007.21,0.0,0.0,5007.21,0.0,2171.3,402.6,2573.9,7581.11 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,10864,117135.33,12767.07,19860.47,149762.87,23184.68,12424.5,2496.53,38105.71,187868.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",16760,71794.1,37033.74,9363.03,118190.87,15142.67,9095.93,9479.43,33718.03,151908.9 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43970,56531.03,3755.33,652.1,60938.46,11786.0,12424.5,5036.38,29246.88,90185.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46467,52377.48,0.0,6877.08,59254.56,11763.78,4960.24,4866.63,21590.65,80845.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,46325,49569.3,0.0,0.0,49569.3,10048.89,10465.25,3965.24,24479.38,74048.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,12845,46660.47,403.14,0.0,47063.61,10430.84,9728.01,3856.43,24015.28,71078.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",19466,125713.8,0.0,0.0,125713.8,25279.33,12424.5,17119.06,54822.89,180536.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27209,119461.65,33602.05,5794.41,158858.11,23641.91,12424.5,2706.82,38773.23,197631.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36590,11171.53,0.0,396.33,11567.86,0.0,4844.36,925.46,5769.82,17337.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",40067,15991.0,5081.89,1284.34,22357.23,3121.48,2867.19,1774.28,7762.95,30120.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26351,13458.7,0.0,99.39,13558.09,0.0,3586.97,1051.75,4638.72,18196.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,41069,4664.0,513.77,0.0,5177.77,1046.14,955.73,420.44,2422.31,7600.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,32149,1112.9,0.0,0.0,1112.9,207.13,238.93,96.21,542.27,1655.17 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,5636,100759.9,21396.94,11043.48,133200.32,21860.77,11879.91,9959.8,43700.48,176900.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,34520,22637.88,9510.8,698.02,32846.7,4236.67,2867.19,2630.27,9734.13,42580.83 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",19749,71592.28,5763.55,5544.38,82900.21,17653.58,9889.73,530.78,28074.09,110974.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,45422,97618.02,0.0,0.0,97618.02,20136.14,12338.72,7841.49,40316.35,137934.37 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,28652,65774.02,0.0,0.0,65774.02,13556.27,12424.5,5413.8,31394.57,97168.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23256,19843.2,0.0,27.49,19870.69,0.0,4933.95,1540.33,6474.28,26344.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,13269,100554.0,0.0,968.71,101522.71,20912.31,12424.5,8127.89,41464.7,142987.41 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,10125,71983.54,0.0,0.0,71983.54,14808.48,12406.58,5543.2,32758.26,104741.8 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16689,32160.0,3383.5,2952.25,38495.75,5709.66,2867.19,652.87,9229.72,47725.47 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,4864,96942.32,48825.48,9506.23,155274.03,25866.15,12321.35,2599.51,40787.01,196061.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24572,64465.11,23154.09,4369.19,91988.39,18804.57,12699.1,7155.06,38658.73,130647.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30355,56531.01,0.0,1067.54,57598.55,11871.78,12424.5,4772.39,29068.67,86667.22 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,42871,71311.01,0.0,0.0,71311.01,14697.59,12424.5,5790.84,32912.93,104223.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51276,70905.33,33222.15,6304.43,110431.91,21199.29,13975.89,8600.45,43775.63,154207.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,35658,65452.11,0.0,2188.0,67640.11,13949.85,12424.5,5308.92,31683.27,99323.38 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7368,Senior Comm Systems Technican,27078,130566.1,32185.08,0.0,162751.18,26276.86,12424.5,10456.22,49157.58,211908.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16285,96722.22,11262.75,10211.0,118195.97,20102.65,12364.77,1947.92,34415.34,152611.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37255,68050.05,13575.51,4047.76,85673.32,19746.67,13407.67,6649.35,39803.69,125477.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20155,6201.51,0.0,1049.09,7250.6,1449.29,2689.19,575.57,4714.05,11964.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,28693,14534.51,0.0,0.0,14534.51,0.0,3867.72,1128.12,4995.84,19530.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40673,64968.72,18301.45,1650.57,84920.74,18250.64,12803.04,6634.51,37688.19,122608.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,53026,4895.2,0.0,795.49,5690.69,5579.56,382.66,0.04,5962.26,11652.95 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2579,Med Examiner's Investigatoriii,47300,107978.01,14052.13,27475.83,149505.97,23577.87,12424.5,10230.99,46233.36,195739.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),46210,84860.54,7385.67,6134.27,98380.48,17882.76,12400.61,1640.14,31923.51,130303.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,17610,106953.0,12816.99,3474.13,123244.12,22129.67,12424.55,9789.54,44343.76,167587.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,9583,66263.0,1202.6,8546.11,76011.71,14978.82,12424.5,6267.11,33670.43,109682.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38938,98741.46,25975.78,8931.75,133648.99,20483.52,12424.5,2229.42,35137.44,168786.43 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,44086,54124.02,0.0,0.0,54124.02,12110.45,12424.5,4488.16,29023.11,83147.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14144,5462.17,0.0,164.48,5626.65,0.0,2313.17,452.13,2765.3,8391.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9488,26936.0,2306.03,2212.75,31454.78,5160.79,4348.58,2672.56,12181.93,43636.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5304,4083.55,0.0,250.0,4333.55,1152.5,810.16,260.62,2223.28,6556.83 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20179,113233.6,35201.37,19007.14,167442.11,25114.39,15196.12,2783.86,43094.37,210536.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,28501,6893.3,0.0,0.0,6893.3,0.0,1385.81,534.05,1919.86,8813.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,4984,110041.1,0.0,2751.05,112792.15,22693.37,12424.5,9056.51,44174.38,156966.53 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8142,Public Defender's Investigator,28171,93499.0,0.0,624.0,94123.0,19399.27,12424.5,7810.49,39634.26,133757.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,42042,19032.74,719.12,117.54,19869.4,0.0,4880.22,1540.81,6421.03,26290.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19822,49110.8,0.0,0.0,49110.8,11781.14,12424.5,3949.17,28154.81,77265.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7200,Supervisory-Labor & Trade,7251,Track Maint Wrk Sprv 1,25684,76518.81,25731.68,8111.27,110361.76,17323.42,12424.5,8730.12,38478.04,148839.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,18679,5245.46,0.0,172.44,5417.9,0.0,1042.34,420.52,1462.86,6880.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5941,3037.18,0.0,112.43,3149.61,0.0,226.99,138.67,365.66,3515.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,19777,111918.07,0.0,0.0,111918.07,22523.71,12424.56,8830.41,43778.68,155696.75 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44567,97765.53,7339.63,19930.92,125036.08,28633.96,12424.5,2128.63,43187.09,168223.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7343,"Sr Statnry Eng, Wtr Treat Plnt",28658,97414.8,8845.66,1108.25,107368.71,20265.28,11419.06,8592.38,40276.72,147645.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,51392,69824.23,8480.75,7175.04,85480.02,15254.49,11980.09,6742.96,33977.54,119457.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,5077,18852.0,3769.15,587.16,23208.31,0.0,4300.79,1752.02,6052.81,29261.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20521,115784.76,16120.53,8336.51,140241.8,23414.26,12043.28,2333.93,37791.47,178033.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,9268,74367.82,8774.93,3793.95,86936.7,15668.6,12376.71,7088.56,35133.87,122070.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",8326,72815.12,3950.94,2248.51,79014.57,15180.98,12424.5,6492.53,34098.01,113112.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",16875,85469.36,4336.76,1267.17,91073.29,17862.68,12376.71,7344.97,37584.36,128657.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,28319,107978.0,12853.88,2070.0,122901.88,22684.59,12424.5,9830.58,44939.67,167841.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,16011,130833.54,45416.5,16581.84,192831.88,29024.61,15196.11,3234.54,47455.26,240287.14 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,17163,17530.6,0.0,0.0,17530.6,0.0,4922.02,1429.62,6351.64,23882.24 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,33524,24600.0,919.56,3923.35,29442.91,5004.97,4300.79,2386.69,11692.45,41135.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,4501,22567.0,0.0,0.0,22567.0,4199.74,3822.92,1776.97,9799.63,32366.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,28238,43848.0,784.17,8434.71,53066.88,10870.67,6690.11,4344.59,21905.37,74972.25 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,26722,112344.93,14602.7,621.6,127569.23,22743.61,12376.71,9918.61,45038.93,172608.16 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,18160,99654.0,1179.9,1154.35,101988.25,23005.13,12424.5,1735.65,37165.28,139153.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,49357,97174.0,4425.5,4130.0,105729.5,20893.8,12424.5,8486.57,41804.87,147534.37 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,49413,95579.99,0.0,0.0,95579.99,19274.37,10108.35,7794.66,37177.38,132757.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5960,4463.87,0.0,252.82,4716.69,0.0,0.0,90.55,90.55,4807.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,21240,11748.72,0.0,0.0,11748.72,0.0,2828.36,967.98,3796.34,15545.06 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,19261,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.23,5147.57,17667.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26638,113233.61,17118.91,19496.38,149848.9,25036.04,15196.12,2453.88,42686.04,192534.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53203,39814.18,3955.0,1557.69,45326.87,10742.67,12450.89,3186.58,26380.14,71707.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5940,115884.83,1970.97,4581.01,122436.81,0.0,0.0,2093.2,2093.2,124530.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2819,Assistant Health Educator,44016,40441.77,0.0,0.0,40441.77,8342.15,6194.33,3044.28,17580.76,58022.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,49609,57321.91,236.36,0.0,57558.27,12817.9,12281.15,4670.64,29769.69,87327.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,43475,4742.97,0.0,215.07,4958.04,0.0,1570.98,329.52,1900.5,6858.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,41783,64311.53,0.0,1540.0,65851.53,13537.82,12424.51,5160.91,31123.24,96974.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,15084,12531.0,0.0,0.0,12531.0,2271.87,1433.6,968.92,4674.39,17205.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,30681,61916.36,0.0,3860.49,65776.85,14170.03,10011.28,5373.23,29554.54,95331.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,13094,42861.04,0.0,13763.66,56624.7,7603.96,3345.06,920.33,11869.35,68494.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,14094,8934.76,0.0,0.0,8934.76,0.0,2956.79,691.73,3648.52,12583.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,22547,50427.4,0.0,1040.0,51467.4,12334.83,12424.5,4181.73,28941.06,80408.46 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,45897,86579.02,15572.28,600.0,102751.3,17751.83,10990.9,8207.66,36950.39,139701.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",17128,6638.16,0.0,16.08,6654.24,0.0,1580.55,515.17,2095.72,8749.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,40934,8860.0,739.59,908.21,10507.8,1948.31,2867.19,830.8,5646.3,16154.1 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,33420,129895.0,0.0,0.0,129895.0,26141.48,12424.5,9952.36,48518.34,178413.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,50464,11746.53,0.0,161.11,11907.64,0.0,0.0,879.03,879.03,12786.67 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),2607,184289.09,0.0,5248.28,189537.37,38144.36,12424.5,10997.22,61566.08,251103.45 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,985C,Court Commissioner,41852,0.0,0.0,1803.67,1803.67,0.0,68.5,137.98,206.48,2010.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,25749,76008.23,0.0,483.45,76491.68,15358.67,9626.0,6298.85,31283.52,107775.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,7985,55728.0,0.0,3268.86,58996.86,12499.79,6451.18,4788.25,23739.22,82736.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9804,71406.49,0.0,0.0,71406.49,0.0,0.0,5648.65,5648.65,77055.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48049,14486.36,1203.13,849.83,16539.32,4239.99,4572.82,1218.41,10031.22,26570.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,38284,59576.2,5825.58,8029.2,73430.98,13374.08,9787.28,5773.48,28934.84,102365.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7200,Supervisory-Labor & Trade,7251,Track Maint Wrk Sprv 1,47692,96042.0,113962.91,15394.59,225399.5,21812.16,12424.5,11484.82,45721.48,271120.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,47908,64455.8,40509.76,17899.08,122864.64,16127.45,12424.51,9647.53,38199.49,161064.13 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",52198,21127.0,0.0,3000.0,24127.0,0.0,3536.21,1875.2,5411.41,29538.41 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,11271,19811.67,1792.9,0.0,21604.57,115.84,5513.37,1675.71,7304.92,28909.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3815,146690.04,0.0,37100.07,183790.11,0.0,10546.07,3080.4,13626.47,197416.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",17027,147865.41,34513.04,8871.92,191250.37,30880.79,12424.5,3261.88,46567.17,237817.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,20448,79722.04,1521.41,329.0,81572.45,16500.38,12424.51,6700.03,35624.92,117197.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6902,117896.29,0.0,9026.19,126922.48,17528.52,11096.03,9410.1,38034.65,164957.13 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,12086,88296.0,0.0,5322.0,93618.0,18337.86,12424.5,7570.17,38332.53,131950.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,34250,109321.7,0.0,971.5,110293.2,22342.66,11606.39,8802.45,42751.5,153044.7 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,25653,22755.0,0.0,1820.4,24575.4,5780.15,2389.33,407.55,8577.03,33152.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49203,115086.34,18014.26,19167.48,152268.08,25439.27,15052.76,2444.49,42936.52,195204.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2622,Dietetic Technician,46672,59494.03,924.53,1575.5,61994.06,12270.6,12424.5,5075.47,29770.57,91764.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52903,36472.68,0.0,9018.15,45490.83,10839.2,0.0,1305.0,12144.2,57635.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,48674,29600.0,400.63,1196.62,31197.25,5731.26,4778.65,2514.11,13024.02,44221.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49680,98027.84,48535.03,9425.75,155988.62,21422.77,15196.12,2604.5,39223.39,195212.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,35476,56076.4,1404.57,1160.0,58640.97,12773.88,12424.5,4728.47,29926.85,88567.82 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4306,Collections Officer,20588,59459.71,0.0,0.0,59459.71,12241.11,12421.52,4619.75,29282.38,88742.09 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,3900,31199.46,0.0,0.0,31199.46,5622.52,4163.4,2595.68,12381.6,43581.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,9375,"Asstdepdir, Port",1547,150649.01,0.0,0.0,150649.01,30248.26,12424.5,18686.04,61358.8,212007.81 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,8993,61010.99,0.0,930.49,61941.48,12809.5,8959.99,4977.2,26746.69,88688.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33472,0.0,0.0,34.14,34.14,0.0,68.5,2.62,71.12,105.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,19393,63102.0,0.0,121.29,63223.29,13029.13,12424.5,5238.17,30691.8,93915.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5393,130165.52,20680.36,16465.51,167311.39,28800.2,15116.73,2797.86,46714.79,214026.18 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,8934,87956.4,0.0,3621.6,91578.0,18261.15,12376.71,7462.73,38100.59,129678.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45971,56531.0,0.0,6609.83,63140.83,12356.74,12424.5,5159.04,29940.28,93081.11 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,42845,67911.0,31693.71,12373.35,111978.06,15742.38,12424.5,8825.85,36992.73,148970.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43290,97770.67,8113.95,15465.44,121350.06,27561.8,12424.51,1666.52,41652.83,163002.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,2789,8406.28,0.0,61.31,8467.59,0.0,3046.39,656.3,3702.69,12170.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,51701,62468.84,1239.21,1089.64,64797.69,13031.41,12424.5,5089.76,30545.67,95343.36 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9155,Claims Investigator,22875,105576.0,9749.92,9031.63,124357.55,22172.88,12424.5,9814.55,44411.93,168769.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,35839,27211.05,2233.37,15835.39,45279.81,4830.59,2389.32,733.98,7953.89,53233.7 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",35793,17149.18,2288.45,1298.37,20736.0,0.0,0.0,1641.96,1641.96,22377.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17962,28470.75,0.0,894.8,29365.55,0.0,2508.67,2273.48,4782.15,34147.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,23728,99820.2,0.0,0.0,99820.2,20597.74,12137.78,8057.7,40793.22,140613.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,14820,56531.0,0.0,269.99,56800.99,11701.55,12424.5,4657.58,28783.63,85584.62 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5750,53536.69,0.0,7102.03,60638.72,12956.62,11987.79,4912.68,29857.09,90495.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,7550,36295.0,0.0,460.0,36755.0,7219.82,8123.71,2974.59,18318.12,55073.12 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,20576,14163.41,93.05,0.0,14256.46,0.0,3386.87,1105.07,4491.94,18748.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47324,68370.36,11639.02,2336.21,82345.59,19382.33,13472.76,6172.71,39027.8,121373.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,35067,70245.0,6867.02,10409.28,87521.3,15673.71,12424.5,7127.73,35225.94,122747.24 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,18085,85004.01,21585.67,1536.63,108126.31,17519.6,12424.5,8673.72,38617.82,146744.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,21564,45536.8,19028.86,3473.44,68039.1,11095.3,12400.61,5419.94,28915.85,96954.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,31559,56106.0,0.0,0.0,56106.0,12072.52,8601.58,4624.32,25298.42,81404.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,10067,45613.08,0.0,408.0,46021.08,9975.07,8123.69,3787.73,21886.49,67907.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7472,Wire Rope Cable Maint Mechanic,21650,87983.0,15954.67,10481.14,114418.81,19948.34,12424.5,9184.87,41557.71,155976.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,23083,11200.0,0.0,0.0,11200.0,2512.16,1911.48,904.3,5327.94,16527.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18145,67306.14,16408.79,2306.15,86021.08,19069.92,13262.5,6681.38,39013.8,125034.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,8327,34983.23,536.85,3419.84,38939.92,9148.71,9939.6,3150.42,22238.73,61178.65 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,6466,166171.01,9325.44,4250.8,179747.25,33530.52,12424.5,10773.53,56728.55,236475.8 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,32367,208479.24,0.0,0.0,208479.24,41881.27,12403.59,18503.52,72788.38,281267.62 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0676,"Research Asst, Superior Court",47517,56346.63,0.0,7242.43,63589.06,12031.8,9079.44,5183.18,26294.42,89883.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,50798,88634.4,0.0,0.0,88634.4,18269.02,12430.47,7092.78,37792.27,126426.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16592,3484.29,0.0,250.0,3734.29,1029.08,692.9,247.89,1969.87,5704.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,29028,63808.24,0.0,0.0,63808.24,13132.85,12424.5,5195.65,30753.0,94561.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10198,30.81,0.0,2.47,33.28,0.0,7.47,2.58,10.05,43.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42485,42887.7,2920.48,1124.77,46932.95,11440.26,13193.09,3554.65,28188.0,75120.95 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,17870,96930.04,0.0,0.0,96930.04,19988.23,12424.5,7815.91,40228.64,137158.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7200,Supervisory-Labor & Trade,7278,Painter Supervisor 2,7803,100341.01,18341.58,0.0,118682.59,20680.94,12424.5,9304.77,42410.21,161092.8 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8564,"Counselor,Log Cabin Rnch SFERS",14334,16290.83,0.0,1580.28,17871.11,0.0,3306.24,1385.07,4691.31,22562.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,34333,108350.31,0.0,0.0,108350.31,22298.26,12424.52,8372.07,43094.85,151445.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,5756,4299.2,0.0,0.0,4299.2,0.0,382.3,333.05,715.35,5014.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39421,5387.9,0.0,7.15,5395.05,0.0,1797.96,418.5,2216.46,7611.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,29062,39691.2,49.14,1598.1,41338.44,7675.05,7167.99,3261.77,18104.81,59443.25 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,18750,85004.02,639.65,0.0,85643.67,17519.6,12424.5,6809.15,36753.25,122396.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25537,59603.05,21697.1,503.88,81804.03,16699.34,11793.96,6194.64,34687.94,116491.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,12502,73719.03,0.0,0.0,73719.03,15470.23,10513.04,6074.75,32058.02,105777.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8988,69518.12,29388.4,4435.17,103341.69,20223.31,13694.25,7874.66,41792.22,145133.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36629,1059.69,283.85,0.0,1343.54,299.89,334.51,104.01,738.41,2081.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,1082,113223.0,57774.97,17495.05,188493.02,23741.93,15196.12,3159.89,42097.94,230590.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7527,119875.45,17470.17,10069.32,147414.94,23693.02,12424.5,2456.46,38573.98,185988.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,34285,73685.07,439.95,100.0,74225.02,15155.69,11928.7,5914.82,32999.21,107224.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,26930,84580.81,3431.02,2468.91,90480.74,0.0,7387.98,7017.15,14405.13,104885.87 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,22785,61584.02,11479.48,7530.35,80593.85,13326.84,12424.5,3788.95,29540.29,110134.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,1407,53973.02,6974.65,1983.29,62930.96,13210.68,12424.5,5132.38,30767.56,93698.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,40455,56831.67,23.63,2415.64,59270.94,12286.32,11065.51,4920.47,28272.3,87543.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43665,97764.21,0.0,9679.96,107444.17,26132.63,12424.5,1773.2,40330.33,147774.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H022,"Lieut,Fire Prev",11440,56600.01,916.92,14912.43,72429.36,13148.33,4778.65,1203.94,19130.92,91560.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31657,41449.85,4716.0,1105.87,47271.72,10308.92,12617.2,3585.55,26511.67,73783.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,1937,15148.48,0.0,558.03,15706.51,0.0,0.0,1242.6,1242.6,16949.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",32268,82535.0,8214.87,7432.87,98182.74,17535.16,12424.5,7759.82,37719.48,135902.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4189,3184.44,0.0,341.19,3525.63,0.0,271.79,200.56,472.35,3997.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,7743,85055.34,1560.08,5486.77,92102.19,18611.15,12424.5,1526.12,32561.77,124663.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7404,Asphalt Finisher,28194,56842.4,6889.61,2918.9,66650.91,13336.76,12424.53,5354.58,31115.87,97766.78 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,19688,26984.06,73.27,479.73,27537.06,2901.54,7051.5,2168.25,12121.29,39658.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44842,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3357.84,18183.69,61950.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49861,66992.25,6377.44,557.46,73927.15,15372.1,13198.29,5430.95,34001.34,107928.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43812,36076.18,5473.12,253.14,41802.44,9399.85,11267.17,3183.42,23850.44,65652.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,52678,306.13,223.97,13.04,543.14,0.0,92.59,42.15,134.74,677.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,41156,12162.28,0.0,0.0,12162.28,0.0,2696.96,941.61,3638.57,15800.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,17799,75095.76,0.0,0.0,75095.76,15474.84,12418.53,6426.44,34319.81,109415.57 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,47343,67911.03,9847.02,6954.91,84712.96,14881.78,12424.5,6909.84,34216.12,118929.08 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,29342,78963.09,0.0,624.0,79587.09,16403.15,12424.5,6599.35,35427.0,115014.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,46813,42702.92,0.0,4428.87,47131.79,9578.24,6546.76,3831.1,19956.1,67087.89 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,29808,55348.71,3037.75,4552.85,62939.31,12289.16,12164.66,4956.7,29410.52,92349.83 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,3446,92596.84,1564.99,6290.46,100452.29,19970.43,12281.8,8255.51,40507.74,140960.03 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,49840,40844.71,0.0,5198.1,46042.81,9161.46,5591.02,3660.92,18413.4,64456.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,36483,188064.51,4280.08,17807.35,210151.94,38672.64,12424.5,527.28,51624.42,261776.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13817,58124.57,0.0,7710.9,65835.47,11802.17,4124.22,1928.17,17854.56,83690.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11367,80957.69,6632.97,4987.76,92578.42,16746.18,12424.5,1675.37,30846.05,123424.47 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3436,Arborist Technician Supervisor,23533,91761.6,5173.25,891.0,97825.85,19094.24,12424.5,8083.37,39602.11,137427.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,19515,117124.03,5150.79,13321.57,135596.39,23225.7,12424.5,2298.45,37948.65,173545.04 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,19933,98157.01,0.0,0.0,98157.01,20230.58,12424.5,8069.59,40724.67,138881.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,36097,26774.0,0.0,0.0,26774.0,4854.14,2628.26,2115.32,9597.72,36371.72 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",34215,74654.81,41359.21,4437.11,120451.13,18053.69,12419.55,2299.37,32772.61,153223.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,32134,116976.02,0.0,0.0,116976.02,23541.48,12424.55,9366.9,45332.93,162308.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,13844,120111.0,0.0,10618.21,130729.21,24172.55,12424.5,9996.36,46593.41,177322.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7410,50688.28,3417.73,1814.97,55920.98,14828.91,10080.27,3774.47,28683.65,84604.63 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34490,31245.8,0.0,0.0,31245.8,2016.16,7938.54,2501.05,12455.75,43701.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7365,Senior Power House Operator,20670,0.0,0.0,103.75,103.75,0.0,0.0,0.0,0.0,103.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,42615,16752.03,0.0,0.0,16752.03,4322.0,3822.93,1345.14,9490.07,26242.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1440,Medical Transcriber Typist,39863,65592.02,0.0,1134.09,66726.11,13750.9,12424.5,5447.51,31622.91,98349.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2147,67366.13,8996.52,7643.05,84005.7,20534.58,0.0,6601.24,27135.82,111141.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6121,1070.85,0.0,35.7,1106.55,0.0,71.68,18.55,90.23,1196.78 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,8410,35005.6,1542.81,473.43,37021.84,8061.5,10468.25,2938.9,21468.65,58490.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,377,119467.36,12337.93,9808.09,141613.38,23620.95,12424.5,2358.17,38403.62,180017.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,16407,21494.25,0.0,0.0,21494.25,4000.08,4527.78,1724.56,10252.42,31746.67 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,16628,6081.04,76.8,0.0,6157.84,0.0,1457.48,477.25,1934.73,8092.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16673,99277.5,21491.5,10087.11,130856.11,20567.92,12310.11,2165.34,35043.37,165899.48 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,30619,113623.04,0.0,0.0,113623.04,22866.76,12424.5,9134.45,44425.71,158048.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,33251,52936.03,36.94,980.0,53952.97,12020.87,12424.5,4384.34,28829.71,82782.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,34368,136776.19,0.0,0.0,136776.19,27463.6,10501.09,20927.67,58892.36,195668.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32878,67296.54,12240.5,2156.07,81693.11,18990.74,13258.87,6163.34,38412.95,120106.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,22460,81942.01,0.0,10189.76,92131.77,18990.33,12424.5,7516.06,38930.89,131062.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",43976,133973.38,31086.66,12772.49,177832.53,29022.47,15196.12,3027.78,47246.37,225078.9 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,52546,62187.01,574.09,805.73,63566.83,12984.21,12424.5,5221.57,30630.28,94197.11 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,4098,16439.5,125.81,285.18,16850.49,0.0,2341.54,1328.93,3670.47,20520.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,51136,8560.52,0.0,61.31,8621.83,0.0,3103.14,668.25,3771.39,12393.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,21234,108038.0,0.0,2972.84,111010.84,22506.05,12424.5,8874.55,43805.1,154815.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,16243,102600.65,0.0,0.0,102600.65,20935.25,10925.42,8470.66,40331.33,142931.98 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1410,Chief Clerk,2581,85297.81,0.0,626.4,85924.21,17715.38,12472.29,6846.7,37034.37,122958.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,21040,53893.3,849.13,2186.38,56928.81,13274.84,12375.22,4348.34,29998.4,86927.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,43492,41013.69,745.77,7926.41,49685.87,10596.87,10800.66,3807.52,25205.05,74890.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,20431,82717.02,12031.87,4498.2,99247.09,17189.26,12424.5,8133.31,37747.07,136994.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,26720,23667.0,0.0,0.0,23667.0,5204.41,5734.39,1749.19,12687.99,36354.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,14468,75605.0,5707.75,3759.85,85072.6,15582.61,12424.5,6999.99,35007.1,120079.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,20363,100761.03,0.0,9486.14,110247.17,22724.37,12424.51,8639.77,43788.65,154035.82 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,26229,82717.05,0.0,624.0,83341.05,17177.08,12424.5,6594.19,36195.77,119536.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11236,68106.31,4125.55,3130.62,75362.48,16240.53,13420.13,5542.14,35202.8,110565.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12711,19329.89,0.0,1297.1,20626.99,1681.93,8360.26,1626.69,11668.88,32295.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,17782,28100.0,0.0,0.0,28100.0,6369.77,7167.98,2245.77,15783.52,43883.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,116,56531.0,0.0,5641.04,62172.04,12376.31,12424.5,5082.45,29883.26,92055.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,39270,33734.01,352.28,2194.81,36281.1,6631.66,3822.92,2900.79,13355.37,49636.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24895,533.4,0.0,35.56,568.96,0.0,143.35,44.04,187.39,756.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,26496,119467.42,16445.43,13303.33,149216.18,23620.98,12424.5,2496.11,38541.59,187757.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31278,112685.48,1652.05,9942.15,124279.68,22330.94,12424.5,2060.87,36816.31,161095.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,34198,61735.01,0.0,360.0,62095.01,12793.44,12424.5,5127.8,30345.74,92440.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,48897,61676.02,1915.65,623.4,64215.07,12841.53,12412.54,5064.03,30318.1,94533.17 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,19141,96332.0,16867.61,812.0,114011.61,19854.28,12424.5,8822.12,41100.9,155112.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,17650,63887.0,4834.36,8.1,68729.46,13168.89,12424.5,5429.57,31022.96,99752.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8679,119467.42,0.0,10533.73,130001.15,24090.21,12424.5,2213.33,38728.04,168729.19 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,3559,99098.0,0.0,0.0,99098.0,20424.58,12424.5,8057.57,40906.65,140004.65 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,3033,77527.07,13950.95,4585.49,96063.51,16688.88,10270.77,7887.29,34846.94,130910.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44963,16765.54,0.0,2777.99,19543.53,5529.61,1308.34,1827.0,8664.95,28208.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,33482,77954.0,14300.0,10965.26,103219.26,17398.43,11946.64,8443.08,37788.15,141007.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,4154,103448.46,2927.9,16119.36,122495.72,22785.03,11364.18,9391.21,43540.42,166036.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,37734,6345.0,0.0,0.0,6345.0,1423.17,1433.6,499.61,3356.38,9701.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,15889,83917.98,13904.26,12177.34,109999.58,18784.54,12317.21,8915.75,40017.5,150017.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,11704,72144.12,0.0,0.0,72144.12,14869.38,12423.01,5858.35,33150.74,105294.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,7458,43525.33,0.0,960.0,44485.33,9526.3,8296.46,3637.4,21460.16,65945.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,4993,49629.81,18731.3,7447.23,75808.34,12872.57,12424.5,5793.35,31090.42,106898.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",49076,60123.0,7442.15,3101.85,70667.0,12425.36,10990.9,5517.91,28934.17,99601.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,37217,107978.0,0.0,624.0,108602.0,22383.72,12424.5,9497.83,44306.05,152908.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,44029,536.78,207.84,1773.6,2518.22,1800.95,0.0,34.1,1835.05,4353.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51977,10007.57,0.0,295.45,10303.02,0.0,4278.69,830.04,5108.73,15411.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,19167,122333.31,39744.07,3356.29,165433.67,24189.6,12424.5,2773.7,39387.8,204821.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",12528,91725.91,4789.43,8873.29,105388.63,19095.54,12216.1,8490.71,39802.35,145190.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31902,65841.97,1564.54,3129.1,70535.61,18878.42,12974.41,5126.91,36979.74,107515.35 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,46173,0.0,0.0,5697.5,5697.5,0.0,0.0,435.86,435.86,6133.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48479,16287.0,0.0,178.91,16465.91,3620.86,4300.79,1254.59,9176.24,25642.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,30432,42602.0,5504.1,3715.89,51821.99,8126.38,6212.25,4137.13,18475.76,70297.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,11379,91331.01,0.0,0.0,91331.01,18823.67,12424.5,7316.17,38564.34,129895.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38282,13562.2,0.0,2270.88,15833.08,3516.35,1027.36,2446.79,6990.5,22823.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7513,67946.81,15279.05,5725.43,88951.29,20184.89,13390.51,6878.38,40453.78,129405.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,18069,82407.53,3349.68,1400.0,87157.21,17247.55,12424.5,6946.45,36618.5,123775.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20271,1274.19,0.0,0.0,1274.19,0.0,552.54,98.9,651.44,1925.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,29054,22129.31,0.0,972.5,23101.81,0.0,5628.36,1790.94,7419.3,30521.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,37257,1185.3,0.0,101.85,1287.15,0.0,322.56,99.65,422.21,1709.36 +Calendar,2015,1,Public Protection,DAT,District Attorney,2.0,Management Unrepresented Employees,8100,Legal & Court,8137,Chf Victim/Witness Invstgtor,1243,40851.0,0.0,0.0,40851.0,8962.74,0.0,5842.9,14805.64,55656.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,4853,153391.94,0.0,1598.2,154990.14,31049.7,12013.54,10304.87,53368.11,208358.25 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,4546,86282.39,0.0,3000.0,89282.39,17889.94,11654.72,31561.27,61105.93,150388.32 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),41668,43163.31,0.0,565.11,43728.42,0.0,4402.34,3389.4,7791.74,51520.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0490,Commander 3,7109,8397.0,0.0,138246.16,146643.16,1916.88,477.86,22.33,2417.07,149060.23 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",1480,23447.18,5347.79,501.82,29296.79,0.0,4830.38,2272.54,7102.92,36399.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46648,97765.32,889.55,3499.26,102154.13,24625.35,12424.5,1727.11,38776.96,140931.09 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,50173,1292.0,651.05,242.25,2185.3,0.0,382.3,169.61,551.91,2737.21 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45341,45395.0,662.75,0.0,46057.75,9160.82,10035.18,3549.04,22745.04,68802.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,43512,45586.32,2271.09,5000.08,52857.49,11755.33,11934.09,4258.57,27947.99,80805.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23512,142403.42,3304.0,26239.48,171946.9,26772.67,12322.95,4361.6,43457.22,215404.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8165,63543.2,7563.03,928.86,72035.09,17555.03,12515.06,5615.32,35685.41,107720.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,17575,81157.0,13381.6,14793.23,109331.83,18690.37,12424.5,8919.64,40034.51,149366.34 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,50601,106605.04,0.0,0.0,106605.04,21971.81,12424.5,8682.45,43078.76,149683.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,43325,24635.41,0.0,5290.36,29925.77,5587.14,5447.67,2461.9,13496.71,43422.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,17592,118267.56,0.0,680.0,118947.56,23544.47,9304.4,9155.13,42004.0,160951.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41386,149099.0,0.0,9111.96,158210.96,30899.57,12424.5,10426.59,53750.66,211961.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38930,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3376.05,18201.9,61969.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,18308,78204.04,0.0,396.0,78600.04,16195.58,12424.5,5829.96,34450.04,113050.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,15718,65207.01,0.0,0.0,65207.01,3902.15,9079.44,3542.39,16523.98,81730.99 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,25691,9099.6,0.0,0.0,9099.6,0.0,0.0,131.94,131.94,9231.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,3489,2865.2,144.64,0.0,3009.84,533.21,621.23,223.34,1377.78,4387.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,22977,62597.06,310.87,6307.05,69214.98,14192.34,12173.62,5690.5,32056.46,101271.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,13532,51547.7,606.38,4169.71,56323.79,13001.32,12424.5,4517.77,29943.59,86267.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1708,Senior Telephone Operator,35801,0.0,0.0,176.18,176.18,0.0,0.0,13.47,13.47,189.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49750,36416.63,0.0,207.61,36624.24,0.0,3170.33,2842.2,6012.53,42636.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,93,0.0,0.0,534.75,534.75,0.0,68.5,301.62,370.12,904.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,317,23369.01,0.0,100.0,23469.01,5160.82,5256.52,1875.4,12292.74,35761.75 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,19175,22809.77,0.0,0.0,22809.77,0.0,5107.19,1768.48,6875.67,29685.44 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8434,Sprv Adult Probation Ofc,38244,111473.17,0.0,0.0,111473.17,25424.88,12424.5,1850.79,39700.17,151173.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40866,70530.3,0.0,11755.09,82285.39,10287.44,5734.27,2216.11,18237.82,100523.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47347,0.0,0.0,250.0,250.0,0.0,34.25,0.0,34.25,284.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38643,25404.26,0.0,0.0,25404.26,5451.92,5877.74,2039.78,13369.44,38773.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",7269,28348.65,0.0,0.0,28348.65,0.0,5973.5,2197.25,8170.75,36519.4 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3310,Stable Attendant,45994,30205.4,0.0,3671.58,33876.98,7480.22,8099.82,2730.61,18310.65,52187.63 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,20373,7660.58,0.0,0.0,7660.58,0.0,2846.29,594.18,3440.47,11101.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11169,54938.38,0.0,14085.08,69023.46,10763.89,4606.63,4010.99,19381.51,88404.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,40718,81942.01,246.74,9059.14,91247.89,18746.06,12424.5,7491.94,38662.5,129910.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,14027,112776.02,1341.78,2628.0,116745.8,23172.92,12424.5,9143.9,44741.32,161487.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,3154,1149.6,0.0,0.0,1149.6,0.0,382.3,89.01,471.31,1620.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41038,97764.2,287.62,9019.56,107071.38,25974.24,12424.5,1719.0,40117.74,147189.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19256,120713.98,0.0,15681.42,136395.4,26563.58,11022.86,10053.57,47640.01,184035.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,43141,90274.1,0.0,250.0,90524.1,18171.67,6188.36,7424.16,31784.19,122308.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,6097,851.01,0.0,0.0,851.01,187.15,238.93,66.05,492.13,1343.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,24522,64463.7,21890.43,10724.21,97078.34,15311.38,12424.5,7926.57,35662.45,132740.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9117,Pr Fare Collections Receiver,49294,91393.0,0.0,14353.0,105746.0,19635.21,12424.5,8689.79,40749.5,146495.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,42227,84098.02,0.0,222.03,84320.05,17370.14,12424.5,6729.0,36523.64,120843.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,26494,92300.46,0.0,0.0,92300.46,19005.83,12293.09,7505.81,38804.73,131105.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30631,17888.9,3195.39,400.26,21484.55,4384.96,5523.23,1642.75,11550.94,33035.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29448,7920.28,0.0,521.74,8442.02,3726.66,0.0,1614.67,5341.33,13783.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,27876,7885.01,0.0,0.0,7885.01,0.0,1093.12,132.91,1226.03,9111.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0963,Dept Head III,23065,208045.95,0.0,0.0,208045.95,41869.74,12424.5,18593.09,72887.33,280933.28 +Calendar,2015,4,Community Health,DPH,Public Health,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,12882,86704.41,23120.85,1984.0,111809.26,18283.09,12430.47,8926.26,39639.82,151449.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,45626,18580.74,0.0,126.94,18707.68,3788.61,3654.65,1533.16,8976.42,27684.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,50180,57649.48,34842.66,6325.78,98817.92,12668.08,11460.17,8037.76,32166.01,130983.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48008,35306.56,4291.08,383.88,39981.52,9519.91,11028.54,2855.81,23404.26,63385.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,30341,77763.2,0.0,4468.83,82232.03,16920.04,12424.5,6465.96,35810.5,118042.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,21664,67716.09,1372.25,946.04,70034.38,18739.33,12424.5,5715.42,36879.25,106913.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15039,34160.92,700.6,5275.45,40136.97,10272.92,6793.51,3138.56,20204.99,60341.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,9884,109101.7,3304.66,1641.53,114047.89,21652.41,12030.26,1885.6,35568.27,149616.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,46421,54739.78,0.0,1635.16,56374.94,12619.16,12415.54,4616.97,29651.67,86026.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,31320,63465.02,0.0,1609.2,65074.22,13488.98,11731.47,5332.81,30553.26,95627.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,25083,54124.04,469.13,966.24,55559.41,12250.26,12424.5,4606.18,29280.94,84840.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12150,66568.39,7014.26,4837.34,78419.99,19513.28,13113.95,6115.37,38742.6,117162.59 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,9622,98174.0,0.0,1932.94,100106.94,20362.79,12424.5,7728.87,40516.16,140623.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24803,116735.7,0.0,10314.1,127049.8,25257.27,10986.12,9878.28,46121.67,173171.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3654,66314.02,9218.07,8090.38,83622.47,20393.38,13066.45,6525.55,39985.38,123607.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,31026,7929.91,0.0,0.0,7929.91,0.0,2624.26,615.2,3239.46,11169.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,26653,19550.3,0.0,243.48,19793.78,4247.74,2155.12,163.06,6565.92,26359.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,1862,7131.0,0.0,13484.13,20615.13,1615.48,1433.6,1636.44,4685.52,25300.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31061,60773.38,2457.85,2277.79,65509.02,14255.98,11966.95,4997.38,31220.31,96729.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18106,56531.0,0.0,4497.76,61028.76,12446.79,12424.5,4991.98,29863.27,90892.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37529,21038.76,0.0,1945.17,22983.93,2583.04,1735.25,4879.38,9197.67,32181.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,11913,0.0,0.0,711.04,711.04,0.0,0.0,54.39,54.39,765.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,7263,66456.71,10361.53,5608.3,82426.54,14043.52,12424.5,6397.6,32865.62,115292.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49951,51855.26,6267.47,3488.65,61611.38,15703.64,10306.85,4560.16,30570.65,92182.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",SFRA,SF Redevelopment Agency,O990,Assistant Prjct Manager (OCII),37074,81217.91,0.0,0.0,81217.91,16294.18,8171.49,6682.51,31148.18,112366.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,18517,44328.06,0.0,0.0,44328.06,10618.74,12402.11,3607.48,26628.33,70956.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,28355,96254.03,0.0,80.0,96334.03,19854.65,12424.49,7818.78,40097.92,136431.95 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,44380,85004.0,10006.57,2738.22,97748.79,18088.31,12424.5,7766.07,38278.88,136027.67 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,48933,37779.01,0.0,0.0,37779.01,9061.33,12424.5,3044.42,24530.25,62309.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,49185,54147.48,15475.01,10108.63,79731.12,12839.04,11241.9,6341.23,30422.17,110153.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",40213,135115.5,13751.1,8106.93,156973.53,28124.78,12424.5,2664.87,43214.15,200187.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,27358,72244.86,0.0,250.0,72494.86,14117.79,7300.77,5805.34,27223.9,99718.76 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,42670,93281.02,0.0,1584.0,94865.02,19551.49,12424.5,7610.77,39586.76,134451.78 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),15013,184289.04,0.0,1500.0,185789.04,37388.86,12424.5,10886.83,60700.19,246489.23 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,25426,61448.56,0.0,621.09,62069.65,12787.72,12366.5,5044.9,30199.12,92268.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,29508,88301.35,0.0,0.0,88301.35,18095.07,11707.71,7079.4,36882.18,125183.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9182,"Manager VIII, MTA",46396,160183.3,0.0,0.0,160183.3,32218.74,12424.51,25488.45,70131.7,230315.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48422,914.2,0.0,71.1,985.3,0.0,67.2,69.61,136.81,1122.11 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,3036,6526.8,0.0,0.0,6526.8,1183.32,669.02,514.34,2366.68,8893.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,48560,34674.0,0.0,0.0,34674.0,6681.9,7167.98,2772.55,16622.43,51296.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,51992,69708.0,32406.01,9880.29,111994.3,15516.44,12328.92,8857.8,36703.16,148697.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50021,68608.85,20101.12,4098.59,92808.56,19929.34,13520.19,7205.85,40655.38,133463.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,43544,16876.7,111.42,1287.13,18275.25,0.0,3394.04,1415.94,4809.98,23085.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,38872,6318.56,0.0,0.0,6318.56,1417.24,1427.62,525.03,3369.89,9688.45 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,28013,67911.02,0.0,3312.93,71223.95,14662.97,12424.5,5601.76,32689.23,103913.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,35697,75605.0,13182.39,10052.94,98840.33,16997.92,12424.5,7681.54,37103.96,135944.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,19984,78564.3,0.0,1683.65,80247.95,16537.11,12417.45,6180.78,35135.34,115383.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3232,Marina Assistant Manager,30537,61875.01,202.67,1075.8,63153.48,12761.73,12425.45,5232.68,30419.86,93573.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,51264,82020.32,26314.93,2792.34,111127.59,17431.64,12436.51,9018.7,38886.85,150014.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27551,40392.1,5379.23,1406.22,47177.55,10829.3,12626.65,3371.21,26827.16,74004.71 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,38889,130845.83,59723.16,15716.84,206285.83,28792.94,15196.12,3473.69,47462.75,253748.58 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,5522,69474.7,0.0,3000.0,72474.7,14515.8,10472.18,6046.68,31034.66,103509.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44797,68056.35,6436.23,2145.46,76638.04,19222.62,13409.92,5842.26,38474.8,115112.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23958,106268.09,4865.67,712.25,111846.01,20748.61,10791.27,1902.21,33442.09,145288.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,51283,92282.0,0.0,0.0,92282.0,19019.5,12424.5,7362.7,38806.7,131088.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,45226,189902.89,0.0,9720.03,199622.92,39157.37,12424.5,502.96,52084.83,251707.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,34001,59711.0,1110.36,6461.82,67283.18,13400.43,12424.5,5192.65,31017.58,98300.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,32928,16297.46,534.73,215.35,17047.54,4044.01,3943.28,1413.19,9400.48,26448.02 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33042,95734.96,9467.69,17191.8,122394.45,27493.0,12163.34,2059.03,41715.37,164109.82 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,2232,5327.2,202.51,875.7,6405.41,1194.89,860.16,485.66,2540.71,8946.12 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),24777,8304.0,0.0,0.0,8304.0,1505.52,955.73,643.35,3104.6,11408.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20209,119461.65,0.0,4588.18,124049.83,23641.89,12424.5,2065.59,38131.98,162181.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14464,11027.33,669.0,1913.95,13610.28,3483.48,2192.98,1026.43,6702.89,20313.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,35065,30387.0,374.06,1943.95,32705.01,6041.31,6212.25,2498.44,14752.0,47457.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,51731,98157.01,0.0,0.0,98157.01,20227.0,12424.5,8029.76,40681.26,138838.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24550,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,825,55828.31,0.0,8792.08,64620.39,13744.22,12418.53,5329.78,31492.53,96112.92 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,22706,97356.8,284.66,6790.41,104431.87,25334.42,12424.5,1740.41,39499.33,143931.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14331,184289.0,0.0,1500.0,185789.0,37388.83,12424.5,10993.22,60806.55,246595.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,24372,117140.95,27324.48,15776.72,160242.15,23164.17,12424.5,2676.61,38265.28,198507.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11120,4573.0,0.0,31.54,4604.54,812.7,477.86,77.01,1367.57,5972.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11313,45733.67,10196.91,7977.59,63908.17,14348.4,9094.97,4704.95,28148.32,92056.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,18949,4865.9,200.08,672.83,5738.81,1199.7,907.95,94.92,2202.57,7941.38 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,1688,71311.03,0.0,0.0,71311.03,14697.59,12424.5,5836.21,32958.3,104269.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",31661,118858.01,3739.25,1210.75,123808.01,24185.9,12424.5,9834.82,46445.22,170253.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7319,Electric Motor Repairer,44778,84490.16,21670.95,3544.2,109705.31,17527.35,12402.1,8794.58,38724.03,148429.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,11141,67261.06,0.0,0.0,67261.06,13860.37,12424.5,5483.67,31768.54,99029.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,19745,75927.11,0.0,0.0,75927.11,15657.06,12424.5,6250.71,34332.27,110259.38 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,23699,115270.24,0.0,4740.38,120010.62,23172.61,12424.5,9818.19,45415.3,165425.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,41378,58101.0,0.0,624.0,58725.0,12103.56,12424.5,4867.66,29395.72,88120.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,26656,100554.06,0.0,0.0,100554.06,20721.15,12424.5,8215.86,41361.51,141915.57 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,2824,125815.02,0.0,0.0,125815.02,25320.89,12424.5,9894.07,47639.46,173454.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,17855,32398.23,0.0,1078.47,33476.7,6837.97,4368.4,2661.78,13868.15,47344.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,44436,62353.58,0.0,8056.57,70410.15,13911.17,11029.79,5540.29,30481.25,100891.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,29935,55664.88,0.0,0.0,55664.88,12430.58,12386.87,3906.44,28723.89,84388.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,28089,53233.24,626.88,2574.85,56434.97,12777.54,12293.09,4580.03,29650.66,86085.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,35533,40911.02,8925.06,4927.88,54763.96,10447.11,12400.61,4389.5,27237.22,82001.18 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,25186,130845.86,68405.38,17106.8,216358.04,28942.3,15196.12,3644.69,47783.11,264141.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,11193,50666.11,1944.83,1445.23,54056.17,12187.97,11987.31,4358.46,28533.74,82589.91 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,38373,113672.0,0.0,8437.96,122109.96,24149.74,12424.5,9850.33,46424.57,168534.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,16080,164718.4,0.0,1184.2,165902.6,33114.24,12424.5,10450.62,55989.36,221891.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,30497,117129.65,2549.42,4659.42,124338.49,23205.2,12424.5,2006.59,37636.29,161974.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,14877,30923.55,0.0,0.0,30923.55,6936.11,5495.46,273.97,12705.54,43629.09 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,36391,143188.0,0.0,0.0,143188.0,28816.76,12424.5,10258.16,51499.42,194687.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,32998,42831.66,0.0,729.94,43561.6,9345.64,9675.58,3564.32,22585.54,66147.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,20796,109522.5,23401.12,7773.51,140697.13,22736.87,12424.5,10083.64,45245.01,185942.14 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,22531,108226.58,0.0,0.0,108226.58,21984.86,12424.5,17117.54,51526.9,159753.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48384,110219.93,3292.16,30620.14,144132.23,26366.94,9753.84,5615.22,41736.0,185868.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,11337,69614.5,0.0,740.0,70354.5,14152.13,9796.24,5626.09,29574.46,99928.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29032,141280.43,4364.35,13587.06,159231.84,28549.28,12424.5,1536.46,42510.24,201742.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,37805,3310.3,0.0,0.0,3310.3,0.0,1073.71,256.93,1330.64,4640.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,13472,51405.0,0.0,1865.28,53270.28,12495.73,12424.5,4117.12,29037.35,82307.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38737,4587.5,0.0,201.85,4789.35,1053.18,1194.67,371.73,2619.58,7408.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,39042,139096.59,16030.14,4240.76,159367.49,27521.06,12424.5,2670.36,42615.92,201983.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21335,34471.8,0.0,985.17,35456.97,0.0,2723.83,2752.03,5475.86,40932.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,20126,70245.0,2851.5,2938.9,76035.4,14606.45,12424.5,6264.75,33295.7,109331.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,21940,63887.0,9762.19,1539.67,75188.86,13303.42,12424.5,6140.73,31868.65,107057.51 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,21841,9463.59,0.0,0.0,9463.59,0.0,12424.5,0.0,12424.5,21888.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,2181,156746.07,0.0,0.0,156746.07,31545.23,12424.45,10476.85,54446.53,211192.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,9363,112776.03,0.0,5638.81,118414.84,23831.37,12424.5,9677.85,45933.72,164348.56 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,52151,63708.85,0.0,269.0,63977.85,13092.85,11764.27,5057.53,29914.65,93892.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,43711,43610.03,0.0,0.0,43610.03,8326.16,6690.11,3467.79,18484.06,62094.09 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21494,126015.0,0.0,1125.0,127140.0,25488.03,11946.64,9842.27,47276.94,174416.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,43543,92539.3,7486.28,11494.16,111519.74,19693.03,12325.11,9675.52,41693.66,153213.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,23041,101345.42,0.0,1560.0,102905.42,20856.21,12424.5,7945.96,41226.67,144132.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,45517,39578.1,0.0,83.7,39661.8,9421.24,11898.85,2953.9,24273.99,63935.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,8205,10170.31,0.0,266.91,10437.22,0.0,2767.68,809.11,3576.79,14014.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42096,26800.52,8502.74,1036.49,36339.75,6812.75,5203.29,2746.49,14762.53,51102.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,2954,34929.03,2110.31,2644.28,39683.62,7834.59,4300.79,3053.45,15188.83,54872.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,30996,4271.77,0.0,0.0,4271.77,0.0,1526.19,342.17,1868.36,6140.13 +Calendar,2015,6,General Administration & Finance,CSC,Civil Service Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,20923,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8715.76,43112.07,149717.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33125,104942.97,0.0,14151.52,119094.49,22738.02,9079.44,302.64,32120.1,151214.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,52039,62187.02,1946.51,2393.96,66527.49,12941.41,12424.5,5500.82,30866.73,97394.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,7313,22550.4,0.0,2840.06,25390.46,5183.12,3440.63,2080.61,10704.36,36094.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15288,40258.23,1351.55,1593.91,43203.69,11200.62,9563.53,3108.06,23872.21,67075.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48776,57396.4,2053.43,7064.66,66514.49,12109.25,4787.97,3377.94,20275.16,86789.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46087,17353.99,1903.44,358.64,19616.07,4953.93,3429.58,1392.11,9775.62,29391.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,27181,1702.0,0.0,0.0,1702.0,0.0,477.86,131.77,609.63,2311.63 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,32154,26740.5,0.0,345.26,27085.76,6529.67,6606.49,1984.29,15120.45,42206.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,33682,60372.5,0.0,1440.0,61812.5,12717.89,12418.53,4987.15,30123.57,91936.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,1018,64237.24,9017.67,9074.57,82329.48,14358.21,12069.56,6661.86,33089.63,115419.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,36193,56531.0,0.0,3594.0,60125.0,11788.47,12424.5,4915.9,29128.87,89253.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,40468,71311.1,1593.8,624.0,73528.9,14826.41,12424.5,5789.74,33040.65,106569.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52593,82492.84,8408.78,18056.58,108958.2,18996.22,8472.86,8490.82,35959.9,144918.1 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,14718,163207.03,0.0,0.0,163207.03,32756.25,12424.5,17786.64,62967.39,226174.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,14598,67911.01,0.0,5149.32,73060.33,14851.8,12424.5,5974.95,33251.25,106311.58 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,16160,80570.0,0.0,0.0,80570.0,16605.95,12424.5,6365.82,35396.27,115966.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,2921,14180.5,0.0,0.0,14180.5,385.24,4288.83,1126.1,5800.17,19980.67 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,31264,71696.11,0.0,0.0,71696.11,5069.56,10188.99,4923.66,20182.21,91878.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47643,8853.88,0.0,0.0,8853.88,0.0,3839.35,715.34,4554.69,13408.57 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16929,9317.32,0.0,566.27,9883.59,2173.4,2458.02,788.73,5420.15,15303.74 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,38516,77923.84,0.0,0.0,77923.84,16043.44,12385.2,6195.89,34624.53,112548.37 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,31621,3663.71,0.0,0.0,3663.71,0.0,1338.02,295.54,1633.56,5297.27 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,30045,18005.14,0.0,138.73,18143.87,0.0,4479.97,1406.83,5886.8,24030.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5551,9100.0,0.0,0.0,9100.0,0.0,2389.33,720.64,3109.97,12209.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,2103,85368.03,0.0,0.0,85368.03,17589.93,12424.5,7081.58,37096.01,122464.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,25629,114342.05,0.0,16075.18,130417.23,22856.91,11709.92,5138.52,39705.35,170122.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,23069,99276.8,750.72,0.0,100027.52,20424.3,12424.5,8176.5,41025.3,141052.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,4698,72519.16,26848.5,7576.35,106944.01,15582.9,9079.43,1749.31,26411.64,133355.65 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1813,Senior Benefits Analyst,45236,79399.81,0.0,0.0,79399.81,16355.78,12424.5,6336.88,35117.16,114516.97 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,29464,98004.01,0.0,0.0,98004.01,20155.88,11468.77,7245.11,38869.76,136873.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,24470,36025.88,409.17,1260.17,37695.22,7928.75,5555.19,2413.05,15896.99,53592.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,8632,44568.0,32779.83,4486.91,81834.74,10566.62,5734.39,6511.17,22812.18,104646.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,32717,98355.22,5450.23,1019.94,104825.39,20437.57,12478.26,8539.89,41455.72,146281.11 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,9180,117562.39,0.0,0.0,117562.39,23644.07,12334.91,9410.4,45389.38,162951.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,12229,32073.0,1330.88,0.0,33403.88,5968.78,3822.92,2670.6,12462.3,45866.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32492,44135.88,2891.11,672.42,47699.41,11597.21,13006.07,3614.34,28217.62,75917.03 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,34203,56110.6,0.0,1662.18,57772.78,12925.67,12388.36,4733.38,30047.41,87820.19 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,48800,89563.33,0.0,0.0,89563.33,18422.5,12424.51,7208.89,38055.9,127619.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",21323,1081.0,0.0,0.0,1081.0,0.0,64.57,83.79,148.36,1229.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,36818,112209.01,0.0,0.0,112209.01,22870.16,12424.5,9179.69,44474.35,156683.36 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,17716,77071.01,0.0,0.0,77071.01,15884.7,12424.5,5911.86,34221.06,111292.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2021,48569.4,552.34,2444.2,51565.94,9010.87,5280.42,4140.99,18432.28,69998.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,36375,182336.18,0.0,0.0,182336.18,36757.56,12424.5,25873.46,75055.52,257391.7 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,44411,3844.95,0.0,259.59,4104.54,2231.38,1033.38,22.54,3287.3,7391.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7358,Pattern Maker,20967,91047.49,0.0,6968.46,98015.95,19923.39,12430.48,8016.89,40370.76,138386.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11061,40235.76,8449.7,1506.24,50191.7,10826.18,12575.21,3812.75,27214.14,77405.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,19965,8522.46,0.0,709.27,9231.73,0.0,3113.59,152.55,3266.14,12497.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,47474,117120.35,0.0,8014.13,125134.48,25007.76,12382.68,9861.8,47252.24,172386.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,49637,17387.47,0.0,0.0,17387.47,3823.49,3731.47,1400.7,8955.66,26343.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,6844,93281.0,0.0,1664.0,94945.0,19567.9,12424.5,7818.33,39810.73,134755.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9147,Traf Signal Electrician Sup I,13411,6044.5,4170.03,115.25,10329.78,1104.41,477.88,175.44,1757.73,12087.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,33119,84170.96,79433.84,14445.21,178050.01,18770.31,12356.95,10701.44,41828.7,219878.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12055,119461.63,1718.45,3864.01,125044.09,23641.91,12424.5,2082.4,38148.81,163192.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,44972,75392.54,5618.19,1420.0,82430.73,15821.7,12153.42,6751.87,34726.99,117157.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,45198,13671.05,0.0,306.0,13977.05,3135.05,1696.41,1137.7,5969.16,19946.21 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2870,97380.39,30618.71,10304.94,138304.04,25488.2,12414.05,2300.32,40202.57,178506.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,18973,27176.29,1975.72,2632.82,31784.83,5382.5,4396.36,2499.27,12278.13,44062.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,33533,66102.02,9481.44,3394.76,78978.22,14324.75,12424.51,6488.73,33237.99,112216.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23662,1864.0,0.0,2.48,1866.48,0.0,716.81,144.76,861.57,2728.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,49984,10424.0,3542.53,79.37,14045.9,2250.52,955.73,238.43,3444.68,17490.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",9517,102901.72,1995.39,0.0,104897.11,21247.39,12424.5,8614.37,42286.26,147183.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,28723,57962.18,0.0,640.0,58602.18,12136.61,9701.03,4575.39,26413.03,85015.21 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,28343,171754.25,0.0,0.0,171754.25,34536.99,12424.5,21200.7,68162.19,239916.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40950,26756.29,8384.7,2293.31,37434.3,8581.72,5320.97,2951.92,16854.61,54288.91 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,31413,85112.03,0.0,0.0,85112.03,17541.42,12424.5,6726.76,36692.68,121804.71 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,24376,51248.82,0.0,3000.0,54248.82,10457.17,11086.48,4490.37,26034.02,80282.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,43490,55288.12,372.79,0.0,55660.91,13258.07,12424.5,4264.05,29946.62,85607.53 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1803,Performance Analyst I,52692,41557.53,0.0,0.0,41557.53,10002.34,8601.58,3349.05,21952.97,63510.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23380,68990.05,18951.17,6181.37,94122.59,20586.24,13593.07,7357.2,41536.51,135659.1 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,52203,211551.03,0.0,21155.1,232706.13,46832.38,12424.51,11595.38,70852.27,303558.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48535,119236.97,17250.24,8663.29,145150.5,23577.85,12400.61,2473.21,38451.67,183602.17 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,6313,115232.93,0.0,0.0,115232.93,23164.18,12424.5,8917.94,44506.62,159739.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,41690,64191.02,0.0,0.0,64191.02,13227.59,12424.5,5176.81,30828.9,95019.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22259,70964.71,3702.97,5336.77,80004.45,15309.09,9079.43,1331.81,25720.33,105724.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18507,30484.11,3131.84,754.44,34370.39,7934.76,9501.58,2622.04,20058.38,54428.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,5190,9931.66,0.0,0.0,9931.66,0.0,2189.22,770.86,2960.08,12891.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,34481,55553.35,0.0,0.0,55553.35,12410.59,12375.52,4474.46,29260.57,84813.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24097,0.0,0.0,791.13,791.13,0.0,68.5,60.52,129.02,920.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,12283,52138.24,0.0,0.0,52138.24,10882.52,10501.03,4094.28,25477.83,77616.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,13545,89028.0,0.0,0.0,89028.0,18349.02,12424.5,6976.69,37750.21,126778.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23001,25133.12,0.0,2007.65,27140.77,1289.79,0.0,3723.61,5013.4,32154.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,18755,18620.0,0.0,1909.25,20529.25,4239.27,2389.33,1711.66,8340.26,28869.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,39641,62811.01,272.27,1334.01,64417.29,13168.43,12424.5,5214.57,30807.5,95224.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,43451,68474.81,0.0,9494.46,77969.27,15148.75,11245.78,6454.06,32848.59,110817.86 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",29803,10547.4,1013.4,13.1,11573.9,0.0,0.0,915.51,915.51,12489.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,19637,55991.68,589.56,992.37,57573.61,11691.87,11068.91,4727.93,27488.71,85062.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,7607,51081.75,18.57,1827.6,52927.92,12414.97,12346.85,4382.93,29144.75,82072.67 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",9508,73499.91,42351.95,7001.17,122853.03,15819.08,12226.43,9736.96,37782.47,160635.5 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,17287,58010.59,0.0,147.65,58158.24,12055.4,9574.27,4416.93,26046.6,84204.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,43148,164095.15,14560.84,8953.51,187609.5,33025.04,12424.5,3149.19,48598.73,236208.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48297,11812.63,0.0,619.2,12431.83,0.0,3174.82,962.78,4137.6,16569.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26131,97769.2,15927.18,18107.01,131803.39,28167.56,12424.51,2189.81,42781.88,174585.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,39009,81942.04,1427.8,2232.58,85602.42,17350.8,12424.5,6836.82,36612.12,122214.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,40700,61642.04,2933.98,2036.79,66612.81,12823.29,12260.59,5233.41,30317.29,96930.1 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,36294,75861.02,0.0,0.0,75861.02,15838.95,10990.9,6176.76,33006.61,108867.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26414,34265.0,0.0,4969.65,39234.65,7517.72,3345.06,3189.15,14051.93,53286.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,52279,84599.01,70439.18,5012.25,160050.44,17548.1,12424.5,10404.93,40377.53,200427.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,46459,80080.15,3725.71,6091.39,89897.25,16935.37,12472.29,1490.23,30897.89,120795.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,7274,133087.03,0.0,4642.37,137729.4,26783.95,12424.5,10145.02,49353.47,187082.87 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,52539,7700.4,3639.1,306.45,11645.95,0.0,1815.89,903.92,2719.81,14365.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,34132,9310.43,0.0,1812.55,11122.98,2088.33,1241.74,916.5,4246.57,15369.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,12862,0.0,0.0,3575.82,3575.82,0.0,68.5,273.55,342.05,3917.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11814,7907.2,0.0,0.0,7907.2,1763.97,3416.73,555.53,5736.23,13643.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,42380,2094.17,196.17,42.0,2332.34,0.0,621.23,181.02,802.25,3134.59 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,13567,38284.73,0.0,3000.0,41284.73,7774.52,8282.01,3405.36,19461.89,60746.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37032,65200.71,8637.47,2812.15,76650.33,18597.9,12847.79,5974.1,37419.79,114070.12 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,35386,2985.19,0.0,19.22,3004.41,660.67,519.68,234.43,1414.78,4419.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25651,56531.0,0.0,3190.55,59721.55,11796.81,12424.5,4919.8,29141.11,88862.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,10023,2124.0,0.0,0.0,2124.0,395.28,477.86,164.85,1037.99,3161.99 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,16046,97758.72,3117.8,8769.46,109645.98,25896.53,12424.5,1819.66,40140.69,149786.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",33199,130329.3,64307.39,15327.59,209964.28,28637.33,15052.76,3570.93,47261.02,257225.3 +Calendar,2015,4,Community Health,DPH,Public Health,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,38482,79626.8,9058.12,3440.0,92124.92,17144.24,12409.57,7126.03,36679.84,128804.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,2429,615.14,0.0,8.82,623.96,0.0,203.1,48.37,251.47,875.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41347,140207.45,23022.88,22260.63,185490.96,27718.31,12424.5,3107.78,43250.59,228741.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49555,55573.11,0.0,3846.76,59419.87,13261.03,12424.5,4855.86,30541.39,89961.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,34378,118907.63,0.0,816.2,119723.83,23513.31,12366.38,2038.75,37918.44,157642.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,39689,1702.0,0.0,0.0,1702.0,439.12,477.86,146.19,1063.17,2765.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,12189,97936.01,0.0,0.0,97936.01,20151.25,12424.5,7896.28,40472.03,138408.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52252,67444.48,19034.15,9281.39,95760.02,21074.01,13289.09,7468.78,41831.88,137591.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,18313,0.0,0.0,176.18,176.18,0.0,0.0,13.47,13.47,189.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29388,6693.04,0.0,197.16,6890.2,103.12,0.0,1123.57,1226.69,8116.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7971,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",21877,23209.69,0.0,0.0,23209.69,0.0,5495.47,1799.57,7295.04,30504.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,28045,49645.9,35944.36,12067.96,97658.22,11360.28,5256.52,3698.44,20315.24,117973.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52565,14098.73,41.33,1273.97,15414.03,1860.79,6113.69,1237.99,9212.47,24626.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28930,3221.76,0.0,12.25,3234.01,0.0,1570.98,250.79,1821.77,5055.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,9445,35932.48,0.0,0.0,35932.48,6687.01,4515.83,2903.84,14106.68,50039.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,25337,16331.18,0.0,0.0,16331.18,384.1,5390.5,1363.64,7138.24,23469.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,2063,2449.0,0.0,0.0,2449.0,549.31,477.86,189.6,1216.77,3665.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,26961,2304.45,0.0,0.0,2304.45,0.0,967.68,178.87,1146.55,3451.0 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32528,66093.42,986.49,1400.0,68479.91,13878.94,12520.08,5652.65,32051.67,100531.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,7399,48592.41,0.0,0.0,48592.41,9965.03,9825.63,4079.39,23870.05,72462.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,20283,79395.06,0.0,2104.0,81499.06,16792.46,12424.51,6752.22,35969.19,117468.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,31323,32572.2,1293.5,764.76,34630.46,6517.84,5877.74,2797.35,15192.93,49823.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,44532,110041.08,14066.82,6709.84,130817.74,23111.1,12424.5,9964.64,45500.24,176317.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16013,149099.0,0.0,12571.86,161670.86,30044.58,12424.5,8339.89,50808.97,212479.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,109,58302.29,5856.52,2000.88,66159.69,12105.45,11589.85,5404.85,29100.15,95259.84 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,1752,27293.01,0.0,0.0,27293.01,6121.85,3345.06,2256.52,11723.43,39016.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,36138,56325.71,1001.43,3918.73,61245.87,12178.29,10660.58,5039.24,27878.11,89123.98 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,32435,63495.33,48.21,7498.42,71041.96,13942.06,11724.96,5868.18,31535.2,102577.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,24225,52656.3,5683.2,2835.7,61175.2,9991.13,11999.01,4674.39,26664.53,87839.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48992,113233.61,6973.65,18644.16,138851.42,25140.3,15196.12,2310.82,42647.24,181498.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,11695,39303.2,0.0,0.0,39303.2,8419.44,8691.18,3058.05,20168.67,59471.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27520,40694.28,7139.02,1328.1,49161.4,8766.98,10995.4,3710.96,23473.34,72634.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10682,97768.54,43358.04,22775.9,163902.48,28592.31,12424.5,2747.15,43763.96,207666.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42798,4952.11,0.0,0.0,4952.11,0.0,2147.4,398.33,2545.73,7497.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27343,119465.59,78235.57,14323.43,212024.59,23627.24,12424.5,3527.51,39579.25,251603.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2310,Surgical Procedures Technician,33583,49573.28,532.08,1635.83,51741.19,10576.36,8030.65,4289.99,22897.0,74638.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,27405,7129.75,0.0,0.0,7129.75,0.0,2359.46,553.1,2912.56,10042.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,50885,67261.09,0.0,0.0,67261.09,13860.37,12424.5,5472.17,31757.04,99018.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21713,12715.2,0.0,1409.94,14125.14,3099.06,1357.5,1158.73,5615.29,19740.43 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,9428,105689.26,0.0,0.0,105689.26,21775.13,12424.5,8562.76,42762.39,148451.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,45152,65562.82,0.0,8147.65,73710.47,15215.77,12380.47,5777.94,33374.18,107084.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,4890,70245.0,5283.63,11715.89,87244.52,15928.79,12424.5,7106.27,35459.56,122704.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,51498,39017.03,0.0,0.0,39017.03,7261.07,4300.77,3110.85,14672.69,53689.72 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4215,Asr Senior Office Specialist,4659,74867.05,0.0,624.0,75491.05,15559.23,12424.5,5828.72,33812.45,109303.5 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,23810,50166.13,0.0,0.0,50166.13,11444.63,5177.86,440.83,17063.32,67229.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,17819,32346.88,486.51,27614.37,60447.76,5737.76,2449.06,965.44,9152.26,69600.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15903,7278.7,0.0,0.0,7278.7,0.0,621.23,564.94,1186.17,8464.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,48723,59097.7,0.0,1280.0,60377.7,13444.68,12424.5,4458.56,30327.74,90705.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29078,55068.53,3723.47,2127.97,60919.97,13906.59,10927.29,4662.23,29496.11,90416.08 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",52113,64329.95,13115.17,2326.6,79771.72,15170.22,11532.27,1579.38,28281.87,108053.59 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,4032,142389.89,0.0,22003.68,164393.57,33341.11,8572.49,10483.12,52396.72,216790.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9651,442.01,0.0,0.0,442.01,0.0,238.93,34.22,273.15,715.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,48307,2161.0,0.0,0.0,2161.0,402.16,477.89,167.73,1047.78,3208.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,38273,95495.18,3064.43,11422.61,109982.22,26014.09,12133.31,1816.87,39964.27,149946.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,21627,83502.97,0.0,558.6,84061.57,17322.07,11122.31,6927.81,35372.19,119433.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,31653,47071.75,0.0,1059.39,48131.14,9703.9,9461.67,4049.57,23215.14,71346.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23861,67672.69,5484.51,5394.73,78551.93,20016.17,13334.59,6124.03,39474.79,118026.72 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,26476,65592.04,0.0,624.0,66216.04,13647.35,12424.5,5489.42,31561.27,97777.31 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,3416,40186.74,0.0,0.0,40186.74,7503.51,5847.89,3204.54,16555.94,56742.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48254,11469.14,0.0,136.56,11605.7,0.0,4912.45,938.62,5851.07,17456.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,15066,79951.0,0.0,1154.65,81105.65,16715.77,12424.5,6650.78,35791.05,116896.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,32957,61701.61,0.0,0.0,61701.61,12572.2,10990.91,4666.77,28229.88,89931.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47561,132016.0,0.0,5831.74,137847.74,26191.51,12424.5,5450.24,44066.25,181913.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,25811,112776.0,5956.86,5638.81,124371.67,23831.35,12424.5,9831.85,46087.7,170459.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,27461,65156.31,16289.37,5801.72,87247.4,14448.9,12251.17,6764.36,33464.43,120711.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,1108,18317.5,0.0,0.0,18317.5,4028.0,4061.86,1487.02,9576.88,27894.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16412,1512.98,0.0,250.0,1762.98,334.75,292.7,115.71,743.16,2506.14 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,7521,23971.65,194.41,0.0,24166.06,5946.11,5762.76,1959.52,13668.39,37834.45 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,4653,67649.36,5360.29,7997.11,81006.76,15082.57,12376.71,6668.76,34128.04,115134.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33660,112159.77,71079.59,18483.14,201722.5,24724.27,15052.76,3387.04,43164.07,244886.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,14233,58101.03,0.0,1320.0,59421.03,12244.94,12424.5,4870.94,29540.38,88961.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",5421,29903.86,0.0,0.0,29903.86,5421.57,2867.19,4423.03,12711.79,42615.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,48705,62795.75,12088.88,7835.29,82719.92,14107.61,11099.92,6742.53,31950.06,114669.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,50916,138637.97,12671.65,4115.86,155425.48,27385.65,12424.5,2109.65,41919.8,197345.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,1642,266.6,0.0,0.0,266.6,49.61,47.79,22.99,120.39,386.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14459,67485.56,17568.95,639.23,85693.74,18656.07,13297.87,6553.39,38507.33,124201.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,17468,90904.81,8547.27,11968.51,111420.59,20957.81,12327.86,1786.02,35071.69,146492.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,25099,85421.02,0.0,5612.34,91033.36,17591.12,9079.44,1546.09,28216.65,119250.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30929,70245.0,7318.8,4964.65,82528.45,14616.8,12424.5,6526.35,33567.65,116096.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,1647,49018.66,0.0,0.0,49018.66,9986.82,10977.47,3976.62,24940.91,73959.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28989,54014.96,0.0,6761.67,60776.63,12102.58,11877.95,4927.6,28908.13,89684.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,3.0,"Operating Engineers - Miscellaneous, Local 3",7200,Supervisory-Labor & Trade,7221,Asphalt Plant Supervisor 1,48735,100554.0,1011.34,62.95,101628.29,20724.83,12424.5,8337.81,41487.14,143115.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,27919,51405.0,0.0,2722.95,54127.95,12479.31,12424.5,4426.06,29329.87,83457.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,47022,32515.01,185.85,3300.66,36001.52,6051.01,4778.65,2704.72,13534.38,49535.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",2390,147593.42,5832.5,15748.49,169174.41,32072.61,12663.44,2878.01,47614.06,216788.47 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,212,64194.2,0.0,0.0,64194.2,0.0,0.0,5077.83,5077.83,69272.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,27680,61735.03,155.94,624.0,62514.97,12852.62,12424.5,5181.56,30458.68,92973.65 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0962,Dept Head II,15032,188060.76,0.0,0.0,188060.76,37787.63,12424.5,18236.07,68448.2,256508.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,50438,80846.86,36201.59,29189.25,146237.7,21535.19,12376.71,10109.69,44021.59,190259.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,45952,59229.0,0.0,0.0,59229.0,12207.44,12424.5,4660.08,29292.02,88521.02 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,50386,44652.01,7140.14,4364.79,56156.94,11476.2,5734.39,947.12,18157.71,74314.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,50657,81942.0,2946.96,1787.17,86676.13,17254.92,12424.5,6878.77,36558.19,123234.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35720,11460.81,0.0,0.0,11460.81,2956.86,4969.8,932.12,8858.78,20319.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,51046,70218.35,0.0,578.74,70797.09,14623.26,11761.94,5885.15,32270.35,103067.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,23919,128129.05,0.0,0.0,128129.05,25759.08,12424.5,17182.83,55366.41,183495.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5358,1780.2,0.0,296.7,2076.9,569.41,143.42,0.0,712.83,2789.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,21358,63962.0,0.0,2749.58,66711.58,12236.46,6212.25,12987.26,31435.97,98147.55 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,31679,56531.0,0.0,3930.9,60461.9,11780.12,12424.5,4953.94,29158.56,89620.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20285,68685.68,15719.37,1811.73,86216.78,19287.93,13536.86,6691.91,39516.7,125733.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37025,68851.85,18551.74,2909.73,90313.32,19667.17,13568.87,7054.44,40290.48,130603.8 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,2169,118411.03,0.0,3960.65,122371.68,23830.27,12424.5,9818.68,46073.45,168445.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,41296,6133.5,0.0,0.0,6133.5,1375.74,1385.81,510.15,3271.7,9405.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,19493,91331.0,0.0,0.0,91331.0,18823.67,12424.5,7504.18,38752.35,130083.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,45476,47699.6,3725.68,969.85,52395.13,9544.27,8840.51,1374.25,19759.03,72154.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,40517,92349.9,701.0,7220.7,100271.6,19528.87,12472.29,8199.84,40201.0,140472.6 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,28869,136389.68,0.0,0.0,136389.68,27448.59,12424.5,10137.29,50010.38,186400.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,28744,87047.02,0.0,0.0,87047.02,17940.62,12424.5,14932.27,45297.39,132344.41 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,15428,74718.0,0.0,0.0,74718.0,15293.36,11516.55,6050.49,32860.4,107578.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41552,113707.58,1457.04,20535.98,135700.6,23256.68,11027.94,9718.59,44003.21,179703.81 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,22074,141959.55,0.0,0.0,141959.55,28467.65,0.0,17475.66,45943.31,187902.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,9247,Airport Emerg Planning Coord,12415,100329.05,0.0,0.0,100329.05,20620.15,12424.5,23001.4,56046.05,156375.1 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26375,3378.2,0.0,181.35,3559.55,918.37,907.95,277.17,2103.49,5663.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,44389,5137.3,0.0,55.84,5193.14,0.0,1714.34,402.9,2117.24,7310.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33039,50613.8,51537.91,6630.09,108781.8,11028.15,10035.17,8781.06,29844.38,138626.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,42612,48521.83,0.0,0.0,48521.83,11623.65,12424.5,3924.46,27972.61,76494.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,449,52106.39,54.29,1388.21,53548.89,10637.47,10811.29,4465.54,25914.3,79463.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,37705,140334.0,0.0,250.0,140584.0,28242.36,12424.5,10122.33,50789.19,191373.19 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,856.0,"Teamsters - Miscellaneous, Local 856",8300,Correction & Detention,8322,"Sr Counselor, Juvenile Hall",14823,88007.11,20328.41,16964.29,125299.81,23876.65,12170.7,2485.23,38532.58,163832.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,41762,27457.14,165.94,0.0,27623.08,6158.65,5559.67,2209.01,13927.33,41550.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,46020,24314.41,3198.62,480.0,27993.03,6396.97,5256.52,2278.32,13931.81,41924.84 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,13603,96930.02,0.0,0.0,96930.02,19977.61,12424.51,7798.84,40200.96,137130.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,5752,69438.05,644.38,5125.13,75207.56,15347.01,12185.58,7087.41,34620.0,109827.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,39407,113228.15,23695.2,8511.91,145435.26,23737.56,12424.5,2467.23,38629.29,184064.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34423,1859.64,0.0,868.79,2728.43,479.79,806.4,225.38,1511.57,4240.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,9040,7628.63,0.0,0.0,7628.63,0.0,2763.79,591.24,3355.03,10983.66 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),38971,118978.91,0.0,1562.5,120541.41,24207.49,12424.5,9562.14,46194.13,166735.54 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,43669,86425.91,0.0,0.0,86425.91,17709.85,11726.53,6229.45,35665.83,122091.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34941,3186.4,352.28,1150.4,4689.08,0.0,1338.02,331.97,1669.99,6359.07 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,29784,34808.0,0.0,0.0,34808.0,6477.77,3345.05,4782.5,14605.32,49413.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,11012,52845.01,202.33,0.0,53047.34,10193.96,7167.99,4179.53,21541.48,74588.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7220,Asphalt Finisher Supervisor 1,43138,90470.77,7785.3,837.22,99093.29,18786.36,12263.23,8491.29,39540.88,138634.17 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,37491,9463.59,0.0,5358.12,14821.71,0.0,0.0,214.91,214.91,15036.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,48371,76482.51,0.0,1160.0,77642.51,16127.63,11420.99,5823.83,33372.45,111014.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26178,16626.04,0.0,0.0,16626.04,358.84,7187.22,1343.98,8890.04,25516.08 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,474C,Senior Fiscal Technician,22631,63363.02,0.0,5194.67,68557.69,13309.68,8916.07,5693.99,27919.74,96477.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47386,2345.2,0.0,0.0,2345.2,0.0,1016.96,181.57,1198.53,3543.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37125,66056.56,18493.17,2105.01,86654.74,18680.26,13017.42,6741.38,38439.06,125093.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",7222,130976.5,0.0,39053.79,170030.29,27288.6,12424.5,2825.46,42538.56,212568.85 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,8764,50424.67,0.0,0.0,50424.67,12076.28,11926.8,3763.24,27766.32,78190.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,27792,32183.76,0.0,1226.0,33409.76,6883.75,3703.45,2715.2,13302.4,46712.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40634,111566.95,3072.78,12824.76,127464.49,23648.3,14971.41,2124.12,40743.83,168208.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,21896,84157.12,4655.02,9706.16,98518.3,18691.75,12424.5,7824.11,38940.36,137458.66 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29400,97401.21,31194.5,22296.87,150892.58,29076.33,12376.71,2524.43,43977.47,194870.05 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,37220,143188.03,0.0,2510.37,145698.4,28816.77,12424.5,10114.29,51355.56,197053.96 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,16100,191407.0,0.0,0.0,191407.0,38431.08,12424.5,25945.46,76801.04,268208.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27833,97153.93,8355.19,9311.28,114820.4,20182.25,12424.5,1869.09,34475.84,149296.24 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,28392,104957.04,5772.79,7817.33,118547.16,22576.43,12376.71,9535.21,44488.35,163035.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38765,64621.69,6477.67,1867.05,72966.41,16636.38,13348.46,5357.65,35342.49,108308.9 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,17211,106116.12,0.0,0.0,106116.12,21870.85,12424.5,8602.46,42897.81,149013.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26669,47346.8,9893.46,4214.09,61454.35,10020.9,12424.5,4943.48,27388.88,88843.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,29368,77825.03,0.0,0.0,77825.03,15872.13,11099.92,22993.37,49965.42,127790.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2468,56531.0,0.0,1398.04,57929.04,11867.38,12424.5,4798.5,29090.38,87019.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12324,113233.61,0.0,18744.68,131978.29,25036.05,15196.12,2247.14,42479.31,174457.6 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,3080,67911.03,0.0,9325.47,77236.5,15495.84,12424.5,6247.99,34168.33,111404.83 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1760,Offset Machine Operator,36012,7185.01,0.0,12369.65,19554.66,1627.74,1433.6,1554.29,4615.63,24170.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48332,145013.64,64.12,35800.23,180877.99,28755.68,12086.11,8053.78,48895.57,229773.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12714,18189.55,0.0,1098.31,19287.86,0.0,0.0,1525.56,1525.56,20813.42 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,3693,32479.21,0.0,3000.0,35479.21,6044.39,5734.39,2783.49,14562.27,50041.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,24687,54265.71,0.0,2055.71,56321.42,12226.37,11851.06,4581.33,28658.76,84980.18 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,24424,75927.04,1633.67,0.0,77560.71,15648.74,12424.5,6382.26,34455.5,112016.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40354,20983.57,3342.59,368.31,24694.47,5170.13,6502.14,1784.34,13456.61,38151.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38041,6958.5,0.0,2603.2,9561.7,6296.75,573.44,3158.15,10028.34,19590.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46604,40090.45,5974.14,3681.08,49745.67,12780.84,7972.71,3640.35,24393.9,74139.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",50646,84414.26,0.0,1020.0,85434.26,17605.38,12424.62,6953.3,36983.3,122417.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,48198,93281.11,0.0,2024.0,95305.11,19644.16,12424.5,7898.56,39967.22,135272.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8175,0.0,0.0,2741.0,2741.0,0.0,68.5,209.68,278.18,3019.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,19070,18688.0,0.0,0.0,18688.0,3477.84,1911.46,2881.96,8271.26,26959.26 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,25972,122055.4,0.0,0.0,122055.4,24575.23,11182.06,18190.57,53947.86,176003.26 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,44738,112678.83,0.0,0.0,112678.83,22961.27,12424.5,9182.86,44568.63,157247.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9177,"Manager III, MTA",24074,15813.68,0.0,0.0,15813.68,2942.92,1911.46,2546.45,7400.83,23214.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23697,16110.0,0.0,40.28,16150.28,2928.04,1433.59,272.24,4633.87,20784.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,28745,77880.7,0.0,276.17,78156.87,16095.21,12424.5,6436.32,34956.03,113112.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38455,8046.0,138.29,268.22,8452.51,0.0,0.0,143.69,143.69,8596.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25326,0.0,0.0,900.29,900.29,0.0,0.0,49.74,49.74,950.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,32185,92457.98,15527.46,11138.47,119123.91,20689.75,12472.29,1996.32,35158.36,154282.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,26608,62912.15,0.0,584.3,63496.45,13174.78,11633.88,5235.41,30044.07,93540.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44910,56000.73,447.6,5659.19,62107.52,11177.9,5910.01,4982.24,22070.15,84177.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,23715,2191.5,0.0,0.0,2191.5,0.0,430.07,170.1,600.17,2791.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,30648,56076.42,532.94,1480.0,58089.36,12844.94,12424.5,4717.5,29986.94,88076.3 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,26242,39045.11,0.0,2320.32,41365.43,8187.06,5494.2,3477.3,17158.56,58523.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30264,63593.87,25568.05,4708.65,93870.57,18803.32,12552.93,7305.57,38661.82,132532.39 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,16031,99654.01,1856.9,0.0,101510.91,22731.77,12424.5,1725.88,36882.15,138393.06 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,23409,107828.22,32945.97,26436.18,167210.37,22428.67,12424.5,10581.69,45434.86,212645.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4019,1990.93,0.0,2294.92,4285.85,210.74,0.0,134.08,344.82,4630.67 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,16470,45480.78,17412.06,1923.58,64816.42,10571.07,9714.59,5222.21,25507.87,90324.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,38878,75201.39,0.0,0.0,75201.39,15606.0,11587.4,6016.5,33209.9,108411.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7480,Power Generation Technician 1,15676,80502.41,13016.93,7255.02,100774.36,17229.9,12006.37,8096.62,37332.89,138107.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33481,77220.91,0.0,576.07,77796.98,15608.3,6436.25,2960.12,25004.67,102801.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6116,Sprv Wastewater Cont Inspector,4536,91385.27,1072.74,720.46,93178.47,19064.72,10216.05,7465.39,36746.16,129924.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,37016,51239.27,16554.04,0.0,67793.31,10949.32,9031.9,5352.7,25333.92,93127.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10251,63887.02,3627.5,1537.46,69051.98,13485.42,12424.5,5685.36,31595.28,100647.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32786,910.4,0.0,0.0,910.4,0.0,382.3,70.67,452.97,1363.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",28802,93738.08,0.0,754.03,94492.11,19488.93,12424.5,7748.76,39662.19,134154.3 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,46990,6173.1,0.0,0.0,6173.1,1384.63,907.95,503.84,2796.42,8969.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,48844,74621.09,0.0,340.0,74961.09,15492.0,11707.72,6210.71,33410.43,108371.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",39924,149563.91,112231.89,25417.81,287213.61,33572.9,14407.64,738.79,48719.33,335932.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,22068,61630.0,457.02,303.05,62390.07,13700.1,12424.49,5060.48,31185.07,93575.14 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,36582,4795.0,0.0,546.0,5341.0,0.0,2045.87,413.51,2459.38,7800.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,32865,141367.37,0.0,0.0,141367.37,28420.85,12424.5,17572.65,58418.0,199785.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,30896,77071.0,5127.9,640.0,82838.9,16021.39,12424.5,6803.76,35249.65,118088.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,35108,71612.02,230.71,3130.77,74973.5,15315.36,12424.5,6153.98,33893.84,108867.34 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,48845,1823.06,935.71,102.89,2861.66,0.0,603.3,221.54,824.84,3686.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",11315,92041.68,29389.98,11505.22,132936.88,19547.01,10608.62,2232.02,32387.65,165324.53 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0943,Manager VIII,16221,206576.0,0.0,0.0,206576.0,41573.65,12424.5,19662.32,73660.47,280236.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7792,66423.47,10628.52,3961.44,81013.43,19317.65,13099.67,6316.33,38733.65,119747.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,8525,5413.96,0.0,0.0,5413.96,0.0,1744.21,420.21,2164.42,7578.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9140,Transit Manager 1,3684,106049.15,0.0,108.0,106157.15,21836.38,12126.97,8696.57,42659.92,148817.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,47198,82717.02,240.24,624.0,83581.26,17177.08,12424.5,6929.97,36531.55,120112.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51026,109372.66,567.68,23268.93,133209.27,25459.7,10319.26,9864.78,45643.74,178853.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14262,2604.71,23.73,20868.53,23496.97,673.73,334.51,347.93,1356.17,24853.14 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,37030,29233.8,8850.87,3390.12,41474.79,7001.02,4778.65,3194.45,14974.12,56448.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,4479,81219.24,0.0,0.0,81219.24,16740.57,12424.5,6484.28,35649.35,116868.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,14195,63501.15,0.0,620.22,64121.37,13209.3,12349.0,5272.17,30830.47,94951.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",52996,13472.9,0.0,0.0,13472.9,0.0,3201.7,1045.71,4247.41,17720.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6270,Housing Inspector,45233,61578.4,0.0,0.0,61578.4,12164.32,8219.29,4967.43,25351.04,86929.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,51059,86663.0,0.0,786.71,87449.71,18023.88,12424.5,7242.26,37690.64,125140.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,35019,6392.18,0.0,81.87,6474.05,0.0,2103.21,413.56,2516.77,8990.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,13331,111746.88,5022.87,1502.94,118272.69,21966.01,11618.11,1941.26,35525.38,153798.07 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,33496,68878.22,0.0,0.0,68878.22,14261.78,11946.64,5499.49,31707.91,100586.13 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",42301,137832.32,50545.81,15054.71,203432.84,29937.85,14144.82,3469.58,47552.25,250985.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,32816,98522.21,0.0,0.0,98522.21,20088.18,10844.5,8094.66,39027.34,137549.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41623,116647.4,1521.69,17237.97,135407.06,26157.62,10977.75,9472.58,46607.95,182015.01 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,29417,48229.01,0.0,0.0,48229.01,11119.59,10513.04,3941.43,25574.06,73803.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,44222,28732.92,0.0,304.61,29037.53,6506.86,0.0,2487.54,8994.4,38031.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,8972,12516.31,0.0,85.84,12602.15,0.0,4536.74,1008.53,5545.27,18147.42 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,32550,106116.01,0.0,2140.0,108256.01,22309.22,12424.5,8824.02,43557.74,151813.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36383,42262.35,0.0,0.0,42262.35,0.0,5543.24,3276.24,8819.48,51081.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,41973,84791.0,5033.68,0.0,89824.68,17475.79,12424.54,7146.64,37046.97,126871.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7431,30025.27,3747.26,1367.24,35139.77,7858.04,5845.55,2612.1,16315.69,51455.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),51465,81337.05,7348.6,13179.46,101865.11,18612.2,12374.03,1687.2,32673.43,134538.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,33540,17449.25,0.0,177.45,17626.7,3870.55,3533.21,1470.3,8874.06,26500.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24565,64946.9,94.37,2668.56,67709.83,18450.67,12793.89,5052.21,36296.77,104006.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3996,112159.74,35712.15,17758.19,165630.08,24231.43,15052.76,2816.27,42100.46,207730.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10412,4380.45,0.0,393.64,4774.09,0.0,1899.51,377.08,2276.59,7050.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,22891,38782.63,0.0,0.0,38782.63,7854.97,7886.52,3162.36,18903.85,57686.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,16215,14652.0,7581.79,3056.05,25289.84,3697.21,2867.19,2055.36,8619.76,33909.6 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,5917,129604.96,47780.15,14579.24,191964.35,28426.83,15052.76,3198.74,46678.33,238642.68 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,16779,97764.94,28390.7,14162.11,140317.75,27229.48,12424.5,2389.78,42043.76,182361.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20501,132788.04,569.9,11194.88,144552.82,27850.66,11067.36,9572.85,48490.87,193043.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20297,62650.14,9563.44,85647.39,157860.97,13806.31,6546.76,121.86,20474.93,178335.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10871,115138.26,21664.49,11258.57,148061.32,23295.63,12424.5,2407.15,38127.28,186188.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19902,9076.2,0.0,43.22,9119.42,2035.78,2007.02,767.34,4810.14,13929.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20741,3888.08,0.0,410.04,4298.12,1165.73,0.0,626.17,1791.9,6090.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40560,24942.87,768.4,1336.27,27047.54,6268.32,4925.0,2063.63,13256.95,40304.49 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,17907,79907.68,0.0,0.0,79907.68,6706.55,11946.64,6342.63,24995.82,104903.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45160,4380.45,0.0,0.0,4380.45,0.0,1899.51,346.61,2246.12,6626.57 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,27674,148043.71,0.0,0.0,148043.71,29728.29,12424.5,17453.46,59606.25,207649.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50084,13676.35,0.0,443.17,14119.52,3577.08,5907.62,1108.05,10592.75,24712.27 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,33345,32490.01,2742.57,1215.11,36447.69,7560.03,4778.65,2905.02,15243.7,51691.39 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,27866,49079.24,0.0,440.1,49519.34,10187.12,9832.08,3781.5,23800.7,73320.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24987,21443.2,0.0,1947.65,23390.85,4959.4,5686.6,1889.6,12535.6,35926.45 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,30021,81542.03,0.0,0.0,81542.03,16806.16,12424.5,6292.64,35523.3,117065.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,23775,97763.11,33352.36,22917.23,154032.7,29238.27,12424.5,2624.6,44287.37,198320.07 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,10927,27416.9,47.87,0.0,27464.77,772.28,7621.96,2218.14,10612.38,38077.15 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,14202,49365.02,0.0,0.0,49365.02,8949.88,5256.52,3691.03,17897.43,67262.45 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,49967,113672.0,0.0,13553.2,127225.2,25179.91,12424.5,9939.09,47543.5,174768.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39479,56531.01,44.06,4683.3,61258.37,12275.97,12424.49,4823.81,29524.27,90782.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,21893,6054.0,0.0,0.0,6054.0,0.0,955.73,469.7,1425.43,7479.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,45248,16501.13,0.0,0.0,16501.13,0.0,2401.27,1280.75,3682.02,20183.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,43147,65592.01,0.0,4296.61,69888.62,14356.46,12424.5,5635.34,32416.3,102304.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",5461,9834.3,0.0,0.0,9834.3,0.0,2341.52,762.91,3104.43,12938.73 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,30500,34380.97,0.0,1937.15,36318.12,8961.62,7925.64,3026.8,19914.06,56232.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21497,36140.17,5495.38,772.22,42407.77,9575.38,11288.86,3007.77,23872.01,66279.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,39509,96984.83,12572.07,10462.66,120019.56,26140.01,12324.75,1843.66,40308.42,160327.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,47105,64320.41,0.0,0.0,64320.41,13351.76,11468.78,5082.0,29902.54,94222.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,2585,55088.55,207.4,1250.0,56545.95,12505.89,12122.85,4547.61,29176.35,85722.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,1504,56531.0,313.04,3277.8,60121.84,11780.12,12424.5,4920.27,29124.89,89246.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,9005,36674.57,0.0,0.0,36674.57,7380.98,2434.12,2994.49,12809.59,49484.16 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,20225,103709.67,16970.92,11971.55,132652.14,22160.42,12520.08,2206.98,36887.48,169539.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,32986,108360.0,0.0,250.0,108610.0,21937.31,6976.83,8834.1,37748.24,146358.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,4286,73957.01,0.0,2140.0,76097.01,15702.55,12424.51,5987.99,34115.05,110212.06 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,33964,62753.13,1553.89,2840.91,67147.93,13072.17,12355.81,5553.51,30981.49,98129.42 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,19288,109527.01,0.0,0.0,109527.01,21646.64,0.0,14823.67,36470.31,145997.32 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,18631,31035.01,0.0,360.0,31395.01,7904.24,7167.99,2601.2,17673.43,49068.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0963,Dept Head III,265,194634.92,0.0,0.0,194634.92,39157.18,12281.15,18378.54,69816.87,264451.79 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,24692,1415.06,0.0,4467.53,5882.59,869.53,0.0,981.0,1850.53,7733.12 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,36042,27281.5,0.0,0.0,27281.5,6205.34,6451.18,2143.48,14800.0,42081.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7768,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2414.67,12868.02,44168.02 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,21798,12653.15,0.0,0.0,12653.15,0.0,4171.76,980.57,5152.33,17805.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,19388,57002.16,0.0,1454.65,58456.81,12124.92,11651.14,4860.09,28636.15,87092.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46466,12520.0,0.0,0.0,12520.0,2269.88,1911.46,980.03,5161.37,17681.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,13912,62468.8,0.0,1767.22,64236.02,13168.89,12424.5,5297.03,30890.42,95126.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39452,65339.98,13803.57,1880.24,81023.79,18392.95,12876.46,6109.4,37378.81,118402.6 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,41201,136466.0,20585.33,17776.5,174827.83,36394.03,12424.5,2972.4,51790.93,226618.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,33328,107978.0,18189.0,3984.5,130151.5,22455.82,12424.5,9908.05,44788.37,174939.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22789,72043.29,1791.29,15232.76,89067.34,16285.56,7870.44,6531.3,30687.3,119754.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,19723,137101.02,0.0,0.0,137101.02,27592.09,12424.5,17318.64,57335.23,194436.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,5897,2867.2,556.5,151.2,3574.9,778.75,669.01,286.56,1734.32,5309.22 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8217,Comm Pol Svcs Aide Supervisor,4342,77480.5,113.29,2154.98,79748.77,16381.76,12244.89,6559.17,35185.82,114934.59 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4306,Collections Officer,19273,4374.29,0.0,0.0,4374.29,981.15,952.75,348.96,2282.86,6657.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,10151,118104.02,0.0,0.0,118104.02,23768.42,12424.48,9657.92,45850.82,163954.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,26753,32571.0,4106.27,5915.84,42593.11,8205.24,5017.58,3460.06,16682.88,59275.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32305,10802.24,0.0,0.0,10802.24,-0.01,0.0,575.01,575.0,11377.24 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38204,56531.0,9526.87,4273.48,70331.35,12487.22,12424.5,5734.43,30646.15,100977.5 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,24242,53162.06,49.45,0.0,53211.51,12745.64,12424.5,4327.57,29497.71,82709.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12643,9252.26,0.0,0.0,9252.26,0.0,3954.34,748.48,4702.82,13955.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,33661,84027.51,6591.63,3560.35,94179.49,18041.47,12424.48,7550.14,38016.09,132195.58 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,29144,45551.8,795.41,2345.8,48693.01,11269.96,12328.92,3981.16,27580.04,76273.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,52549,79722.04,17371.6,2510.0,99603.64,16946.91,12424.5,7748.58,37119.99,136723.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,21005,74983.0,28200.68,18876.53,122060.21,18549.8,11500.37,9480.45,39530.62,161590.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,36451,43675.0,0.0,0.0,43675.0,8987.9,8123.71,3537.1,20648.71,64323.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14084,17934.56,2930.96,832.78,21698.3,4496.02,5537.03,1574.15,11607.2,33305.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1785,11777.69,0.0,226.01,12003.7,4738.82,0.0,339.56,5078.38,17082.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,11033,70791.02,1214.24,11962.42,83967.68,17075.95,12424.5,6661.96,36162.41,120130.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,47993,32733.0,0.0,0.0,32733.0,6091.58,5256.52,2639.75,13987.85,46720.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52095,5454.39,0.0,128.29,5582.68,0.0,2732.8,432.93,3165.73,8748.41 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,44923,80570.02,0.0,624.0,81194.02,16734.65,12424.5,6680.92,35840.07,117034.09 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,1971,62397.63,0.0,0.0,62397.63,12865.06,10773.66,5212.33,28851.05,91248.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,40508,62468.81,35497.17,7766.65,105732.63,13878.36,12424.52,8506.29,34809.17,140541.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,4596,108327.01,17863.72,10145.0,136335.73,22720.77,11946.64,10067.87,44735.28,181071.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6262,2570.43,0.0,36.26,2606.69,0.0,1253.38,202.27,1455.65,4062.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,6420,97934.01,7690.65,1992.4,107617.06,20308.11,12424.5,8890.49,41623.1,149240.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21616,119682.36,13586.68,7211.11,140480.15,24413.69,10603.0,10011.31,45028.0,185508.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40856,118549.25,0.0,4130.04,122679.29,23435.85,12328.92,1305.77,37070.54,159749.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,29760,62416.29,360.33,9623.3,72399.92,14010.04,11039.88,5949.52,30999.44,103399.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,25340,79395.03,0.0,624.0,80019.03,16489.47,12424.51,6383.34,35297.32,115316.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,30935,25650.0,0.0,0.0,25650.0,4773.47,4300.78,2043.47,11117.72,36767.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,48003,135421.03,0.0,0.0,135421.03,27253.5,12424.5,10126.85,49804.85,185225.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,51221,99211.0,0.0,3463.36,102674.36,19168.17,8601.58,6904.03,34673.78,137348.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,25035,89961.32,2773.53,4004.0,96738.85,18355.04,9557.31,1638.28,29550.63,126289.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24207,23981.54,2593.34,957.69,27532.57,6149.38,7447.94,2102.97,15700.29,43232.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,20395,2835.0,0.0,2446.61,5281.61,635.89,477.86,411.13,1524.88,6806.49 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,8320,32303.7,653.4,3681.16,36638.26,6717.84,7012.68,2768.23,16498.75,53137.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9124,Sr Transit Information Clerk,42561,69826.49,0.0,0.0,69826.49,14358.9,12112.76,5668.35,32140.01,101966.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13491,8911.8,0.0,0.0,8911.8,0.0,3802.02,717.94,4519.96,13431.76 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,5615,16445.0,0.0,0.0,16445.0,3688.6,2389.33,1343.65,7421.58,23866.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21123,67247.74,15520.21,2942.82,85710.77,19203.1,13251.94,6699.95,39154.99,124865.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,30006,100554.0,0.0,0.0,100554.0,20724.83,12424.52,8267.62,41416.97,141970.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,50958,19080.02,566.88,544.2,20191.1,1356.26,5137.05,1572.76,8066.07,28257.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,26963,20499.0,1668.36,1347.9,23515.26,4846.03,6212.25,1891.98,12950.26,36465.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,13256,119461.63,1553.56,13869.0,134884.19,23641.9,12424.5,2286.66,38353.06,173237.25 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",29608,0.0,0.0,9589.34,9589.34,0.0,68.5,139.05,207.55,9796.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,7584,65055.3,0.0,2164.07,67219.37,13866.28,12016.11,6081.67,31964.06,99183.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,51590,73993.0,0.0,2401.71,76394.71,14651.07,8601.58,6121.71,29374.36,105769.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,21080,57072.49,7987.32,2653.31,67713.12,11958.88,11343.45,5563.16,28865.49,96578.61 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31660,55573.1,0.0,0.0,55573.1,12401.88,12424.5,4553.78,29380.16,84953.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,4591,83148.02,0.0,0.0,83148.02,17137.11,12424.5,6613.15,36174.76,119322.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6287,74891.67,2154.03,3859.12,80904.82,15890.53,15052.77,1345.59,32288.89,113193.71 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,51038,37385.76,0.0,0.0,37385.76,8385.63,5163.94,2904.12,16453.69,53839.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,359,12783.39,561.7,9436.11,22781.2,2896.49,1971.19,361.84,5229.52,28010.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,4296,65994.0,25.57,2045.87,68065.44,15949.92,12424.5,5552.18,33926.6,101992.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,11765,63366.44,17632.2,5761.66,86760.3,14426.79,9335.05,6891.93,30653.77,117414.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,51757,166171.0,0.0,1584.0,167755.0,33759.84,12424.5,10605.69,56790.03,224545.03 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,28210,16098.01,0.0,0.0,16098.01,0.0,1992.09,1313.71,3305.8,19403.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,165,44.53,0.0,4.45,48.98,0.0,0.0,401.38,401.38,450.36 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,474C,Senior Fiscal Technician,37395,88296.08,0.0,5322.0,93618.08,18337.86,12424.5,7644.76,38407.12,132025.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,30082,65021.42,770.8,0.0,65792.22,13541.58,10560.8,5355.47,29457.85,95250.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,26544,56043.28,74.4,1775.0,57892.68,12875.73,12407.54,4637.69,29920.96,87813.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41611,118507.81,239.75,22818.53,141566.09,27408.57,10941.62,10100.48,48450.67,190016.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,3206,128765.62,0.0,0.0,128765.62,25915.32,12412.56,9507.3,47835.18,176600.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,23888,79722.0,8116.38,973.0,88811.38,16640.77,12424.47,6732.28,35797.52,124608.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8177,94431.32,964.8,19792.74,115188.86,21729.9,9614.0,9231.56,40575.46,155764.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11447,113223.01,3522.2,15063.04,131808.25,24357.18,15196.11,2172.13,41725.42,173533.67 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,21316,959.0,0.0,0.0,959.0,247.4,238.93,86.65,572.98,1531.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44455,9722.71,473.54,52.98,10249.23,2330.24,2973.7,783.33,6087.27,16336.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49381,34512.01,987.5,919.64,36419.15,7460.41,3822.93,613.61,11896.95,48316.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46521,20564.89,41.33,614.78,21221.0,1373.96,8882.33,1720.05,11976.34,33197.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,48071,87153.35,0.0,0.0,87153.35,17766.82,11211.2,6816.16,35794.18,122947.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,9800,19191.75,960.3,1323.53,21475.58,0.0,4671.14,1665.6,6336.74,27812.32 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,13228,31596.48,0.0,1483.73,33080.21,7894.72,7792.2,2702.66,18389.58,51469.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,1396,3132.0,0.0,74.9,3206.9,719.31,477.86,248.28,1445.45,4652.35 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,7221,71985.41,0.0,3411.41,75396.82,14894.33,11971.54,6273.68,33139.55,108536.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35348,11183.92,0.0,0.0,11183.92,0.0,4849.74,895.74,5745.48,16929.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29682,138633.93,12459.8,20511.01,171604.74,27400.21,12424.5,2924.42,42749.13,214353.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",4518,179465.29,6022.83,16709.93,202198.05,38536.79,12424.5,3402.97,54364.26,256562.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24820,17171.52,0.0,817.08,17988.6,1345.59,7432.89,1460.89,10239.37,28227.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20657,41331.64,0.0,0.0,41331.64,10104.63,10035.18,3365.93,23505.74,64837.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4989,5531.63,0.0,938.73,6470.36,275.77,0.0,96.81,372.58,6842.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3223,119461.71,59102.0,13432.92,191996.63,23641.93,12424.5,3164.56,39230.99,231227.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2114,Medical Records Tech Sprv,47261,83699.0,723.38,624.0,85046.38,17379.24,12424.5,7049.72,36853.46,121899.84 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),9075,164204.0,0.0,1500.0,165704.0,33325.23,12424.5,10572.8,56322.53,222026.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19149,99979.05,8214.76,17630.03,125823.84,0.0,7739.93,9453.52,17193.45,143017.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,377.0,"Iron Workers, Local 377",7300,Journeyman Trade,7395,Ornamental Iron Worker,9613,83699.02,0.0,2152.92,85851.94,17609.79,12424.54,7007.07,37041.4,122893.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25843,11438.61,0.0,85.35,11523.96,0.0,4898.12,932.28,5830.4,17354.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",40092,150233.97,26610.97,13718.7,190563.64,32292.23,15196.12,3179.2,50667.55,241231.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7375,"Aprntc Statnry Eng, Sew Plant",38969,7212.0,0.0,102.17,7314.17,1608.39,1433.6,582.73,3624.72,10938.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51143,1188.25,0.0,30.38,1218.63,0.0,579.41,94.58,673.99,1892.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,14651,84644.01,17365.69,5631.42,107641.12,17580.63,12424.5,8765.23,38770.36,146411.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,28598,51405.0,9.21,3326.55,54740.76,12494.48,12424.5,4274.61,29193.59,83934.35 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,17867,40149.84,0.0,560.24,40710.08,9097.37,5514.87,3390.35,18002.59,58712.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16183,81719.49,12844.5,5746.08,100310.07,17043.41,12376.71,1672.25,31092.37,131402.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,10430,61703.31,0.0,1440.0,63143.31,12854.31,10990.91,5118.22,28963.44,92106.75 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,49646,143188.0,0.0,0.0,143188.0,28816.76,12424.5,10211.9,51453.16,194641.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,28500,52617.78,240.06,283.76,53141.6,10810.27,10462.39,4169.6,25442.26,78583.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38922,112694.9,36239.07,17713.32,166647.29,24771.62,14957.19,2841.56,42570.37,209217.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4543,20756.52,3237.89,190.4,24184.81,5071.93,6432.19,1829.63,13333.75,37518.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,44241,166171.02,0.0,200.0,166371.02,33441.88,12424.5,10398.34,56264.72,222635.74 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,11127,96772.0,0.0,0.0,96772.0,18140.01,7024.62,12334.43,37499.06,134271.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40622,8334.97,0.0,0.0,8334.97,0.0,3614.33,645.29,4259.62,12594.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,48159,52059.02,0.0,525.6,52584.62,10660.23,10465.25,4373.04,25498.52,78083.14 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0903,Mayoral Staff XV,40077,108565.4,0.0,0.0,108565.4,21848.91,12424.5,25786.58,60059.99,168625.39 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,22310,81130.52,5898.05,10358.6,97387.17,17694.65,10752.39,7916.16,36363.2,133750.37 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1362,Special Assistant 3,41251,1853.0,0.0,0.0,1853.0,407.47,477.86,143.82,1029.15,2882.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2924,Medical Social Work Supervisor,37632,52710.15,0.0,0.0,52710.15,11403.94,7294.74,4055.31,22753.99,75464.14 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,10041,47955.03,40.33,1311.6,49306.96,10707.28,10589.09,3664.48,24960.85,74267.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,10346,42101.73,2246.3,2563.6,46911.63,10071.1,11916.77,3532.16,25520.03,72431.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,33854,112353.96,25834.61,11304.21,149492.78,24654.77,15196.13,2448.33,42299.23,191792.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,22283,3475.09,91.77,6242.94,9809.8,779.46,508.92,786.82,2075.2,11885.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,10809,71321.43,0.0,0.0,71321.43,6928.99,11394.1,3486.55,21809.64,93131.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50801,43912.07,4313.77,556.46,48782.3,11517.01,12945.31,3698.32,28160.64,76942.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,46475,117140.94,23410.31,15730.25,156281.5,23164.17,12424.5,2617.11,38205.78,194487.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,22345,23210.81,1880.12,1902.91,26993.84,5900.29,6180.36,1920.49,14001.14,40994.98 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,24251,88805.49,0.0,4698.0,93503.49,18304.02,12424.5,7760.82,38489.34,131992.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47745,61486.23,15725.11,4036.41,81247.75,17860.5,12108.28,6293.91,36262.69,117510.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7463,Utility Plumber Apprentice,52931,72156.65,25054.48,5790.43,103001.56,14804.7,12030.24,7977.01,34811.95,137813.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6475,56531.0,0.0,1641.45,58172.45,11667.81,12424.5,4680.84,28773.15,86945.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,27839,79478.4,19219.51,7152.49,105850.4,17620.29,12424.51,8638.37,38683.17,144533.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,1649,11508.0,0.0,0.0,11508.0,2141.64,1433.6,710.5,4285.74,15793.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,38780,10953.0,37.85,1618.85,12609.7,2637.44,2867.19,999.9,6504.53,19114.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2820,Senior Health Program Planner,40641,89799.43,0.0,0.0,89799.43,18478.88,12424.5,7147.96,38051.34,127850.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19715,44484.42,3682.8,1158.01,49325.23,11819.02,13113.82,3523.97,28456.81,77782.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,10692,91004.0,0.0,2882.66,93886.66,19352.13,12424.5,7484.58,39261.21,133147.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,38469,53796.9,1977.41,5893.62,61667.93,12639.81,12233.36,4770.91,29644.08,91312.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4429,143142.99,56818.44,8535.19,208496.62,28298.3,12370.74,2921.79,43590.83,252087.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49302,14731.52,0.0,261.54,14993.06,3557.75,2917.19,1157.59,7632.53,22625.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36101,123499.79,12332.85,8365.06,144197.7,0.0,10637.76,2446.6,13084.36,157282.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",49733,9232.2,0.0,0.0,9232.2,0.0,2198.18,716.57,2914.75,12146.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,37210,3366.22,0.0,36.79,3403.01,0.0,1573.96,263.97,1837.93,5240.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,28252,48163.6,0.0,1020.0,49183.6,11787.44,12424.5,3890.47,28102.41,77286.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38896,69189.24,32039.46,1994.22,103222.92,19517.22,13634.58,7866.1,41017.9,144240.82 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),40905,115614.2,0.0,1500.0,117114.2,23561.39,12424.5,9445.96,45431.85,162546.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,36467,495.9,0.0,11.71,507.61,0.0,215.04,39.39,254.43,762.04 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,43167,60178.82,0.0,0.0,60178.82,12078.34,0.0,5084.89,17163.23,77342.05 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,33711,112209.01,0.0,0.0,112209.01,22582.31,12424.5,9105.86,44112.67,156321.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40539,77071.02,0.0,1520.0,78591.02,16195.9,12424.5,6414.09,35034.49,113625.51 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,28961,66959.65,0.0,0.0,66959.65,13777.72,12424.5,5195.64,31397.86,98357.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48502,51477.0,0.0,3659.82,55136.82,13218.1,12424.5,4352.94,29995.54,85132.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,16303,14785.52,590.89,362.13,15738.54,3532.82,3152.53,1332.32,8017.67,23756.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,38860,126994.06,0.0,6300.77,133294.83,26826.25,12424.47,9960.89,49211.61,182506.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,24785,79691.83,7599.9,4652.02,91943.75,16865.34,12400.61,1515.46,30781.41,122725.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,46731,4457.34,0.0,46.49,4503.83,927.52,925.63,573.33,2426.48,6930.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,423,102777.8,0.0,250.0,103027.8,20424.22,10895.34,8261.43,39580.99,142608.79 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,49627,67261.1,0.0,1424.0,68685.1,14153.83,12424.5,5639.48,32217.81,100902.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7100,Administrative-Labor & Trades,7126,Mech Shop & Equip Supt,31463,107978.01,103291.87,22538.2,233808.08,25789.32,12424.5,11686.42,49900.24,283708.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19916,42228.22,3336.68,2249.87,47814.77,11532.5,13142.07,3623.5,28298.07,76112.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,15109,63008.26,953.86,9296.4,73258.52,14202.32,11146.21,5972.39,31320.92,104579.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14786,39685.0,5577.52,886.38,46148.9,10502.71,12409.33,3499.29,26411.33,72560.23 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,37597,15198.0,0.0,0.0,15198.0,3921.06,2867.19,1240.1,8028.35,23226.35 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2326,Nursing Supervisor Psychiatric,38093,205167.0,0.0,38981.73,244148.73,45419.07,12424.5,11912.07,69755.64,313904.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5949,3148.25,0.0,0.0,3148.25,0.0,1535.15,244.21,1779.36,4927.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,44425,11731.14,63.83,0.0,11794.97,0.0,3255.75,915.38,4171.13,15966.1 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,5521,905.44,312.79,0.0,1218.23,0.0,246.4,94.55,340.95,1559.18 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5275,Planner Technician,27200,2449.01,0.0,12245.0,14694.01,549.31,477.86,1130.21,2157.38,16851.39 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8118,Legislation Clerk,9371,70404.03,1206.91,0.0,71610.94,14503.64,12424.5,5685.23,32613.37,104224.31 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3232,Marina Assistant Manager,27394,53414.2,552.19,1820.49,55786.88,12818.46,12424.85,4524.78,29768.09,85554.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,14370,7155.9,0.0,0.0,7155.9,0.0,1505.27,555.41,2060.68,9216.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,40761,76843.81,363.85,234.05,77441.71,16311.05,9461.75,5890.07,31662.87,109104.58 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,1930,193809.54,0.0,0.0,193809.54,39004.57,12424.5,26059.77,77488.84,271298.38 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,37351,2279.7,0.0,38.0,2317.7,431.32,430.07,179.88,1041.27,3358.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,29411,97934.01,0.0,1291.81,99225.82,20453.85,12424.5,7588.39,40466.74,139692.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35162,16465.9,0.0,43.25,16509.15,0.0,5462.59,1279.72,6742.31,23251.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,1397,136594.4,5260.28,7278.01,149132.69,27007.42,12424.5,2357.11,41789.03,190921.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,20348,40586.65,8732.78,1733.0,51052.43,7939.63,7543.83,4128.03,19611.49,70663.92 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,1242,150383.3,0.0,6612.68,156995.98,31086.13,8828.8,10384.93,50299.86,207295.84 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8240,Pub Safety Communication Coord,26537,109828.26,17830.39,9212.97,136871.62,23966.15,12334.91,10060.66,46361.72,183233.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11997,40732.3,13146.52,3338.54,57217.36,12814.48,8100.36,4144.77,25059.61,82276.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48772,112329.75,1437.19,17249.19,131016.13,17644.12,10899.27,6347.1,34890.49,165906.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,17244,38607.5,0.0,1025.0,39632.5,7923.4,2410.23,3281.7,13615.33,53247.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,49147,27373.5,0.0,0.0,27373.5,6803.51,8279.02,2203.17,17285.7,44659.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",28061,82377.35,17514.53,5828.78,105720.66,17501.49,12400.61,8349.8,38251.9,143972.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,44844,53315.08,69.69,250.0,53634.77,10873.35,10541.83,5230.05,26645.23,80280.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47994,32723.28,20130.76,3259.18,56113.22,8922.12,6382.74,4391.68,19696.54,75809.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41614,17555.6,0.0,0.0,17555.6,600.6,7550.27,1421.68,9572.55,27128.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,25313,61735.0,0.0,168.0,61903.0,12755.27,12424.5,5133.18,30312.95,92215.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6015,8958.4,0.0,0.0,8958.4,0.0,764.58,695.31,1459.89,10418.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53079,48227.62,1912.83,650.33,50790.78,12984.03,9475.29,3645.37,26104.69,76895.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,27545,66609.01,0.0,0.0,66609.01,13861.73,11150.87,5250.61,30263.21,96872.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,41694,58738.66,3571.79,3574.22,65884.67,13751.99,12364.78,5413.88,31530.65,97415.32 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,14806,84516.65,19630.49,3404.42,107551.56,17669.14,12352.82,8606.65,38628.61,146180.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,25206,117135.33,13171.99,20787.16,151094.48,23184.7,12424.49,2245.98,37855.17,188949.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,36056,84644.01,13281.62,10492.85,108418.48,19045.88,12424.5,8814.65,40285.03,148703.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,13903,70393.54,8117.34,7193.27,85704.15,13944.03,8123.71,1440.2,23507.94,109212.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,1848,2352.6,0.0,0.0,2352.6,527.69,286.72,182.13,996.54,3349.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,6244,87531.13,0.0,624.0,88155.13,18169.32,12424.5,7017.74,37611.56,125766.69 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,31373,97765.57,2355.02,15076.7,115197.29,27438.68,12424.5,1952.73,41815.91,157013.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0402,Deputy Chief 3,19673,92988.01,0.0,142428.93,235416.94,20415.24,4300.79,6415.98,31132.01,266548.95 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,33508,63529.92,0.0,0.0,63529.92,12996.23,8650.74,5318.15,26965.12,90495.04 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,52490,128169.59,0.0,0.0,128169.59,25814.02,11610.16,18273.21,55697.39,183866.98 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,46452,1452.25,0.0,0.0,1452.25,0.0,119.47,112.72,232.19,1684.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7047,40984.75,6282.51,1388.74,48656.0,12188.56,8170.24,3636.37,23995.17,72651.17 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,22525,2093.76,0.0,0.0,2093.76,0.0,776.53,162.51,939.04,3032.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,38056,28368.0,0.0,2619.61,30987.61,6295.21,3440.63,2403.72,12139.56,43127.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,34086,96254.04,1034.72,231.32,97520.08,17362.64,12424.42,7144.97,36932.03,134452.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,35875,84644.04,35175.45,12597.98,132417.47,18867.58,12424.5,9832.76,41124.84,173542.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",51111,1204.2,0.0,0.0,1204.2,0.0,286.72,93.23,379.95,1584.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5299,Planner 4-Environmental Review,786,115903.63,0.0,2486.17,118389.8,23794.58,11122.31,9636.3,44553.19,162942.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,30032,14670.0,490.11,1096.72,16256.83,2934.18,2389.32,1278.64,6602.14,22858.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,39882,62461.1,10.93,1645.0,64117.03,13188.23,12424.51,4951.37,30564.11,94681.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,49162,63102.0,0.0,1167.81,64269.81,13245.2,12424.5,5073.9,30743.6,95013.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10666,62628.22,4848.94,0.0,67477.16,12898.17,12178.23,5344.66,30421.06,97898.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44913,129446.43,1526.66,16579.14,147552.23,28806.13,11124.71,9112.52,49043.36,196595.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,256,17643.41,0.0,5585.28,23228.69,0.02,0.0,3933.79,3933.81,27162.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44605,97765.31,27254.79,20886.87,145906.97,28135.83,12424.5,2475.92,43036.25,188943.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,45838,10063.5,0.0,313.92,10377.42,0.0,0.0,820.81,820.81,11198.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49160,94646.83,13755.39,7649.88,116052.1,19638.07,12424.51,1925.61,33988.19,150040.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,739,6239.25,0.0,0.0,6239.25,1399.45,1409.71,518.34,3327.5,9566.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19462,88348.99,30713.63,13182.78,132245.4,0.0,6696.09,2218.73,8914.82,141160.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,32876,108038.0,14795.73,17004.17,139837.9,24510.14,12424.5,10071.45,47006.09,186843.99 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,49265,143188.03,0.0,123.14,143311.17,28816.77,12424.5,10264.28,51505.55,194816.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35897,119450.12,3307.37,7626.19,130383.68,24154.2,12424.5,337.76,36916.46,167300.14 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4331,Security Analyst,33084,110858.0,0.0,624.0,111482.0,22436.26,12424.5,9165.61,44026.37,155508.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,49325,61428.0,2036.6,932.3,64396.9,12853.63,12424.5,5263.76,30541.89,94938.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,44935,22690.33,649.8,106.98,23447.11,5727.56,7508.94,1911.12,15147.62,38594.73 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2597,25272.96,2180.75,1294.2,28747.91,4703.31,3345.05,468.97,8517.33,37265.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,45795,11902.0,224.32,440.0,12566.32,0.0,2867.19,992.37,3859.56,16425.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20544,67674.62,10526.63,2188.21,80389.46,15946.0,13338.84,6153.05,35437.89,115827.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1116,53445.64,0.0,4992.1,58437.74,11697.37,11756.02,4786.96,28240.35,86678.09 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,46089,182626.33,0.0,0.0,182626.33,36604.14,12424.5,19221.43,68250.07,250876.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,22424,99602.01,0.0,0.0,99602.01,20528.28,12424.5,8174.53,41127.31,140729.32 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),21327,141978.0,0.0,1500.0,143478.0,28786.14,12424.5,10110.81,51321.45,194799.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46052,3454.08,0.0,0.0,3454.08,0.0,1497.81,274.88,1772.69,5226.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,47729,6534.0,0.0,120.0,6654.0,1492.49,1433.6,549.32,3475.41,10129.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14061,62796.13,22155.96,578.5,85530.59,17229.77,12363.45,6643.61,36236.83,121767.42 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,35437,110332.34,0.0,0.0,110332.34,22440.97,12424.5,17400.94,52266.41,162598.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,29763,113369.09,18556.59,11375.0,143300.68,23546.49,12424.5,10133.21,46104.2,189404.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,4788,58604.18,4577.45,624.0,63805.63,13241.39,12424.5,5244.57,30910.46,94716.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9976,132705.43,2643.71,1216.78,136565.92,214.14,11791.33,9621.77,21627.24,158193.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,251.0,"Transport Workers - Miscellaneous, Local 250-A",3500,Museum & Cultural Affairs,3542,Curator 2,10462,65604.6,0.0,1261.68,66866.28,13779.29,12424.5,5399.32,31603.11,98469.39 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,48161,90825.05,0.0,4720.06,95545.11,19909.97,11176.68,7433.24,38519.89,134065.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,28121,203170.46,0.0,0.0,203170.46,40813.61,11946.64,28422.99,81183.24,284353.7 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,46238,54124.05,0.0,0.0,54124.05,12110.48,12424.5,4407.1,28942.08,83066.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,47230,55793.69,0.0,0.0,55793.69,12472.59,12424.5,4486.25,29383.34,85177.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33885,44710.37,2306.03,1998.74,49015.14,10539.56,12089.63,3859.44,26488.63,75503.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3634,Librarian 3,44097,103283.05,0.0,1544.63,104827.68,21606.05,12424.5,8673.76,42704.31,147531.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30625,54646.1,0.0,7308.56,61954.66,14273.45,12424.5,4966.2,31664.15,93618.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,35917,48372.22,0.0,795.18,49167.4,10065.11,6516.89,11977.74,28559.74,77727.14 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",SFRA,SF Redevelopment Agency,O590,Project Mgr (OCII),8074,36030.01,0.0,0.0,36030.01,7905.0,3583.99,2940.61,14429.6,50459.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36233,112690.88,10529.34,15726.43,138946.65,22311.19,12424.5,2320.57,37056.26,176002.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,1560,75691.41,1083.09,1981.76,78756.26,4280.62,9318.38,6189.97,19788.97,98545.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,30196,135731.58,0.0,0.0,135731.58,27321.64,12424.5,10043.88,49790.02,185521.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9399,10769.5,0.0,393.62,11163.12,2454.78,2819.4,846.2,6120.38,17283.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,34.0,"Pile Drivers, Local 34",7200,Supervisory-Labor & Trade,9330,Pile Worker,46166,92282.0,198.39,218.0,92698.39,19065.63,12424.5,7290.0,38780.13,131478.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45415,45022.56,25.64,7494.6,52542.8,349.4,3180.79,5478.19,9008.38,61551.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,50614,55047.8,0.0,334.5,55382.3,13179.16,12424.5,4251.66,29855.32,85237.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,1739,116976.0,0.0,7874.89,124850.89,24827.04,12424.47,9845.3,47096.81,171947.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,5381,100554.0,0.0,0.0,100554.0,20724.83,12424.5,8033.52,41182.85,141736.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46386,46349.14,244.75,7432.95,54026.84,9750.68,4454.9,4305.77,18511.35,72538.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,44269,34955.4,814.1,5487.13,41256.63,8075.69,6594.55,3399.07,18069.31,59325.94 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,14306,84353.36,0.0,1451.99,85805.35,17755.86,9515.5,6942.18,34213.54,120018.89 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,8115,145099.58,0.0,18752.57,163852.15,30286.24,8852.46,10316.44,49455.14,213307.29 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,474C,Senior Fiscal Technician,12755,64680.04,0.0,3000.0,67680.04,13060.55,10035.18,5602.46,28698.19,96378.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,48289,47627.13,6899.67,3532.02,58058.82,9936.98,8816.61,1513.34,20266.93,78325.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,23703,51665.0,893.2,1968.22,54526.42,12286.49,12424.5,4371.02,29082.01,83608.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,8633,94680.69,4036.29,6778.48,105495.46,19600.25,12424.5,1758.63,33783.38,139278.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,42840,59489.12,8775.49,2097.05,70361.66,12306.97,12424.5,5299.72,30031.19,100392.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2736,112680.08,2377.86,7240.72,122298.66,22350.67,12424.5,2046.15,36821.32,159119.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9602,605.54,227.08,0.0,832.62,171.37,0.0,65.77,237.14,1069.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",9200,Airport Operation,9255,Airport Economic Planner,37403,125284.03,0.0,0.0,125284.03,25213.79,12424.5,9921.39,47559.68,172843.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5174,Administrative Engineer,34148,64854.01,0.0,0.0,64854.01,2569.92,6690.12,5209.72,14469.76,79323.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,12117,32396.7,0.0,57.83,32454.53,7780.61,8001.25,2651.83,18433.69,50888.22 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,20941,47663.79,364.66,3752.29,51780.74,10216.04,8982.08,4257.11,23455.23,75235.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,43670,111918.03,8835.03,1806.2,122559.26,22603.45,12424.49,9826.81,44854.75,167414.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,13356,37458.66,3114.88,1.7,40575.24,3182.4,10441.35,3184.92,16808.67,57383.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,34585,16521.99,459.23,554.58,17535.8,0.0,4142.97,1361.06,5504.03,23039.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31467,8265.68,0.0,0.0,8265.68,2132.55,1867.56,1854.02,5854.13,14119.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3160,69833.86,0.0,10638.11,80471.97,17112.67,12351.33,6363.61,35827.61,116299.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,51525,75927.02,0.0,624.0,76551.02,15777.43,12424.5,6347.24,34549.17,111100.19 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,9967,2337.0,0.0,0.0,2337.0,434.92,477.86,181.39,1094.17,3431.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,31746,143188.0,0.0,0.0,143188.0,28816.76,12424.5,10253.55,51494.81,194682.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,20687,118427.0,0.0,0.0,118427.0,23833.74,12424.5,18125.09,54383.33,172810.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,11099,3027.0,0.0,60.0,3087.0,574.49,477.86,210.91,1263.26,4350.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42061,23560.11,1776.56,618.21,25954.88,5968.95,7322.28,1977.17,15268.4,41223.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,26396,139740.13,16540.35,6819.32,163099.8,27616.96,12424.5,2768.66,42810.12,205909.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,17789,23349.95,0.0,36.45,23386.4,0.0,6248.09,1813.16,8061.25,31447.65 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,5056,75040.03,0.0,18722.01,93762.04,15928.5,9557.31,7618.02,33103.83,126865.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",43022,124695.3,0.0,0.0,124695.3,24560.58,10035.17,14052.48,48648.23,173343.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2618,Food Service Supervisor,40093,27001.85,905.36,927.8,28835.01,6171.92,5323.12,2353.53,13848.57,42683.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,9932,68018.26,25.17,0.0,68043.43,14018.07,12415.54,5350.79,31784.4,99827.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,19582,97424.0,1559.43,200.0,99183.43,20119.13,12424.58,7984.72,40528.43,139711.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6323,Permit Technician III,23240,71639.03,347.96,920.0,72906.99,14782.71,10990.91,6027.4,31801.02,104708.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,48538,5524.04,0.0,417.22,5941.26,0.0,1699.41,460.64,2160.05,8101.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,33223,78610.02,0.0,1620.82,80230.84,16534.51,12424.5,6597.13,35556.14,115786.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,5597,74165.0,1435.53,480.0,76080.53,15382.16,12424.5,6127.95,33934.61,110015.14 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,15503,121472.0,0.0,3000.0,124472.0,24461.52,12424.5,32190.53,69076.55,193548.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,26692,64644.79,0.0,596.85,65241.64,13444.0,12424.5,5292.87,31161.37,96403.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6471,124837.11,83329.94,11307.64,219474.69,24722.54,12424.5,3689.84,40836.88,260311.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,50802,68722.0,308.63,0.0,69030.63,14164.02,12424.5,5724.34,32312.86,101343.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",21603,1196.0,0.0,0.0,1196.0,0.0,71.44,92.72,164.16,1360.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",40739,13680.2,0.0,0.0,13680.2,0.0,3243.51,1061.41,4304.92,17985.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10304,39467.5,317.25,0.0,39784.75,8287.74,8840.5,2969.73,20097.97,59882.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,34368,9506.71,0.0,0.0,9506.71,2095.64,955.73,1096.15,4147.52,13654.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,19201,73608.03,0.0,0.0,73608.03,14211.98,8123.71,5908.26,28243.95,101851.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46662,115524.18,24709.88,18228.38,158462.44,26442.03,13905.89,2649.89,42997.81,201460.25 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,39634,6965.93,131.08,0.0,7097.01,0.0,0.0,561.44,561.44,7658.45 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,50940,60608.64,0.0,3000.0,63608.64,12693.8,10119.76,5339.54,28153.1,91761.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",16824,93738.04,18663.44,4698.23,117099.71,19815.13,12424.5,9373.0,41612.63,158712.34 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,14482,119066.03,4525.97,3331.32,126923.32,29763.92,12424.5,2013.92,44202.34,171125.66 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,36529,74880.01,0.0,622.8,75502.81,15564.61,12400.61,6009.09,33974.31,109477.12 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,35228,67261.0,11454.53,510.65,79226.18,13872.64,12424.5,6515.24,32812.38,112038.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26156,77856.3,742.11,1445.18,80043.59,15750.04,11946.64,4315.5,32012.18,112055.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16714,138568.97,49321.91,39092.56,226983.44,27381.04,12418.53,3817.26,43616.83,270600.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19875,20632.31,0.0,0.0,20632.31,1374.64,8885.32,1599.52,11859.48,32491.79 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,6497,2161.69,0.0,38.43,2200.12,0.0,376.31,170.76,547.07,2747.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,37595,3032.1,0.0,0.0,3032.1,680.1,430.07,234.75,1344.92,4377.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,19210,116976.1,0.0,0.0,116976.1,23537.22,12424.5,9184.98,45146.7,162122.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19330,59257.32,3158.5,918.17,63333.99,13548.9,11663.44,4775.91,29988.25,93322.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21968,637.79,0.0,45.97,683.76,130.76,0.0,41.16,171.92,855.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,52097,79395.08,0.0,1480.0,80875.08,16663.02,12424.51,6589.75,35677.28,116552.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,48661,85054.97,0.0,0.0,85054.97,17449.42,11468.78,6769.3,35687.5,120742.47 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,20596,44537.36,0.0,3910.62,48447.98,10061.37,6360.69,4014.49,20436.55,68884.53 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,816,110039.8,19513.25,11613.55,141166.6,24220.39,15196.12,2334.67,41751.18,182917.78 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,39514,87490.4,1597.13,75.0,89162.53,19985.5,12424.5,1494.07,33904.07,123066.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,3118,81847.64,8213.88,9742.37,99803.89,18504.72,12014.62,7968.35,38487.69,138291.58 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,43099,32804.0,0.0,717.57,33521.57,6238.37,4300.79,2681.4,13220.56,46742.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,24635,63841.32,183.16,1204.2,65228.68,13405.46,12415.54,5250.77,31071.77,96300.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,20314,80114.31,0.0,1040.0,81154.31,16717.16,12424.5,6188.96,35330.62,116484.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,27434,110041.05,0.0,660.0,110701.05,22284.67,12424.5,9369.44,44078.61,154779.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28923,67194.34,8718.81,7003.34,82916.49,20353.17,13240.1,6217.67,39810.94,122727.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,33151,148814.05,2737.61,12721.06,164272.72,29844.46,12400.61,5376.75,47621.82,211894.54 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",29170,70422.55,14697.54,4704.16,89824.25,17166.35,12424.5,1312.46,30903.31,120727.56 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,15299,85058.73,0.0,1200.0,86258.73,17741.59,12424.5,6946.33,37112.42,123371.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8686,14506.0,907.26,462.39,15875.65,0.0,6212.25,1258.7,7470.95,23346.6 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,23913,97728.04,9847.28,18085.37,125660.69,28176.84,12419.79,2094.35,42690.98,168351.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23588,85079.1,976.05,309.64,86364.79,16733.79,9294.49,6659.78,32688.06,119052.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,44204,20162.36,0.0,0.0,20162.36,1169.83,8682.22,1563.23,11415.28,31577.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6138,45864.09,2708.26,2568.99,51141.34,10711.33,9004.36,3898.98,23614.67,74756.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7227,Cement Finisher Supervisor 1,41116,100780.59,5936.96,609.0,107326.55,20947.31,12125.89,8866.79,41939.99,149266.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36378,975.15,0.0,32.51,1007.66,0.0,0.0,64.67,64.67,1072.33 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,48378,151714.2,0.0,0.0,151714.2,30909.66,12424.5,18662.33,61996.49,213710.69 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,36396,95259.42,0.0,0.0,95259.42,19593.99,12424.5,7607.81,39626.3,134885.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,442,81464.55,6710.16,9751.47,97926.18,18811.77,12352.8,7809.8,38974.37,136900.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20251,117971.97,278.0,10867.15,129117.12,22563.01,11103.21,9859.16,43525.38,172642.5 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,3232,80138.75,5627.04,9457.88,95223.67,17532.25,12412.56,7670.2,37615.01,132838.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49458,67592.09,21473.78,7446.4,96512.27,20591.35,13321.28,7335.45,41248.08,137760.35 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1064,IS Prg Analyst-Principal,761,9052.01,0.0,0.0,9052.01,1986.01,955.74,733.26,3675.01,12727.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,402,77856.3,1052.68,1166.42,80075.4,15750.04,11946.64,4307.6,32004.28,112079.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15993,2486.39,0.0,0.0,2486.39,0.0,1078.19,192.49,1270.68,3757.07 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),16905,82813.34,3552.98,8695.3,95061.62,18292.15,12424.51,1576.07,32292.73,127354.35 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,16242,77729.01,0.0,159.55,77888.56,16029.48,12424.5,5928.58,34382.56,112271.12 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",26022,90806.19,37597.39,11827.82,140231.4,19248.75,10465.26,2359.82,32073.83,172305.23 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1381,Special Assistant 22,26237,14949.17,0.0,0.0,14949.17,0.0,885.54,1157.93,2043.47,16992.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,10966,68673.61,1050.62,0.0,69724.23,14154.37,12415.85,5722.86,32293.08,102017.31 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,22686,84599.09,0.0,2631.92,87231.01,17993.18,12424.5,7099.57,37517.25,124748.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,22560,61735.01,988.08,624.0,63347.09,12852.62,12424.5,5122.44,30399.56,93746.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14495,4358.13,0.0,34.38,4392.51,0.0,1084.15,340.54,1424.69,5817.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24343,44277.3,0.0,0.0,44277.3,0.0,0.0,3502.5,3502.5,47779.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37834,64851.33,17924.82,3134.87,85911.02,18652.9,12779.37,6455.01,37887.28,123798.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31095,75457.0,478.41,1500.0,77435.41,15832.84,12408.96,6363.49,34605.29,112040.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37801,81.04,0.0,0.9,81.94,18.38,17.92,172.44,208.74,290.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,44810,26640.0,599.4,705.6,27945.0,5089.02,4300.81,2274.08,11663.91,39608.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,2937,63887.01,2215.19,108.0,66210.2,13190.48,12424.5,5452.95,31067.93,97278.13 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,28056,170335.02,0.0,0.0,170335.02,34279.7,12424.5,17947.22,64651.42,234986.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,25760,58269.92,14369.29,2385.09,75024.3,13318.11,12273.7,5973.16,31564.97,106589.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33975,61621.91,3747.95,715.17,66085.03,14099.34,12132.16,4824.12,31055.62,97140.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,3256,64324.02,0.0,0.0,64324.02,13353.44,9110.15,5110.4,27573.99,91898.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,19463,52597.92,0.0,595.36,53193.28,10946.92,9211.71,4227.69,24386.32,77579.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9747,7762.84,0.0,84.24,7847.08,0.0,2581.97,608.48,3190.45,11037.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,40035,15643.18,0.0,0.0,15643.18,4035.95,3817.84,1301.12,9154.91,24798.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,16454,106116.0,0.0,4516.97,110632.97,22802.7,12424.53,8281.04,43508.27,154141.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14828,97390.81,2881.06,12870.33,113142.2,26842.69,12376.73,1882.5,41101.92,154244.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,45042,55264.29,10198.18,2369.35,67831.82,11465.42,10972.45,5238.62,27676.49,95508.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,10045,55855.0,327.53,1799.73,57982.26,12595.86,12424.5,4671.61,29691.97,87674.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,35327,47154.21,0.0,0.0,47154.21,9924.36,12424.5,3805.31,26154.17,73308.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8312,Sheriff's Captain,39738,156528.01,11252.92,13524.59,181305.52,41348.78,12424.5,3037.94,56811.22,238116.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,10806,64185.49,8877.84,2379.9,75443.23,13247.56,12361.42,6163.15,31772.13,107215.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,98,33798.24,4390.78,1097.57,39286.59,8963.5,10545.47,2824.7,22333.67,61620.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36057,73603.35,4428.24,5196.36,83227.95,15586.29,15196.11,1385.53,32167.93,115395.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,52084,81534.15,33251.34,5366.09,120151.58,17063.18,11930.27,9565.58,38559.03,158710.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,41290,61630.0,2616.53,2383.66,66630.19,14024.99,12424.48,5389.51,31838.98,98469.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,35625,6537.27,0.0,0.0,6537.27,0.0,1977.16,506.11,2483.27,9020.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,2035,2205.01,0.0,0.0,2205.01,0.0,1075.2,170.99,1246.19,3451.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),20900,50169.36,23479.13,5058.31,78706.8,10485.08,7645.85,1317.58,19448.51,98155.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,39065,138301.04,0.0,0.0,138301.04,27809.66,12424.5,17416.23,57650.39,195951.43 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,36809,21097.01,0.0,145.97,21242.98,3953.32,3345.06,1711.39,9009.77,30252.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13360,1342.6,0.0,67.13,1409.73,0.0,95.58,65.25,160.83,1570.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,45047,82033.57,0.0,1300.0,83333.57,16992.21,11285.57,6736.02,35013.8,118347.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,14435,15807.01,0.0,1176.9,16983.91,3545.52,2628.26,1385.96,7559.74,24543.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,52763,85368.08,0.0,560.0,85928.08,17721.21,12424.5,7121.29,37267.0,123195.08 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1764,Mail & Reproduction Svc Sprv,23977,76439.81,0.0,0.0,76439.81,15722.61,11815.17,6094.66,33632.44,110072.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",SFRA,SF Redevelopment Agency,O840,Harbor Attendant (OCII),13874,42556.03,0.0,150.83,42706.86,10024.67,10035.18,3713.78,23773.63,66480.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5639,111217.66,535.89,10468.58,122222.13,21317.99,11014.8,8382.06,40714.85,162936.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,37576,1086.84,0.0,0.0,1086.84,0.0,319.58,210.03,529.61,1616.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,6421,10757.75,1306.5,1495.21,13559.46,1909.88,955.73,226.62,3092.23,16651.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,38178,29136.0,127.35,30.74,29294.09,6718.05,8123.71,2373.94,17215.7,46509.79 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,13923,583.01,0.0,56.63,639.64,143.47,125.44,54.88,323.79,963.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17887,82687.13,136.81,22466.54,105290.48,19048.97,6855.82,6804.6,32709.39,137999.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27736,1681.76,0.0,3.72,1685.48,0.0,648.1,130.49,778.59,2464.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43979,130553.98,6009.37,11716.06,148279.41,0.0,0.0,2535.27,2535.27,150814.68 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,31859,75951.17,42.76,581.15,76575.08,15687.55,12242.86,6091.93,34022.34,110597.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,32813,103456.83,20605.07,5172.84,129234.74,22364.52,12424.51,9881.76,44670.79,173905.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,8735,92001.3,43143.92,5473.11,140618.33,19158.49,12424.52,10092.41,41675.42,182293.75 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,41634,28723.92,0.0,1166.36,29890.28,6149.03,5780.56,2480.39,14409.98,44300.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,29211,48532.02,11318.81,1839.17,61690.0,9808.27,9079.44,4844.35,23732.06,85422.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,51027,145200.08,0.0,0.0,145200.08,29221.74,12424.5,10283.05,51929.29,197129.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,4230,78100.41,0.0,0.0,78100.41,16069.44,12424.52,6478.17,34972.13,113072.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17273,94323.96,1815.73,1050.0,97189.69,19057.56,7861.97,7868.53,34788.06,131977.75 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,15217,96930.03,0.0,0.0,96930.03,19977.61,12424.5,7928.37,40330.48,137260.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10533,58583.81,2611.71,5911.1,67106.62,13290.5,11389.62,5165.59,29845.71,96952.33 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0902,Mayoral Staff XIV,31762,79048.32,0.0,0.0,79048.32,15899.27,9742.48,14872.86,40514.61,119562.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,13260,81990.92,16178.19,17371.11,115540.22,19362.67,11068.73,9215.07,39646.47,155186.69 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,17496,81928.24,6009.18,1414.05,89351.47,17156.01,12280.48,7013.2,36449.69,125801.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,5328,91613.83,70810.32,11957.5,174381.65,20376.0,12372.95,10633.04,43381.99,217763.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,2746,64310.61,0.0,0.0,64310.61,13254.18,12424.5,5232.02,30910.7,95221.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30523,2943.57,0.0,21.63,2965.2,2693.03,244.85,84.31,3022.19,5987.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,42595,11256.0,0.0,4093.43,15349.43,2904.06,2867.19,1207.83,6979.08,22328.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9991,43334.73,2926.1,1061.42,47322.25,11751.99,8512.21,3704.01,23968.21,71290.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,41419,62461.04,5979.04,3546.59,71986.67,13157.54,12423.01,5658.45,31239.0,103225.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23853,51444.47,10119.37,4040.81,65604.65,11120.67,5698.54,1087.16,17906.37,83511.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28958,36083.41,4446.42,877.55,41407.38,9570.61,11271.24,3150.72,23992.57,65399.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6905,1143.33,0.0,0.0,1143.33,0.0,495.79,88.75,584.54,1727.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42228,108672.01,26435.74,21253.96,156361.71,24379.96,14587.14,2653.78,41620.88,197982.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,172,7254.13,0.0,61.31,7315.44,0.0,2625.28,591.57,3216.85,10532.29 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,9217,73142.97,0.0,578.23,73721.2,15311.51,11513.15,5972.06,32796.72,106517.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,9436,85368.06,0.0,1824.0,87192.06,17975.94,12424.5,7225.88,37626.32,124818.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,2536,96756.35,0.0,0.0,96756.35,19933.36,12402.11,7902.71,40238.18,136994.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,45737,65956.35,405.0,0.0,66361.35,13521.8,11946.64,5256.71,30725.15,97086.5 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,27249,4371.9,0.0,0.0,4371.9,792.62,286.72,339.33,1418.67,5790.57 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,29241,21852.0,0.0,260.0,22112.0,4066.65,2867.19,5274.9,12208.74,34320.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,7263,Maintenance Manager,44054,122055.0,0.0,0.0,122055.0,24513.98,12424.5,24778.22,61716.7,183771.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,18642,119463.8,51199.36,10390.81,181053.97,23633.47,12424.5,3076.51,39134.48,220188.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33866,97775.22,63231.99,10490.55,171497.76,26311.73,12424.5,2876.26,41612.49,213110.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,10145,64195.1,0.0,0.0,64195.1,13914.39,8123.72,5279.29,27317.4,91512.5 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,2985,4976.46,0.0,0.0,4976.46,833.02,304.64,83.66,1221.32,6197.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,31684,11592.0,0.0,0.0,11592.0,2990.76,2867.19,925.1,6783.05,18375.05 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,1243,77900.6,0.0,0.0,77900.6,14936.21,0.0,11239.89,26176.1,104076.7 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2577,Med Examiner's Investigator I,31016,65233.84,10663.63,393.15,76290.62,11896.39,12200.5,5847.13,29944.02,106234.64 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11925,97629.64,2549.68,13848.31,114027.63,27101.83,12407.83,1879.15,41388.81,155416.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9181,"Manager VII, MTA",7713,166480.91,0.0,0.0,166480.91,33493.96,12424.5,17875.57,63794.03,230274.94 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",44950,93281.06,800.05,2826.2,96907.31,19808.63,12424.5,8531.67,40764.8,137672.11 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2105,Patient Svcs Finance Tech,49059,56722.02,0.0,611.75,57333.77,11751.21,11384.37,4520.84,27656.42,84990.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4657,72664.27,52648.2,4832.79,130145.26,15558.36,15052.76,2115.61,32726.73,162871.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",21293,29675.4,0.0,0.0,29675.4,0.0,6211.95,2302.85,8514.8,38190.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45514,16819.83,0.0,0.0,16819.83,3049.43,1542.72,662.76,5254.91,22074.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38711,760.75,0.0,5.73,766.48,0.0,253.86,59.49,313.35,1079.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,3890,28553.82,0.0,0.0,28553.82,7270.74,7167.98,2321.58,16760.3,45314.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1218,Payroll Supervisor,2360,97424.11,0.0,0.0,97424.11,20090.24,12424.5,8030.63,40545.37,137969.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,4674,84644.0,27181.1,3978.68,115803.78,17621.65,12424.5,9010.38,39056.53,154860.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,45529,10548.91,15.14,0.0,10564.05,0.0,3150.92,820.44,3971.36,14535.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,30310,72415.5,420.0,0.0,72835.5,16234.6,12185.57,5725.36,34145.53,106981.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50773,66102.0,19391.57,5177.97,90671.54,14595.53,12424.51,7395.27,34415.31,125086.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,43884,108038.0,34994.64,16554.07,159586.71,24491.42,12424.5,10348.36,47264.28,206850.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19010,147392.15,0.0,9813.13,157205.28,30221.05,12281.38,5944.98,48447.41,205652.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,15352,67481.6,0.0,618.6,68100.2,14047.69,12316.98,5648.04,32012.71,100112.91 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,17675,154851.18,0.0,0.0,154851.18,30882.57,11468.75,17706.37,60057.69,214908.87 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",8770,198139.05,0.0,1562.5,199701.55,40190.29,12424.5,11047.17,63661.96,263363.51 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,37288,716.66,355.8,0.0,1072.46,0.0,212.06,83.24,295.3,1367.76 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,17621,34270.23,0.0,996.4,35266.63,8462.34,9563.28,2816.31,20841.93,56108.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,39546,15663.82,0.0,0.0,15663.82,4041.27,3822.92,1302.75,9166.94,24830.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,46943,84734.07,9730.79,3147.43,97612.29,18336.33,11110.26,7834.11,37280.7,134892.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10188,67750.62,26723.13,560.81,95034.56,18669.46,13343.33,7217.68,39230.47,134265.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33840,66585.37,247.51,1812.38,68645.26,18754.27,13121.17,5132.65,37008.09,105653.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",13474,17914.94,0.0,0.0,17914.94,0.0,3769.17,1347.85,5117.02,23031.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,37509,92883.51,0.0,0.0,92883.51,18905.76,10815.41,7388.68,37109.85,129993.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,9535,68587.03,3443.79,1447.53,73478.35,14278.24,12129.43,5830.11,32237.78,105716.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",8539,5619.5,0.0,0.0,5619.5,1232.91,597.33,761.83,2592.07,8211.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2484,Biologist III,21067,9366.43,0.0,0.0,9366.43,0.0,958.72,726.98,1685.7,11052.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,21011,59096.37,0.0,898.14,59994.51,12321.99,11760.75,4909.62,28992.36,88986.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,42948,112159.76,8740.27,24476.31,145376.34,25341.72,15052.75,2421.73,42816.2,188192.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16501,40552.24,0.0,3344.69,43896.93,3379.47,3061.39,2833.52,9274.38,53171.31 +Calendar,2015,1,Public Protection,CRT,Superior Court,196.0,Court Unrepresented Managers,SCRT,SF Superior Court,131C,Managing Attorney,16012,162006.0,0.0,6115.5,168121.5,32624.06,12424.5,32607.2,77655.76,245777.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,9439,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1848.37,10262.15,34266.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",21262,97989.0,80745.95,29339.69,208074.64,22074.37,12424.5,11233.82,45732.69,253807.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,13504,3087.84,0.0,5.84,3093.68,0.0,1019.95,237.08,1257.03,4350.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5272,Landscape Architect Assoc 2,35486,116976.03,0.0,0.0,116976.03,23541.49,12424.5,9477.65,45443.64,162419.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2719,Janitorial Svcs Asst Sprv,10923,74326.0,13132.4,945.41,88403.81,15447.6,12424.5,7278.59,35150.69,123554.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,41039,65592.0,382.21,5762.19,71736.4,13900.21,12424.5,5874.29,32199.0,103935.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",25153,282.25,0.0,0.0,282.25,0.0,59.73,21.85,81.58,363.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,45890,33215.6,3756.46,3295.26,40267.32,5901.53,3345.06,690.16,9936.75,50204.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,2124,117929.14,0.0,17071.23,135000.37,25675.22,10996.28,9939.12,46610.62,181610.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10598,112159.76,73611.94,20818.5,206590.2,25279.3,15052.76,3471.76,43803.82,250394.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,34479,43358.0,0.0,0.0,43358.0,7636.43,6164.45,3450.83,17251.71,60609.71 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,5703,70036.22,1167.12,7299.93,78503.27,15557.38,12388.01,6208.05,34153.44,112656.71 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,26189,1466.38,348.23,0.0,1814.61,0.0,442.03,141.59,583.62,2398.23 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50131,28093.01,0.0,7709.91,35802.92,6761.91,6212.25,2904.79,15878.95,51681.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28984,39900.29,2759.15,1217.66,43877.1,11954.92,7934.9,3410.63,23300.45,67177.55 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29657,102019.0,0.0,0.0,102019.0,21026.26,12424.5,8318.12,41768.88,143787.88 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,50607,74069.68,0.0,3621.13,77690.81,15400.47,12367.34,6455.29,34223.1,111913.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,49997,101733.0,0.0,0.0,101733.0,20967.28,12424.5,8318.75,41710.53,143443.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,39085,18760.0,0.0,4923.6,23683.6,4616.86,2389.33,1953.7,8959.89,32643.49 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,23290,20625.0,631.14,2722.19,23978.33,5280.25,2389.33,397.94,8067.52,32045.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,46188,15728.12,0.0,329.98,16058.1,0.0,5216.19,1244.94,6461.13,22519.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1301,67388.7,16395.53,4580.09,88364.32,19701.06,13277.69,6895.92,39874.67,128238.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,19365,4529.01,346.76,31.54,4907.31,804.94,477.86,81.83,1364.63,6271.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30110,5626.13,0.0,792.06,6418.19,1451.54,2439.68,518.57,4409.79,10827.98 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2542,Speech Pathologist,49110,95227.28,0.0,0.0,95227.28,19171.19,10475.65,7810.17,37457.01,132684.29 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,23878,67714.25,15088.17,8757.54,91559.96,15197.82,12388.66,7503.3,35089.78,126649.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,26292,56076.43,0.0,0.0,56076.43,12519.15,12424.5,3931.43,28875.08,84951.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,19012,63398.6,19596.02,10294.76,93289.38,15205.02,12328.92,7893.07,35427.01,128716.39 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,30158,18128.01,0.0,0.0,18128.01,3986.35,3822.92,1458.94,9268.21,27396.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,7184,89420.0,0.0,0.0,89420.0,18545.6,9557.31,7380.03,35482.94,124902.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,24533,3604.0,0.0,0.0,3604.0,636.11,477.86,283.59,1397.56,5001.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3434,Arborist Technician,23945,61566.91,0.0,661.5,62228.41,12621.04,10484.73,5157.5,28263.27,90491.68 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,37555,12536.21,0.0,0.0,12536.21,3066.43,1242.45,749.11,5057.99,17594.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6496,63990.81,3530.18,4784.97,72305.96,16923.27,12700.11,5305.06,34928.44,107234.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6231,Senior Street Inspector,15409,92542.02,0.0,0.0,92542.02,19073.15,12424.5,7632.66,39130.31,131672.33 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0655,"Counselor, Family Court Svc",52019,7996.0,0.0,519.8,8515.8,1910.08,955.73,768.48,3634.29,12150.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",32284,93738.01,6301.51,4136.98,104176.5,19807.3,12424.5,8526.7,40758.5,144935.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,13773,62656.56,2796.85,7160.85,72614.26,14447.99,11946.93,5980.98,32375.9,104990.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,3486,Watershed Forester,13656,105283.04,0.0,0.0,105283.04,21721.83,12424.5,16518.1,50664.43,155947.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,714,61428.03,0.0,1684.0,63112.03,13007.12,12424.5,5223.04,30654.66,93766.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10550,66900.66,25659.17,4773.05,97332.88,19581.31,13176.54,7576.1,40333.95,137666.83 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,27052,47226.25,6194.21,503.25,53923.71,9744.47,6930.48,4213.95,20888.9,74812.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,21833,36888.2,6574.79,2356.57,45819.56,7580.64,6901.57,3613.17,18095.38,63914.94 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,25759,24536.94,0.0,3998.03,28534.97,4975.72,0.0,2562.74,7538.46,36073.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,24780,107268.73,3906.9,8435.34,119610.97,23215.02,12472.29,409.91,36097.22,155708.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,24405,63398.62,0.0,999.75,64398.37,13204.21,12328.92,5087.18,30620.31,95018.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,37330,62343.35,14227.24,2814.71,79385.3,12966.79,12399.23,6244.27,31610.29,110995.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8312,Sheriff's Captain,12995,156528.04,1821.78,19979.46,178329.28,41336.49,12424.5,3028.96,56789.95,235119.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22798,62342.71,1038.42,9689.57,73070.7,0.0,5119.19,5667.49,10786.68,83857.38 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,41519,998.05,0.0,0.0,998.05,0.0,295.68,666.51,962.19,1960.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,37550,71339.6,485.1,0.0,71824.7,14462.34,10465.25,5542.47,30470.06,102294.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,10811,75550.32,7377.33,1200.0,84127.65,15789.86,12424.5,6901.85,35116.21,119243.86 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33955,96315.14,21275.31,6904.78,124495.23,25112.14,12238.2,2109.71,39460.05,163955.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,1642,16233.7,0.0,0.0,16233.7,3021.1,2341.55,1304.46,6667.11,22900.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,19752,6808.47,0.0,0.0,6808.47,0.0,1458.98,527.11,1986.09,8794.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,2976,28936.73,0.0,351.27,29288.0,0.0,2113.06,2269.09,4382.15,33670.15 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,372,60186.03,0.0,0.0,60186.03,13444.32,6690.11,4738.63,24873.06,85059.09 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,42732,19133.02,0.0,226.85,19359.87,4601.87,5734.39,1509.31,11845.57,31205.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27219,144114.95,0.0,26904.57,171019.52,34000.06,12373.74,9954.95,56328.75,227348.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35456,65987.52,15550.79,748.18,82286.49,18258.99,12998.71,6291.55,37549.25,119835.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15826,11604.84,0.0,0.0,11604.84,400.4,4969.8,942.22,6312.42,17917.26 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52713,65996.85,1620.61,4521.87,72139.33,13736.09,11674.67,5663.4,31074.16,103213.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,27352,14062.01,259.22,0.0,14321.23,3628.0,4253.0,1190.22,9071.22,23392.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,37983,22992.46,0.0,1309.17,24301.63,5817.36,0.0,1922.33,7739.69,32041.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",37546,93281.02,0.0,624.0,93905.02,19354.57,12424.5,7736.07,39515.14,133420.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51140,9764.75,116.25,195.16,10076.16,0.0,3742.26,781.61,4523.87,14600.03 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,40647,33237.06,0.0,112.88,33349.94,7480.39,4055.89,535.16,12071.44,45421.38 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,14409,63712.84,91.84,1040.0,64844.68,13309.33,12176.31,5275.77,30761.41,95606.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23117,111697.53,829.74,17263.49,129790.76,24785.75,9888.23,9940.63,44614.61,174405.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,52345,13764.42,0.0,1800.73,15565.15,3087.37,1936.85,1303.37,6327.59,21892.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29106,112159.77,14049.08,23249.33,149458.18,24876.62,15052.76,2546.87,42476.25,191934.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,16722,99098.0,0.0,1000.0,100098.0,20630.52,12424.5,7988.82,41043.84,141141.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,31503,107978.01,1168.31,1880.0,111026.32,22648.1,12424.5,8958.16,44030.76,155057.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,23854,1135.5,0.0,3.72,1139.22,0.0,436.04,88.31,524.35,1663.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,47782,51150.01,11211.62,3697.36,66058.99,13146.78,12424.5,5286.74,30858.02,96917.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2578,Med Examiner's Investigator II,23767,88833.6,20693.04,8787.75,118314.39,19427.63,12424.5,9702.66,41554.79,159869.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,188,1896.81,0.0,88.44,1985.25,429.76,382.3,251.81,1063.87,3049.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41606,120370.03,83602.04,21812.0,225784.07,25255.92,12418.53,585.16,38259.61,264043.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,34520,64980.11,14304.8,4475.81,83760.72,14539.19,9557.3,6707.24,30803.73,114564.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,27161,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5169.23,30446.35,92805.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9539,27580.15,0.0,4662.42,32242.57,454.42,0.0,3561.91,4016.33,36258.9 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,11574,23266.5,0.0,0.0,23266.5,4329.91,4157.43,1854.0,10341.34,33607.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",18297,35529.37,0.0,0.0,35529.37,7337.62,7478.59,2941.19,17757.4,53286.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,37389,39958.08,0.0,150.0,40108.08,7982.13,5368.93,3223.18,16574.24,56682.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14079,11426.37,0.0,0.0,11426.37,0.0,4954.87,914.51,5869.38,17295.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",8409,140534.99,0.0,0.0,140534.99,28271.59,12424.5,17438.69,58134.78,198669.77 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,40256,37932.5,0.0,0.0,37932.5,0.0,5692.57,2941.65,8634.22,46566.72 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,303,97489.65,15176.93,9637.49,122304.07,26055.47,12387.95,1941.09,40384.51,162688.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,14945,82883.01,956.35,13743.0,97582.36,19903.17,12424.5,7962.87,40290.54,137872.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,267,41954.9,32519.2,3646.42,78120.52,8623.88,8181.23,6196.4,23001.51,101122.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21471,56531.0,0.0,4039.9,60570.9,12407.51,12424.5,4955.79,29787.8,90358.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",22217,8523.95,0.0,0.0,8523.95,0.0,1803.94,661.6,2465.54,10989.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,27648,74884.25,16971.32,2317.5,94173.07,15428.97,15052.76,1570.75,32052.48,126225.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",25959,79154.88,12071.46,13337.53,104563.87,18173.7,10021.5,8561.13,36756.33,141320.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,39861,4117.9,0.0,81.56,4199.46,0.0,1369.39,325.41,1694.8,5894.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9154,55657.15,0.0,5430.5,61087.65,12394.18,12231.27,5003.38,29628.83,90716.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,28064,74165.03,1541.56,1171.23,76877.82,15485.7,12424.5,6350.36,34260.56,111138.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,29953,35412.81,0.0,0.0,35412.81,7769.57,3345.06,4615.3,15729.93,51142.74 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,45374,106116.0,0.0,0.0,106116.0,21870.85,12424.5,8115.16,42410.51,148526.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",30698,131577.08,21403.82,18012.39,170993.29,29091.89,15196.12,2906.28,47194.29,218187.58 +Calendar,2015,1,Public Protection,DAT,District Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,8558,"Prdainvest,Specunit (SFERS)",17035,62319.77,0.0,2092.19,64411.96,0.0,5638.81,4994.07,10632.88,75044.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43386,96562.81,0.0,83125.88,179688.69,19952.51,10055.24,1403.26,31411.01,211099.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",32170,180314.44,53797.66,32293.74,266405.84,41725.67,15196.12,4538.09,61459.88,327865.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42825,44076.77,4200.24,746.86,49023.87,11620.65,13128.46,3716.91,28466.02,77489.89 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23082,80946.04,2701.46,3802.94,87450.44,16598.87,12424.51,3329.06,32352.44,119802.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,20249,110997.93,0.0,624.0,111621.93,22440.95,12424.5,9093.28,43958.73,155580.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50822,13615.02,0.0,16.25,13631.27,0.0,0.0,1250.72,1250.72,14881.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,18058,118104.01,0.0,0.0,118104.01,23768.42,12424.5,9307.43,45500.35,163604.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,9964,39284.01,3879.13,2288.6,45451.74,8914.4,6690.11,3732.05,19336.56,64788.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5272,Landscape Architect Assoc 2,52905,71079.69,0.0,608.53,71688.22,14736.35,7235.3,5894.73,27866.38,99554.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,19048,3912.94,0.0,0.0,3912.94,0.0,1403.73,314.32,1718.05,5630.99 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,50528,134607.33,0.0,7067.24,141674.57,24267.55,8918.16,10264.81,43450.52,185125.09 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,8048,89082.45,8193.38,9022.54,106298.37,19581.87,11815.64,8477.19,39874.7,146173.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,653,48756.02,0.0,0.0,48756.02,10574.39,8123.7,3606.26,22304.35,71060.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33330,16111.88,583.22,182.98,16878.08,4204.06,3763.19,1290.87,9258.12,26136.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,28102,62468.8,29562.09,9713.6,101744.49,13009.44,12424.5,8007.45,33441.39,135185.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,33913,97770.08,59024.76,20291.96,177086.8,27983.62,12424.5,3021.12,43429.24,220516.04 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,10704,87212.88,0.0,0.0,87212.88,17837.02,9891.81,13772.71,41501.54,128714.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5081,1720.18,0.0,88.82,1809.0,0.0,430.07,140.09,570.16,2379.16 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,28779,31048.0,0.0,558.86,31606.86,6964.08,3822.92,2587.4,13374.4,44981.26 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46125,113588.0,0.0,1500.0,115088.0,23152.01,12424.5,9276.01,44852.52,159940.52 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,20313,18128.0,0.0,0.0,18128.0,3373.64,3822.92,1417.65,8614.21,26742.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51988,66905.59,11735.22,3882.37,82523.18,19359.53,13182.64,6392.54,38934.71,121457.89 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,11303,109977.51,0.0,0.0,109977.51,22617.2,12424.5,23359.45,58401.15,168378.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26680,71.62,0.0,2.87,74.49,0.0,17.92,5.77,23.69,98.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50283,55638.86,0.0,6963.62,62602.48,12465.88,12230.37,5168.22,29864.47,92466.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,10175,63512.34,0.0,0.0,63512.34,13066.79,12424.5,5106.43,30597.72,94110.06 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31823,14557.4,0.0,0.0,14557.4,0.0,1242.46,1129.89,2372.35,16929.75 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,5495,102090.0,0.0,440.0,102530.0,21160.39,12424.5,8356.82,41941.71,144471.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32491,137767.59,31759.55,24111.31,193638.45,27228.59,12346.85,3248.09,42823.53,236461.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18402,96206.59,5068.08,15221.43,116496.1,0.0,8159.25,9032.3,17191.55,133687.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37684,66447.5,30390.39,4931.22,101769.11,19464.7,13085.45,7724.18,40274.33,142043.44 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,41131,9593.0,1711.98,241.05,11546.03,2109.5,2867.19,851.92,5828.61,17374.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,48432,50201.66,8965.89,6044.21,65211.76,11686.66,11260.54,4994.87,27942.07,93153.83 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,51985,84348.91,6162.76,6222.08,96733.75,18095.77,12328.92,7693.81,38118.5,134852.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,545,119467.38,15904.43,12397.61,147769.42,23621.01,12424.5,2471.07,38516.58,186286.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,21818,48981.1,3794.58,3103.01,55878.69,10713.14,7980.34,4577.76,23271.24,79149.93 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,12868,84629.0,0.0,0.0,84629.0,16608.37,9079.44,6859.47,32547.28,117176.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8075,52571.45,4050.65,1377.44,57999.54,14933.42,10350.5,4228.44,29512.36,87511.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,35896,15800.0,237.0,1635.3,17672.3,4076.4,4778.65,1110.49,9965.54,27637.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,11368,71612.04,0.0,989.0,72601.04,14955.95,12424.5,5741.21,33121.66,105722.7 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,50004,72546.02,4588.5,488.43,77622.95,14781.8,10990.9,6323.67,32096.37,109719.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52291,27834.77,3154.55,1406.01,32395.33,7324.3,8662.07,2474.71,18461.08,50856.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18922,743.85,0.0,21.08,764.93,0.0,322.56,59.37,381.93,1146.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,51446,146627.81,0.0,0.0,146627.81,29440.41,12424.5,10297.97,52162.88,198790.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,856.0,"Teamsters - Miscellaneous, Local 856",6100,Health & Sanitation Inspection,6139,Senior Industrial Hygienist,47161,122131.85,0.0,0.0,122131.85,24574.39,11591.23,9584.72,45750.34,167882.19 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",53068,24347.97,1294.45,0.0,25642.42,0.0,0.0,2029.03,2029.03,27671.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,41885,8622.01,0.0,0.0,8622.01,1933.92,1433.6,685.12,4052.64,12674.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,32051,58775.7,4785.65,3069.28,66630.63,13647.63,12376.74,5367.37,31391.74,98022.37 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,42703,127567.64,0.0,8418.78,135986.42,25572.99,11906.01,10089.06,47568.06,183554.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",15067,130763.29,8702.47,22308.39,161774.15,28734.13,12769.46,2757.77,44261.36,206035.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49131,3984.66,501.33,495.82,4981.81,0.0,792.42,376.58,1169.0,6150.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,28295,79825.73,0.0,0.0,79825.73,16399.58,12424.51,6495.45,35319.54,115145.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2082,68212.88,26953.37,5232.47,100398.72,20106.55,13439.72,7642.96,41189.23,141587.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10661,47579.4,706.73,16472.93,64759.06,10720.8,4644.85,4795.64,20161.29,84920.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,17117,51693.63,824.18,1418.24,53936.05,10869.42,10054.7,4259.53,25183.65,79119.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,35657,75372.58,0.0,0.0,75372.58,15426.48,11503.24,6023.01,32952.73,108325.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52561,4182.15,0.0,130.59,4312.74,0.0,1756.16,342.44,2098.6,6411.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21801,46876.91,0.0,5466.27,52343.18,12153.99,11994.43,4242.43,28390.85,80734.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5274,Landscape Architect,20659,135421.0,0.0,0.0,135421.0,27253.5,12424.51,10119.53,49797.54,185218.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1970,81071.54,14440.26,6828.68,102340.48,16861.92,12424.5,1707.56,30993.98,133334.46 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,36649,1520.5,0.0,0.0,1520.5,282.97,238.93,118.02,639.92,2160.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,52906,14895.0,0.0,0.0,14895.0,3267.96,1433.6,1185.5,5887.06,20782.06 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,11282,83836.01,0.0,954.99,84791.0,17461.59,12376.71,6897.61,36735.91,121526.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,20827,112631.55,9333.56,6216.01,128181.12,22319.27,12418.52,2083.54,36821.33,165002.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9116,Sr Fare Collections Receiver,32157,72699.02,969.52,3188.43,76856.97,15117.3,12424.5,6354.31,33896.11,110753.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,9395,"Property Manager, Port",16506,64448.0,0.0,17889.86,82337.86,14101.78,7645.85,6471.44,28219.07,110556.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,955,27269.01,0.0,0.0,27269.01,6004.14,5016.35,2253.78,13274.27,40543.28 +Calendar,2015,1,Public Protection,POL,Police,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,38438,55047.5,0.0,0.0,55047.5,10863.44,8362.64,4368.12,23594.2,78641.7 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,46503,10144.97,0.0,5847.72,15992.69,2290.79,1353.79,1357.76,5002.34,20995.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,15493,9389.0,0.0,0.0,9389.0,0.0,3595.94,727.77,4323.71,13712.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44178,39319.67,4691.46,645.19,44656.32,10779.01,7710.24,3306.37,21795.62,66451.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,33257,2835.0,0.0,0.0,2835.0,635.89,477.86,221.59,1335.34,4170.34 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,48263,93499.01,0.0,1464.0,94963.01,19572.35,12424.5,7872.37,39869.22,134832.23 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,14965,2935.06,0.0,1.02,2936.08,0.0,1372.36,227.73,1600.09,4536.17 +Calendar,2015,4,Community Health,DPH,Public Health,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,37143,97424.0,17413.4,33.0,114870.4,20086.92,12424.5,9259.84,41771.26,156641.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,2612,63495.58,4558.86,1998.87,70053.31,14672.35,12349.84,5667.58,32689.77,102743.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,31377,8670.0,0.0,0.0,8670.0,1613.49,1433.56,669.72,3716.77,12386.77 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,19787,116479.84,0.0,5385.0,121864.84,23680.71,6839.44,9733.2,40253.35,162118.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18789,54739.12,11273.83,3498.41,69511.36,15785.84,10768.44,5211.24,31765.52,101276.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,23750,41875.94,2818.44,1749.77,46444.15,9983.38,8495.61,3742.38,22221.37,68665.52 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,48047,14820.01,0.0,287.14,15107.15,3324.12,1911.46,1196.64,6432.22,21539.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,46062,51263.77,377.88,1908.86,53550.51,12394.85,12390.16,4432.32,29217.33,82767.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,46643,0.0,0.0,4227.59,4227.59,0.0,22.84,323.41,346.25,4573.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,40387,88296.04,0.0,5322.0,93618.04,18337.86,12424.5,7654.28,38416.64,132034.68 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,34138,72554.95,0.0,0.0,72554.95,14934.88,12424.5,5858.3,33217.68,105772.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,30173,53922.53,0.0,1044.55,54967.08,11177.07,10842.59,4495.36,26515.02,81482.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,48594,90289.26,2137.46,8741.28,101168.0,24124.55,11470.8,1124.72,36720.07,137888.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25014,112685.44,14857.75,7305.0,134848.19,22330.92,12424.5,2204.35,36959.77,171807.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23514,3205.8,0.0,534.3,3740.1,678.09,0.0,295.69,973.78,4713.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,19332,155597.74,30176.8,5949.63,191724.17,31044.1,11946.64,3155.41,46146.15,237870.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,27123,3569.41,0.0,0.0,3569.41,664.27,430.08,281.09,1375.44,4944.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,28889,3915.01,232.45,187.53,4334.99,734.45,477.86,72.72,1285.03,5620.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31674,512.53,0.0,19.71,532.24,0.0,0.0,0.0,0.0,532.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,49077,34566.3,0.0,0.0,34566.3,6939.88,5304.3,2816.42,15060.6,49626.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11143,1382.8,0.0,51.86,1434.66,1936.89,0.0,0.0,1936.89,3371.55 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,6019,193763.5,0.0,15105.0,208868.5,39053.19,11659.92,11208.63,61921.74,270790.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,9369,6864.07,0.0,0.0,6864.07,0.0,1717.32,532.43,2249.75,9113.82 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,46805,6498.0,0.0,0.0,6498.0,1457.5,955.73,522.06,2935.29,9433.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,42075,69457.7,0.0,0.0,69457.7,15239.02,4945.91,11613.84,31798.77,101256.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,34509,166609.6,11501.49,1511.03,179622.12,33751.92,11054.34,10789.11,55595.37,235217.49 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,35380,66654.71,0.0,6946.99,73601.7,14549.02,11223.45,5702.37,31474.84,105076.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,13091,26270.0,344.8,860.0,27474.8,6085.26,4778.65,2237.73,13101.64,40576.44 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,4182,19888.2,0.0,0.0,19888.2,3701.19,2843.3,1579.11,8123.6,28011.8 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,24454,29014.5,185.85,750.0,29950.35,5827.81,5705.77,2370.78,13904.36,43854.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52028,56531.0,0.0,6386.99,62917.99,12385.84,12424.5,5193.17,30003.51,92921.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,50558,97934.01,453.05,823.9,99210.96,20313.51,12424.5,8220.82,40958.83,140169.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,31724,87028.44,5377.8,6017.86,98424.1,18068.51,11913.55,1628.67,31610.73,130034.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,32540,108079.5,0.0,756.96,108836.46,21566.6,11468.77,0.17,33035.54,141872.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43454,64998.29,11703.41,4644.99,81346.69,19027.07,12807.2,6311.88,38146.15,119492.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,32362,49.85,0.0,0.0,49.85,0.0,11.94,3.88,15.82,65.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",6042,119487.72,2308.04,16352.28,138148.04,27262.81,12099.2,2303.32,41665.33,179813.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4339,44277.3,0.0,0.0,44277.3,0.0,5806.07,3432.45,9238.52,53515.82 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,33871,99654.01,1790.14,0.0,101444.15,22731.77,12424.5,1579.71,36735.98,138180.13 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1403,Elections Clerk,8785,6484.5,0.0,668.61,7153.11,1714.27,1565.01,602.73,3882.01,11035.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26314,66031.27,15742.43,4443.58,86217.28,19291.19,13010.6,7247.81,39549.6,125766.88 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,14808,47663.65,0.0,0.0,47663.65,11414.12,12360.23,3877.55,27651.9,75315.55 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26849,97762.83,6249.82,12219.63,116232.28,26731.87,12424.5,1979.29,41135.66,157367.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11359,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9203,Sr Airport Communications Disp,19147,92700.63,72.13,10382.86,103155.62,20203.24,12412.56,8279.55,40895.35,144050.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,14958,56531.0,0.0,6209.34,62740.34,12630.29,12424.5,5106.3,30161.09,92901.43 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,35899,84599.09,0.0,624.0,85223.09,17565.03,12424.5,6576.6,36566.13,121789.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,49805,93681.04,0.0,1123.46,94804.5,19554.92,12424.5,7650.52,39629.94,134434.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,21153,2590.2,0.0,44.87,2635.07,0.0,856.27,204.52,1060.79,3695.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,44613,61735.04,0.0,624.0,62359.04,12852.62,12424.5,4941.29,30218.41,92577.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,32365,6739.8,0.0,826.34,7566.14,1286.58,955.76,609.79,2852.13,10418.27 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,38594,117610.06,0.0,0.0,117610.06,23664.85,12424.5,24438.23,60527.58,178137.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",9200,Airport Operation,9240,Airport Electrician,23033,106466.51,9639.06,3799.27,119904.84,22248.26,12314.01,9593.22,44155.49,164060.33 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,16646,20080.4,0.0,0.0,20080.4,4504.05,3249.49,1592.99,9346.53,29426.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31581,68954.97,18488.9,2127.27,89571.14,19406.93,13581.65,6745.15,39733.73,129304.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,36917,55363.01,0.0,0.0,55363.01,10177.51,6212.25,4552.08,20941.84,76304.85 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,40886,42148.92,54.12,0.0,42203.04,8608.8,8666.09,3547.88,20822.77,63025.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,10896,27029.0,0.0,1115.0,28144.0,5237.6,3822.92,2244.7,11305.22,39449.22 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1831,12520.0,0.0,0.0,12520.0,2269.88,1911.46,936.02,5117.36,17637.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,26311,74114.8,842.4,2691.79,77648.99,15180.09,9415.15,6191.67,30786.91,108435.9 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,40686,67261.0,0.0,624.0,67885.0,13991.51,12424.5,5627.94,32043.95,99928.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,13113,104354.15,5784.77,12919.71,123058.63,22998.44,12424.5,9778.3,45201.24,168259.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,16710,94805.21,0.0,0.0,94805.21,19652.91,11162.27,7391.82,38207.0,133012.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,41675,275.0,0.0,0.0,275.0,0.0,65.71,21.31,87.02,362.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,37475,40300.21,0.0,1138.69,41438.9,8277.66,7984.42,3461.75,19723.83,61162.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47638,65546.63,0.0,8433.16,73979.79,2820.12,0.0,2013.64,4833.76,78813.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,3502,135421.0,0.0,13907.82,149328.82,30052.43,12424.5,10192.19,52669.12,201997.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,29569,100761.01,11541.09,11616.76,123918.86,23175.9,12424.5,9842.7,45443.1,169361.96 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28301,3433.5,0.0,0.0,3433.5,0.0,0.0,271.25,271.25,3704.75 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,31564,94107.0,0.0,1340.0,95447.0,19671.19,12424.5,7742.56,39838.25,135285.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5379,719.76,0.0,26.93,746.69,0.0,179.2,57.84,237.04,983.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,12336,54711.54,158.62,0.0,54870.16,12265.15,12267.65,4197.08,28729.88,83600.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25152,67987.71,13533.48,7506.7,89027.89,20716.94,13398.82,6744.33,40860.09,129887.98 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,18842,93281.06,0.0,1000.0,94281.06,19443.8,12424.5,7817.56,39685.86,133966.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,37889,109882.11,23443.85,4228.41,137554.37,22020.16,11972.8,2289.38,36282.34,173836.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45171,112685.48,9582.68,2955.8,125223.96,22330.92,12424.5,2059.15,36814.57,162038.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,26891,97424.0,0.0,9234.04,106658.04,21991.94,12424.5,8737.51,43153.95,149811.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,25259,35461.55,61.16,0.0,35522.71,5589.42,10674.32,2813.51,19077.25,54599.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,19286,143.2,0.0,0.0,143.2,31.42,47.79,11.09,90.3,233.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",22403,93738.1,6316.27,7715.92,107770.29,19739.55,12424.5,8798.87,40962.92,148733.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,38898,4445.7,0.0,24.53,4470.23,0.0,2078.72,346.65,2425.37,6895.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44294,44613.08,149.28,9325.28,54087.64,2002.3,0.0,6168.38,8170.68,62258.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,43601,42142.23,358.22,2098.14,44598.59,10327.1,11099.61,3597.96,25024.67,69623.26 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,34300,61971.02,0.0,1207.99,63179.01,13025.98,12472.29,5182.31,30680.58,93859.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19925,109467.26,4923.96,14512.9,128904.12,22472.55,9432.53,9890.5,41795.58,170699.7 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,3173,56276.0,41.64,0.0,56317.64,12591.79,12424.5,4436.65,29452.94,85770.58 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37054,3457.27,0.0,60.77,3518.04,1414.11,0.0,1929.73,3343.84,6861.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,42558,1089.0,0.0,81.66,1170.66,202.66,238.93,102.73,544.32,1714.98 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,27691,48010.01,119.94,3147.45,51277.4,11672.0,12424.5,4013.9,28110.4,79387.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51335,68207.43,9082.43,1049.26,78339.12,18970.32,13443.37,5855.8,38269.49,116608.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,46360,84644.0,28931.25,5260.48,118835.73,17558.69,12424.5,9286.27,39269.46,158105.19 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,39487,78963.03,0.0,0.0,78963.03,16274.48,12424.5,6554.54,35253.52,114216.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,9591,3498.86,0.0,128.8,3627.66,599.3,1517.22,288.33,2404.85,6032.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,38815,30844.66,5036.42,3654.81,39535.89,5781.27,3345.05,660.83,9787.15,49323.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,21013,236.55,0.0,23.66,260.21,972.97,17.86,361.13,1351.96,1612.17 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7203,Bldg & Grounds Maint Sprv,21886,73298.0,21097.53,14.7,94410.23,15765.12,8601.58,6666.35,31033.05,125443.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46961,95720.62,0.0,8662.72,104383.34,25395.39,12163.59,1775.95,39334.93,143718.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,9100,85368.09,0.0,943.9,86311.99,17774.27,12424.5,7156.31,37355.08,123667.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,48546,69902.0,416.29,611.85,70930.14,14533.57,12424.5,5432.07,32390.14,103320.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12921,9367.7,918.34,711.82,10997.86,2765.41,2957.03,811.2,6533.64,17531.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,5481,56531.0,0.0,2300.1,58831.1,12664.6,12424.5,4767.79,29856.89,88687.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9403,42529.2,8855.48,5017.24,56401.92,10194.52,5829.95,4586.02,20610.49,77012.41 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,39901,63707.0,0.0,5263.41,68970.41,14751.55,9079.44,5469.12,29300.11,98270.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,9110,45045.0,1005.47,10098.66,56149.13,9505.37,10035.18,4588.56,24129.11,80278.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,8925,56276.02,0.0,624.0,56900.02,12731.53,12424.5,4612.65,29768.68,86668.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34864,144706.01,0.0,8416.73,153122.74,21676.52,12424.5,6024.41,40125.43,193248.17 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,32096,119463.89,21.66,4847.99,124333.54,23633.47,12424.5,793.8,36851.77,161185.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,20935,26002.06,13736.24,6365.49,46103.79,6556.13,3258.68,3745.04,13559.85,59663.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11124,45202.44,0.0,0.0,45202.44,0.0,0.0,3576.04,3576.04,48778.48 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,24252,44045.56,0.0,636.99,44682.55,9220.96,6469.1,3643.36,19333.42,64015.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,47240,97934.02,0.0,624.0,98558.02,20308.12,12424.5,8054.47,40787.09,139345.11 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",2800,Public Health,2806,Disease Control Investigator,690,68871.0,0.0,1040.0,69911.0,14406.07,12424.5,5431.74,32262.31,102173.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,41185,15472.04,0.0,7395.02,22867.06,3470.36,2547.74,1909.44,7927.54,30794.6 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",26224,198139.02,0.0,1562.5,199701.52,40190.29,12424.5,11226.78,63841.57,263543.09 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,10941,74301.01,0.0,0.0,74301.01,15069.86,10513.05,5835.74,31418.65,105719.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,36617,54657.3,0.0,606.0,55263.3,12338.67,12065.69,4366.89,28771.25,84034.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16644,96162.96,17209.66,5107.27,118479.89,20054.06,11946.64,1977.41,33978.11,152458.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45185,97763.28,4269.99,3556.16,105589.43,24638.23,12424.5,1741.53,38804.26,144393.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,7481,67193.3,0.0,0.0,67193.3,13833.49,12424.5,5262.73,31520.72,98714.02 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,49349,10456.01,0.0,0.0,10456.01,1945.88,1911.46,767.34,4624.68,15080.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,15492,116976.02,0.0,0.0,116976.02,23544.68,12424.53,9407.92,45377.13,162353.15 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16653,80953.76,2614.94,3583.53,87152.23,16623.54,12424.5,3323.99,32372.03,119524.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24740,113410.91,51525.03,18803.73,183739.67,25066.82,14909.4,3131.85,43108.07,226847.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,28915,16150.13,0.0,173.57,16323.7,0.0,5333.12,1265.58,6598.7,22922.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3595,70097.7,569.9,15114.48,85782.08,16454.89,5877.74,4574.35,26906.98,112689.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,4614,80300.51,0.0,0.0,80300.51,16545.51,12382.69,6662.02,35590.22,115890.73 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,22101,28012.26,0.0,8934.83,36947.09,6294.37,4856.3,2956.28,14106.95,51054.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1727,27845.11,467.37,548.69,28861.17,8385.41,5537.51,2206.29,16129.21,44990.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,13262,66947.26,3274.59,582.15,70804.0,14489.99,8243.17,5697.81,28430.97,99234.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,18130,62588.35,0.0,5139.9,67728.25,0.0,0.0,5357.61,5357.61,73085.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15068,15433.27,0.0,66.08,15499.35,10145.14,0.0,563.29,10708.43,26207.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,7745,21444.0,0.0,0.0,21444.0,3688.4,5734.39,1695.23,11118.02,32562.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,50818,78204.02,0.0,1624.0,79828.02,16451.16,12424.5,6221.17,35096.83,114924.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,49833,97934.04,0.0,1460.0,99394.04,20485.67,12424.5,7962.76,40872.93,140266.97 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,17548,2337.0,0.0,0.0,2337.0,434.92,477.86,181.39,1094.17,3431.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,137,54432.1,7597.9,1558.53,63588.53,14495.51,12935.22,4850.89,32281.62,95870.15 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,10953,34965.61,0.0,1262.43,36228.04,7981.84,6498.97,3010.5,17491.31,53719.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,5864,85368.0,0.0,40.0,85408.0,17602.03,12424.5,6832.93,36859.46,122267.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16433,80953.83,13622.27,4917.86,99493.96,16716.74,12424.5,1693.3,30834.54,130328.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,14154,56531.0,0.0,3594.0,60125.0,11780.12,12424.5,4927.26,29131.88,89256.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,23965,33040.93,0.0,4952.99,37993.92,8281.89,7631.28,2953.28,18866.45,56860.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,10140,62811.0,11511.16,12891.7,87213.86,14836.31,12424.5,6887.56,34148.37,121362.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,21273,99970.72,0.0,0.0,99970.72,20593.99,12351.98,7964.11,40910.08,140880.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,45532,108038.0,98909.58,13374.47,220322.05,23972.78,12424.5,11398.44,47795.72,268117.77 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,44976,76903.02,0.0,0.0,76903.02,15847.02,12424.5,6270.81,34542.33,111445.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,33055,16114.02,0.0,0.0,16114.02,4157.42,3345.06,1268.72,8771.2,24885.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2820,Senior Health Program Planner,47585,92783.0,0.0,0.0,92783.0,19094.96,12424.5,7297.72,38817.18,131600.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,14630,471.64,0.0,15.68,487.32,0.0,229.97,37.82,267.79,755.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,44946,104354.09,24025.91,10896.01,139276.01,22774.57,12424.5,10118.53,45317.6,184593.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,18389,142107.21,1355.91,15479.5,158942.62,28369.82,12364.77,2662.53,43397.12,202339.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,36919,78203.35,9368.84,3898.51,91470.7,16713.55,12228.46,7495.82,36437.83,127908.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,9386,"Senior Property Manager, Port",40966,48753.7,0.0,0.0,48753.7,10929.8,5259.5,3924.44,20113.74,68867.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,30111,87531.07,0.0,0.0,87531.07,18040.63,12424.38,7261.19,37726.2,125257.27 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,7348,1552.8,0.0,1961.14,3513.94,400.62,382.3,272.69,1055.61,4569.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,20157,34493.5,0.0,0.0,34493.5,6850.4,7132.14,2596.41,16578.95,51072.45 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,2.0,Management Unrepresented Employees,1200,Personnel,1293,Human Resources Director,18503,224482.07,0.0,0.0,224482.07,45178.15,12424.5,18862.86,76465.51,300947.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,748,77071.0,26354.56,1440.0,104865.56,16181.0,12424.5,8477.34,37082.84,141948.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40033,9862.1,0.0,140.53,10002.63,0.0,4276.53,804.29,5080.82,15083.45 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),37885,0.0,0.0,4385.59,4385.59,0.0,68.5,335.5,404.0,4789.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32143,32403.53,0.0,1783.71,34187.24,1278.81,2830.94,2316.06,6425.81,40613.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,7379,63517.33,0.0,2813.22,66330.55,15962.56,8098.75,447.31,24508.62,90839.17 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,49084,67934.02,0.0,0.0,67934.02,13971.52,12424.5,5220.28,31616.3,99550.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",49828,97989.0,1229.18,21314.46,120532.64,22023.35,12424.5,9771.15,44219.0,164751.64 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,23527,105609.11,0.0,0.0,105609.11,21391.07,11567.94,8460.91,41419.92,147029.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,33053,49888.71,665.05,0.0,50553.76,9613.34,7120.19,4022.84,20756.37,71310.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,37245,159166.0,7510.92,11379.63,178056.55,32056.57,12424.5,3026.01,47507.08,225563.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,38552,81399.3,23728.18,8984.5,114111.98,18399.19,12424.5,9089.44,39913.13,154025.11 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,49642,38112.0,555.26,0.0,38667.26,7491.41,8123.71,3190.45,18805.57,57472.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,44334,53058.21,0.0,0.0,53058.21,12716.11,12424.5,4063.77,29204.38,82262.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,12031,35922.01,0.0,5.0,35927.01,6846.75,6690.12,2916.24,16453.11,52380.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21722,64759.88,26281.65,2827.36,93868.89,18474.84,12758.65,7126.47,38359.96,132228.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,5865,13092.01,0.0,513.86,13605.87,2936.53,1911.46,1083.18,5931.17,19537.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,40456,36321.7,0.0,0.0,36321.7,0.0,5208.74,2815.45,8024.19,44345.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6100,Health & Sanitation Inspection,6115,Wastewater Control Inspector,39676,96254.08,3345.58,0.0,99599.66,19838.21,12424.5,8125.17,40387.88,139987.54 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,30317,41713.48,0.0,663.44,42376.92,8748.72,6128.93,3460.97,18338.62,60715.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,41885,77654.0,0.0,1040.0,78694.0,15821.93,10990.9,5987.38,32800.21,111494.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8082,68037.59,26854.85,3534.58,98427.02,19519.99,13405.55,7507.76,40433.3,138860.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34434,77071.02,11711.28,2164.0,90946.3,16329.74,12424.5,6949.95,35704.19,126650.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45873,67730.91,11888.27,5856.58,85475.76,20164.33,13346.01,6464.38,39974.72,125450.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,41236,101733.02,3017.93,0.0,104750.95,20967.3,12424.5,8379.32,41771.12,146522.07 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,10862,64660.5,1250.18,4632.39,70543.07,13384.55,9304.58,5817.99,28507.12,99050.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,24834,119463.85,21505.19,12496.34,153465.38,23633.52,12424.5,2559.45,38617.47,192082.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28522,57621.46,65.27,3614.46,61301.19,11140.75,5789.93,4826.33,21757.01,83058.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36825,8243.2,1138.45,353.62,9735.27,1962.51,1565.31,737.47,4265.29,14000.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30381,8808.18,0.0,196.12,9004.3,103.19,0.0,378.14,481.33,9485.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,32224,79722.05,4266.83,825.0,84813.88,16610.58,12424.51,6673.7,35708.79,120522.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2337,33903.03,4822.31,1373.23,40098.57,9044.48,10577.72,3060.84,22683.04,62781.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,33131,22769.31,0.0,426.33,23195.64,5462.05,6815.57,1861.75,14139.37,37335.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,31523,54084.01,0.0,3362.57,57446.58,12860.93,12415.54,4699.19,29975.66,87422.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0942,Manager VII,29039,182293.0,0.0,0.0,182293.0,36686.83,12424.5,18018.31,67129.64,249422.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,52134,87537.65,0.0,0.0,87537.65,18014.8,12424.5,6537.65,36976.95,124514.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,10756,74165.04,0.0,0.0,74165.04,15285.76,12424.5,6020.86,33731.12,107896.16 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,772,10791.01,0.0,0.0,10791.01,2420.43,1433.6,898.13,4752.16,15543.17 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1226,Chf Payroll & Personnel Clerk,7013,0.0,0.0,15474.28,15474.28,0.0,0.0,1183.79,1183.79,16658.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,9313,52657.77,2193.08,410.0,55260.85,11613.97,7645.85,4543.68,23803.5,79064.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2924,Medical Social Work Supervisor,32339,3734.0,0.0,40.0,3774.0,702.34,477.86,279.09,1459.29,5233.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17004,52043.63,0.0,5497.61,57541.24,5142.58,3781.12,6013.03,14936.73,72477.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,23947,104323.07,0.0,0.0,104323.07,21485.45,12424.5,8414.26,42324.21,146647.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,12022,10482.0,0.0,0.0,10482.0,2299.76,955.72,1556.2,4811.68,15293.68 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38374,109656.88,42270.94,18283.54,170211.36,25392.37,15196.12,2844.66,43433.15,213644.51 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,42431,16095.58,0.0,277.4,16372.98,0.0,5331.19,1269.21,6600.4,22973.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16118,65624.59,1680.64,3688.88,70994.11,19012.85,12932.72,5315.64,37261.21,108255.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13398,140680.1,0.0,255.03,140935.13,31147.16,12424.5,9804.34,53376.0,194311.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29063,7415.63,0.0,45.32,7460.95,0.0,2847.77,578.74,3426.51,10887.46 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,16566,160115.0,0.0,30421.85,190536.85,35445.62,12424.5,10995.27,58865.39,249402.24 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26062,97757.7,24803.43,17399.82,139960.95,28027.03,12424.5,2384.02,42835.55,182796.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,21338,97863.22,0.0,6523.22,104386.44,21563.33,12090.0,8032.98,41686.31,146072.75 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,40305,36852.02,0.0,0.0,36852.02,6858.13,5573.11,2916.5,15347.74,52199.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,53094,38980.02,0.0,0.0,38980.02,7519.34,7167.99,3012.83,17700.16,56680.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,1154,22529.14,0.0,0.0,22529.14,5383.08,6761.79,1901.99,14046.86,36576.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28272,64880.69,38112.55,3205.4,106198.64,18659.19,12783.04,8317.13,39759.36,145958.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,31742,7840.0,0.0,0.0,7840.0,2022.72,2341.55,646.53,5010.8,12850.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,50428,4164.42,0.0,113.68,4278.1,0.0,1370.88,305.91,1676.79,5954.89 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,21618,78281.78,1685.98,0.0,79967.76,16183.11,12424.5,6531.71,35139.32,115107.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32711,70499.61,22610.34,6514.87,99624.82,21117.68,13891.32,7581.04,42590.04,142214.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,2045,66102.04,1486.32,2305.54,69893.9,14097.66,12424.5,5769.64,32291.8,102185.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,52218,113233.59,11840.55,17686.46,142760.6,24917.39,15196.12,2378.45,42491.96,185252.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,13551,4899.0,0.0,238.56,5137.56,956.1,1099.09,378.22,2433.41,7570.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,38728,171435.03,0.0,0.0,171435.03,34479.12,12424.5,19076.08,65979.7,237414.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39858,61128.44,1315.37,1706.34,64150.15,17247.03,12042.74,4889.71,34179.48,98329.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",46368,13711.89,0.0,0.0,13711.89,0.0,3243.46,1064.06,4307.52,18019.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19412,7749.03,0.0,0.0,7749.03,1500.44,0.0,753.04,2253.48,10002.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,27395,6391.71,0.0,160.0,6551.71,1435.41,1099.09,533.52,3068.02,9619.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,46184,56120.05,0.0,0.0,56120.05,12556.82,12424.5,4565.0,29546.32,85666.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7245,"Chf Statnry Eng,Wtrtreat Plnt",26000,118858.08,12670.66,10068.12,141596.86,24021.95,12424.5,10146.9,46593.35,188190.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19659,39724.5,0.0,1174.96,40899.46,0.0,3391.89,3166.43,6558.32,47457.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,37174,186173.46,10866.3,21964.04,219003.8,40812.98,12352.82,11466.29,64632.09,283635.89 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,7165,59642.26,0.0,2119.5,61761.76,12745.62,8392.51,5157.48,26295.61,88057.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45410,53817.54,12986.77,2779.9,69584.21,15714.63,10645.94,5425.94,31786.51,101370.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2484,Biologist III,6527,119321.06,0.0,5546.91,124867.97,24026.63,12424.5,9846.63,46297.76,171165.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,42752,16362.33,0.0,0.0,16362.33,2102.6,5414.81,1321.82,8839.23,25201.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,25501,36708.6,0.0,0.0,36708.6,0.0,5662.71,2830.97,8493.68,45202.28 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,8667,208032.0,0.0,1562.5,209594.5,42181.17,12424.5,11344.37,65950.04,275544.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7400,Skilled Labor,7458,Switch Repairer,20826,68394.0,43777.66,8375.1,120546.76,15126.2,12424.5,9546.75,37097.45,157644.21 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15295,98332.7,22320.36,7105.38,127758.44,20443.34,12424.49,2085.95,34953.78,162712.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,8529,38980.0,0.0,0.0,38980.0,7519.34,7167.99,3078.05,17765.38,56745.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,15855,8598.93,0.0,61.31,8660.24,0.0,3116.58,671.22,3787.8,12448.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,10263,29896.0,9119.27,2865.23,41880.5,5827.12,4826.45,3306.17,13959.74,55840.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51505,68109.21,7643.62,7890.69,83643.52,20822.65,13420.37,6528.06,40771.08,124414.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,30822,2676.38,0.0,7.15,2683.53,0.0,1251.4,208.16,1459.56,4143.09 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,22213,63806.2,0.0,538.52,64344.72,13103.21,11050.63,5146.06,29299.9,93644.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,50239,4247.7,0.0,41.9,4289.6,0.0,1986.12,332.8,2318.92,6608.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50816,0.0,0.0,480.45,480.45,0.0,68.5,36.76,105.26,585.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,40.0,"Roofers and Waterproofers, Local 40",7200,Supervisory-Labor & Trade,9343,Roofer,11161,80918.02,0.0,220.0,81138.02,16723.45,12424.5,6637.89,35785.84,116923.86 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,46010,214859.9,0.0,0.0,214859.9,43214.27,12424.5,11402.41,67041.18,281901.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34271,139936.48,30610.76,9825.02,180372.26,27772.85,13260.76,3029.17,44062.78,224435.04 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,33771,55932.59,0.0,1360.87,57293.46,11837.9,8219.27,4370.05,24427.22,81720.68 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,4003,78605.0,0.0,0.0,78605.0,16176.4,12424.5,6278.83,34879.73,113484.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,52697,86240.45,0.0,23248.46,109488.91,13889.29,8792.72,8785.82,31467.83,140956.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,50714,107957.89,27035.27,18999.45,153992.61,29947.94,12376.73,2528.36,44853.03,198845.64 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,23037,63826.0,0.0,0.0,63826.0,12880.4,10035.17,4945.96,27861.53,91687.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45872,65968.47,13472.26,7739.53,87180.26,20181.95,12999.61,6813.84,39995.4,127175.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,1178,174036.94,0.0,0.0,174036.94,35821.07,12424.5,28228.3,76473.87,250510.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49939,5324.37,0.0,0.0,5324.37,1373.69,1776.76,451.19,3601.64,8926.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,1889,42779.2,0.0,4364.29,47143.49,10861.67,11420.99,3533.05,25815.71,72959.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,29365,97424.0,3479.63,3463.38,104367.01,20653.16,12424.51,8379.86,41457.53,145824.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22998,1208.95,0.0,35.81,1244.76,0.0,513.71,96.61,610.32,1855.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,37943,63780.24,4188.4,5046.14,73014.78,13358.12,12403.58,5768.42,31530.12,104544.9 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",7737,51682.95,4530.61,6460.36,62673.92,10262.31,5065.37,1041.55,16369.23,79043.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",39510,11811.54,0.0,0.0,11811.54,0.0,2801.51,916.37,3717.88,15529.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,7459,112283.11,0.0,0.0,112283.11,22860.75,12424.5,9108.48,44393.73,156676.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14178,10110.85,0.0,0.0,10110.85,0.0,4384.41,783.05,5167.46,15278.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28383,712.4,0.0,53.43,765.83,0.0,0.0,54.99,54.99,820.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,20809,58979.43,0.0,0.0,58979.43,10934.25,4778.65,8512.29,24225.19,83204.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,35418,97934.01,0.0,624.0,98558.01,20308.11,12424.5,7767.57,40500.18,139058.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,23341,19559.01,2272.82,0.0,21831.83,3639.96,3345.06,1738.52,8723.54,30555.37 +Calendar,2015,1,Public Protection,SHF,Sheriff,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,46747,107978.0,623.7,2604.5,111206.2,22791.91,0.0,9187.44,31979.35,143185.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28480,91991.08,0.0,1459.61,93450.69,16310.68,9618.23,7278.53,33207.44,126658.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,5116,101610.43,0.0,9078.89,110689.32,26734.16,9262.29,1013.33,37009.78,147699.1 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1812,112690.82,5567.95,9010.04,127268.81,22311.18,12424.5,2167.72,36903.4,164172.21 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,21120,17260.0,0.0,0.0,17260.0,3795.47,3822.92,1393.09,9011.48,26271.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",20991,29341.57,0.0,917.74,30259.31,0.0,4772.68,2344.36,7117.04,37376.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,29505,28103.71,271.92,739.36,29114.99,6208.22,5562.17,2445.34,14215.73,43330.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14727,82144.37,4334.88,10851.51,97330.76,19169.42,12041.25,1539.85,32750.52,130081.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6477,5730.4,0.0,0.0,5730.4,0.0,2484.9,458.59,2943.49,8673.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,21659,50812.53,0.0,0.0,50812.53,9212.3,4778.65,11016.07,25007.02,75819.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,1829,74664.73,9863.12,1681.1,86208.95,15511.51,12424.5,7083.95,35019.96,121228.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,29239,3566.0,0.0,9157.41,12723.41,805.24,477.86,982.32,2265.42,14988.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,31640,56531.0,0.0,624.0,57155.0,11780.12,12424.5,4687.81,28892.43,86047.43 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8259,Criminalist I,29588,83765.01,0.0,0.0,83765.01,17253.4,12424.51,6747.84,36425.75,120190.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,3785,15841.0,0.0,144.0,15985.0,2974.83,2867.19,1249.38,7091.4,23076.4 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,28359,13070.0,0.0,175.0,13245.0,3037.1,0.0,-0.08,3037.02,16282.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,2168,7542.0,0.0,284.62,7826.62,1969.23,1433.6,629.79,4032.62,11859.24 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11960,11582.24,0.0,698.12,12280.36,2942.05,5220.68,979.21,9141.94,21422.3 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1322,Customer Service Agent Trainee,19320,14945.4,0.0,59.68,15005.08,0.0,3171.36,1161.69,4333.05,19338.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30585,67446.44,11988.46,8503.81,87938.71,20790.73,13286.46,6656.24,40733.43,128672.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9203,Sr Airport Communications Disp,40416,92792.12,0.0,6495.61,99287.73,20172.29,12424.5,8159.79,40756.58,140044.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,21569,7155.49,0.0,0.0,7155.49,0.0,3040.42,578.27,3618.69,10774.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,22234,56120.0,0.0,0.0,56120.0,12556.79,12424.5,4313.19,29294.48,85414.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,46347,115909.36,0.0,5090.2,120999.56,0.0,10052.86,9375.58,19428.44,140428.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9304,56531.0,0.0,1641.45,58172.45,11667.81,12424.5,4725.85,28818.16,86990.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,2080,80136.03,0.0,0.0,80136.03,16500.48,12337.83,6582.93,35421.24,115557.27 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,25052,56531.0,0.0,2059.08,58590.08,12081.41,12424.5,4615.56,29121.47,87711.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45188,10596.8,469.88,45.08,11111.76,0.0,3536.2,861.74,4397.94,15509.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13910,1095.33,0.0,36.99,1132.32,0.0,459.95,87.89,547.84,1680.16 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,4985,15034.5,0.0,0.0,15034.5,0.0,1753.16,1165.49,2918.65,17953.15 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27468,41145.75,514.61,1897.14,43557.5,9872.38,11146.22,3502.35,24520.95,68078.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51983,56531.0,0.0,2096.37,58627.37,12671.48,12424.5,4709.34,29805.32,88432.69 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18997,11519.6,0.0,0.0,11519.6,0.0,2962.77,891.84,3854.61,15374.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,6787,36385.0,0.0,419.43,36804.43,6849.29,4778.65,2986.18,14614.12,51418.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,31316,9644.5,51.27,0.0,9695.77,2120.84,2532.68,767.07,5420.59,15116.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6514,46366.78,674.17,10090.51,57131.46,9754.65,4458.48,4540.97,18754.1,75885.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,19039,40326.03,0.0,708.03,41034.06,9045.14,6212.25,3375.58,18632.97,59667.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,24198,58782.0,2938.56,624.0,62344.56,12243.99,12424.5,5156.47,29824.96,92169.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,19949,114176.92,12516.55,16995.59,143689.06,25707.19,12457.36,2447.44,40611.99,184301.05 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1492,"Asst Clk, Board Of Supervisors",5842,102342.9,0.0,0.0,102342.9,21055.74,12276.9,8415.67,41748.31,144091.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,45744,70948.03,0.0,0.0,70948.03,14317.79,10035.18,5811.9,30164.87,101112.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,5084,117434.94,29070.58,7484.63,153990.15,23221.55,12424.5,2624.6,38270.65,192260.8 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14489,97652.59,5298.61,6830.11,109781.31,25398.26,12411.06,1812.94,39622.26,149403.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25431,112159.74,23001.97,18561.96,153723.67,24822.79,15052.76,2566.24,42441.79,196165.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,36217,56531.0,0.0,3267.45,59798.45,11788.47,12424.5,4901.45,29114.42,88912.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28347,68290.75,69.99,2003.18,70363.92,0.0,5949.31,5460.01,11409.32,81773.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,22303,102019.0,0.0,4652.02,106671.02,21026.26,12424.51,8641.0,42091.77,148762.79 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,3704,92282.01,0.0,97.8,92379.81,19037.72,12424.5,7663.26,39125.48,131505.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46376,100029.77,38304.87,7621.22,145955.86,20738.37,12424.5,2391.05,35553.92,181509.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,26431,138633.91,29287.78,2475.07,170396.76,27400.21,12424.5,2850.89,42675.6,213072.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,47014,48346.24,0.0,0.0,48346.24,11582.79,12424.5,3868.68,27875.97,76222.21 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,27923,113233.6,1761.1,19175.28,134169.98,25036.03,15196.12,2277.3,42509.45,176679.43 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,8810,67261.0,0.0,125.0,67386.0,13862.82,12424.5,5578.58,31865.9,99251.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,260,93322.97,0.0,1247.99,94570.96,19497.48,12376.71,7742.71,39616.9,134187.86 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,19844,59377.03,0.0,0.0,59377.03,5236.53,12185.57,4652.22,22074.32,81451.35 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,14006,75927.0,5754.95,870.6,82552.55,15648.74,12424.5,6821.74,34894.98,117447.53 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,26450,12897.71,0.0,0.0,12897.71,0.0,4049.91,999.91,5049.82,17947.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,42730,3271.75,0.0,101.57,3373.32,0.0,1373.86,269.53,1643.39,5016.71 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,44129,16096.47,0.0,0.0,16096.47,0.0,5976.31,1213.01,7189.32,23285.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,9386,"Senior Property Manager, Port",24124,97354.88,0.0,0.0,97354.88,19141.84,9881.54,8036.7,37060.08,134414.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,43753,55413.51,340.35,0.0,55753.86,12375.06,12424.51,4364.98,29164.55,84918.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),15177,10911.38,56.51,0.0,10967.89,0.0,3165.86,851.11,4016.97,14984.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,121,1928.51,0.0,52.69,1981.2,0.0,836.27,153.38,989.65,2970.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,18689,25050.99,0.0,446.22,25497.21,5674.15,4902.13,2031.32,12607.6,38104.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,32704,65592.0,0.0,2039.04,67631.04,13940.32,12424.5,5601.33,31966.15,99597.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31704,58734.35,1840.6,11332.69,71907.64,3693.41,0.0,6211.99,9905.4,81813.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9126,Transit Traffic Checker,35568,36173.26,0.0,329.45,36502.71,7794.85,6507.39,2942.8,17245.04,53747.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32980,113223.0,52915.68,22153.73,188292.41,25719.09,15196.11,3201.18,44116.38,232408.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,13289,14644.0,0.0,0.0,14644.0,3284.64,1911.46,1184.79,6380.89,21024.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50557,1788.5,0.0,0.0,1788.5,0.0,872.1,138.77,1010.87,2799.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,48222,111930.54,10833.15,2624.29,125387.98,22167.73,12340.87,1659.73,36168.33,161556.31 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,44690,74171.86,0.0,4431.0,78602.86,15292.06,12423.01,6523.57,34238.64,112841.5 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,4311,71361.76,0.0,0.0,71361.76,14258.59,8668.54,5801.92,28729.05,100090.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52046,66973.92,4261.38,3595.01,74830.31,19289.72,13193.58,5501.22,37984.52,112814.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34125,117918.3,0.0,8017.04,125935.34,23922.36,12424.5,9514.36,45861.22,171796.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51816,119460.37,34661.53,18737.9,172859.8,23646.02,12424.5,2940.11,39010.63,211870.43 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,46824,9463.59,0.0,2095.56,11559.15,0.0,12424.5,167.61,12592.11,24151.26 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,35794,99654.02,6159.75,0.0,105813.77,22731.77,12424.5,1745.37,36901.64,142715.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7065,756.92,227.08,0.0,984.0,214.21,0.0,77.74,291.95,1275.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47960,63223.72,19869.43,4363.98,87457.13,18477.79,12460.22,6792.23,37730.24,125187.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2628,2424.4,0.0,3.51,2427.91,0.0,1051.3,187.97,1239.27,3667.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33938,61645.66,0.0,5270.15,66915.81,13717.79,12259.69,5457.32,31434.8,98350.61 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,46727,14762.96,0.0,0.0,14762.96,0.0,5486.49,1144.73,6631.22,21394.18 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,18961,96930.0,0.0,0.0,96930.0,19977.61,12424.5,7685.48,40087.59,137017.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,46137,59949.6,1331.28,10.0,61290.88,12330.75,12424.5,4664.95,29420.2,90711.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,14500,43550.8,0.0,0.0,43550.8,9525.64,7645.85,3556.98,20728.47,64279.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,30233,62307.17,21453.84,70126.98,153887.99,14265.65,6510.91,231.4,21007.96,174895.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50783,120259.2,60.41,31093.36,151412.97,28233.61,10981.35,10264.76,49479.72,200892.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,26676,81592.02,0.0,2950.2,84542.22,17117.5,12424.5,6552.13,36094.13,120636.35 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,2339,89821.51,0.0,14717.29,104538.8,20403.45,11229.84,230.21,31863.5,136402.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15538,127313.65,489.22,11282.22,139085.09,27948.42,11625.28,10138.26,49711.96,188797.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43859,2011.5,0.0,0.0,2011.5,0.0,0.0,829.37,829.37,2840.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,44591,60449.26,240.1,770.0,61459.36,12516.16,11954.77,4706.59,29177.52,90636.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7220,Asphalt Finisher Supervisor 1,1087,91653.0,14622.47,4261.08,110536.55,19759.11,12424.59,8933.7,41117.4,151653.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50636,3796.1,0.0,0.0,3796.1,0.0,334.38,293.89,628.27,4424.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,47211,79722.03,0.0,708.75,80430.78,16573.72,12424.5,6335.55,35333.77,115764.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7500,Semi-Skilled & General Labor,7542,Watershed Worker (Seasonal),12646,18694.46,0.0,0.0,18694.46,0.0,5358.06,1450.99,6809.05,25503.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,33803,125318.95,0.0,0.0,125318.95,25230.95,12376.72,9886.98,47494.65,172813.6 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,33367,14535.0,0.0,120.0,14655.0,3222.61,2867.19,1167.44,7257.24,21912.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,784,118331.43,308.82,10535.95,129176.2,24115.71,10828.07,8235.98,43179.76,172355.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,14484,61333.0,0.0,0.0,61333.0,12055.73,8123.71,4779.0,24958.44,86291.44 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,44823,84599.06,0.0,627.64,85226.7,17563.2,12424.5,6990.58,36978.28,122204.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,2498,60134.19,21779.55,378.15,82291.89,12329.08,11690.68,6411.66,30431.42,112723.31 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,29610,117137.5,57554.45,4928.61,179620.56,23176.47,12424.5,3017.71,38618.68,218239.24 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,49526,78511.38,0.0,2174.71,80686.09,16681.06,11534.51,6542.82,34758.39,115444.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,18570,112685.43,14491.94,9529.36,136706.73,22330.91,12424.5,2318.24,37073.65,173780.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,4254,52921.2,4203.11,4183.32,61307.63,14642.78,9939.6,4993.74,29576.12,90883.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,13101,139862.21,2747.43,5158.93,147768.57,27658.68,12424.5,2509.32,42592.5,190361.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,36258,51610.09,0.0,1705.1,53315.19,11843.97,0.0,4435.4,16279.37,69594.56 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,491C,Court Administrative Secretary,22660,29538.0,0.0,1857.0,31395.0,6673.86,4300.79,2634.76,13609.41,45004.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22584,108031.83,0.0,33.9,108065.73,0.0,9448.83,8378.45,17827.28,125893.01 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1830,Perf Analyst III Project Mgr,51225,94670.86,0.0,0.0,94670.86,19021.02,9203.57,7466.43,35691.02,130361.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50752,64673.82,3259.85,863.95,68797.62,13473.32,12158.09,5661.31,31292.72,100090.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,26956,100761.0,0.0,1720.0,102481.0,21140.95,12424.47,8457.41,42022.83,144503.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,15496,86663.02,1498.72,2040.0,90201.74,18280.83,12424.5,7418.58,38123.91,128325.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28418,5350.33,0.0,0.0,5350.33,0.0,467.65,415.0,882.65,6232.98 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1686,Auditor III,11500,64366.37,0.0,0.0,64366.37,13706.39,6575.31,4935.61,25217.31,89583.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16708,20322.03,0.0,874.41,21196.44,1702.95,8773.32,1717.25,12193.52,33389.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,24396,78610.03,0.0,0.0,78610.03,16201.96,12424.5,6520.67,35147.13,113757.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,2971,7784.02,0.0,0.0,7784.02,1911.9,1911.46,581.06,4404.42,12188.44 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,6415,54046.43,0.0,8.28,54054.71,12092.57,12406.58,4349.98,28849.13,82903.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,23504,66880.0,0.0,0.0,66880.0,14288.56,9079.45,5463.38,28831.39,95711.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39247,112690.83,29164.78,13183.46,155039.07,22311.18,12424.5,2595.93,37331.61,192370.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,48609,19782.8,361.0,0.0,20143.8,5103.94,6546.76,1632.91,13283.61,33427.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47509,70245.01,202.58,3952.02,74399.61,15122.33,12424.5,6154.88,33701.71,108101.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,39062,54892.0,19733.86,6626.52,81252.38,13145.02,12370.76,6496.8,32012.58,113264.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,43522,52436.6,0.0,788.14,53224.74,12745.84,12424.5,4271.35,29441.69,82666.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8356,34861.44,2689.19,1793.56,39344.19,9653.34,10821.14,2851.21,23325.69,62669.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,51499,56531.01,0.0,624.0,57155.01,11780.12,12424.5,4485.5,28690.12,85845.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,6220,40498.75,0.0,0.0,40498.75,0.0,3464.65,3137.36,6602.01,47100.76 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,4828,119321.04,0.0,0.0,119321.04,24319.75,12424.51,8913.18,45657.44,164978.48 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13942,2499.0,0.0,3.43,2502.43,0.0,1218.56,194.11,1412.67,3915.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,16764,40298.62,1024.97,6495.03,47818.62,9442.72,3816.35,3188.79,16447.86,64266.48 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,42465,25702.5,0.0,2545.77,28248.27,6544.87,6212.25,2381.29,15138.41,43386.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28884,57708.51,6904.59,216.0,64829.1,12956.63,12424.48,4953.36,30334.47,95163.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9117,Pr Fare Collections Receiver,15141,4453.5,0.0,192.99,4646.49,864.71,716.79,360.64,1942.14,6588.63 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,30821,111573.46,0.0,6378.71,117952.17,23514.86,6307.34,9570.78,39392.98,157345.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",13157,94388.0,52366.42,1169.63,147924.05,19453.78,12424.5,10228.63,42106.91,190030.96 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,8880,55056.0,12622.11,3917.24,71595.35,11832.81,10990.91,5630.76,28454.48,100049.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,26456,18829.09,607.73,2087.3,21524.12,3534.72,3275.35,1753.34,8563.41,30087.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,45425,23554.01,45.92,0.0,23599.93,5283.18,4778.65,1906.65,11968.48,35568.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",52576,34226.56,0.0,3110.25,37336.81,8012.47,3010.55,194.79,11217.81,48554.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",38293,69782.49,0.0,455.76,70238.25,14475.78,9294.49,5824.67,29594.94,99833.19 +Calendar,2015,4,Community Health,DPH,Public Health,856.0,"Teamsters - Miscellaneous, Local 856",2400,"Lab, Pharmacy & Med Techs",2462,Microbiologist,52928,94107.02,0.0,0.0,94107.02,19395.81,12424.5,7010.54,38830.85,132937.87 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,1350,98157.01,0.0,0.0,98157.01,20230.58,12424.5,7997.97,40653.05,138810.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,49376,82726.21,0.0,0.0,82726.21,17032.31,12424.5,6728.12,36184.93,118911.14 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,24685,112776.01,15867.74,18503.96,147147.71,22764.21,12424.5,10199.9,45388.61,192536.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,7173,1157.25,0.0,0.0,1157.25,0.0,358.4,89.59,447.99,1605.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16070,138624.69,35593.12,11233.34,185451.15,27979.65,12424.51,458.08,40862.24,226313.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7100,Administrative-Labor & Trades,7120,Bldgs & Grounds Maint Supt,37408,124801.03,4516.72,12386.68,141704.43,25116.28,12424.5,10096.85,47637.63,189342.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,12705,2741.94,0.0,63.01,2804.95,0.0,900.48,163.2,1063.68,3868.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25505,11604.8,0.0,0.0,11604.8,0.0,4969.8,938.54,5908.34,17513.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,22037,2589.0,0.0,867.96,3456.96,580.71,477.86,270.93,1329.5,4786.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,42087,65445.85,0.0,822.65,66268.5,13619.89,12397.38,5425.98,31443.25,97711.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,20338,62697.3,1013.27,0.0,63710.57,12939.76,12195.55,5270.62,30405.93,94116.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,25113,91372.21,0.0,0.0,91372.21,18852.05,11065.1,7470.14,37387.29,128759.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48600,123995.94,42792.45,9680.43,176468.82,24617.22,12424.5,2952.66,39994.38,216463.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,8705,84791.0,0.0,0.0,84791.0,17475.8,12424.52,6748.89,36649.21,121440.21 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,40274,204957.99,0.0,42293.8,247251.79,47436.45,11182.06,11901.88,70520.39,317772.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,17581,32952.75,2164.94,15873.99,50991.68,5849.57,2867.19,838.59,9555.35,60547.03 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,1999,32034.02,2599.13,335.93,34969.08,6027.67,4754.76,2782.01,13564.44,48533.52 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43550,56531.0,0.0,624.0,57155.0,11780.12,12424.5,4692.36,28896.98,86051.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,856.0,"Teamsters - Miscellaneous, Local 856",7400,Skilled Labor,7444,Parking Meter Repairer,32810,72003.01,420.9,1010.0,73433.91,15077.81,12185.57,5797.84,33061.22,106495.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,22689,66102.04,799.94,826.34,67728.32,13794.34,12424.5,5359.33,31578.17,99306.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,15018,98157.01,0.0,0.0,98157.01,20230.58,12424.5,8001.93,40657.01,138814.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,35026,93281.0,0.0,1604.0,94885.0,19555.98,12424.5,7786.24,39766.72,134651.72 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,30203,88296.0,0.0,5322.0,93618.0,18337.86,12424.5,7553.82,38316.18,131934.18 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,44377,8116.99,1607.74,80.0,9804.73,0.0,2132.47,761.01,2893.48,12698.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,39698,62686.85,0.0,288.85,62975.7,12971.52,12376.71,5104.69,30452.92,93428.62 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,10747,86967.02,0.0,0.0,86967.02,17882.37,12084.56,6858.44,36825.37,123792.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,41631,83798.23,0.0,0.0,83798.23,17256.78,12424.5,6818.05,36499.33,120297.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28116,113233.6,5269.66,18520.6,137023.86,24798.75,15196.12,2250.05,42244.92,179268.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",48146,33052.0,802.99,0.0,33854.99,6151.0,4300.79,2721.36,13173.15,47028.14 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,43108,23643.01,1149.31,12321.94,37114.26,5303.16,4300.79,2985.28,12589.23,49703.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9499,11757.9,86.61,83.99,11928.5,0.0,1003.51,925.84,1929.35,13857.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,3781,27647.5,0.0,0.0,27647.5,6294.87,7406.92,2145.54,15847.33,43494.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,3046,0.0,0.0,3201.71,3201.71,0.0,34.25,244.93,279.18,3480.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,18795,48501.4,0.0,1152.56,49653.96,10232.51,7281.49,4084.53,21598.53,71252.49 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",14555,26196.69,662.74,898.0,27757.43,0.0,5697.53,2151.81,7849.34,35606.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,45627,3983.56,0.0,0.0,3983.56,0.0,1284.26,309.19,1593.45,5577.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,24052,1190.0,0.0,109.82,1299.82,0.0,309.9,100.88,410.78,1710.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,7060,185317.14,0.0,0.0,185317.14,37028.42,12424.5,18197.72,67650.64,252967.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,11752,114826.03,0.0,0.0,114826.03,23069.78,12194.78,9238.07,44502.63,159328.66 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7002,112170.38,63820.03,18076.95,194067.36,24764.09,15052.76,3257.88,43074.73,237142.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,6434,84309.4,4426.54,3237.86,91973.8,17704.73,12376.73,7308.76,37390.22,129364.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41037,46745.4,1135.44,8403.64,56284.48,387.47,3583.21,2300.49,6271.17,62555.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35802,44236.91,1172.42,660.4,46069.73,11849.6,8673.2,3583.53,24106.33,70176.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,1203,124385.04,0.0,530.0,124915.04,25163.97,12167.63,9708.76,47040.36,171955.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,52934,4394.62,128.39,106.79,4629.8,0.0,2054.82,358.93,2413.75,7043.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7400,Skilled Labor,7421,Sewer Maintenance Worker,7326,34585.0,2291.48,3827.6,40704.08,7439.36,5973.32,3351.59,16764.27,57468.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42428,112680.04,1868.94,11432.13,125981.11,22350.66,12424.5,1836.68,36611.84,162592.95 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,43865,18923.94,310.16,0.0,19234.1,0.0,4508.36,1491.59,5999.95,25234.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,38262,139808.19,7879.67,7200.96,154888.82,27617.36,12424.5,2527.15,42569.01,197457.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,50564,57683.93,238.04,0.0,57921.97,12089.94,10513.04,4687.13,27290.11,85212.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,4918,47278.2,787.41,840.0,48905.61,11530.75,12424.5,3921.81,27877.06,76782.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,26665,49516.2,8150.99,377.71,58044.9,11881.18,11420.99,4671.36,27973.53,86018.43 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,2967,19381.27,4695.56,675.06,24751.89,4289.82,4599.46,1978.91,10868.19,35620.08 +Calendar,2015,1,Public Protection,SHF,Sheriff,351.0,Municipal Executive Association - Miscellaneous,8300,Correction & Detention,8518,Undersheriff (SFERS),14875,204178.21,0.0,12250.61,216428.82,43556.48,12424.5,11329.16,67310.14,283738.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47687,42397.39,0.0,0.0,42397.39,0.0,0.0,3353.75,3353.75,45751.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2095,68844.32,15984.22,2533.77,87362.31,19504.39,13562.48,6776.0,39842.87,127205.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,41343,8316.0,0.0,0.0,8316.0,1547.61,1433.6,668.38,3649.59,11965.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11340,122634.79,0.0,15503.95,138138.74,25973.88,10859.19,9265.61,46098.68,184237.42 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0901,Mayoral Staff XIII,46072,101685.7,0.0,0.0,101685.7,20884.2,11946.64,15466.33,48297.17,149982.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,1775,200107.1,0.0,10793.44,210900.54,40264.74,12424.5,3475.29,56164.53,267065.07 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13004,151061.58,0.0,14388.48,165450.06,28380.49,12420.02,4195.62,44996.13,210446.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2567,1529.75,0.0,30.6,1560.35,900.06,119.52,0.0,1019.58,2579.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,4280,51580.93,0.0,360.0,51940.93,12437.62,12424.5,3971.6,28833.72,80774.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19264,64903.41,8222.33,1022.53,74148.27,18060.67,12789.66,5766.79,36617.12,110765.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45662,119467.44,4522.47,11344.0,135333.91,24090.22,12424.5,2216.07,38730.79,174064.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,42722,63630.89,0.0,0.0,63630.89,12507.38,8123.71,14946.98,35578.07,99208.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,4130,44497.6,0.0,15819.17,60316.77,10278.4,6546.76,4896.28,21721.44,82038.21 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,42473,30800.03,0.0,13236.22,44036.25,6926.39,4778.65,3484.25,15189.29,59225.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14377,10382.0,0.0,28.99,10410.99,0.0,3464.51,806.86,4271.37,14682.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19480,21021.4,0.0,0.0,21021.4,3453.94,4874.23,1680.54,10008.71,31030.11 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,48364,148149.02,0.0,0.0,148149.02,29795.01,0.0,17559.97,47354.98,195504.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35423,136071.03,0.0,250.0,136321.03,27384.43,12424.5,9965.08,49774.01,186095.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,47115,94249.36,8949.04,3327.78,106526.18,19538.87,11954.34,8557.57,40050.78,146576.96 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,52615,81185.44,0.0,0.0,81185.44,16662.41,11892.88,6587.39,35142.68,116328.12 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,50730,106211.68,0.0,610.0,106821.68,22460.73,10892.41,8634.63,41987.77,148809.45 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5293,Planner 4,24178,114102.06,0.0,0.0,114102.06,23256.39,12424.5,8686.56,44367.45,158469.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20592,9108.63,0.0,193.71,9302.34,7348.93,735.01,326.69,8410.63,17712.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7227,Cement Finisher Supervisor 1,5766,84829.93,1591.54,0.0,86421.47,17853.03,10232.58,7175.43,35261.04,121682.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,30070,65662.84,0.0,0.0,65662.84,13504.28,12424.5,5297.91,31226.69,96889.53 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,4520,136571.66,0.0,0.0,136571.66,27548.42,12424.5,10145.01,50117.93,186689.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23807,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,14275,66102.0,7586.53,2331.22,76019.75,13913.95,12424.5,6255.08,32593.53,108613.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,892,4688.2,0.0,265.44,4953.64,0.0,1164.8,384.02,1548.82,6502.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,52583,75927.01,219.87,0.0,76146.88,15648.74,12424.5,6310.72,34383.96,110530.84 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",3631,69403.25,801.0,2373.5,72577.75,16380.27,12421.69,1500.13,30302.09,102879.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,17878,161403.18,3706.53,1148.3,166258.01,31856.51,12424.5,2823.07,47104.08,213362.09 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,41687,57832.25,0.0,1115.02,58947.27,12142.28,12223.02,4887.94,29253.24,88200.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3205,18367.11,0.0,2741.9,21109.01,1022.44,0.0,3668.77,4691.21,25800.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,22508,97837.49,0.0,1000.0,98837.49,20367.77,12412.56,7944.09,40724.42,139561.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,35373,73932.4,55.96,6358.54,80346.9,14969.07,7825.35,6451.33,29245.75,109592.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,25172,48670.5,0.0,600.64,49271.14,9847.29,10274.11,3937.2,24058.6,73329.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,50670,83148.0,3366.7,0.0,86514.7,17137.11,12424.53,6846.02,36407.66,122922.36 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,39731,16489.7,0.0,0.0,16489.7,0.0,6122.65,1278.78,7401.43,23891.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,24297,48327.42,0.0,0.0,48327.42,11569.69,12394.57,3873.28,27837.54,76164.96 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,1462,0.0,0.0,7042.83,7042.83,0.0,0.0,538.78,538.78,7581.61 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,34194,41725.0,0.0,0.0,41725.0,8299.29,7167.99,3261.7,18728.98,60453.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47694,8343.89,0.0,177.56,8521.45,2996.68,651.21,362.33,4010.22,12531.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,15722,27528.0,1574.07,1732.72,30834.79,5354.53,4444.15,2432.27,12230.95,43065.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,21051,108075.56,7484.98,5947.22,121507.76,21580.96,11468.77,2038.08,35087.81,156595.57 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19740,104041.46,1147.09,15521.51,120710.06,22068.71,9760.82,9504.62,41334.15,162044.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,2907,8623.71,0.0,205.19,8828.9,2197.26,0.0,471.59,2668.85,11497.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7253,Electrical Trnst Mech Sprv 1,13826,108714.81,22269.23,5313.15,136297.19,22418.04,12424.5,10036.55,44879.09,181176.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,23083,78809.0,400.16,0.0,79209.16,15984.4,10513.1,6374.11,32871.61,112080.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,14093,56035.71,0.0,0.0,56035.71,11758.68,10513.04,4222.95,26494.67,82530.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,4160,13059.2,0.0,0.0,13059.2,1958.23,4321.69,1055.09,7335.01,20394.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39362,33901.41,5650.93,1990.6,41542.94,9206.51,10581.44,2999.79,22787.74,64330.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,44276,51853.0,0.0,0.0,51853.0,10103.26,7645.85,4174.15,21923.26,73776.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49085,124992.37,1716.9,10980.5,137689.77,25176.1,11067.36,8607.35,44850.81,182540.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10357,36718.1,5018.28,1048.03,42784.41,9768.79,11467.34,3247.34,24483.47,67267.88 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,37948,72565.67,0.0,480.0,73045.67,15025.0,12377.37,5602.11,33004.48,106050.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30524,21797.6,0.0,4305.29,26102.89,0.0,1910.74,2023.08,3933.82,30036.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,27544,56805.22,320.52,175.54,57301.28,11614.15,11038.71,4730.81,27383.67,84684.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13193,16075.9,3035.54,1624.19,20735.63,5202.1,3196.98,1604.91,10003.99,30739.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,35890,96422.85,52495.86,0.0,148918.71,19871.19,12424.5,10273.64,42569.33,191488.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49714,108230.55,0.0,7124.52,115355.07,21741.14,9578.4,8790.44,40109.98,155465.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,13287,134903.41,0.0,0.0,134903.41,27139.94,12376.69,10026.83,49543.46,184446.87 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16913,18714.14,0.0,491.05,19205.19,4571.25,4159.35,1601.01,10331.61,29536.8 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,13614,2862.0,0.0,24.0,2886.0,537.08,0.0,228.57,765.65,3651.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,39082,80953.79,4168.68,6538.38,91660.85,16760.25,12424.5,1695.37,30880.12,122540.97 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,43989,134129.03,0.0,0.0,134129.03,26853.81,12424.5,17296.22,56574.53,190703.56 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,36762,104672.32,0.0,0.0,104672.32,21545.72,12424.5,8018.88,41989.1,146661.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34353,63332.86,20104.63,4013.37,87450.86,18488.11,12482.38,6577.35,37547.84,124998.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,31868,93766.5,29246.5,10171.92,133184.92,20722.07,12663.43,9974.24,43359.74,176544.66 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",10076,198139.06,0.0,5525.28,203664.34,40987.79,12424.5,11274.53,64686.82,268351.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,10180,0.0,0.0,11431.35,11431.35,0.0,0.0,874.49,874.49,12305.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,20957,0.0,0.0,78.41,78.41,0.0,34.25,6.0,40.25,118.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52534,56531.0,1275.33,624.0,58430.33,11780.12,12424.5,4838.16,29042.78,87473.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48518,69979.47,0.0,3973.91,73953.38,19550.36,6429.68,1544.12,27524.16,101477.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42645,1923.25,0.0,1.96,1925.21,0.0,937.81,149.42,1087.23,3012.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14972,31388.0,6799.59,23728.72,61916.31,6783.21,3345.05,986.62,11114.88,73031.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29804,6987.84,0.0,360.06,7347.9,0.0,2971.73,593.2,3564.93,10912.83 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,16520,118427.0,0.0,0.0,118427.0,23833.74,12424.51,17076.26,53334.51,171761.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48142,67248.94,18739.84,2061.18,88049.96,18998.83,13252.28,6841.27,39092.38,127142.34 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,19919,81724.19,117.84,1063.6,82905.63,17062.56,12416.55,6579.95,36059.06,118964.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,41432,138719.12,39437.57,13577.65,191734.34,28000.31,12424.5,3214.4,43639.21,235373.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6492,9146.0,0.0,89963.12,99109.12,2094.04,955.73,1.88,3051.65,102160.77 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,17644,0.0,0.0,1925.39,1925.39,0.0,22.84,147.29,170.13,2095.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28114,11117.15,0.0,0.0,11117.15,0.0,979.62,862.87,1842.49,12959.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7578,53512.09,10503.69,608.97,64624.75,14919.68,10577.56,5033.14,30530.38,95155.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,22429,26935.33,0.0,218.03,27153.36,6487.14,7502.52,2230.48,16220.14,43373.5 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,46789,143774.6,0.0,0.0,143774.6,28873.35,12137.78,17418.68,58429.81,202204.41 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17003,34244.8,2150.85,1359.15,37754.8,7997.84,9127.23,3049.51,20174.58,57929.38 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14077,97730.81,34310.93,12747.99,144789.73,26875.09,12418.53,2456.13,41749.75,186539.48 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8124,Invstgtor Ofc Citizen Cmplnts,12228,84098.02,0.0,0.0,84098.02,17320.34,12424.5,6531.04,36275.88,120373.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,35461,1393.83,0.0,97.47,1491.3,0.0,379.31,115.45,494.76,1986.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39712,49.0,0.0,0.0,49.0,0.0,23.89,3.8,27.69,76.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,43806,60851.71,18678.44,11244.91,90775.06,14399.28,12042.2,7167.1,33608.58,124383.64 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,26587,444.13,0.0,0.0,444.13,97.44,29.87,34.39,161.7,605.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,47363,25320.01,136.49,5878.99,31335.49,7462.45,5734.39,2531.27,15728.11,47063.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,39402,12253.13,0.0,259.76,12512.89,0.0,4678.6,970.16,5648.76,18161.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51156,36157.33,0.0,621.35,36778.68,906.48,0.0,1307.06,2213.54,38992.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,44320,45920.21,2304.25,5668.83,53893.29,10946.09,9989.42,4262.85,25198.36,79091.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,15600,5694.65,0.0,124.44,5819.09,0.0,1305.17,451.66,1756.83,7575.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,11824,42038.96,3428.68,1102.77,46570.41,6297.29,10581.75,3739.21,20618.25,67188.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12524,117135.37,21112.54,5090.77,143338.68,23184.69,12424.5,1940.77,37549.96,180888.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30079,89.54,0.0,882.7,972.24,23.1,38.83,74.46,136.39,1108.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,27681,15418.01,0.0,0.0,15418.01,0.0,2302.73,1195.24,3497.97,18915.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,21907,73247.02,0.0,0.0,73247.02,15079.85,12424.5,5817.45,33321.8,106568.82 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,48784,34485.26,0.0,585.78,35071.04,8382.42,8506.01,2812.56,19700.99,54772.03 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,40356,33825.03,200.74,0.0,34025.77,7888.68,9079.44,2756.16,19724.28,53750.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,21946,56531.0,0.0,2948.4,59479.4,12664.6,12424.5,4219.29,29308.39,88787.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,10499,81542.07,0.0,0.0,81542.07,16806.2,12424.5,6571.56,35802.26,117344.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,3860,62595.33,0.0,2530.64,65125.97,13347.23,11854.64,4740.32,29942.19,95068.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,21276,19749.01,344.42,211.41,20304.84,3502.41,1433.6,348.2,5284.21,25589.05 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,48400,87713.04,0.0,0.0,87713.04,18078.19,12424.51,6852.02,37354.72,125067.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26911,34447.19,0.0,4965.94,39413.13,8838.08,7837.29,3055.2,19730.57,59143.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5265,Architectural Associate 1,10990,96588.01,0.0,0.0,96588.01,19986.76,11946.62,7367.11,39300.49,135888.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2468,Diagnostic Imaging Tech II,15661,117517.0,32076.38,37794.32,187387.7,23776.18,12424.5,10924.51,47125.19,234512.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,13771,84599.0,0.0,2104.0,86703.0,17868.02,12424.5,7118.58,37411.1,124114.1 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,48927,106605.03,0.0,0.0,106605.03,21971.81,12424.5,8761.55,43157.86,149762.89 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,14301,74696.56,0.0,0.0,74696.56,15381.3,12424.5,5855.89,33661.69,108358.25 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,47737,165220.77,0.0,0.0,165220.77,33222.51,12424.5,18833.46,64480.47,229701.24 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,20612,17954.94,1450.98,689.68,20095.6,4027.31,3557.24,1693.19,9277.74,29373.34 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),30316,184289.02,0.0,5185.78,189474.8,38130.64,12424.5,10918.11,61473.25,250948.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,49475,74191.78,16482.96,3976.64,94651.38,15733.13,12412.56,7497.04,35642.73,130294.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20321,21657.64,0.0,5172.99,26830.63,2264.26,0.0,6277.49,8541.75,35372.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40047,136071.0,550.66,29078.25,165699.91,30625.08,12424.5,10178.05,53227.63,218927.54 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,42956,96180.62,0.0,0.0,96180.62,19813.98,12424.51,7332.69,39571.18,135751.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,24941,35813.01,2994.74,0.0,38807.75,6828.9,6690.13,3099.26,16618.29,55426.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,51454,8316.0,0.0,1158.4,9474.4,1561.02,1433.6,753.5,3748.12,13222.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29622,97764.47,20727.87,11526.11,130018.45,25883.95,12424.51,1805.66,40114.12,170132.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32886,33776.17,3812.7,992.16,38581.03,8923.25,10540.47,2770.0,22233.72,60814.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,27812,97934.03,15766.26,2073.17,115773.46,20525.66,12424.5,9219.86,42170.02,157943.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,18438,71338.3,3100.99,4125.62,78564.91,14836.62,12376.71,6251.86,33465.19,112030.1 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,26833,70698.86,17489.98,7579.12,95767.96,15420.42,9358.52,7658.72,32437.66,128205.62 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,12311,92391.01,0.0,0.0,92391.01,17855.23,8601.57,6999.48,33456.28,125847.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,52630,13979.0,0.0,340.0,14319.0,2664.76,2867.19,1162.95,6694.9,21013.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,26367,66102.04,4158.31,845.29,71105.64,13798.6,12424.5,5756.92,31980.02,103085.66 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,1107,18306.05,1134.03,2216.11,21656.19,874.83,4850.34,1670.59,7395.76,29051.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,39965,118008.77,0.0,0.0,118008.77,23706.31,12424.5,9523.33,45654.14,163662.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,14164,0.0,0.0,311.62,311.62,0.0,68.5,23.84,92.34,403.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43999,41037.52,3765.99,2729.76,47533.27,11659.62,12785.78,3862.91,28308.31,75841.58 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0904,Mayoral Staff XVI,39975,166031.98,0.0,0.0,166031.98,33414.09,12424.5,17833.55,63672.14,229704.12 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50324,12997.25,0.0,742.84,13740.09,0.0,5579.08,1072.69,6651.77,20391.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20057,92025.28,3948.59,16524.47,112498.34,21089.66,9194.13,8996.73,39280.52,151778.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",20805,59400.62,0.0,0.0,59400.62,10806.53,5734.37,12235.58,28776.48,88177.1 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,97,111918.05,0.0,1720.0,113638.05,22837.24,12424.5,9118.28,44380.02,158018.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,766,6587.6,0.0,0.0,6587.6,1477.61,1143.89,509.65,3131.15,9718.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,25978,57988.62,0.0,0.0,57988.62,5236.53,11898.84,4602.84,21738.21,79726.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26713,95192.32,53482.42,14018.06,162692.8,26554.71,12097.46,2700.71,41352.88,204045.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,14881,31922.29,3495.98,550.5,35968.77,7405.41,8503.02,2892.96,18801.39,54770.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50514,119467.34,59286.82,8666.72,187420.88,23620.95,12424.5,3196.41,39241.86,226662.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45049,1376.05,0.0,0.0,1376.05,0.0,585.38,114.51,699.89,2075.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38876,53696.28,3467.17,634.76,57798.21,12703.63,10580.73,4404.35,27688.71,85486.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49111,56914.09,0.0,406.73,57320.82,0.0,4984.74,4638.7,9623.44,66944.26 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,3082,55326.61,0.0,0.0,55326.61,11481.75,10794.87,4290.71,26567.33,81893.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,32165,29985.0,0.0,0.0,29985.0,2119.84,9079.44,2247.71,13446.99,43431.99 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,34126,47856.01,0.0,0.0,47856.01,8905.97,5256.52,3888.25,18050.74,65906.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15491,68399.82,22941.47,5386.34,96727.63,20227.82,13477.18,7567.14,41272.14,137999.77 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,40853,61903.73,0.0,0.0,61903.73,12661.15,11428.75,5052.53,29142.43,91046.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,39685,68067.02,932.68,624.0,69623.7,14157.65,12424.5,5711.65,32293.8,101917.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,28677,103161.64,0.0,3539.49,106701.13,22035.43,12424.49,8419.1,42879.02,149580.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,3017,129895.04,0.0,21391.88,151286.92,26141.51,12424.5,10282.29,48848.3,200135.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16588,19860.11,0.0,2245.72,22105.83,3629.09,0.0,3714.3,7343.39,29449.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,39216,56531.0,0.0,1145.82,57676.82,11894.45,12424.5,4742.76,29061.71,86738.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,27935,4034.38,0.0,0.0,4034.38,0.0,1473.92,312.52,1786.44,5820.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,49299,141811.81,11731.42,15671.27,169214.5,27998.91,12424.5,2796.48,43219.89,212434.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42689,65916.76,13194.56,1215.76,80327.08,18382.6,12991.43,6270.46,37644.49,117971.57 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9912,Public Service Aide-Technical,41724,3334.0,0.0,48.69,3382.69,0.0,1553.06,272.35,1825.41,5208.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,17710,77707.92,3402.53,3907.83,85018.28,16584.83,11897.84,6867.76,35350.43,120368.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,15692,59336.4,10447.67,1400.0,71184.07,13535.64,12424.5,5700.24,31660.38,102844.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22463,65720.14,19070.71,3368.45,88159.3,18935.02,12949.61,6875.81,38760.44,126919.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,30551,101733.0,0.0,0.0,101733.0,20967.28,12424.5,8302.94,41694.72,143427.72 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,257.0,Members of the Board of Supervisors,0900,Management,0720,"Member, Board Of Supervisors",50001,3722.05,0.0,0.0,3722.05,674.81,406.19,279.04,1360.04,5082.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23664,48599.18,0.0,5805.8,54404.98,12672.89,12412.56,4402.96,29488.41,83893.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45847,67655.07,26562.82,5131.3,99349.19,19912.56,13334.54,7727.02,40974.12,140323.31 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",37441,21964.77,2969.23,552.08,25486.08,0.0,4772.45,1975.17,6747.62,32233.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29485,73292.21,2245.0,9572.16,85109.37,13989.15,7764.12,6930.46,28683.73,113793.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,43964,99040.5,0.0,0.0,99040.5,20375.11,12424.5,7816.26,40615.87,139656.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47350,5950.8,0.0,0.0,5950.8,0.0,2580.47,475.65,3056.12,9006.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,49440,3020.75,0.0,14.52,3035.27,0.0,0.0,240.09,240.09,3275.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,31891,52644.87,10348.12,6212.27,69205.26,11656.26,10401.16,5699.59,27757.01,96962.27 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10955,119467.39,5505.51,13269.93,138242.83,23620.99,12424.5,1918.99,37964.48,176207.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7276,Electrician Supervisor 2,41987,122476.0,0.0,0.0,122476.0,24648.28,12424.29,9768.07,46840.64,169316.64 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,51390,149800.06,0.0,0.0,149800.06,30137.5,12424.5,10301.82,52863.82,202663.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,12813,28229.18,883.36,139.61,29252.15,0.0,5656.73,2267.32,7924.05,37176.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,16333,29551.68,0.0,9934.14,39485.82,7162.47,6534.81,3202.37,16899.65,56385.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",46810,120242.8,5706.99,1932.14,127881.93,24188.76,12424.5,9869.69,46482.95,174364.88 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,28816,5415.0,0.0,0.0,5415.0,0.0,1791.99,432.53,2224.52,7639.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,10446,75105.34,1927.12,0.0,77032.46,15485.32,12376.06,6322.48,34183.86,111216.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,37912,51941.81,0.0,3854.09,55795.9,11007.35,10364.84,4600.92,25973.11,81769.01 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8249,Fingerprint Technician 1,42068,62187.02,849.7,1449.3,64486.02,12816.97,12424.5,5237.4,30478.87,94964.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,32124,74165.01,0.0,595.2,74760.21,15408.62,12424.51,6198.79,34031.92,108792.13 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,35210,93418.26,0.0,0.0,93418.26,19215.02,12424.5,7549.5,39189.02,132607.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,7258,85784.31,19367.78,90.0,105242.09,17693.72,12424.5,8399.57,38517.79,143759.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",12880,150233.98,48207.47,20889.28,219330.73,33230.36,15196.12,3695.92,52122.4,271453.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24829,35.8,0.0,0.0,35.8,0.0,11.94,2.77,14.71,50.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,27722,14670.0,529.5,969.7,16169.2,2910.56,2389.32,1271.85,6571.73,22740.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,6508,129811.01,0.0,0.0,129811.01,26124.18,12424.5,10003.6,48552.28,178363.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34547,47231.1,352.05,3204.01,50787.16,11888.26,12424.5,4116.53,28429.29,79216.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,45197,54851.4,5064.69,8770.3,68686.39,13935.7,12424.51,5489.2,31849.41,100535.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,14362,63584.24,3863.34,380.0,67827.58,13150.47,12424.5,5450.78,31025.75,98853.33 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,3270,106605.02,0.0,0.0,106605.02,21971.81,12424.5,8594.79,42991.1,149596.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7253,Electrical Trnst Mech Sprv 1,35540,109569.82,21275.8,6039.78,136885.4,22684.5,12424.5,10010.43,45119.43,182004.83 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,46275,160436.73,8011.84,13390.53,181839.1,31696.69,12424.5,3045.02,47166.21,229005.31 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,49326,77071.0,2088.93,1345.0,80504.93,16133.14,12424.5,6332.71,34890.35,115395.28 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,27058,92675.71,0.0,0.0,92675.71,19051.36,12424.5,7429.36,38905.22,131580.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5833,8513.9,0.0,0.0,8513.9,6307.28,669.02,291.01,7267.31,15781.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26168,138183.08,0.0,29136.57,167319.65,27438.2,12318.65,4785.16,44542.01,211861.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37820,33855.81,5330.06,1179.89,40365.76,8991.41,10563.1,2915.81,22470.32,62836.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,9121,75199.38,0.0,1559.87,76759.25,15762.83,11944.12,6057.8,33764.75,110524.0 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,9829,76520.12,0.0,2044.52,78564.64,16157.45,12335.14,6501.24,34993.83,113558.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23332,2318.68,0.0,68.92,2387.6,0.0,973.65,193.03,1166.68,3554.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,6184,86663.06,10550.28,2120.0,99333.34,18302.58,12424.5,8149.77,38876.85,138210.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25842,42007.88,6068.94,2200.57,50277.39,12012.92,8289.9,3900.73,24203.55,74480.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",PAB,Board of Appeals,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",38245,1200.0,0.0,0.0,1200.0,0.0,0.0,94.9,94.9,1294.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,52557,135421.02,0.0,0.0,135421.02,27253.5,12424.46,10103.0,49780.96,185201.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3963,80507.53,12787.65,8472.44,101767.62,17540.5,12520.08,1697.99,31758.57,133526.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,29742,82471.3,0.0,0.0,82471.3,16626.69,10725.09,6517.98,33869.76,116341.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51911,7383.4,0.0,0.0,7383.4,0.0,3201.71,601.1,3802.81,11186.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,49264,56120.0,0.0,0.0,56120.0,12556.79,12424.5,4576.18,29557.47,85677.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,28066,58101.02,793.88,0.0,58894.9,11974.94,12424.5,4781.18,29180.62,88075.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33307,66834.82,9456.75,4166.0,80457.57,19384.67,13166.8,6156.58,38708.05,119165.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,16313,15686.4,0.0,0.0,15686.4,3518.44,2723.83,1228.41,7470.68,23157.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,8728,66306.8,18072.45,8977.56,93356.81,14827.66,10843.9,7639.0,33310.56,126667.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,46287,46513.0,83.34,2500.76,49097.1,7175.92,12424.5,3953.35,23553.77,72650.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,38347,1820.81,0.0,0.0,1820.81,0.0,764.58,141.32,905.9,2726.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,2590,62811.0,30650.05,13896.73,107357.78,14980.37,12424.5,8480.9,35885.77,143243.55 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,8630,120927.02,0.0,0.0,120927.02,24287.0,12424.5,24581.19,61292.69,182219.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49257,16785.03,0.0,0.0,16785.03,0.0,1433.54,1299.51,2733.05,19518.08 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,12199,47266.51,0.0,960.0,48226.51,11558.36,11027.58,3941.22,26527.16,74753.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",26145,12134.0,0.0,0.0,12134.0,2662.2,955.73,1587.09,5205.02,17339.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52627,65142.86,20539.52,1624.27,87306.65,18240.43,12833.26,6778.33,37852.02,125158.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10814,119450.05,0.0,5243.71,124693.76,24154.2,12424.5,1147.73,37726.43,162420.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",20027,130329.31,30251.51,15695.32,176276.14,28568.37,15052.75,2564.1,46185.22,222461.36 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,38717,22259.64,0.0,19.32,22278.96,5350.06,6516.89,1755.93,13622.88,35901.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,40261,77071.02,11450.24,1584.0,90105.26,16213.38,12424.5,7009.78,35647.66,125752.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,47904,64680.02,0.0,840.0,65520.02,13822.17,10035.18,5068.57,28925.92,94445.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,47720,77071.01,0.0,629.0,77700.01,16014.32,12424.5,6397.72,34836.54,112536.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,51545,60475.68,0.0,1694.57,62170.25,12832.63,12236.77,5101.26,30170.66,92340.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,50462,76007.0,0.0,0.0,76007.0,16113.83,8123.7,6116.96,30354.49,106361.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,44777,26380.6,0.0,110.14,26490.74,5941.87,4778.65,2135.07,12855.59,39346.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,26921,54330.02,0.0,2613.9,56943.92,11165.88,11937.79,4720.83,27824.5,84768.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,52268,92016.16,0.0,0.0,92016.16,18943.61,12424.5,7200.08,38568.19,130584.35 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,12595,0.0,0.0,80.75,80.75,0.0,68.5,6.18,74.68,155.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2263,115554.71,25894.25,3374.84,144823.8,22886.56,12257.25,2414.03,37557.84,182381.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9183,"Deputy Dir I, MTA",342,159328.7,0.0,17094.22,176422.92,32846.59,10035.18,26056.9,68938.67,245361.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9740,36912.47,3991.77,807.87,41712.11,9824.65,11404.97,3031.23,24260.85,65972.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11825,61917.2,7588.73,739.83,70245.76,14635.79,12189.09,5157.96,31982.84,102228.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",17593,22701.68,0.0,0.0,22701.68,0.0,4748.78,1762.02,6510.8,29212.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,29758,35555.31,0.0,0.0,35555.31,7800.84,2867.19,2665.88,13333.91,48889.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28460,7207.5,0.0,69.6,7277.1,0.0,2870.18,563.4,3433.58,10710.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,43064,80974.05,1267.5,2.0,82243.55,15859.56,8601.58,6615.64,31076.78,113320.33 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,3426,Forester,9300,3881.0,0.0,0.0,3881.0,722.25,477.86,995.85,2195.96,6076.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,4028,108038.0,10662.38,1900.2,120600.58,22266.23,12424.5,9791.07,44481.8,165082.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43547,60659.13,8815.06,5533.37,75007.56,17980.86,11943.76,5853.89,35778.51,110786.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,27500,117565.55,18422.49,7641.75,143629.79,24631.6,15052.75,2305.04,41989.39,185619.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,20463,75927.06,0.0,0.0,75927.06,15648.74,12424.5,6297.89,34371.13,110298.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45206,73352.98,14033.83,7347.29,94734.1,16135.34,15196.11,1577.46,32908.91,127643.01 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,6595,30912.0,0.0,0.0,30912.0,6782.09,3345.06,2550.38,12677.53,43589.53 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,45948,55945.71,7547.45,2822.21,66315.37,11719.12,12295.95,5416.35,29431.42,95746.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22529,14055.26,0.0,409.8,14465.06,0.0,5372.99,1121.54,6494.53,20959.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20582,11447.03,0.0,0.0,11447.03,454.9,4963.82,916.11,6334.83,17781.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,40901,63887.0,0.0,624.01,64511.01,13295.98,12424.5,5096.11,30816.59,95327.6 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22808,0.0,0.0,1194.53,1194.53,0.0,0.0,91.38,91.38,1285.91 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,38157,69188.64,0.0,0.0,69188.64,14283.85,12401.62,5598.22,32283.69,101472.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23017,48720.14,0.0,1286.4,50006.54,10880.44,11051.0,3681.06,25612.5,75619.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",36446,106090.08,0.0,0.0,106090.08,21865.57,12424.5,8526.37,42816.44,148906.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5400,Community Development,5408,Coord Of Citizen Involvement,46168,112146.06,0.0,2131.52,114277.58,22569.26,12424.49,9198.82,44192.57,158470.15 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,9386,76341.0,0.0,12899.08,89240.08,18479.48,11468.77,7296.98,37245.23,126485.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,41728,79722.0,22477.71,3029.0,105228.71,17048.76,12424.5,7996.09,37469.35,142698.06 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3680,97764.22,70579.84,14567.14,182911.2,27333.32,12424.51,3022.6,42780.43,225691.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,11775,82312.04,26831.18,474.3,109617.52,16957.64,12424.51,8881.02,38263.17,147880.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,24564,61735.01,0.0,624.0,62359.01,12852.62,12424.5,5169.23,30446.35,92805.36 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,17078,37167.98,0.0,2623.46,39791.44,8378.96,7564.43,3297.57,19240.96,59032.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,34455,46065.51,1853.79,4963.64,52882.94,9551.62,8614.12,4387.91,22553.65,75436.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11663,20153.32,13.78,1477.28,21644.38,1803.34,8713.4,1751.87,12268.61,33912.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,30639,43421.05,4427.59,7778.71,55627.35,8621.81,5304.3,933.51,14859.62,70486.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,28912,49211.97,0.0,2206.51,51418.48,10120.22,10806.04,4232.63,25158.89,76577.37 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,18253,84599.08,0.0,2124.0,86723.08,17873.27,12424.5,6649.37,36947.14,123670.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,22795,16708.06,0.0,0.0,16708.06,3537.57,1911.46,1326.37,6775.4,23483.46 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,13693,27832.0,0.0,7783.88,35615.88,6285.76,3822.92,2898.71,13007.39,48623.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,266,98247.6,0.0,0.0,98247.6,20207.5,12137.79,7590.81,39936.1,138183.7 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,17324,103507.04,0.0,0.0,103507.04,21333.59,12424.5,8323.51,42081.6,145588.64 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",18719,139538.43,9387.92,19951.29,168877.64,31203.9,15196.12,2884.7,49284.72,218162.36 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2803,Epidemiologist 2,2442,24371.0,0.0,0.0,24371.0,4535.45,3345.06,1922.15,9802.66,34173.66 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,8962,71193.01,0.0,3597.02,74790.03,14803.0,11887.02,6225.1,32915.12,107705.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,12970,63887.0,22142.02,4804.92,90833.94,14163.96,12424.5,7400.51,33988.97,124822.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37064,11142.1,0.0,0.0,11142.1,0.0,4771.91,902.63,5674.54,16816.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,36458,53650.01,0.0,0.0,53650.01,10453.52,7645.85,4243.56,22342.93,75992.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,27594,48131.45,668.08,250.0,49049.53,10049.06,9545.18,3933.69,23527.93,72577.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2412,80957.64,4562.95,3216.35,88736.94,16556.63,12424.5,3330.8,32311.93,121048.87 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,1066,96930.02,0.0,0.0,96930.02,19977.61,12424.5,7928.37,40330.48,137260.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,47333,5626.5,0.0,937.76,6564.26,2239.2,430.32,161.19,2830.71,9394.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51806,68427.69,20735.91,7608.14,96771.74,20838.17,13486.32,7520.68,41845.17,138616.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1512,55200.24,1770.83,10475.21,67446.28,11763.09,6021.11,5410.85,23195.05,90641.33 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",31856,132001.51,39470.07,16232.89,187704.47,29027.37,14622.68,3159.02,46809.07,234513.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,27904,95748.08,0.0,1452.66,97200.74,19669.48,9359.32,7922.91,36951.71,134152.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,25460,195659.05,0.0,0.0,195659.05,39369.63,12424.5,11110.2,62904.33,258563.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7274,Trnst Power Line Wrk Sprv 2,46796,63163.84,17590.67,22887.82,103642.33,13858.13,6498.97,8317.14,28674.24,132316.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,10384,135421.02,0.0,0.0,135421.02,27253.5,12424.46,10081.35,49759.31,185180.33 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,750,20671.0,0.0,0.0,20671.0,4636.52,3345.07,1631.18,9612.77,30283.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,34118,193929.0,0.0,0.0,193929.0,39029.2,12424.5,25979.86,77433.56,271362.56 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,1122,113566.83,0.0,0.0,113566.83,23122.27,12424.5,9302.54,44849.31,158416.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,34679,54288.0,0.0,0.0,54288.0,11681.41,8601.58,4329.55,24612.54,78900.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46059,3801.91,0.0,0.0,3801.91,0.0,1648.64,294.34,1942.98,5744.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,4946,66967.01,6677.75,6142.58,79787.34,14734.6,12424.5,6442.24,33601.34,113388.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2917,Program Support Analyst,10560,85403.81,0.0,0.0,85403.81,17508.61,11922.74,6911.57,36342.92,121746.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,30411,84644.01,26157.84,10798.2,121600.05,18854.17,12424.5,9705.59,40984.26,162584.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,23139,84644.01,32633.71,13612.02,130889.74,19460.96,12424.5,9903.72,41789.18,172678.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,15737,91695.02,0.0,1560.0,93255.02,18888.78,12424.52,7217.26,38530.56,131785.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,17649,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2414.98,12868.33,44168.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,24448,55349.37,1969.49,11035.35,68354.21,12945.95,10656.4,5564.15,29166.5,97520.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,1313,1313.64,13781.44,24929.65,40024.73,0.0,95.69,3658.53,3754.22,43778.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5633,1663.88,0.0,28.1,1691.98,0.0,537.6,131.32,668.92,2360.9 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,40168,54688.01,0.0,0.0,54688.01,11966.25,7645.85,4418.96,24031.06,78719.07 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51962,10505.25,0.0,0.0,10505.25,1520.13,4760.74,835.83,7116.7,17621.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,18995,96254.03,0.0,0.0,96254.03,19838.21,12424.49,7856.03,40118.73,136372.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51668,7853.0,0.0,0.0,7853.0,0.0,3392.84,647.11,4039.95,11892.95 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,996,22339.4,0.0,0.0,22339.4,4157.37,3249.49,1773.39,9180.25,31519.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,4626,97934.02,0.0,6440.7,104374.72,21510.87,12424.5,8633.9,42569.27,146943.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45146,80949.91,6720.78,7863.32,95534.01,16774.33,12424.5,1779.69,30978.52,126512.53 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),8650,184289.02,0.0,5248.28,189537.3,38144.38,12424.5,11036.88,61605.76,251143.06 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,23732,97764.71,41150.32,7903.15,146818.18,25691.77,12424.5,2493.42,40609.69,187427.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,26226,126887.83,0.0,0.0,126887.83,25524.59,12414.05,9943.66,47882.3,174770.13 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,22494,4447.33,0.0,414.43,4861.76,2221.97,0.0,4139.36,6361.33,11223.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,2287,116638.07,18045.27,10290.0,144973.34,23473.53,12424.5,10103.35,46001.38,190974.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",52406,148809.31,71580.07,18601.11,238990.49,32934.02,15052.76,4076.52,52063.3,291053.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,27601,112776.01,83.52,5638.81,118498.34,23831.36,12424.5,9672.52,45928.38,164426.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1312,Public Information Officer,47239,80762.0,0.0,497.02,81259.02,16752.74,12424.5,6665.68,35842.92,117101.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7229,Transmission Line Supervisor 1,50397,120449.01,5677.66,13207.62,139334.29,24374.99,12424.51,10106.3,46905.8,186240.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,377.0,"Iron Workers, Local 377",7200,Supervisory-Labor & Trade,9342,Ornamental Iron Wrk Sprv 1,40553,104354.24,747.95,0.0,105102.19,21507.86,12424.5,8448.22,42380.58,147482.77 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,41420,115541.0,0.0,1040.0,116581.0,23454.68,12424.5,9376.64,45255.82,161836.82 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,50961,15995.01,0.0,15925.42,31920.43,3587.7,2389.33,2555.29,8532.32,40452.75 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,23953,49688.97,0.0,0.0,49688.97,9008.6,4300.79,6379.86,19689.25,69378.22 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,8044,91404.62,0.0,0.0,91404.62,18598.75,10847.55,7570.01,37016.31,128420.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41993,28200.9,0.0,0.0,28200.9,6187.27,4348.58,2183.31,12719.16,40920.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,19866,10694.47,0.0,0.0,10694.47,0.0,0.0,845.94,845.94,11540.41 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,26909,206448.78,0.0,20836.92,227285.7,48528.17,12122.97,3945.4,64596.54,291882.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,12520,1233.8,0.0,35.7,1269.5,0.0,525.65,98.53,624.18,1893.68 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,28755,59105.02,0.0,0.0,59105.02,12161.77,12424.51,4718.02,29304.3,88409.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",SFRA,SF Redevelopment Agency,O990,Assistant Prjct Manager (OCII),46608,95634.04,0.0,0.0,95634.04,18836.37,10035.18,7276.87,36148.42,131782.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,19785,33603.43,23577.44,1933.58,59114.45,5969.97,3345.06,1011.18,10326.21,69440.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,50887,15114.5,0.0,1330.92,16445.42,733.18,6546.76,1298.7,8578.64,25024.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,20523,48884.93,10388.06,1785.57,61058.56,11955.7,12200.52,4898.28,29054.5,90113.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,32366,43164.0,0.0,150.0,43314.0,8032.8,5734.39,3418.17,17185.36,60499.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,1856,49051.98,0.0,0.0,49051.98,10116.56,9876.7,4078.7,24071.96,73123.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,6485,76915.0,0.0,0.0,76915.0,15852.43,12424.5,6681.44,34958.37,111873.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,4797,101733.0,7516.39,17150.16,126399.55,22606.29,12424.51,9879.78,44910.58,171310.13 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,826,18771.45,0.0,920.78,19692.23,1860.25,8135.66,1592.62,11588.53,31280.76 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,12264,47443.2,1533.8,3304.6,52281.6,11510.74,12424.5,4204.15,28139.39,80420.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14092,44137.04,0.0,7475.15,51612.19,0.0,0.0,4082.81,4082.81,55695.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,48676,140701.48,7297.05,20304.94,168303.47,27767.03,12424.5,2857.86,43049.39,211352.86 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,29161,21527.68,3176.0,0.0,24703.68,0.0,4896.63,1915.22,6811.85,31515.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13714,25199.99,0.0,3572.41,28772.4,0.0,2220.41,2229.67,4450.08,33222.48 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",15161,0.0,0.0,84760.93,84760.93,0.0,0.0,0.0,0.0,84760.93 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,31068,88296.02,0.0,4112.18,92408.2,18337.86,12424.5,7675.99,38438.35,130846.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36553,542.3,0.0,0.0,542.3,0.0,47.79,41.98,89.77,632.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,7448,4115.79,0.0,0.0,4115.79,0.0,1108.05,319.46,1427.51,5543.3 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,3155,87713.05,0.0,0.0,87713.05,18078.2,12424.51,6969.09,37471.8,125184.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8150,63841.01,16097.67,3265.44,83204.12,18316.81,12577.0,6498.16,37391.97,120596.09 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23421,20106.31,1059.55,971.71,22137.57,0.0,1705.33,1715.64,3420.97,25558.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,8871,20724.12,0.0,0.0,20724.12,0.0,5160.95,1606.63,6767.58,27491.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38450,109012.37,113.71,19868.24,128994.32,21021.07,10573.37,9684.27,41278.71,170273.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,39053,204.22,5821.79,15681.82,21707.83,0.0,0.0,1717.2,1717.2,23425.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38072,54707.9,0.0,6889.06,61596.96,14270.9,12424.5,4988.84,31684.24,93281.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26977,97761.64,15111.94,21563.61,134437.19,29004.55,12424.5,2171.51,43600.56,178037.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,51302,30624.55,0.0,194.0,30818.55,749.83,4417.25,2414.05,7581.13,38399.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,3428,93738.15,747.7,2722.05,97207.9,19309.59,12424.51,8041.76,39775.86,136983.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,14513,7065.88,0.0,303.94,7369.82,0.0,2719.33,570.87,3290.2,10660.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38272,68591.57,17874.59,5645.08,92111.24,20370.39,13517.85,7209.2,41097.44,133208.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8840,28321.61,7657.24,331.72,36310.57,6870.35,12162.69,2836.31,21869.35,58179.92 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,30981,50170.67,27.55,3459.93,53658.15,11526.19,11159.36,4331.64,27017.19,80675.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,45189,60117.61,0.0,0.0,60117.61,12366.59,12424.5,4820.91,29612.0,89729.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3039,124243.79,6140.21,10119.94,140503.94,24554.31,12376.7,2394.18,39325.19,179829.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",38249,82535.0,0.0,5714.33,88249.33,17288.07,12424.5,7209.23,36921.8,125171.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,36489,2835.01,0.0,0.0,2835.01,635.89,477.86,223.97,1337.72,4172.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,6083,52536.79,12173.4,3416.94,68127.13,12882.55,12382.68,5328.6,30593.83,98720.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,44067,117137.53,57516.15,25531.06,200184.74,23176.47,12424.5,3400.91,39001.88,239186.62 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,51753,97765.31,3311.5,13017.2,114094.01,26987.01,12424.51,187.14,39598.66,153692.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,21244,1508.06,0.0,0.0,1508.06,0.0,209.07,117.05,326.12,1834.18 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,27137,101832.86,0.0,6444.2,108277.06,21347.6,6761.32,8237.2,36346.12,144623.18 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,12884,21852.0,0.0,0.0,21852.0,4066.65,2867.19,3559.57,10493.41,32345.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1279,66349.04,14659.33,1668.63,82677.0,18632.57,13074.53,6456.23,38163.33,120840.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,41539,67875.32,0.0,1013.79,68889.11,14308.07,9890.21,5607.18,29805.46,98694.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,3037,80357.03,13674.24,4797.6,98828.87,16914.55,12424.5,7825.55,37164.6,135993.47 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,32000,39318.32,3077.91,866.29,43262.52,8854.3,7167.99,3454.34,19476.63,62739.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17396,5715.91,0.0,8534.39,14250.3,1577.12,1136.72,1064.77,3778.61,18028.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,32832,79417.3,27009.98,1088.0,107515.28,16608.14,12376.69,8402.41,37387.24,144902.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,45614,107907.64,47099.94,16767.87,171775.45,29516.35,12370.74,2873.0,44760.09,216535.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27289,61465.28,4443.62,625.3,66534.2,17034.77,12102.84,4859.3,33996.91,100531.11 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,20618,39299.95,0.0,663.95,39963.9,8994.06,8715.09,3202.6,20911.75,60875.65 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,38752,108369.99,8888.82,3117.11,120375.92,27115.54,12424.5,2048.88,41588.92,161964.84 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,41301,57353.93,0.0,119.88,57473.81,12136.51,8047.07,4796.98,24980.56,82454.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,44257,93281.04,0.0,0.0,93281.04,19225.76,12424.5,7590.9,39241.16,132522.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,45486,13251.55,0.0,657.76,13909.31,484.65,5746.33,1121.68,7352.66,21261.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",8710,93738.03,5439.62,4592.03,103769.68,19860.25,12424.5,8317.87,40602.62,144372.3 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,40772,72.4,0.0,0.0,72.4,0.0,0.0,5.74,5.74,78.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,22114,3405.51,0.0,3.92,3409.43,0.0,1660.58,264.5,1925.08,5334.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,7942,68189.01,11661.84,4789.89,84640.74,14689.34,12424.5,6571.97,33685.81,118326.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,41484,119463.8,12024.74,2426.46,133915.0,23633.47,12424.5,2150.21,38208.18,172123.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,10503,98858.98,8309.38,7287.95,114456.31,20505.39,12424.5,1908.67,34838.56,149294.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,30922,80949.89,5446.88,3844.47,90241.24,16774.33,12424.5,1683.61,30882.44,121123.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38580,56531.0,0.0,7201.87,63732.87,13724.29,12424.5,5136.69,31285.48,95018.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34983,67054.3,13559.99,3651.96,84266.25,19338.95,13209.58,6542.2,39090.73,123356.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46291,72664.26,9500.65,6307.37,88472.28,15970.81,15052.76,1474.54,32498.11,120970.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,43944,47629.15,0.0,667.28,48296.43,3742.86,10593.68,3794.19,18130.73,66427.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33987,6922.92,0.0,401.19,7324.11,2507.95,1720.33,2288.89,6517.17,13841.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,959,62811.0,8086.47,9388.65,80286.12,13999.14,12424.5,6340.16,32763.8,113049.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12256,67822.82,9765.36,4670.66,82258.84,19894.27,13367.34,6384.51,39646.12,121904.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37658,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3376.05,18201.9,61969.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,34675,60849.37,297.18,1259.11,62405.66,12771.17,0.0,5120.63,17891.8,80297.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20530,66310.47,12905.01,4202.88,83418.36,19330.63,13070.46,6472.1,38873.19,122291.55 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,13820,92959.16,32089.72,10899.5,135948.38,20290.01,12328.92,10002.22,42621.15,178569.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,17079,27233.76,0.0,0.0,27233.76,5068.2,3345.06,4084.5,12497.76,39731.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,46804,97776.18,27244.12,19220.9,144241.2,28458.43,12424.5,2457.82,43340.75,187581.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,23252,5248.04,0.0,0.0,5248.04,1177.13,1736.74,450.56,3364.43,8612.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21592,4476.88,0.0,0.0,4476.88,0.0,1941.33,354.61,2295.94,6772.82 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,30877,88296.03,0.0,5322.0,93618.03,18337.86,12424.5,7564.45,38326.81,131944.84 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1249,Personnel Trainee,7477,33885.01,0.0,0.0,33885.01,7488.18,7167.99,2674.68,17330.85,51215.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,1980,57987.67,0.0,15.0,58002.67,11864.42,11618.11,4288.58,27771.11,85773.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,18593,73839.7,0.0,163.07,74002.77,15144.72,11519.55,6108.39,32772.66,106775.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,38939,135421.01,0.0,0.0,135421.01,27268.29,12424.5,10072.12,49764.91,185185.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5302,89445.19,0.0,250.0,89695.19,16518.22,7453.5,6580.74,30552.46,120247.65 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10292,42841.25,3443.89,1312.3,47597.44,10018.72,11586.75,3770.2,25375.67,72973.11 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,35741,100414.99,0.0,0.0,100414.99,20718.34,12288.49,8048.61,41055.44,141470.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34216,55968.12,0.0,1740.36,57708.48,128.77,0.0,2058.16,2186.93,59895.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,13514,11253.12,0.0,0.0,11253.12,0.0,902.86,873.43,1776.29,13029.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13859,41672.33,4896.77,1331.6,47900.7,11153.92,12968.79,3418.96,27541.67,75442.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,9763,65109.33,0.0,1449.35,66558.68,13887.26,10743.14,5491.79,30122.19,96680.87 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,441C,Court Paralegal,8312,83815.91,0.0,4560.0,88375.91,17567.6,12424.5,7339.78,37331.88,125707.79 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",45099,110094.72,5098.3,6605.68,121798.7,24399.28,7645.85,1963.21,34008.34,155807.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11194,39545.0,5869.76,2055.9,47470.66,10702.05,6478.07,3694.19,20874.31,68344.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30390,440.8,0.0,888.76,1329.56,117.35,191.14,102.13,410.62,1740.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35969,56531.0,6871.57,0.0,63402.57,11651.3,12424.5,4979.64,29055.44,92458.01 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,46775,88296.0,0.0,4982.4,93278.4,18337.86,12424.5,7742.56,38504.92,131783.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,49285,63215.37,0.0,0.0,63215.37,12524.52,8576.67,5161.68,26262.87,89478.24 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),47423,117078.42,0.0,1500.0,118578.42,24018.29,12424.5,9608.67,46051.46,164629.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45720,63947.14,5383.27,759.35,70089.76,17720.01,12602.63,5348.3,35670.94,105760.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,18195,38403.71,0.0,2340.21,40743.92,9332.8,8825.58,3136.26,21294.64,62038.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,25989,85432.28,17129.25,7285.11,109846.64,17550.1,9079.44,1835.15,28464.69,138311.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,35585,145.75,0.0,0.0,145.75,32.69,29.87,11.29,73.85,219.6 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,12374,72699.04,0.0,624.0,73323.04,15112.34,12424.5,5615.59,33152.43,106475.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23730,39849.38,0.0,132.77,39982.15,8069.67,0.0,2100.45,10170.12,50152.27 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,39559,65774.0,0.0,0.0,65774.0,13556.27,12424.5,5419.78,31400.55,97174.55 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,2662,11402.3,168.63,235.57,11806.5,0.0,3805.0,915.8,4720.8,16527.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,45137,112387.45,12280.51,19036.95,143704.91,25076.63,14718.26,2401.75,42196.64,185901.55 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5298,Planner 3-Environmental Review,15194,106116.0,0.0,0.0,106116.0,21882.46,12424.5,8718.97,43025.93,149141.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,29091,61700.86,11.06,288.0,61999.92,12769.89,12415.36,5095.9,30281.15,92281.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,41053,86403.6,0.0,0.0,86403.6,17775.92,12424.5,6900.0,37100.42,123504.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,26733,11905.99,0.0,93.06,11999.05,0.0,2686.5,929.54,3616.04,15615.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,20116,87635.96,0.0,0.0,87635.96,18075.42,12352.81,6546.61,36974.84,124610.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37711,24966.45,0.0,4540.73,29507.18,835.3,0.0,5549.43,6384.73,35891.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21367,96682.68,7720.5,6060.44,110463.62,20112.79,12424.5,1800.28,34337.57,144801.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9508,Prpl Permit And Citation Clerk,37951,7998.0,99.98,0.0,8097.98,1488.42,1433.54,644.36,3566.32,11664.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,41203,132879.41,0.0,0.0,132879.41,26826.86,12424.5,18407.89,57659.25,190538.66 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,40198,5664.26,0.0,0.0,5664.26,0.0,1414.19,439.33,1853.52,7517.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,5616,87017.68,0.0,226.61,87244.29,17939.5,12351.33,6945.69,37236.52,124480.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1232,Training Officer,47733,92085.02,0.0,0.0,92085.02,18979.21,12424.5,7561.96,38965.67,131050.69 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,33216,56169.4,0.0,13134.81,69304.21,12871.21,7462.17,5660.08,25993.46,95297.67 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,22401,50261.26,15378.02,1460.01,67099.29,11239.47,10871.44,5454.34,27565.25,94664.54 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,8997,113032.51,1342.3,1159.75,115534.56,22852.59,9318.38,9452.98,41623.95,157158.51 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,11912,66807.16,0.0,0.0,66807.16,13611.86,8834.66,5126.36,27572.88,94380.04 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27258,21023.62,0.0,402.31,21425.93,732.95,0.0,1022.87,1755.82,23181.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,28984,30192.0,793.65,2683.98,33669.63,5937.69,4874.23,2713.1,13525.02,47194.65 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,36132,0.0,0.0,172.84,172.84,0.0,0.0,13.23,13.23,186.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,6166,33495.01,0.0,0.0,33495.01,6361.47,6212.25,2728.14,15301.86,48796.87 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,15473,82027.22,0.0,2545.56,84572.78,17385.84,12376.71,6716.14,36478.69,121051.47 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,8217,83043.64,0.0,2052.88,85096.52,17510.9,12424.5,6853.01,36788.41,121884.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,18111,4260.04,0.0,134.77,4394.81,0.0,1800.95,356.53,2157.48,6552.29 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,150,12177.91,0.0,499.64,12677.55,0.0,4370.98,982.97,5353.95,18031.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19049,134132.12,0.0,250.0,134382.12,26999.69,11177.28,10016.26,48193.23,182575.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17615,77071.06,3703.88,1420.0,82194.94,16178.05,12424.5,6684.38,35286.93,117481.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",34756,61343.4,3219.41,4076.36,68639.17,12163.14,7167.98,5602.47,24933.59,93572.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,12379,21196.0,0.0,0.0,21196.0,3944.61,4300.79,1687.88,9933.28,31129.28 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,7111,111117.3,0.0,0.0,111117.3,22373.46,11949.68,8787.96,43111.1,154228.4 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",3222,67866.06,8655.6,5451.84,81973.5,16741.38,12096.27,1673.55,30511.2,112484.7 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,22895,40049.51,0.0,603.44,40652.95,8388.51,6845.42,3357.73,18591.66,59244.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24634,29428.05,3021.3,4848.75,37298.1,3686.22,2508.02,2187.8,8382.04,45680.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45456,61459.17,2898.81,1371.96,65729.94,15292.21,12992.8,4754.66,33039.67,98769.61 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,14163,160269.3,170.49,3769.17,164208.96,31690.08,12424.5,2798.23,46912.81,211121.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,23543,79897.09,0.0,0.0,79897.09,6305.42,10277.7,4665.55,21248.67,101145.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,11625,16041.9,954.86,4016.26,21013.02,3462.9,1433.6,352.81,5249.31,26262.33 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,947C,Duty Officer,32239,91533.75,0.0,3000.0,94533.75,18916.59,20828.96,30273.42,70018.97,164552.72 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,18558,60391.02,1540.06,0.0,61931.08,12304.35,10990.9,4780.61,28075.86,90006.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50036,30056.34,4690.85,995.75,35742.94,8099.92,9430.61,2750.9,20281.43,56024.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,41234,17386.75,0.0,683.1,18069.85,0.0,5232.63,1402.5,6635.13,24704.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,29817,112776.16,0.0,5638.8,118414.96,23824.94,12424.5,9617.11,45866.55,164281.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,21965,56531.0,1566.73,2948.4,61046.13,11659.55,12424.5,4993.45,29077.5,90123.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,45194,8082.32,271.26,394.56,8748.14,0.0,1566.21,697.25,2263.46,11011.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",18914,133081.83,5881.86,16026.12,154989.81,26370.27,12424.5,2565.16,41359.93,196349.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,23405,55019.56,690.41,4130.56,59840.53,12485.61,12051.41,4804.05,29341.07,89181.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27874,118825.32,1755.34,15982.08,136562.74,24343.96,10850.54,6152.25,41346.75,177909.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20863,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,27282,136591.81,415.28,15156.98,152164.07,27009.94,12424.5,2584.62,42019.06,194183.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,1936,196486.89,0.0,2136.89,198623.78,39903.67,12385.67,11119.52,63408.86,262032.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,14879,26513.27,938.95,2424.82,29877.04,6826.25,6496.99,2414.68,15737.92,45614.96 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41780,97347.04,20308.99,9294.78,126950.81,25933.91,12424.5,2072.52,40430.93,167381.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",16710,4651.9,0.0,0.0,4651.9,865.72,477.87,1050.09,2393.68,7045.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",35082,91095.42,0.0,609.4,91704.82,18911.02,12133.48,7498.7,38543.2,130248.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,3028,50974.18,19993.6,3040.53,74008.31,11444.22,11334.37,5860.77,28639.36,102647.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,38393,68722.01,471.86,0.0,69193.87,14164.01,12424.5,5463.2,32051.71,101245.58 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,10982,93227.69,38456.39,12324.93,144009.01,20998.57,12364.77,10164.98,43528.32,187537.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21181,10248.61,0.0,0.0,10248.61,0.0,4444.15,831.44,5275.59,15524.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,1953,47759.08,7446.74,2914.15,58119.97,9576.36,8840.51,1502.91,19919.78,78039.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,27357,16250.96,0.0,0.0,16250.96,3645.1,2950.52,1310.86,7906.48,24157.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,26738,4230.0,0.0,108.0,4338.0,807.3,955.73,336.01,2099.04,6437.04 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,17589,90518.51,9221.64,10339.92,110080.07,19980.36,12376.71,8883.6,41240.67,151320.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,16528,109807.0,5872.7,1005.11,116684.81,22187.94,12424.5,9575.99,44188.43,160873.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,43817,68229.07,19250.33,3202.24,90681.64,14410.16,10035.19,7265.99,31711.34,122392.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,23535,47531.2,1941.84,2681.2,52154.24,11454.32,12424.5,3952.4,27831.22,79985.46 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,43614,57794.04,0.0,1064.04,58858.08,12131.04,12424.5,4799.76,29355.3,88213.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,42996,56531.0,1524.7,3594.0,61649.7,11788.47,12424.5,5040.95,29253.92,90903.62 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,37470,57984.1,20537.36,3198.73,81720.19,13261.12,12424.5,6542.59,32228.21,113948.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",16178,1061.45,0.0,0.0,1061.45,0.0,137.38,82.29,219.67,1281.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,18814,101323.0,5804.94,1892.0,109019.94,21266.78,12424.46,8758.19,42449.43,151469.37 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,1696,31010.02,0.0,0.0,31010.02,6955.52,4778.65,2504.67,14238.84,45248.86 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,15773,38255.13,0.0,7911.49,46166.62,8692.79,5506.27,3782.02,17981.08,64147.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,52638,26029.76,671.86,554.95,27256.57,6533.65,5981.98,2231.25,14746.88,42003.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,27793,151117.12,0.0,5000.0,156117.12,30404.57,12424.5,10353.81,53182.88,209300.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,6804,80570.01,0.0,0.0,80570.01,16605.95,12424.5,6667.84,35698.29,116268.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",9418,10637.1,0.0,0.0,10637.1,0.0,2532.69,824.86,3357.55,13994.65 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,104.0,"Sheet Metal Workers, Local 104",9300,Port Operation,9345,Sheet Metal Supervisor 1,36028,26689.0,0.0,0.0,26689.0,4838.7,2867.2,2128.66,9834.56,36523.56 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,30926,11637.61,0.0,0.0,11637.61,0.0,3727.35,939.01,4666.36,16303.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,21225,38591.64,5229.48,1331.52,45152.64,9292.82,10786.32,3577.46,23656.6,68809.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20528,41382.35,4491.6,864.92,46738.87,10978.39,12732.19,3467.37,27177.95,73916.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,8306,82883.0,739.58,1275.9,84898.48,17335.46,12424.5,6783.08,36543.04,121441.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2922,Senior Medical Social Worker,42698,97330.96,0.0,0.0,97330.96,20062.22,12412.56,8018.7,40493.48,137824.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,30505,23109.0,36.31,1742.85,24888.16,4300.61,2867.19,1925.43,9093.23,33981.39 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2304,110670.79,2481.75,12509.83,125662.37,23470.03,14612.47,2132.53,40215.03,165877.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5504,Project Manager 2,5950,152495.0,0.0,0.0,152495.0,30620.41,12424.5,10408.0,53452.91,205947.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,5863,102231.47,1833.56,1129.05,105194.08,20669.79,11486.69,8394.87,40551.35,145745.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,35973,191445.53,4.74,39574.15,231024.42,39899.98,12424.5,600.2,52924.68,283949.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,9258,58664.06,0.0,0.0,58664.06,12852.41,10990.91,4718.7,28562.02,87226.08 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,19130,46111.54,4813.37,2871.12,53796.03,11633.87,11725.63,4307.04,27666.54,81462.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,1670,35584.56,0.0,760.0,36344.56,9002.37,8936.08,2862.93,20801.38,57145.94 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,31549,90804.6,7512.95,4301.88,102619.43,18967.78,11575.1,8383.13,38926.01,141545.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9160,Transit Operations Specialist,43621,32877.0,1841.29,3413.75,38132.04,6400.82,4300.78,3052.51,13754.11,51886.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,31637,3231.56,0.0,0.0,3231.56,0.0,448.0,250.82,698.82,3930.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50495,43568.66,8935.64,2882.69,55386.99,13448.57,8664.43,4180.89,26293.89,81680.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,20466,199043.0,0.0,250.0,199293.0,40057.7,12424.5,11118.68,63600.88,262893.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,35282,183718.19,0.0,0.0,183718.19,36987.29,12424.5,25887.21,75299.0,259017.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,24364,58595.63,5868.46,3524.25,67988.34,13850.09,12240.7,5379.86,31470.65,99458.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,48080,59305.17,15328.01,2025.65,76658.83,12395.97,11947.65,6254.35,30597.97,107256.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,37450,46340.2,7995.29,3886.32,58221.81,12012.43,12424.49,4956.29,29393.21,87615.02 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,48259,18083.8,0.0,202.4,18286.2,3365.85,2867.2,1467.24,7700.29,25986.49 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1041,IS Engineer-Assistant,45470,108419.01,0.0,0.0,108419.01,22097.61,12424.5,8825.88,43347.99,151767.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,27046,81615.27,0.0,0.0,81615.27,16826.98,9939.6,6517.27,33283.85,114899.12 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1806,Senior Statistician,53180,55622.0,0.0,1875.75,57497.75,10933.16,8123.71,3867.69,22924.56,80422.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,993,135421.03,0.0,0.0,135421.03,27253.5,12424.5,10128.14,49806.14,185227.17 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,31167,81942.0,11923.09,3537.1,97402.19,17519.29,12424.5,7944.96,37888.75,135290.94 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,15508,89939.82,14636.25,10591.9,115167.97,20135.74,11925.25,9157.74,41218.73,156386.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22523,39623.59,5028.64,1369.88,46022.11,10600.05,12384.31,3242.54,26226.9,72249.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,14642,66102.04,6895.26,1814.96,74812.26,13834.33,12424.5,5459.47,31718.3,106530.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11842,119455.24,3606.23,11574.82,134636.29,24186.42,12424.5,1830.12,38441.04,173077.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,29133,119461.58,8248.35,11534.07,139244.0,23788.67,12424.5,2370.95,38584.12,177828.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44776,118761.19,4448.15,32820.66,156030.0,24636.55,10846.36,5254.71,40737.62,196767.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,33688,14800.0,0.0,1467.61,16267.61,2856.88,2389.33,1274.92,6521.13,22788.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52379,68407.03,16095.79,1084.1,85586.92,19026.81,13476.88,6334.66,38838.35,124425.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,20557,74605.88,8195.12,691.6,83492.6,15567.58,11586.01,6684.0,33837.59,117330.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,28221,105614.43,9997.79,14054.44,129666.66,22325.07,9079.44,326.92,31731.43,161398.09 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,34234,72421.1,0.0,3310.68,75731.78,15607.1,12376.71,5877.39,33861.2,109592.98 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7432,Electrical Line Helper,38501,2602.0,0.0,0.0,2602.0,0.0,477.86,201.95,679.81,3281.81 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,24015,32356.39,3028.9,2755.71,38141.0,7526.46,3810.97,3163.41,14500.84,52641.84 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2210,Dentist,12519,26365.41,0.0,0.0,26365.41,4759.54,2479.59,2370.31,9609.44,35974.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37420,67841.22,5058.18,3713.82,76613.22,16286.98,13367.45,5707.76,35362.19,111975.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,42696,20856.0,0.0,0.0,20856.0,4678.0,3822.92,1642.5,10143.42,30999.42 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,50487,56276.0,0.0,1844.0,58120.0,12992.82,12424.5,4519.78,29937.1,88057.1 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,6451,3246.26,0.0,0.0,3246.26,0.0,1582.93,251.81,1834.74,5081.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43422,77856.31,3505.31,1848.67,83210.29,15750.04,11946.64,4240.74,31937.42,115147.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24378,140334.0,0.0,250.0,140584.0,28242.36,12424.48,10137.76,50804.6,191388.6 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,8151,62727.27,79.15,3222.98,66029.4,13144.03,12350.25,5180.58,30674.86,96704.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38562,5996.5,0.0,69.44,6065.94,0.0,2001.07,470.5,2471.57,8537.51 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8414,"Sprv Prob Ofc, Juv Court",11072,111091.07,0.0,100.84,111191.91,25340.75,12424.5,1880.65,39645.9,150837.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2719,Janitorial Svcs Asst Sprv,38849,74326.01,319.61,3506.0,78151.62,15329.23,12424.5,6422.71,34176.44,112328.06 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,26267,138567.79,0.0,0.0,138567.79,27889.02,7329.26,10043.4,45261.68,183829.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,8081,936.7,0.0,28.1,964.8,0.0,406.19,74.69,480.88,1445.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,4807,86436.35,0.0,4362.7,90799.05,17883.67,11755.49,7108.75,36747.91,127546.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,9905,2000.25,0.0,82.67,2082.92,0.0,537.6,161.26,698.86,2781.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7253,Electrical Trnst Mech Sprv 1,22852,54374.0,16729.82,1417.16,72520.98,10229.4,6212.25,4884.61,21326.26,93847.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",26560,94388.0,19724.91,1360.64,115473.55,19720.35,12424.5,9023.64,41168.49,156642.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29103,94522.08,3165.76,3829.07,101516.91,19476.84,12424.5,1684.3,33585.64,135102.55 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2558,Senior Physical Therapist,6055,126490.07,0.0,480.0,126970.07,25540.31,12424.5,9907.64,47872.45,174842.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22606,90243.14,0.0,3308.64,93551.78,19166.89,9781.97,7549.51,36498.37,130050.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34405,53268.71,15522.41,3024.82,71815.94,15632.04,10552.47,5552.18,31736.69,103552.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,6482,43417.56,0.0,1628.42,45045.98,8703.25,8198.02,3730.53,20631.8,65677.78 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,9230,87332.27,0.0,1158.77,88491.04,18241.08,12328.92,7215.47,37785.47,126276.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,21156,67717.41,0.0,0.0,67717.41,14242.82,10274.11,5448.32,29965.25,97682.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15526,44311.23,4735.05,1292.26,50338.54,11826.93,13332.62,3818.91,28978.46,79317.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16917,46381.8,4987.55,1278.92,52648.27,10403.41,9099.7,4016.01,23519.12,76167.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,41218,49666.16,1762.42,1611.48,53040.06,608.84,4270.81,4025.52,8905.17,61945.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41966,2162.65,0.0,250.0,2412.65,647.27,430.07,118.21,1195.55,3608.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39050,37752.15,350.07,220.88,38323.1,9326.72,9527.45,3188.9,22043.07,60366.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,47701,28799.29,0.0,1671.91,30471.2,6610.38,3840.96,2462.74,12914.08,43385.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers Int, Local 261",3400,Agriculture & Horticulture,3408,Apprentice Arborist Tech I,33049,23668.0,3971.26,216.0,27855.26,5360.35,6690.11,2234.56,14285.02,42140.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,34153,37757.01,0.0,0.0,37757.01,8188.92,8123.71,3103.47,19416.1,57173.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,13194,133087.03,0.0,1274.16,134361.19,26783.95,12424.5,10031.93,49240.38,183601.57 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,21741,101770.11,0.0,0.0,101770.11,20975.25,12424.5,8221.4,41621.15,143391.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7999,4693.98,30.99,6444.69,11169.66,0.0,2035.48,858.99,2894.47,14064.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,52249,9336.78,0.0,61.31,9398.09,0.0,3383.89,728.46,4112.35,13510.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,27168,107874.15,21736.66,10390.02,140000.83,23137.93,12585.78,10122.62,45846.33,185847.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,7741,29651.0,0.0,0.0,29651.0,5654.0,6690.11,2388.45,14732.56,44383.56 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39784,128163.73,0.0,13072.41,141236.14,27101.27,11038.69,9678.51,47818.47,189054.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,47249,54858.7,21511.92,12914.17,89284.79,14243.87,12423.78,7085.01,33752.66,123037.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23758,112611.95,13744.19,4489.72,130845.86,22359.23,11946.62,2220.8,36526.65,167372.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6231,Senior Street Inspector,44692,24759.0,5040.24,340.0,30139.24,5672.77,3345.06,2484.48,11502.31,41641.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,4563,56531.0,0.0,3267.45,59798.45,11780.12,12424.5,4694.59,28899.21,88697.66 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0904,Mayoral Staff XVI,12052,148242.0,0.0,0.0,148242.0,29834.3,12424.51,17580.93,59839.74,208081.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19438,10055.75,0.0,723.33,10779.08,973.14,4360.52,864.0,6197.66,16976.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40103,6917.85,0.0,230.63,7148.48,313.06,0.0,2620.99,2934.05,10082.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5272,Landscape Architect Assoc 2,44653,44710.01,0.0,1134.52,45844.53,10058.28,4778.68,3775.7,18612.66,64457.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14862,57742.28,385.38,1124.55,59252.21,15951.53,11365.3,4470.4,31787.23,91039.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,36717,135421.04,0.0,0.0,135421.04,27253.5,12424.5,10029.73,49707.73,185128.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,17137,81942.01,21957.14,7858.97,111758.12,17718.75,12424.5,9035.17,39178.42,150936.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,46413,138712.47,15930.81,6354.68,160997.96,27478.68,12424.5,2744.3,42647.48,203645.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2302,14923.7,0.0,0.0,14923.7,0.0,1290.23,1157.26,2447.49,17371.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,48103,18960.01,0.0,1768.81,20728.82,4891.68,5734.39,1681.53,12307.6,33036.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38326,3028.17,0.0,189.36,3217.53,0.0,813.86,249.1,1062.96,4280.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,650,67471.42,28112.09,4650.59,100234.1,19745.22,13295.24,7629.11,40669.57,140903.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,3177,46501.27,15.0,1360.0,47876.27,9910.94,9400.86,3754.42,23066.22,70942.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25468,4958.4,0.0,0.0,4958.4,1087.87,764.58,361.94,2214.39,7172.79 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1802,Research Assistant,20750,35834.21,0.0,0.0,35834.21,6742.67,6116.67,2813.96,15673.3,51507.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,15696,113233.59,91350.58,19376.85,223961.02,25079.18,15196.12,3824.35,44099.65,268060.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3522,Senior Museum Preparator,14298,63102.08,751.48,2054.0,65907.56,13142.42,12424.5,5166.48,30733.4,96640.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,33597,5018.01,0.0,0.0,5018.01,909.77,477.86,394.22,1781.85,6799.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,42985,49227.02,24264.84,364.56,73856.42,10638.55,5256.52,1233.52,17128.59,90985.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,8698,2178.0,0.0,39.2,2217.2,497.32,477.86,171.66,1146.84,3364.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3410,Apprentice Gardener,33049,20761.8,3964.76,1015.2,25741.76,5618.48,5734.38,2068.19,13421.05,39162.81 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),207,49308.0,0.0,375.0,49683.0,10900.43,3345.06,3938.46,18183.95,67866.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42562,119036.88,10280.7,17198.27,146515.85,23534.59,12379.69,2485.28,38399.56,184915.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36799,20339.15,0.0,2624.51,22963.66,4163.31,1983.14,1814.92,7961.37,30925.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,47291,12022.39,0.0,172.87,12195.26,2460.55,0.0,801.76,3262.31,15457.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,29248,62036.55,698.51,11560.48,74295.54,14756.8,12273.44,6117.88,33148.12,107443.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,40411,87345.9,0.0,893.21,88239.11,18158.83,12424.5,7043.84,37627.17,125866.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,16610,86649.11,0.0,0.0,86649.11,17831.41,12328.92,6715.29,36875.62,123524.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,46869,31748.42,838.77,0.0,32587.19,6549.48,9079.44,2640.39,18269.31,50856.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,52976,27125.0,0.0,0.0,27125.0,5047.95,5734.39,2180.12,12962.46,40087.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,45302,71249.75,644.29,9300.18,81194.22,15600.75,10692.24,6589.21,32882.2,114076.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26183,825.05,0.0,25.39,850.44,0.0,346.45,66.0,412.45,1262.89 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,48200,42339.98,0.0,913.54,43253.52,8925.25,6218.22,3582.12,18725.59,61979.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,12649,79951.0,0.0,0.0,79951.0,16600.29,12424.5,6394.92,35419.71,115370.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4199,6485.23,0.0,433.85,6919.08,0.0,571.35,535.67,1107.02,8026.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,42943,10542.59,0.0,67.44,10610.03,0.0,0.0,839.16,839.16,11449.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,5797,77071.05,0.0,0.0,77071.05,15893.14,12424.5,5943.37,34261.01,111332.06 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,7917,175222.29,0.0,0.0,175222.29,35213.83,12424.5,19063.32,66701.65,241923.94 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,45785,86850.02,0.0,1200.0,88050.02,18146.56,12424.5,7039.25,37610.31,125660.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,44862,61528.69,356.55,3796.8,65682.04,12916.13,12028.3,4988.69,29933.12,95615.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,19378,62950.5,406.18,274.7,63631.38,13029.1,12424.5,5166.01,30619.61,94250.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",23329,113711.74,0.0,0.0,113711.74,23147.08,12424.5,16980.05,52551.63,166263.37 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1051,IS Business Analyst-Assistant,38742,70392.82,0.0,0.0,70392.82,14487.04,12424.5,5664.57,32576.11,102968.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,51289,69247.03,409.8,0.0,69656.83,14272.17,12424.5,5660.7,32357.37,102014.2 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,51038,45646.95,0.0,0.0,45646.95,8748.08,5531.29,3510.7,17790.07,63437.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20650,41735.88,536.4,3786.74,46059.02,8788.27,3696.29,2895.15,15379.71,61438.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,4697,93391.52,0.0,2082.46,95473.98,18754.4,9903.78,7926.04,36584.22,132058.2 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,18309,25597.96,0.0,0.0,25597.96,5708.85,4300.79,2102.02,12111.66,37709.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1931,Senior Parts Storekeeper,25539,69268.96,1295.63,0.0,70564.59,14221.02,11897.19,5725.24,31843.45,102408.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48330,3086.85,0.0,0.0,3086.85,0.0,1296.21,247.41,1543.62,4630.47 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,1352,53658.47,0.0,1618.61,55277.08,12352.21,12316.98,4449.03,29118.22,84395.3 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25106,97761.76,20383.22,15136.21,133281.19,27459.85,12424.5,2215.17,42099.52,175380.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,23836,71548.01,0.0,0.0,71548.01,15045.49,0.0,5141.55,20187.04,91735.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,13271,90420.13,5653.77,10824.76,106898.66,19843.72,12228.7,1753.68,33826.1,140724.76 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,48382,117139.2,35165.87,13075.28,165380.35,23170.33,12424.5,2772.65,38367.48,203747.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,32708,849.0,0.0,0.0,849.0,0.0,238.93,65.73,304.66,1153.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,25996,81570.87,0.0,0.0,81570.87,16812.65,12428.92,6642.79,35884.36,117455.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,40977,27035.76,0.0,0.0,27035.76,5576.7,4098.89,2389.79,12065.38,39101.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27508,66827.27,21953.62,1690.48,90471.37,18736.93,13166.51,6856.74,38760.18,129231.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,17986,31816.72,8934.13,7452.29,48203.14,7774.1,4361.48,3779.5,15915.08,64118.22 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",24789,131577.1,15566.04,20188.83,167331.97,29787.65,15196.12,2797.03,47780.8,215112.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,28627,136684.25,0.0,0.0,136684.25,27469.01,12424.5,17326.21,57219.72,193903.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,31298,42486.51,0.0,203.25,42689.76,8753.5,6212.25,3162.04,18127.79,60817.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,1420,77071.01,0.0,624.0,77695.01,16013.39,12424.5,6442.27,34880.16,112575.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2910,14498.43,0.0,2563.57,17062.0,0.0,1122.99,287.33,1410.32,18472.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,28059,2009.0,0.0,0.0,2009.0,518.32,477.86,155.54,1151.72,3160.72 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,52816,84599.03,0.0,1369.14,85968.17,17717.41,12424.5,7060.59,37202.5,123170.67 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,50249,211551.02,0.0,17802.44,229353.46,42574.85,12424.5,11659.19,66658.54,296012.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,49804,87917.8,0.0,8974.88,96892.68,19950.62,11485.98,7801.67,39238.27,136130.95 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,29371,91001.4,910.59,21169.57,113081.56,21013.7,11373.2,239.44,32626.34,145707.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,11644,111918.01,7450.71,0.0,119368.72,22523.67,12424.51,9773.13,44721.31,164090.03 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,11597,62544.0,6690.11,439.54,69673.65,13503.12,5734.39,1181.1,20418.61,90092.26 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,18100,74412.01,0.0,5055.0,79467.01,15474.51,12424.5,6592.17,34491.18,113958.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10630,3501.03,0.0,269.33,3770.36,0.0,952.75,292.02,1244.77,5015.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,42190,30453.79,0.0,627.34,31081.13,6296.18,6040.82,2558.67,14895.67,45976.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,9238,78357.29,0.0,0.0,78357.29,16093.76,11739.42,5830.73,33663.91,112021.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2836,89065.5,4221.62,15926.19,109213.31,25468.2,11316.81,1811.68,38596.69,147810.0 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,9322,17936.0,2480.22,1851.04,22267.26,3876.12,1911.46,376.49,6164.07,28431.33 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,3672,40920.0,325.66,6503.05,47748.71,10133.34,5734.39,3868.04,19735.77,67484.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45301,40129.57,0.0,4487.2,44616.77,9053.52,4284.3,3716.38,17054.2,61670.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,20763,2161.0,0.0,3298.99,5459.99,505.85,477.86,423.33,1407.04,6867.03 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,27806,101047.04,0.0,0.0,101047.04,20826.03,12424.5,8103.95,41354.48,142401.52 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,23909,74555.11,0.0,5055.0,79610.11,15501.15,12424.5,6405.51,34331.16,113941.27 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,47247,4679.64,0.0,0.0,4679.64,0.0,0.0,369.69,369.69,5049.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,13172,15320.0,0.0,115768.34,131088.34,3498.46,955.73,40.38,4494.57,135582.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,35150,62811.0,0.0,1466.0,64277.0,13191.91,12424.5,5296.29,30912.7,95189.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,44133,41528.8,880.27,9574.37,51983.44,9389.22,7072.41,4225.32,20686.95,72670.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,51793,6604.69,0.0,310.05,6914.74,0.0,476.37,536.5,1012.87,7927.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,24249,46923.07,0.0,0.0,46923.07,8822.59,6212.25,3751.87,18786.71,65709.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,20828,118427.05,0.0,0.0,118427.05,23833.77,12424.5,26996.82,63255.09,181682.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,1911,49576.5,0.0,590.07,50166.57,10877.05,5495.46,4026.49,20399.0,70565.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,8340,143188.02,0.0,0.0,143188.02,28816.77,12424.5,10215.37,51456.64,194644.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,48528,82252.99,11188.02,10344.37,103785.38,17089.23,12424.5,1729.71,31243.44,135028.82 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32908,113233.61,88609.38,19918.19,221761.18,25053.97,15196.12,3728.95,43979.04,265740.22 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,8671,3740.8,0.0,246.83,3987.63,839.06,669.02,318.64,1826.72,5814.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,9151,"Real Estate Devt Mgr, SFMTA",44153,125815.01,0.0,0.0,125815.01,25320.87,12424.5,9922.76,47668.13,173483.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1760,Offset Machine Operator,18167,62655.02,0.0,624.0,63279.02,13042.21,12424.5,4993.81,30460.52,93739.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9508,Prpl Permit And Citation Clerk,33213,0.0,0.0,921.79,921.79,0.0,0.0,70.52,70.52,992.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2575,Research Psychologist,51486,71301.01,0.0,0.0,71301.01,13614.18,7598.05,5716.54,26928.77,98229.78 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,364,131815.82,0.0,0.0,131815.82,26534.73,12263.52,17287.51,56085.76,187901.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,19392,112414.5,47581.17,14437.84,174433.51,24877.01,13001.95,2862.17,40741.13,215174.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9506,Snr Permit And Citation Clerk,7954,75431.86,8565.85,1140.0,85137.71,15783.36,12428.62,6975.03,35187.01,120324.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32674,53495.88,20834.61,6309.9,80640.39,12779.04,6881.27,1311.38,20971.69,101612.08 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,40729,48842.0,8710.97,0.0,57552.97,11714.92,12424.5,4681.58,28821.0,86373.97 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,948,139657.21,8634.84,21102.53,169394.58,27569.85,12424.49,2885.78,42880.12,212274.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,35214,3766.5,0.0,14.3,3780.8,0.0,1436.59,293.28,1729.87,5510.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,25781,81942.0,0.0,600.0,82542.0,17000.25,12424.5,6757.57,36182.32,118724.32 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,50505,68617.1,0.0,0.0,68617.1,14121.48,12424.5,1163.57,27709.55,96326.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7238,Electrician Supervisor 1,15192,80362.94,5864.47,2422.72,88650.13,16229.62,9052.61,7002.96,32285.19,120935.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,31940,68968.45,0.0,0.0,68968.45,14186.27,12406.59,5487.95,32080.81,101049.26 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2602,52288.43,1835.54,367.14,54491.11,10934.62,11515.36,4274.28,26724.26,81215.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,47818,45036.43,0.0,2230.2,47266.63,10838.22,11256.24,3928.85,26023.31,73289.94 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,52473,29440.14,0.0,0.0,29440.14,5337.47,2867.19,4339.98,12544.64,41984.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8386,69218.78,8741.84,3690.24,81650.86,20000.38,13640.5,6318.84,39959.72,121610.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1827,Administrative Services Mgr,38719,103075.02,0.0,0.0,103075.02,21244.17,12424.5,7796.85,41465.52,144540.54 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,25502,121734.8,0.0,3770.0,125504.8,24193.43,12212.45,9946.25,46352.13,171856.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,25472,54807.44,26970.43,7464.14,89242.01,12341.55,8147.61,7046.91,27536.07,116778.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39638,144706.01,0.0,7138.38,151844.39,24014.08,12424.5,3445.71,39884.29,191728.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,18648,86961.15,0.0,390.06,87351.21,17610.05,10465.25,6405.99,34481.29,121832.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,34067,66833.93,0.0,620.01,67453.94,13894.81,12345.11,5017.11,31257.03,98710.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,40165,0.0,0.0,103.31,103.31,0.0,0.0,7.91,7.91,111.22 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",6100,Health & Sanitation Inspection,6139,Senior Industrial Hygienist,26125,130910.03,0.0,0.0,130910.03,26346.51,12424.5,9947.24,48718.25,179628.28 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,13569,89622.78,0.0,0.0,89622.78,18433.57,12412.56,7222.6,38068.73,127691.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13917,76330.82,61.19,718.36,77110.37,10059.13,7390.19,6472.21,23921.53,101031.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,16026,62470.94,7429.92,10139.85,80040.71,13958.03,11116.59,6411.69,31486.31,111527.02 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,4443,97764.33,1109.78,9258.83,108132.94,25911.42,12424.51,1793.89,40129.82,148262.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",18483,150234.0,57698.98,19551.93,227484.91,33270.28,15196.12,3836.47,52302.87,279787.78 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,26022,41899.91,10216.01,5449.51,57565.43,10115.69,4730.86,960.72,15807.27,73372.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,37934,100554.02,0.0,2095.16,102649.18,21160.44,12424.51,8216.92,41801.87,144451.05 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,41827,44477.0,0.0,0.0,44477.0,8666.14,7645.85,3649.55,19961.54,64438.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7484,Sr Power Generation Tech,23160,43965.45,11590.43,2900.42,58456.3,10014.26,4677.11,4674.03,19365.4,77821.7 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),40693,129074.92,0.0,1562.5,130637.42,26266.39,12424.5,9958.11,48649.0,179286.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,12489,1637.03,0.0,0.0,1637.03,0.0,586.88,137.23,724.11,2361.14 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,12924,64511.05,0.0,624.0,65135.05,13424.78,12424.5,5147.86,30997.14,96132.19 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,37313,74779.0,48444.24,5438.47,128661.71,15798.4,6164.46,9782.92,31745.78,160407.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18658,2265.99,0.0,61.48,2327.47,600.49,982.61,180.19,1763.29,4090.76 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,48034,10844.0,0.0,0.0,10844.0,2432.32,1911.46,884.93,5228.71,16072.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,19406,62811.0,8449.77,11365.66,82626.43,14975.13,12424.5,6776.53,34176.16,116802.59 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,32947,93882.21,0.0,0.0,93882.21,19348.78,12424.26,7458.93,39231.97,133114.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,30519,95016.54,2087.65,1591.25,98695.44,19931.12,12052.13,8184.59,40167.84,138863.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24992,15222.72,0.0,495.0,15717.72,2932.65,3354.01,1338.67,7625.33,23343.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,20462,97576.81,15015.21,19760.34,132352.36,27834.08,12400.61,2252.32,42487.01,174839.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39298,44773.37,0.0,7034.39,51807.76,0.0,3917.96,4018.87,7936.83,59744.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28982,97762.9,0.0,2904.99,100667.89,24484.95,12424.5,1711.68,38621.13,139289.02 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,410C,Deputy Court Clerk I,35384,19090.01,0.0,0.0,19090.01,4925.2,4778.65,1598.51,11302.36,30392.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,41442,96157.02,2659.5,0.0,98816.52,18820.32,9557.31,7622.38,36000.01,134816.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,41884,56531.01,0.0,621.6,57152.61,11779.58,12424.52,4737.12,28941.22,86093.83 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2106,5642.63,0.0,392.7,6035.33,0.0,1469.44,468.44,1937.88,7973.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47445,67891.76,16413.29,5869.28,90174.33,20221.73,13376.05,6832.87,40430.65,130604.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,498,80946.05,5877.73,7227.73,94051.51,16788.41,12424.5,1756.04,30968.95,125020.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,37023,13205.29,0.0,0.0,13205.29,2457.49,2084.67,1050.58,5592.74,18798.03 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,1857,5354.81,0.0,0.0,5354.81,0.0,612.27,414.99,1027.26,6382.07 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,28041,13118.48,0.0,810.0,13928.48,2349.34,0.0,213.12,2562.46,16490.94 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,21192,56531.0,683.96,6383.46,63598.42,12179.85,12424.5,5099.88,29704.23,93302.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",9451,14517.25,0.0,0.0,14517.25,0.0,1146.88,1125.95,2272.83,16790.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,22554,141101.01,0.0,0.0,141101.01,28317.29,12424.5,17574.63,58316.42,199417.43 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,17932,74165.01,267.28,624.0,75056.29,15414.45,12424.5,6222.24,34061.19,109117.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42792,65398.3,16497.7,6774.32,88670.32,19884.25,12894.48,6713.7,39492.43,128162.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,33413,3041.01,0.0,0.0,3041.01,565.93,477.86,236.03,1279.82,4320.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41731,68533.53,327.77,12725.39,81586.69,15081.7,7248.03,6557.02,28886.75,110473.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,46955,34004.0,5813.56,9557.4,49374.96,0.0,4291.84,3846.72,8138.56,57513.52 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,2698,41580.0,0.0,9827.67,51407.67,9399.1,6451.18,4091.09,19941.37,71349.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,38.0,"Plumbers and Pipefitters, Local 38",6200,Public Safety Inspection,6242,Plumbing Inspector,18798,112776.01,0.0,6175.96,118951.97,23928.77,12424.5,9520.28,45873.55,164825.52 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,28606,96897.01,0.0,0.0,96897.01,20048.19,12424.5,7677.57,40150.26,137047.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16193,6245.48,0.0,136.07,6381.55,-0.01,0.0,751.43,751.42,7132.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,4840,93281.01,0.0,2084.0,95365.01,19653.78,12424.51,7810.54,39888.83,135253.84 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,36300,46240.0,0.0,7003.88,53243.88,10201.75,7645.85,4381.82,22229.42,75473.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,43504,15529.76,0.0,0.0,15529.76,3483.33,1911.46,1280.7,6675.49,22205.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,47911,69338.22,130.73,0.0,69468.95,14713.59,9557.32,5138.66,29409.57,98878.52 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,18499,120111.03,0.0,45.91,120156.94,24190.04,12424.5,9154.91,45769.45,165926.39 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,49801,94039.1,0.0,1303.83,95342.93,19656.18,12472.29,7903.11,40031.58,135374.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,51030,6256.6,0.0,0.0,6256.6,0.0,2713.09,515.49,3228.58,9485.18 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,29547,56276.02,2060.25,624.0,58960.27,12731.54,12424.5,4627.05,29783.09,88743.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14477,2973.03,0.0,0.0,2973.03,0.0,1248.43,238.58,1487.01,4460.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,41356,34020.01,0.0,278.4,34298.41,7693.11,5734.38,2723.01,16150.5,50448.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,141,3513.58,0.0,0.0,3513.58,0.0,1475.41,280.53,1755.94,5269.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40370,64018.4,13470.71,2633.97,80123.08,18293.63,12615.89,5996.76,36906.28,117029.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2487,Chemist III,36158,342.07,0.0,0.0,342.07,75.05,35.84,29.36,140.25,482.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44406,40930.25,382.98,778.27,42091.5,12024.05,8139.72,3089.01,23252.78,65344.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14783,119739.11,1241.58,15730.26,136710.95,24718.24,10933.56,9437.65,45089.45,181800.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,39437,41335.02,1014.44,0.0,42349.46,9914.28,12424.5,3290.4,25629.18,67978.64 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,44196,28811.52,2302.38,3396.36,34510.26,0.0,6448.21,2695.51,9143.72,43653.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47077,65895.46,3979.81,771.11,70646.38,15178.4,12983.91,5353.11,33515.42,104161.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,15905,8401.95,53.89,54.61,8510.45,0.0,2794.02,660.56,3454.58,11965.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5303,"Sprv, Traffic & Street Signs",2989,97174.04,7820.09,0.0,104994.13,20027.8,12424.5,8562.67,41014.97,146009.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,46914,13942.95,0.0,0.0,13942.95,0.0,5985.26,1102.98,7088.24,21031.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,8058,49340.22,0.0,1080.0,50420.22,10598.32,8655.58,4161.83,23415.73,73835.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,46301,148644.01,0.0,0.0,148644.01,29330.19,10465.25,16312.75,56108.19,204752.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3210,Swimming Instr/Pool Lifeguard,34253,54779.04,21.35,1860.95,56661.34,12682.31,12424.5,4691.37,29798.18,86459.52 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51955,51935.05,0.0,4623.08,56558.13,2974.64,0.0,5881.35,8855.99,65414.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,11023,52528.0,0.0,0.0,52528.0,11738.98,6690.11,4326.94,22756.03,75284.03 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,33412,129895.06,0.0,0.0,129895.06,26141.54,12424.5,9973.74,48539.78,178434.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,15901,83699.01,0.0,2490.0,86189.01,17763.22,12424.5,7140.01,37327.73,123516.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35160,112570.77,0.0,12182.02,124752.79,23683.65,15107.6,2009.74,40800.99,165553.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,6632,63887.0,219.7,811.3,64918.0,13343.81,12424.51,5361.55,31129.87,96047.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,9523,40421.0,1852.8,0.0,42273.8,7604.49,6212.25,3481.88,17298.62,59572.42 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),50680,184289.02,0.0,5185.78,189474.8,38130.64,12424.5,11046.35,61601.49,251076.29 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,20895,64877.0,0.0,0.0,64877.0,13545.82,10990.91,5190.24,29726.97,94603.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20379,65670.61,4580.77,1242.5,71493.88,18334.83,12938.57,5970.13,37243.53,108737.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H010,Incident Support Specialist,846,122180.67,23137.15,14664.44,159982.26,26883.38,15052.76,2726.26,44662.4,204644.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",47490,93879.6,5189.45,3386.85,102455.9,19809.37,12424.5,8390.8,40624.67,143080.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,16887,65543.26,0.0,0.0,65543.26,13516.81,9055.56,5191.2,27763.57,93306.83 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1952,Purchaser,2962,65356.75,0.0,0.0,65356.75,13579.11,11328.27,5213.57,30120.95,95477.7 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,22341,132536.75,0.0,0.0,132536.75,26615.41,12424.5,24956.03,63995.94,196532.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,51498,62541.25,0.0,0.0,62541.25,13551.35,8123.7,4979.96,26655.01,89196.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,18429,111918.0,0.0,0.0,111918.0,22523.67,12424.5,9200.5,44148.67,156066.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23635,35127.92,0.0,596.25,35724.17,7624.78,7740.89,2995.68,18361.35,54085.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7219,Maintenance Scheduler,3944,75927.0,55168.71,5346.49,136442.2,16746.3,12424.5,9966.5,39137.3,175579.5 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,26138,90895.47,0.0,0.0,90895.47,18764.67,11389.93,7232.81,37387.41,128282.88 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,39172,101531.05,0.0,90.0,101621.05,20942.78,12424.5,7973.04,41340.32,142961.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37866,20804.74,2583.09,758.52,24146.35,5218.8,6445.03,1822.03,13485.86,37632.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,50495,26936.0,5397.02,3544.14,35877.16,5426.11,4348.58,2824.3,12598.99,48476.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18304,17699.33,0.0,3637.39,21336.72,-0.02,0.0,4395.23,4395.21,25731.93 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9155,Claims Investigator,36935,94873.5,26311.76,7968.08,129153.34,19917.92,12424.5,9881.42,42223.84,171377.18 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,200.0,"Transportation Workers, Local 200",9100,Street Transit,9157,Claims Adjuster,8743,105867.2,0.0,0.0,105867.2,21543.17,12424.5,8320.73,42288.4,148155.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,50575,9813.0,0.0,10.0,9823.0,1828.05,1433.61,741.89,4003.55,13826.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",42566,93738.0,7606.12,766.39,102110.51,19491.69,12424.51,8394.28,40310.48,142420.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,13620,69247.0,9212.87,2634.0,81093.87,14400.86,12424.5,6635.35,33460.71,114554.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,6957,24929.76,0.0,0.0,24929.76,0.0,6137.59,1968.62,8106.21,33035.97 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,8536,0.0,0.0,354.34,354.34,0.0,68.5,5.14,73.64,427.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,21836,119455.91,30563.04,3725.08,153744.03,23662.83,12424.5,2565.92,38653.25,192397.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17336,52362.02,0.0,5958.15,58320.17,11893.89,11531.14,4777.21,28202.24,86522.41 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,44952,64511.07,0.0,1540.0,66051.07,13611.67,12424.5,5292.87,31329.04,97380.11 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,5112,25960.0,0.0,1463.75,27423.75,5882.03,5256.52,2232.36,13370.91,40794.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,27022,175.63,0.0,0.0,175.63,0.0,56.74,13.63,70.37,246.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,13668,5094.05,0.0,17.37,5111.42,0.0,2381.85,396.43,2778.28,7889.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,21344,84644.01,25837.46,14352.89,124834.36,19231.19,12424.5,9748.69,41404.38,166238.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,27961,57089.42,190.97,4431.55,61711.94,12638.44,9652.88,4996.66,27287.98,88999.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,32263,68661.11,10017.3,1388.5,80066.91,14323.84,12052.78,6586.52,32963.14,113030.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,6645,48804.02,9969.04,5988.36,64761.42,11426.16,6690.11,5264.04,23380.31,88141.73 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,41601,56120.02,0.0,0.0,56120.02,12556.8,12424.5,4653.78,29635.08,85755.1 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,4858,7713.0,0.0,5432.84,13145.84,1730.04,1433.6,1054.27,4217.91,17363.75 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,12810,134626.82,0.0,3150.0,137776.82,27100.66,8937.28,10038.55,46076.49,183853.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,31394,59827.03,3174.73,559.14,63560.9,12445.16,12424.52,5005.05,29874.73,93435.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,22225,70245.0,6268.96,4714.65,81228.61,14616.8,12424.5,6643.83,33685.13,114913.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,15678,84644.0,33065.05,11701.71,129410.76,19078.79,12424.5,9873.93,41377.22,170787.98 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,52692,26563.01,0.0,0.0,26563.01,4943.37,3822.92,2124.98,10891.27,37454.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,2673,29233.8,944.4,1674.93,31853.13,6932.84,4778.65,2451.71,14163.2,46016.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20469,0.0,0.0,813.0,813.0,0.0,68.5,62.2,130.7,943.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,9063,3227.88,0.0,0.0,3227.88,0.0,1573.97,250.36,1824.33,5052.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,29213,51677.04,0.0,1388.49,53065.53,10711.52,10035.17,4287.93,25034.62,78100.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20229,47629.39,569.9,12695.23,60894.52,11546.12,3993.76,4947.4,20487.28,81381.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,26085,75935.79,13018.82,12364.32,101318.93,17246.28,10262.17,8316.38,35824.83,137143.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,39016,22888.6,0.0,0.0,22888.6,5033.24,5543.24,1832.96,12409.44,35298.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,4274,8276.0,620.69,613.2,9509.89,2135.2,1911.46,781.12,4827.78,14337.67 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,9563,84093.6,0.0,0.0,84093.6,17316.39,12376.71,6590.51,36283.61,120377.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34100,64914.5,3504.71,844.79,69264.0,17971.09,12790.08,5028.44,35789.61,105053.61 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,43972,68617.12,1306.21,0.0,69923.33,14121.48,12424.5,1163.4,27709.38,97632.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,32537,77492.65,0.0,0.0,77492.65,15971.18,12424.5,6232.9,34628.58,112121.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,36265,67858.0,0.0,0.0,67858.0,14240.23,10513.03,5213.61,29966.87,97824.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,44782,102907.23,3691.09,13025.04,119623.36,21580.5,9079.45,2028.99,32688.94,152312.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,47085,21445.03,0.0,0.0,21445.03,4810.1,2389.33,1776.56,8975.99,30421.02 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18660,56531.0,0.0,4587.18,61118.18,12598.13,12424.5,5032.17,30054.8,91172.98 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,3242,180959.73,0.0,0.0,180959.73,35924.64,10612.67,10700.25,57237.56,238197.29 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,33672,13110.38,0.0,0.0,13110.38,0.0,4874.23,1016.58,5890.81,19001.19 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,10891,54839.83,11281.67,6754.54,72876.04,13379.91,12230.97,5591.7,31202.58,104078.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29256,18525.95,0.0,3309.14,21835.09,245.4,0.0,1974.59,2219.99,24055.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,23806,85368.03,0.0,0.0,85368.03,17594.6,12424.5,6897.72,36916.82,122284.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35735,113233.58,42596.82,18598.33,174428.73,25025.44,15196.12,2975.33,43196.89,217625.62 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,6153,117547.2,0.0,3000.0,120547.2,23633.51,12424.5,32243.03,68301.04,188848.24 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,16111,231004.01,0.0,4500.0,235504.01,46463.0,12424.5,11755.43,70642.93,306146.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,12616,6106.46,558.4,154.82,6819.68,0.0,2855.25,528.86,3384.11,10203.79 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,24891,124355.05,0.0,5570.53,129925.58,25179.52,11689.78,16902.0,53771.3,183696.88 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,16033,60636.7,1559.4,1055.88,63251.98,12644.88,11946.63,4844.81,29436.32,92688.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,35691,56039.41,895.02,5270.67,62205.1,4660.35,8308.89,4952.75,17921.99,80127.09 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,2486,61935.45,0.0,0.0,61935.45,12755.21,7902.1,5053.6,25710.91,87646.36 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,33555,49216.0,0.0,0.0,49216.0,9673.99,8123.71,4028.96,21826.66,71042.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37347,113524.9,36310.22,4430.14,154265.26,22466.88,12424.5,2576.95,37468.33,191733.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,29082,11649.0,0.0,0.0,11649.0,0.0,3153.91,901.86,4055.77,15704.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,8776,113222.99,15060.21,18712.74,146995.94,25177.11,15196.12,2458.6,42831.83,189827.77 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,42487,26842.24,0.0,7137.43,33979.67,5904.7,3966.28,2747.57,12618.55,46598.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,42686,4008.0,0.0,50.11,4058.11,892.37,955.73,313.22,2161.32,6219.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,38756,87359.0,193.95,600.0,88152.95,18116.64,12424.49,7234.55,37775.68,125928.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,1782,63102.02,0.0,0.0,63102.02,13005.54,12424.5,4940.5,30370.54,93472.56 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,40604,23690.24,0.0,0.0,23690.24,4408.75,4235.09,1887.33,10531.17,34221.41 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3280,Assistant Recreation Director,49784,0.0,0.0,0.0,0.0,0.0,0.0,1.27,1.27,1.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,2444,104753.6,0.0,221.33,104974.93,21286.84,11128.28,8172.28,40587.4,145562.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50563,56076.4,198.28,160.0,56434.68,12551.82,12424.5,4589.17,29565.49,86000.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37062,96.43,0.0,841.51,937.94,24.88,41.82,71.84,138.54,1076.48 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,4105,0.0,0.0,553.83,553.83,0.0,68.5,16.39,84.89,638.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,958,42022.03,0.0,0.0,42022.03,8768.68,8601.58,3299.6,20669.86,62691.89 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,21359,375.9,0.0,0.0,375.9,0.0,125.44,29.1,154.54,530.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11771,36894.44,3416.12,1304.43,41614.99,9938.76,11455.63,3155.86,24550.25,66165.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32128,63610.57,9016.51,1561.6,74188.68,17797.05,12528.14,5684.88,36010.07,110198.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,34634,84097.22,0.0,0.0,84097.22,17270.43,11934.09,6989.9,36194.42,120291.64 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,14440,94186.39,0.0,3000.0,97186.39,18871.66,9633.65,8144.36,36649.67,133836.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,40005,34934.29,6563.62,4577.29,46075.2,8609.29,4659.19,3704.52,16973.0,63048.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1224,Pr Payroll & Personnel Clerk,38534,83699.06,0.0,624.0,84323.06,17379.24,12424.5,6709.25,36512.99,120836.05 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,52541,79158.76,28638.16,4472.8,112269.72,14890.67,8123.71,1914.99,24929.37,137199.09 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29632,97344.35,46240.42,17058.29,160643.06,27823.99,12424.51,2579.51,42828.01,203471.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,33705,93281.0,0.0,1020.0,94301.0,19434.83,12424.5,7669.96,39529.29,133830.29 +Calendar,2015,6,General Administration & Finance,CON,Controller,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,9547,31170.0,0.0,0.0,31170.0,6991.4,4778.66,2546.6,14316.66,45486.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,13071,62809.79,0.0,805.95,63615.74,13274.29,11025.2,5291.29,29590.78,93206.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,26295,21140.0,78.04,602.1,21820.14,0.0,5017.6,1692.23,6709.83,28529.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,42572,124231.45,0.0,0.0,124231.45,25026.48,12302.06,9829.9,47158.44,171389.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,22570,44374.4,0.0,529.2,44903.6,9251.38,6490.01,3676.39,19417.78,64321.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47888,119463.81,0.0,2363.43,121827.24,23633.48,12424.5,559.0,36616.98,158444.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,7043,84644.01,1795.15,5857.28,92296.44,17751.35,12424.5,7556.46,37732.31,130028.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,14116,1045.8,0.0,0.0,1045.8,234.57,143.35,110.13,488.05,1533.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32689,142647.95,21390.74,18964.79,183003.48,28269.27,12424.5,3111.09,43804.86,226808.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3522,Senior Museum Preparator,50364,20669.0,0.0,0.0,20669.0,3846.51,3822.92,1652.91,9322.34,29991.34 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,17895,60560.28,0.0,0.0,60560.28,12837.63,9629.0,4908.46,27375.09,87935.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,25295,60127.47,16194.68,5682.82,82004.97,12782.12,11323.56,6589.8,30695.48,112700.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2622,Dietetic Technician,14499,59494.0,0.0,824.0,60318.0,12399.37,12424.5,4649.06,29472.93,89790.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,30943,110540.3,0.0,6465.57,117005.87,20962.8,9786.68,9410.07,40159.55,157165.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,31835,15487.21,0.0,13226.33,28713.54,4067.95,3440.63,2294.41,9802.99,38516.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,44540,97934.02,0.0,1340.0,99274.02,20468.7,12424.5,8230.44,41123.64,140397.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18966,116407.14,0.0,5033.09,121440.23,16260.86,11932.24,9703.42,37896.52,159336.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42111,87510.78,0.0,2757.14,90267.92,0.0,7657.97,6999.28,14657.25,104925.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,5280,35116.55,155.63,189.96,35462.14,7559.79,7110.58,2862.35,17532.72,52994.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,24967,4007.01,0.0,1.02,4008.03,0.0,1873.6,310.93,2184.53,6192.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,4447,10588.9,0.0,0.0,10588.9,0.0,2341.54,839.44,3180.98,13769.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,2140,8860.0,297.73,1181.3,10339.03,2006.9,2867.19,827.62,5701.71,16040.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,52062,57714.76,4257.56,0.0,61972.32,12881.05,12424.5,4972.95,30278.5,92250.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47846,1904.83,0.0,0.88,1905.71,0.0,1033.38,147.54,1180.92,3086.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,15653,1239.6,0.0,0.0,1239.6,271.97,0.0,97.93,369.9,1609.5 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,26334,84018.7,6324.34,7444.83,97787.87,17938.67,12281.15,7877.29,38097.11,135884.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,11695,23716.0,448.61,615.0,24779.61,4528.02,3345.06,1956.57,9829.65,34609.26 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,12896,67657.49,6202.33,8454.0,82313.82,15176.25,12378.21,6727.2,34281.66,116595.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,20634,116976.03,0.0,0.0,116976.03,23541.49,12424.5,9618.36,45584.35,162560.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21620,41866.11,4797.92,991.85,47655.88,11138.4,13038.25,3612.4,27789.05,75444.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,20578,74438.97,0.0,1400.0,75838.97,15591.57,12424.51,6164.51,34180.59,110019.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14968,81106.94,7873.65,5321.21,94301.8,16772.98,12424.49,1571.84,30769.31,125071.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,31719,78866.43,0.0,0.0,78866.43,16222.49,12424.49,6351.2,34998.18,113864.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,30825,68344.09,0.0,1057.71,69401.8,6917.83,10226.32,5344.32,22488.47,91890.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,21641,104811.0,0.0,60.0,104871.0,21613.08,12424.5,8631.27,42668.85,147539.85 +Calendar,2015,4,Community Health,DPH,Public Health,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,18029,100761.08,13720.81,0.0,114481.89,20767.03,12424.5,9149.21,42340.74,156822.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,26370,5674.3,0.0,52.99,5727.29,0.0,1893.54,444.18,2337.72,8065.01 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,4747,88296.0,0.0,5322.0,93618.0,18337.86,12424.5,7590.19,38352.55,131970.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,36352,75900.4,7396.91,0.0,83297.31,15638.99,12424.5,6487.33,34550.82,117848.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26965,113442.54,5034.43,5862.64,124339.61,22463.28,12316.98,2116.38,36896.64,161236.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5312,Survey Assistant II,48246,84564.34,60.77,0.0,84625.11,17429.72,12391.65,6912.33,36733.7,121358.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,22313,4408.0,0.0,0.0,4408.0,0.0,1911.46,348.74,2260.2,6668.2 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,50195,82911.1,0.0,624.0,83535.1,17216.92,12424.5,6875.31,36516.73,120051.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37580,18078.17,2963.74,632.26,21674.17,5188.38,5706.61,1600.61,12495.6,34169.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,1642,54022.17,2206.81,0.0,56228.98,11397.12,10023.22,4572.77,25993.11,82222.09 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20088,102289.35,7760.44,13814.1,123863.89,22697.63,12658.97,2099.02,37455.62,161319.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,20381,790.0,0.0,155.04,945.04,203.82,238.93,86.41,529.16,1474.2 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1867,Auditor I,5024,41323.81,0.0,0.0,41323.81,8955.83,8123.71,3268.94,20348.48,61672.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28736,10098.0,695.18,315.83,11109.01,2289.98,4300.78,887.39,7478.15,18587.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,49511,44805.8,943.26,2473.96,48223.02,9180.23,9834.77,3990.98,23005.98,71229.0 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,1496,108375.08,25219.62,11413.36,145008.06,29000.28,12424.5,2463.97,43888.75,188896.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,33211,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3242.85,18068.7,61836.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,5659,62153.91,1125.9,972.5,64252.31,12808.21,12330.18,5209.96,30348.35,94600.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,46407,16926.86,95.1,910.0,17931.96,0.0,4375.45,1247.88,5623.33,23555.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,37593,36437.5,59.91,0.0,36497.41,8602.08,8362.65,2796.34,19761.07,56258.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,40028,156746.05,0.0,6337.28,163083.33,32823.39,12424.5,10490.97,55738.86,218822.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,29772,49679.0,0.0,2211.45,51890.45,11972.3,12424.5,4294.15,28690.95,80581.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3032,66992.93,6487.39,3252.38,76732.7,19223.82,13197.62,5731.23,38152.67,114885.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49336,55606.68,6297.67,2340.12,64244.47,15682.84,10949.34,4972.05,31604.23,95848.7 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,7931,99654.0,0.0,0.0,99654.0,22731.77,12424.5,1648.71,36804.98,136458.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45453,63913.12,4591.99,4688.33,73193.44,18767.22,12592.65,5667.51,37027.38,110220.82 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,35924,142314.03,0.0,0.0,142314.03,28611.29,12424.5,17379.29,58415.08,200729.11 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,6513,9552.0,111.94,0.0,9663.94,2142.52,1911.46,721.12,4775.1,14439.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,18367,1771.88,0.0,1082.97,2854.85,434.32,298.66,236.6,969.58,3824.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,223,69583.21,17339.29,843.85,87766.35,16020.12,13710.32,6680.43,36410.87,124177.22 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),29664,110038.62,0.0,1500.0,111538.62,22722.88,12424.5,9000.29,44147.67,155686.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,19101,91786.41,0.0,2014.25,93800.66,19363.42,12230.37,7577.1,39170.89,132971.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41573,99644.6,0.0,14956.61,114601.21,22481.7,10560.83,8408.7,41451.23,156052.44 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,34592,51110.4,0.0,1287.31,52397.71,11282.98,12285.62,4161.87,27730.47,80128.18 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2589,Health Program Coordinator 1,3380,79722.06,0.0,1040.0,80762.06,16644.24,12424.5,6297.32,35366.06,116128.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22430,65628.36,23866.27,4572.13,94066.76,19216.42,12933.01,7141.18,39290.61,133357.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,9466,81157.0,148.54,855.0,82160.54,16891.74,12424.5,6605.72,35921.96,118082.5 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,22881,81640.03,1836.9,0.0,83476.93,17329.44,9557.31,6896.2,33782.95,117259.88 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,17178,29437.4,0.0,447.61,29885.01,6684.76,6212.25,2429.25,15326.26,45211.27 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,10038,97397.21,68942.3,21076.98,187416.49,28813.6,12376.24,3150.7,44340.54,231757.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,32389,25999.36,0.0,201.49,26200.85,5634.73,5202.76,2111.08,12948.57,39149.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52813,9713.59,508.2,55.66,10277.45,2334.44,2970.96,797.06,6102.46,16379.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,5074,58869.02,3751.25,8254.14,70874.41,16763.36,6690.11,1152.4,24605.87,95480.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17527,99769.44,0.0,27572.85,127342.29,0.0,0.0,7303.97,7303.97,134646.26 +Calendar,2015,1,Public Protection,CRT,Superior Court,191.0,"Court Interpreters, Local 39521",SCRT,SF Superior Court,620C,Court Interpreter,43193,21387.11,0.0,1821.46,23208.57,4641.72,3524.25,1836.63,10002.6,33211.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,14049,8801.9,0.0,0.0,8801.9,0.0,3189.75,682.19,3871.94,12673.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34380,133254.37,3891.44,14036.46,151182.27,25518.6,12167.65,10163.02,47849.27,199031.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,4534,81936.21,0.0,0.0,81936.21,17196.1,10513.04,6571.74,34280.88,116217.09 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,52520,6669.68,0.0,0.0,6669.68,0.0,1914.45,520.52,2434.97,9104.65 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,26781,36185.5,2356.82,3437.15,41979.47,7968.03,4539.72,682.05,13189.8,55169.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,254,61946.15,0.0,0.0,61946.15,12751.37,8779.34,4931.6,26462.31,88408.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,26644,138732.36,8196.45,8003.4,154932.21,27402.3,12424.5,2629.09,42455.89,197388.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39925,67431.27,6961.19,976.12,75368.58,18756.64,13289.26,5661.57,37707.47,113076.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,25689,59336.42,6897.13,0.0,66233.55,13221.91,12424.5,5316.87,30963.28,97196.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,139,66102.01,24238.34,5468.01,95808.36,14582.17,12424.51,7824.25,34830.93,130639.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,11110,69902.02,250.84,0.0,70152.86,14407.14,12424.5,5782.12,32613.76,102766.62 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",156,150219.97,97810.31,22497.37,270527.65,33866.1,15196.12,706.12,49768.34,320295.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16085,149154.33,544.07,1179.29,150877.69,1049.0,11221.54,7706.4,19976.94,170854.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,27706,97672.63,0.0,0.0,97672.63,20086.13,12113.89,7878.07,40078.09,137750.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,22014,31744.11,0.0,0.0,31744.11,6964.66,3345.06,2638.36,12948.08,44692.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,33116,31.94,0.0,0.0,31.94,0.0,14.93,2.47,17.4,49.34 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,6172,37565.01,1430.17,1326.69,40321.87,6870.1,11017.79,3277.14,21165.03,61486.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3889,3050.25,0.0,0.0,3050.25,0.0,1487.36,236.65,1724.01,4774.26 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8260,Criminalist II,44644,113167.25,2875.34,0.0,116042.59,23049.07,12424.51,9353.46,44827.04,160869.63 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19154,242.31,0.0,0.0,242.31,0.0,58.72,18.8,77.52,319.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40627,61744.02,2410.21,1490.77,65645.0,17268.63,12168.43,5622.52,35059.58,100704.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,47241,66993.56,0.0,6278.92,73272.48,14876.4,7461.27,6081.83,28419.5,101691.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",5300,Sub-Professional Engineering,5322,Graphic Artist,22637,63956.86,94.76,0.0,64051.62,13182.83,12403.59,5163.76,30750.18,94801.8 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,31156,9463.59,0.0,4311.3,13774.89,0.0,0.0,199.74,199.74,13974.63 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,17089,78151.57,831.6,1108.8,80091.97,16132.16,10260.91,6430.63,32823.7,112915.67 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,7940,27019.51,1475.89,2782.86,31278.26,4609.31,5489.47,2385.25,12484.03,43762.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3869,138709.45,4339.13,2445.04,145493.62,27413.53,12424.5,2479.43,42317.46,187811.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15705,81463.75,1027.57,7621.95,90113.27,17229.09,7213.37,6896.64,31339.1,121452.37 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1932,Assistant Storekeeper,37473,0.0,0.0,35.11,35.11,0.0,0.0,2.69,2.69,37.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38603,73386.27,0.0,6538.72,79924.99,13747.17,6537.8,5553.31,25838.28,105763.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,45727,126994.01,0.0,0.0,126994.01,25557.71,12424.51,9929.7,47911.92,174905.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,5394,43840.47,37.14,532.28,44409.89,10767.01,10598.1,3656.77,25021.88,69431.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,22152,70245.0,20810.56,10935.41,101990.97,15776.46,12424.5,8066.28,36267.24,138258.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,46721,0.0,0.0,139.14,139.14,0.0,34.25,10.65,44.9,184.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",30829,93738.0,3167.44,286.38,97191.82,19319.82,12424.5,7728.06,39472.38,136664.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7630,146943.38,0.0,44845.03,191788.41,33477.07,12245.3,4702.28,50424.65,242213.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,27383,82240.2,5386.32,13366.68,100993.2,18473.6,12352.82,8262.15,39088.57,140081.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,4232,81197.81,10435.03,3408.37,95041.21,17387.47,12424.5,7461.02,37272.99,132314.2 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1805,Performance Analyst II,26513,68127.89,0.0,0.0,68127.89,13757.56,9923.17,5445.58,29126.31,97254.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38090,19207.99,0.0,1158.19,20366.18,0.0,1675.51,1580.74,3256.25,23622.43 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,17064,208032.0,0.0,1562.5,209594.5,42181.17,12424.5,11389.07,65994.74,275589.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",2375,128838.13,0.0,0.0,128838.13,25882.88,10883.38,17228.04,53994.3,182832.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,44930,0.0,0.0,11018.57,11018.57,0.0,68.5,842.92,911.42,11929.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7433,14543.1,0.0,497.88,15040.98,0.0,3879.68,1166.25,5045.93,20086.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18903,64874.14,5850.81,2363.55,73088.5,18336.16,12775.38,5440.59,36552.13,109640.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,36693,6345.0,0.0,0.0,6345.0,1423.17,1433.6,503.91,3360.68,9705.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7248,Steamfitter Supervisor 2,4743,101109.01,27180.13,3033.27,131322.41,20820.86,10035.18,8338.68,39194.72,170517.13 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,7303,86663.04,2443.34,994.42,90100.8,17989.61,12424.5,7771.22,38185.33,128286.13 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,39203,78963.01,0.0,0.0,78963.01,16274.47,12424.5,6287.21,34986.18,113949.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11604,6736.01,0.0,8.2,6744.21,0.0,2920.95,537.08,3458.03,10202.24 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,31854,106605.04,0.0,0.0,106605.04,21971.81,12424.5,8551.11,42947.42,149552.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,16311,1667.71,0.0,0.0,1667.71,0.0,509.23,129.12,638.35,2306.06 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4267,Pr Real Property Appraiser,12949,109933.0,0.0,2200.0,112133.0,22441.73,11731.6,8893.49,43066.82,155199.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,21683,91253.29,0.0,0.0,91253.29,18811.29,12299.06,6991.1,38101.45,129354.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,32563,97778.68,65182.28,14359.47,177320.43,26355.5,12424.5,2937.11,41717.11,219037.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40736,126596.5,0.0,10268.09,136864.59,24176.19,12281.14,8895.98,45353.31,182217.9 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,23412,103064.84,0.0,0.0,103064.84,21242.08,12424.5,8464.5,42131.08,145195.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,20489,65734.42,11756.49,1656.12,79147.03,13542.94,9766.38,6301.03,29610.35,108757.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48209,143824.5,0.0,36452.13,180276.63,34982.07,12348.34,6430.47,53760.88,234037.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,5857,47531.2,17191.81,7744.07,72467.08,12220.34,12424.5,5783.4,30428.24,102895.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7353,Water Meter Repairer,28308,76728.02,348.29,0.0,77076.31,15814.0,12424.5,6215.6,34454.1,111530.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,20254,9367.01,0.0,0.0,9367.01,2416.72,4061.86,689.97,7168.55,16535.56 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,11158,188336.29,0.0,2880.0,191216.29,38242.14,10901.3,10975.4,60118.84,251335.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,2559,65784.94,589.49,474.94,66849.37,14091.24,6870.98,1128.11,22090.33,88939.7 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,46779,18089.7,831.33,0.0,18921.03,0.0,2437.11,1464.87,3901.98,22823.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,46774,96244.39,2685.51,0.0,98929.9,19806.96,12418.53,7920.64,40146.13,139076.03 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,14410,189517.49,0.0,4005.0,193522.49,38442.16,11152.19,11037.9,60632.25,254154.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,48573,56526.41,0.0,4228.2,60754.61,12309.0,12423.49,5022.07,29754.56,90509.17 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,31364,0.0,0.0,4639.79,4639.79,0.0,0.0,354.94,354.94,4994.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7315,Auto Machinist Asst Sprv,32503,19295.01,1664.19,24.75,20983.95,3595.41,2389.33,1677.86,7662.6,28646.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,4595,75614.84,31918.93,6498.55,114032.32,16505.91,15196.13,1855.86,33557.9,147590.22 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,43390,97609.89,5351.37,17568.69,120529.95,28015.08,12404.97,1857.69,42277.74,162807.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,10777,9807.78,0.0,0.0,9807.78,0.0,2753.7,792.84,3546.54,13354.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,6097,18722.01,0.0,0.0,18722.01,4681.16,5256.51,1511.46,11449.13,30171.14 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,7957,110029.98,19901.45,11686.3,141617.73,22818.76,12073.39,2454.75,37346.9,178964.63 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,22609,93310.66,857.04,0.0,94167.7,21229.67,11645.82,1554.35,34429.84,128597.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,33537,4200.71,0.0,0.0,4200.71,0.0,1821.56,347.63,2169.19,6369.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2117,12755.66,0.0,10.54,12766.2,387.72,5531.29,1039.07,6958.08,19724.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,3950,80129.7,4707.12,4338.42,89175.24,16919.14,12472.29,1477.84,30869.27,120044.51 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,10042,77046.03,0.0,0.0,77046.03,15850.78,12424.5,6268.4,34543.68,111589.71 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,7138,35063.52,0.0,1600.76,36664.28,7442.04,6254.06,2956.16,16652.26,53316.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,1335,84306.98,0.0,27058.71,111365.69,18496.94,5256.52,11954.55,35708.01,147073.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,39206,7453.8,255.66,0.0,7709.46,0.0,1959.25,598.38,2557.63,10267.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,34959,138635.25,19023.83,21693.85,179352.93,27395.36,12424.5,3058.21,42878.07,222231.0 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,16385,8360.18,28.6,0.0,8388.78,0.0,2632.74,650.41,3283.15,11671.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1429,Nurses Staffing Assistant,14403,53757.01,0.0,4263.48,58020.49,11424.01,11060.08,4569.32,27053.41,85073.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,47116,40454.4,0.0,0.0,40454.4,8548.26,7024.62,3293.17,18866.05,59320.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,25904,62390.91,0.0,1440.0,63830.91,13127.65,12424.5,5142.08,30694.23,94525.14 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,34698,108588.73,0.0,0.0,108588.73,22344.08,12424.5,8609.68,43378.26,151966.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24880,73098.64,4541.8,14161.13,91801.57,17861.53,9748.46,1552.15,29162.14,120963.71 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,14907,85004.0,487.36,0.0,85491.36,17532.01,12424.5,7014.62,36971.13,122462.49 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2536,Respiratory Care Practitioner,4721,77071.01,0.0,2658.95,79729.96,15895.95,12424.5,6307.15,34627.6,114357.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39302,12939.63,0.0,323.7,13263.33,0.0,5549.22,1074.46,6623.68,19887.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,8299,57762.94,71.07,600.0,58434.01,11871.39,10847.55,4738.64,27457.58,85891.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,48157,108038.0,0.0,0.0,108038.0,22266.23,12424.5,8840.56,43531.29,151569.29 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,4013,118030.44,0.0,0.0,118030.44,23888.26,6851.39,9554.27,40293.92,158324.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44816,25808.1,0.0,7097.23,32905.33,13700.66,0.0,6136.51,19837.17,52742.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,5233,98802.69,24282.63,10124.88,133210.2,20530.79,12424.5,2211.74,35167.03,168377.23 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,2831,61148.02,0.0,0.0,61148.02,12601.76,12367.75,4820.46,29789.97,90937.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,24772,101980.91,0.0,12492.03,114472.94,20992.46,10154.76,9764.44,40911.66,155384.6 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,450C,Building Services Technician,11638,88296.0,0.0,5322.0,93618.0,18337.86,12424.5,7768.54,38530.9,132148.9 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,51542,87531.03,0.0,0.0,87531.03,18040.64,12424.5,7261.18,37726.32,125257.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,20928,63123.93,636.45,1182.67,64943.05,13259.87,12275.19,5130.24,30665.3,95608.35 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,45199,51648.7,1573.64,949.22,54171.56,12482.23,12424.5,4351.77,29258.5,83430.06 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,40758,63049.29,27507.71,4312.28,94869.28,13124.32,12414.05,7746.83,33285.2,128154.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,45466,56276.0,3569.3,0.0,59845.3,12591.79,12424.5,4846.84,29863.13,89708.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,216.0,"Teamsters, Local 853",7200,Supervisory-Labor & Trade,7251,Track Maint Wrk Sprv 1,28551,93749.13,92142.66,5170.1,191061.89,19398.87,12424.5,10901.17,42724.54,233786.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,17820,47531.2,509.92,5472.38,53513.5,12214.17,12424.5,4264.68,28903.35,82416.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,38497,21496.3,0.0,766.8,22263.1,0.0,5113.15,1723.61,6836.76,29099.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1384,9215.6,0.0,250.0,9465.6,2483.45,997.54,314.34,3795.33,13260.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,51286,26593.01,0.0,0.0,26593.01,5847.8,4300.79,2148.48,12297.07,38890.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,34334,64108.76,2629.06,2397.32,69135.14,13690.54,12227.4,5705.61,31623.55,100758.69 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,723,4198.74,0.0,153.77,4352.51,0.0,1396.26,337.59,1733.85,6086.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7250,Utility Plumber Supervisor 1,13087,113369.03,9653.93,21415.7,144438.66,24276.26,12424.51,10158.16,46858.93,191297.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,33463,20030.0,9201.29,1230.9,30462.19,4394.6,2389.33,2456.73,9240.66,39702.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44298,7256.88,0.0,0.0,7256.88,1872.3,3345.06,574.78,5792.14,13049.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,29357,107978.01,3521.7,6786.55,118286.26,22279.72,12424.52,9655.65,44359.89,162646.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40078,74960.07,1596.27,3835.69,80392.03,15182.43,6617.23,6653.13,28452.79,108844.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,24325,181622.0,0.0,5469.17,187091.17,37600.78,12424.5,10789.38,60814.66,247905.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,3552,2193.07,0.0,30.66,2223.73,0.0,801.2,172.16,973.36,3197.09 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,26456,50999.9,802.66,2861.45,54664.01,10993.64,9076.75,4523.33,24593.72,79257.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4633,6536.24,0.0,1058.43,7594.67,1737.54,2834.34,617.07,5188.95,12783.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33512,119455.93,47873.29,5825.04,173154.26,23662.82,12424.49,2941.12,39028.43,212182.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,40406,18907.48,0.0,0.0,18907.48,0.0,2592.42,1514.09,4106.51,23013.99 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,22.0,"Prof & Tech Engineers - Personnel, Local 21",1500,Administrative Secretarial,1544,"Secretary, Library Commission",38518,97174.05,0.0,0.0,97174.05,20027.8,12424.5,7988.39,40440.69,137614.74 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,7428,102019.15,0.0,0.0,102019.15,21033.76,12424.5,8294.11,41752.37,143771.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,2053,85312.82,0.0,1440.0,86752.82,17865.37,12424.5,7053.81,37343.68,124096.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45703,12530.96,2480.23,6289.58,21300.77,3785.16,2492.0,1627.76,7904.92,29205.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6816,45931.46,5304.14,599.07,51834.67,12270.07,10637.58,3762.22,26669.87,78504.54 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,26161,77071.0,0.0,30.0,77101.0,15891.43,12424.5,6143.48,34459.41,111560.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37285,40390.04,0.0,6960.1,47350.14,7145.03,0.0,7906.82,15051.85,62401.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,51239,117135.32,19712.16,8336.42,145183.9,23184.7,12424.5,2619.98,38229.18,183413.08 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,50207,12543.36,0.0,0.0,12543.36,0.0,1470.93,971.1,2442.03,14985.39 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,52617,101110.0,0.0,5055.57,106165.57,21203.71,5681.1,8333.87,35218.68,141384.25 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1022,IS Administrator 2,8512,84083.64,0.0,0.0,84083.64,17361.05,11911.51,6914.76,36187.32,120270.96 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,839,88296.0,0.0,4698.0,92994.0,18209.17,12424.5,7719.02,38352.69,131346.69 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,14090,95452.06,213.49,9057.45,104723.0,25435.21,12127.58,319.64,37882.43,142605.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,40063,48681.78,0.0,0.0,48681.78,9296.19,5734.38,3978.43,19009.0,67690.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,16296,63264.8,14059.09,2399.8,79723.69,13513.35,12424.46,6392.89,32330.7,112054.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,23600,118609.38,5085.22,12099.22,135793.82,23437.36,12288.55,2219.51,37945.42,173739.24 +Calendar,2015,1,Public Protection,FIR,Fire Department,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,45263,81542.04,0.0,0.0,81542.04,16806.17,12424.5,6696.81,35927.48,117469.52 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,16606,61428.01,0.0,0.0,61428.01,12660.6,12424.52,4947.69,30032.81,91460.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16437,44135.07,4127.04,996.86,49258.97,11701.62,13154.74,3735.18,28591.54,77850.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,189,41761.26,66.1,3912.95,45740.31,0.0,6106.22,3546.84,9653.06,55393.37 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,33763,160449.41,0.0,0.0,160449.41,32275.88,9303.45,10319.13,51898.46,212347.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34810,82260.99,2398.4,2448.08,87107.47,17135.56,12424.5,1404.43,30964.49,118071.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,22044,1778.0,0.0,28.45,1806.45,0.0,477.86,139.86,617.72,2424.17 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,18346,73943.06,0.0,0.0,73943.06,15273.3,11946.76,6013.26,33233.32,107176.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,3744,26640.0,2089.81,2912.92,31642.73,5109.79,4300.79,2564.79,11975.37,43618.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10243,117932.67,2164.43,14547.31,134644.41,24968.29,10768.52,9677.73,45414.54,180058.95 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,48755,146389.5,0.0,27814.01,174203.51,32382.76,12424.5,10698.69,55505.95,229709.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,42946,11793.0,0.0,0.0,11793.0,0.0,1433.59,914.17,2347.76,14140.76 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,15276,67261.02,0.0,0.0,67261.02,13862.82,12424.5,5574.38,31861.7,99122.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,27350,85027.13,0.0,1973.49,87000.62,17917.32,12374.57,7158.99,37450.88,124451.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,22428,112209.01,3256.97,0.0,115465.98,22582.31,12424.5,8964.07,43970.88,159436.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,39753,92001.31,13531.07,8146.07,113678.45,19570.35,12424.5,9043.79,41038.64,154717.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,31558,104118.05,0.0,0.0,104118.05,21232.76,10990.91,8845.12,41068.79,145186.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,33993,4956.0,0.0,0.0,4956.0,1111.64,955.7,403.44,2470.78,7426.78 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,273,50888.5,3063.74,0.0,53952.24,10407.52,11420.99,4358.87,26187.38,80139.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,22907,22120.8,0.0,2353.02,24473.82,4554.57,3297.27,1944.75,9796.59,34270.41 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,2892,66308.57,0.0,0.0,66308.57,13638.34,12418.53,5273.86,31330.73,97639.3 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0902,Mayoral Staff XIV,49520,116961.58,0.0,0.0,116961.58,23686.96,10035.17,21004.38,54726.51,171688.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,24952,29365.0,0.0,0.0,29365.0,5464.85,4778.66,2341.69,12585.2,41950.2 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,42668,56276.02,0.0,0.0,56276.02,12591.79,12424.5,4666.73,29683.02,85959.04 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1830,Perf Analyst III Project Mgr,2579,116427.49,0.0,0.0,116427.49,23656.56,11338.38,9464.69,44459.63,160887.12 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,317,11515.1,0.0,240.0,11755.1,3032.83,3233.06,968.05,7233.94,18989.04 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,19183,48290.2,5661.14,4503.34,58454.68,12232.93,12424.5,4463.1,29120.53,87575.21 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,22946,84571.99,0.0,0.0,84571.99,16598.03,9073.47,6628.72,32300.22,116872.21 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1231,EEO Senior Specialist,77,90553.62,0.0,0.0,90553.62,8817.47,12081.03,7200.24,28098.74,118652.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,30364,3271.75,0.0,101.57,3373.32,0.0,1373.86,269.53,1643.39,5016.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,45258,21198.62,0.0,0.0,21198.62,3621.42,6337.69,1721.07,11680.18,32878.8 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,9318,77071.06,0.0,0.0,77071.06,15884.7,12424.5,6287.65,34596.85,111667.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6248,Electrical Inspector,41482,112776.01,19065.1,4511.04,136352.15,23604.43,12424.5,9941.28,45970.21,182322.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48476,66754.21,2816.68,2179.9,71750.79,18858.15,13153.31,5541.39,37552.85,109303.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,41625,84474.23,1327.12,5742.82,91544.17,17590.11,7306.56,7097.46,31994.13,123538.3 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,31119,80949.97,3724.43,2270.77,86945.17,16730.82,12424.5,1448.45,30603.77,117548.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25831,6908.0,0.0,12.04,6920.04,0.0,2658.12,536.8,3194.92,10114.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23185,117522.5,18763.71,1804.58,138090.79,23364.06,12424.5,2350.95,38139.51,176230.3 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,23921,1498.11,18.56,0.0,1516.67,0.0,367.36,117.69,485.05,2001.72 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,1832,38332.87,5806.7,4174.06,48313.63,8870.98,5080.79,3878.61,17830.38,66144.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7480,Power Generation Technician 1,23359,67968.76,5951.53,3275.66,77195.95,14163.32,10859.5,5988.42,31011.24,108207.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2904,Human Services Technician,1944,53853.77,0.0,1320.0,55173.77,12216.03,11714.22,4460.33,28390.58,83564.35 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,13907,84069.92,10185.27,2850.43,97105.62,17696.02,12287.11,7780.01,37763.14,134868.76 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2616,97769.17,9771.23,8333.51,115873.91,25811.66,12424.51,1327.06,39563.23,155437.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40300,123319.29,124.61,32608.98,156052.88,26480.8,10951.48,6738.86,44171.14,200224.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37079,4388.19,0.0,113.76,4501.95,0.0,322.56,167.38,489.94,4991.89 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,14427,81144.03,0.0,0.0,81144.03,16532.71,10990.91,6568.71,34092.33,115236.36 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,39401,2309.09,0.0,1.02,2310.11,0.0,1079.68,179.14,1258.82,3568.93 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,20769,77708.5,0.0,577.2,78285.7,16213.65,11492.67,6440.02,34146.34,112432.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,43445,119467.43,60654.71,12026.87,192149.01,23621.01,12424.5,3277.33,39322.84,231471.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,53076,22120.82,325.88,0.0,22446.7,5337.3,6666.05,1893.48,13896.83,36343.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26170,11254.17,0.0,0.0,11254.17,0.0,4880.2,901.18,5781.38,17035.55 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2300,Nursing,2314,Public Health Team Leader,31206,69712.63,0.0,7123.73,76836.36,15348.15,10881.53,6181.31,32410.99,109247.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7325,General Utility Mechanic,32276,87359.02,0.0,600.0,87959.02,18116.64,12424.49,7001.6,37542.73,125501.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3591,69292.46,367.13,8621.32,78280.91,14800.8,6717.59,6330.89,27849.28,106130.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5792,113233.6,6860.79,20244.33,140338.72,25362.48,15196.12,2391.59,42950.19,183288.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,10509,82717.0,3489.74,10509.27,96716.01,18351.63,12424.5,7973.83,38749.96,135465.97 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,44014,77071.08,0.0,624.0,77695.08,16013.39,12424.5,6149.46,34587.35,112282.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,37172,150710.0,7344.51,8999.66,167054.17,31498.75,12424.5,10555.78,54479.03,221533.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35258,24047.77,2336.8,973.37,27357.94,0.0,1962.23,2122.91,4085.14,31443.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,35270,35308.0,0.0,3178.6,38486.6,6401.36,3345.05,2590.03,12336.44,50823.04 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,29771,68274.21,0.0,0.0,68274.21,14040.86,12424.5,5425.93,31891.29,100165.5 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,39557,70245.0,20130.47,9429.9,99805.37,15638.96,12424.5,8140.38,36203.84,136009.21 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,2695,67498.62,441.89,0.0,67940.51,13907.03,12424.51,5519.52,31851.06,99791.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,10725,68924.62,0.0,200.0,69124.62,14193.74,12424.5,5606.71,32224.95,101349.57 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,17481,105689.22,0.0,0.0,105689.22,21775.13,12424.5,8649.4,42849.03,148538.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,51100,79357.1,0.0,2984.0,82341.1,16973.52,12418.53,6543.47,35935.52,118276.62 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,23247,14820.0,0.0,0.0,14820.0,3324.12,1911.46,1139.98,6375.56,21195.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,5451,62187.0,0.0,5210.39,67397.39,13508.43,12424.5,5317.76,31250.69,98648.08 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3558,Senior Museum Registrar,25046,82914.02,0.0,624.0,83538.02,17217.46,12424.5,6846.72,36488.68,120026.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",9576,13227.0,0.0,0.0,13227.0,0.0,3135.98,1026.24,4162.22,17389.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",26092,20718.5,0.0,0.0,20718.5,0.0,4868.28,1608.09,6476.37,27194.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,21945,113157.57,43894.74,8679.67,165731.98,23542.76,12414.82,2760.09,38717.67,204449.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,21988,27963.05,81.26,8263.2,36307.51,7294.95,6212.25,2955.55,16462.75,52770.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6507,2493.28,0.0,0.0,2493.28,0.0,1081.17,193.03,1274.2,3767.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,38746,35090.99,0.0,0.0,35090.99,7870.94,4300.79,2779.44,14951.17,50042.16 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,45957,1700.0,0.0,0.0,1700.0,0.0,101.55,131.77,233.32,1933.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49196,74607.58,8195.74,1624.48,84427.8,15361.24,14383.75,1380.85,31125.84,115553.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,3527,56531.0,0.0,6014.98,62545.98,12576.47,12424.5,5119.0,30119.97,92665.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,27995,20033.5,0.0,0.0,20033.5,3728.24,2628.26,1839.09,8195.59,28229.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36432,39863.83,6086.9,1104.83,47055.56,10617.67,12460.87,3520.01,26598.55,73654.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,11352,26964.0,21.07,210.66,27195.73,6585.17,5734.39,2185.84,14505.4,41701.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15742,36782.5,0.0,7390.09,44172.59,2434.06,3022.5,5486.01,10942.57,55115.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52231,1818.3,0.0,50.35,1868.65,0.0,788.48,144.67,933.15,2801.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29676,10149.3,0.0,2086.78,12236.08,4205.51,860.16,359.83,5425.5,17661.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,29729,66899.01,0.0,0.0,66899.01,14274.26,9079.48,5346.53,28700.27,95599.28 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),23866,115443.0,0.0,1500.0,116943.0,23523.82,12424.5,9437.86,45386.18,162329.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,26852,62955.99,6036.99,8671.6,77664.58,14741.96,12242.32,6137.14,33121.42,110786.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39593,87262.45,6062.0,2573.5,95897.95,0.0,7622.02,7437.87,15059.89,110957.84 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2106,Med Staff Svcs Dept Spc,18010,69902.01,0.0,0.0,69902.01,14407.13,12424.5,5505.03,32336.66,102238.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,3727,116017.53,0.0,0.0,116017.53,23331.2,12424.5,9504.22,45259.92,161277.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,50078,82884.49,0.0,478.92,83363.41,17160.2,9535.81,6882.01,33578.02,116941.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",44118,16760.03,0.0,0.0,16760.03,0.0,3969.27,1300.18,5269.45,22029.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52217,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2336.97,12790.32,44090.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39581,0.0,0.0,840.41,840.41,0.0,68.5,64.3,132.8,973.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1468,1788.5,0.0,0.0,1788.5,0.0,872.1,138.73,1010.83,2799.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,7502,87713.0,0.0,0.0,87713.0,18078.17,12424.51,7064.26,37566.94,125279.94 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,26585,100554.08,0.0,1480.0,102034.08,21009.41,12424.5,8302.78,41736.69,143770.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,41136,40920.26,0.0,0.0,40920.26,9811.03,12299.07,3708.6,25818.7,66738.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,3669,13254.15,0.0,14.37,13268.52,0.0,4394.86,326.19,4721.05,17989.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7200,Supervisory-Labor & Trade,7249,Automotive Mechanic Sprv 1,31207,107816.17,821.62,11399.33,120037.12,24559.17,12424.5,9779.89,46763.56,166800.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,28602,94276.04,0.0,17.35,94293.39,19319.87,11898.87,7476.53,38695.27,132988.66 +Calendar,2015,1,Public Protection,POL,Police,351.0,Municipal Executive Association - Miscellaneous,0900,Management,1071,IS Manager,16028,170237.08,0.0,0.0,170237.08,34260.51,12424.51,17925.25,64610.27,234847.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47246,2866.5,0.0,13.72,2880.22,0.0,1397.75,223.47,1621.22,4501.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,5172,62468.88,2830.04,2174.59,67473.51,13168.75,12424.5,5503.94,31097.19,98570.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,30288,65145.0,26006.64,8699.72,99851.36,14962.86,12424.51,7855.57,35242.94,135094.3 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,4241,49343.5,1217.35,4036.19,54597.04,10616.04,9327.33,4560.44,24503.81,79100.85 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4915,2976.76,0.0,0.0,2976.76,0.0,1451.51,230.86,1682.37,4659.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,17533,121329.45,335.25,23767.89,145432.59,27756.47,10668.77,6776.28,45201.52,190634.11 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,3349,84599.05,0.0,1241.86,85840.91,17693.24,12424.5,6982.5,37100.24,122941.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30066,113233.59,27947.43,18670.02,159851.04,25035.1,15196.11,2678.76,42909.97,202761.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,17357,60792.5,3888.0,4117.56,68798.06,13984.23,11994.42,5335.82,31314.47,100112.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,34757,108377.03,41730.51,13061.05,163168.59,28611.95,12424.5,2736.36,43772.81,206941.4 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",7514,135115.5,23754.08,10913.72,169783.3,28673.75,12424.5,2848.58,43946.83,213730.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,13214,149099.08,0.0,9050.63,158149.71,31369.29,12424.5,6236.67,50030.46,208180.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",43582,150234.01,50410.72,22415.13,223059.86,33676.54,15196.12,3760.83,52633.49,275693.35 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,44893,81681.26,11741.55,5751.66,99174.47,16997.04,12364.77,1580.16,30941.97,130116.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,48970,92282.01,0.0,0.0,92282.01,19019.5,12424.5,7342.14,38786.14,131068.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,44869,84863.89,5185.72,80.0,90129.61,17515.66,12350.67,7165.39,37031.72,127161.33 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7368,Senior Comm Systems Technican,52447,4273.57,0.0,0.0,4273.57,0.0,409.17,331.01,740.18,5013.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3232,Marina Assistant Manager,4411,49197.05,1178.71,1666.4,52042.16,11816.12,11523.03,3579.51,26918.66,78960.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,19237,85610.2,971.65,11812.54,98394.39,19430.25,12424.5,8035.35,39890.1,138284.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34140,31232.38,1783.56,350.0,33365.94,2764.15,8353.71,2635.11,13752.97,47118.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,6326,84599.01,2569.57,600.0,87768.58,17548.1,12424.49,7193.49,37166.08,124934.66 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,45032,119463.84,22011.07,4591.74,146066.65,23633.49,12424.5,2444.61,38502.6,184569.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,9911,66102.11,0.0,826.34,66928.45,13794.38,12424.5,5506.29,31725.17,98653.62 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,35565,53129.39,972.44,763.43,54865.26,11360.25,9852.03,4520.15,25732.43,80597.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",30092,5318.55,0.0,0.0,5318.55,0.0,1266.34,412.61,1678.95,6997.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,38,81327.82,0.0,1340.0,82667.82,17005.04,12424.5,6158.01,35587.55,118255.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",2975,131577.11,64913.84,17509.47,214000.42,29164.84,15196.12,3596.63,47957.59,261958.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17771,332.2,0.0,0.0,332.2,0.0,28.37,25.51,53.88,386.08 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,51784,67686.31,0.0,5391.0,73077.31,14060.09,11301.52,6035.85,31397.46,104474.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,50884,54124.0,0.0,624.0,54748.0,12250.24,12424.5,4537.52,29212.26,83960.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,4480,75499.25,0.0,0.0,75499.25,15552.79,12424.5,6252.66,34229.95,109729.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44114,43408.63,6870.1,4082.42,54361.15,13547.52,6587.56,3367.53,23502.61,77863.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18520,3457.0,0.0,207.42,3664.42,0.0,0.0,288.71,288.71,3953.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,23207,119403.85,69813.89,33406.38,222624.12,24790.29,12418.53,515.02,37723.84,260347.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,29460,81157.01,31328.35,19344.43,131829.79,19831.89,12424.5,9973.18,42229.57,174059.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24686,20923.52,3898.96,406.09,25228.57,5163.77,6482.78,1929.8,13576.35,38804.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,30509,98157.0,0.0,0.0,98157.0,20230.58,12424.5,7853.18,40508.26,138665.26 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,43461,33259.11,5483.88,1704.56,40447.55,6443.3,6512.41,3231.78,16187.49,56635.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12681,2000.0,0.0,0.0,2000.0,0.0,477.86,155.23,633.09,2633.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,50232,3915.0,0.0,196.7,4111.7,734.45,477.86,68.47,1280.78,5392.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32153,67212.7,11305.19,5874.03,84391.92,19993.55,13240.7,6542.28,39776.53,124168.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7398,Apprentice Cement Mason I,9874,11291.5,0.0,1877.98,13169.48,2913.19,2628.23,1060.44,6601.86,19771.34 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",22972,198139.07,0.0,1500.0,199639.07,40176.58,12424.5,11207.84,63808.92,263447.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,48009,112159.75,30012.84,15146.24,157318.83,24036.81,15052.76,2682.69,41772.26,199091.09 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,46408,99787.34,17457.37,0.0,117244.71,22763.35,12400.61,1941.2,37105.16,154349.87 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",42183,128432.66,0.0,14441.61,142874.27,28146.18,14834.86,311.88,43292.92,186167.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,12282,77071.07,0.0,624.0,77695.07,16013.39,12424.5,5991.27,34429.16,112124.23 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,24870,96922.56,293.56,9946.37,107162.49,26002.98,12315.9,1748.84,40067.72,147230.21 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,3647,191926.0,0.0,32412.98,224338.98,41832.93,12424.5,4186.72,58444.15,282783.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,52117,117129.71,23760.01,14381.11,155270.83,23205.2,12424.5,2599.33,38229.03,193499.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,38734,61209.07,783.49,3125.83,65118.39,12916.0,12379.95,5370.43,30666.38,95784.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,39992,106953.01,2511.55,2158.02,111622.58,22134.01,12424.53,9140.71,43699.25,155321.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,14223,25136.0,0.0,311.78,25447.78,6110.79,6207.77,2526.08,14844.64,40292.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,40694,1161.21,0.0,3630.25,4791.46,0.0,0.0,369.45,369.45,5160.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2202,Dental Aide,32064,70931.01,0.0,2354.0,73285.01,15050.65,12424.5,5797.88,33273.03,106558.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,8123,53584.76,0.0,541.13,54125.89,11005.96,10774.19,4498.98,26279.13,80405.02 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,41306,27520.0,0.0,650.0,28170.0,6318.55,4778.65,2340.33,13437.53,41607.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,21561,74165.01,0.0,624.0,74789.01,15414.45,12424.5,6201.07,34040.02,108829.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6123,17881.43,2839.94,590.55,21311.92,4428.53,5520.84,1545.07,11494.44,32806.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,36733,53536.0,0.0,0.0,53536.0,0.0,5256.52,1041.18,6297.7,59833.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,48516,23595.01,0.0,440.0,24035.01,6201.03,5256.52,1962.37,13419.92,37454.93 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,18692,0.0,0.0,5775.57,5775.57,0.0,34.25,441.84,476.09,6251.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,41854,82830.25,0.0,0.0,82830.25,17065.82,12376.69,6722.08,36164.59,118994.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0490,Commander 3,30602,119102.41,0.0,14077.23,133179.64,25652.06,6546.75,2214.41,34413.22,167592.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,24516,3313.88,0.0,610.36,3924.24,1222.44,0.0,566.24,1788.68,5712.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,10282,113233.62,6800.99,18552.38,138586.99,25036.05,15196.12,2306.3,42538.47,181125.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,43826,79162.4,0.0,0.0,79162.4,16280.41,12424.5,6307.18,35012.09,114174.49 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39544,11355.05,0.0,170.7,11525.75,0.0,4862.29,924.95,5787.24,17312.99 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,14552,65478.9,453.33,0.0,65932.23,13475.37,12424.5,5109.7,31009.57,96941.8 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,30854,4056.08,0.0,26.52,4082.6,0.0,2026.45,316.57,2343.02,6425.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",9239,18602.4,0.0,0.0,18602.4,0.0,4429.22,1440.2,5869.42,24471.82 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",32631,198139.09,0.0,1500.0,199639.09,40176.58,12424.5,11079.47,63680.55,263319.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,246,13406.75,0.0,873.52,14280.27,3393.3,5131.09,1107.14,9631.53,23911.8 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11790,97779.74,17325.56,11641.44,126746.74,26621.66,12424.5,2155.91,41202.07,167948.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,12428,4432.93,41.4,79.97,4554.3,0.0,2072.74,353.42,2426.16,6980.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5134,67398.38,4731.07,5021.61,77151.06,16521.05,13279.46,5639.51,35440.02,112591.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,242,103078.8,1562.32,16281.79,120922.91,22693.71,9127.23,9216.38,41037.32,161960.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8167,Parking Hearing Examiner,32323,56702.99,0.0,0.0,56702.99,11699.17,7393.48,4680.09,23772.74,80475.73 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,30491,97768.75,24223.96,8957.11,130949.82,25899.06,12424.5,2175.88,40499.44,171449.26 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,51564,4106.16,0.0,0.0,4106.16,697.04,254.47,613.09,1564.6,5670.76 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",45447,180044.95,25421.97,26142.3,231609.22,40524.59,15100.55,2482.33,58107.47,289716.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,7.0,"Bricklayers, Local 3",7300,Journeyman Trade,7378,Tile Setter,28478,79722.02,0.0,800.0,80522.02,16598.87,12424.5,6424.36,35447.73,115969.75 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,17367,69245.31,0.0,982.38,70227.69,14443.31,12376.71,5711.64,32531.66,102759.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,2515,1529.03,0.0,0.0,1529.03,0.0,663.04,118.38,781.42,2310.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,3053,4572.88,0.0,0.0,4572.88,0.0,1111.03,354.93,1465.96,6038.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,38790,29445.07,0.0,816.06,30261.13,7292.56,7275.5,2491.81,17059.87,47321.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41604,17879.57,2804.32,842.29,21526.18,4485.4,5520.18,1631.51,11637.09,33163.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5642,Sr Environmental Spec,42787,102008.58,0.0,0.0,102008.58,21032.08,12358.85,8222.26,41613.19,143621.77 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44546,119461.65,33882.83,9684.69,163029.17,23641.92,12424.5,2777.11,38843.53,201872.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46328,123374.88,341.63,27219.39,150935.9,29384.7,10922.81,10228.23,50535.74,201471.64 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,30992,85368.04,0.0,0.0,85368.04,17594.59,12424.5,6829.77,36848.86,122216.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10794,32179.33,0.0,0.0,32179.33,0.0,4223.13,2494.08,6717.21,38896.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,24069,88602.96,0.0,0.0,88602.96,18217.88,12370.73,7028.44,37617.05,126220.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,5954,53593.0,12287.81,2475.46,68356.27,11628.91,10207.5,5423.86,27260.27,95616.54 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,28388,63535.02,4080.82,758.12,68373.96,13146.35,11946.64,5643.25,30736.24,99110.2 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,5137,72976.91,0.0,1424.89,74401.8,15339.95,12472.29,6160.06,33972.3,108374.1 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,41619,28025.33,0.0,0.0,28025.33,5515.42,1860.69,2173.16,9549.27,37574.6 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,34304,44501.33,0.0,0.0,44501.33,10673.49,12269.19,3398.8,26341.48,70842.81 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2785,Asst General Services Manager,6998,76990.25,0.0,0.0,76990.25,15831.98,12424.5,14058.03,42314.51,119304.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25074,6887.5,0.0,210.76,7098.26,0.0,2986.66,564.49,3551.15,10649.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,34065,97424.0,0.0,9637.69,107061.69,22070.07,12424.5,8769.47,43264.04,150325.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,38189,85357.0,54704.03,12322.42,152383.45,17415.49,10513.03,9140.69,37069.21,189452.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,42424,1999.04,877.23,133.04,3009.31,0.0,0.0,237.73,237.73,3247.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,41435,84601.51,0.0,0.0,84601.51,17707.9,10751.97,6938.48,35398.35,119999.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,20555,65592.02,2958.58,2186.93,70737.53,13732.91,12424.5,5652.76,31810.17,102547.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7252,"Chf Stationary Eng, Sew Plant",8194,120253.61,5032.48,947.9,126233.99,24250.96,12424.5,9804.69,46480.15,172714.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9626,62778.76,1197.07,559.14,64534.97,17368.42,12378.51,4965.83,34712.76,99247.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2488,Supv Chemist,11214,119321.05,0.0,0.0,119321.05,24013.57,12424.5,9797.25,46235.32,165556.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,44902,113559.0,10045.3,1600.94,125205.24,22214.28,9079.44,9689.63,40983.35,166188.59 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,11803,56556.64,11363.48,1003.45,68923.57,11815.94,10834.95,5317.89,27968.78,96892.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,3908,70245.0,17689.82,10240.2,98175.02,15633.23,12424.5,7764.78,35822.51,133997.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5638,Environmental Assistant,7662,65547.63,0.0,0.0,65547.63,13502.19,11230.18,4915.48,29647.85,95195.48 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,53128,18461.53,0.0,0.0,18461.53,3347.07,1433.6,1366.99,6147.66,24609.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34011,62461.11,2537.88,0.0,64998.99,12844.46,12424.5,5289.25,30558.21,95557.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,11170,3915.0,682.07,227.29,4824.36,734.45,477.86,79.09,1291.4,6115.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,16262,4787.77,0.0,0.0,4787.77,0.0,1584.43,370.66,1955.09,6742.86 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",31514,105082.01,0.0,0.0,105082.01,21657.94,12424.5,8136.3,42218.74,147300.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26769,119532.8,1370.15,11703.25,132606.2,25054.19,10915.82,8115.58,44085.59,176691.79 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,46990,22515.57,4325.23,8223.35,35064.15,5050.24,3311.6,2808.06,11169.9,46234.05 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31784,32380.2,0.0,5698.47,38078.67,1849.19,0.0,5113.94,6963.13,45041.8 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4267,Pr Real Property Appraiser,51774,113937.07,0.0,2200.0,116137.07,23320.22,12161.68,9550.24,45032.14,161169.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,22325,90553.35,0.0,0.0,90553.35,18597.91,10699.16,7224.62,36521.69,127075.04 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,43716,112662.1,38573.58,21031.41,172267.09,25377.26,15119.06,2882.85,43379.17,215646.26 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,50871,30645.84,0.0,677.26,31323.1,7482.36,7565.23,2612.17,17659.76,48982.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,26826,58101.02,0.0,1060.0,59161.02,12192.81,12424.5,4902.14,29519.45,88680.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3985,11395.4,0.0,1080.56,12475.96,365.33,859.32,893.47,2118.12,14594.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,35230,18495.0,717.15,1476.84,20688.99,3553.1,2389.33,1685.27,7627.7,28316.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7219,Maintenance Scheduler,47085,55322.83,0.0,495.15,55817.98,11129.95,9031.66,4610.4,24772.01,80589.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50582,57511.98,3086.7,3440.05,64038.73,16455.82,11315.32,4885.04,32656.18,96694.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5274,Landscape Architect,44653,79669.0,0.0,1388.23,81057.23,15411.89,7645.83,6167.94,29225.66,110282.89 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,46145,39622.0,0.0,0.0,39622.0,0.0,0.0,3134.33,3134.33,42756.33 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,41153,113852.0,0.0,0.0,113852.0,22913.02,12424.51,9149.39,44486.92,158338.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,12980,71658.3,509.85,0.0,72168.15,14285.06,10990.91,5132.96,30408.93,102577.08 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,2173,127110.81,0.0,0.0,127110.81,25581.26,12424.5,18228.09,56233.85,183344.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,14452,88838.02,0.0,0.0,88838.02,18290.61,12424.5,7172.14,37887.25,126725.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,5194,24004.0,0.0,0.0,24004.0,4351.92,4061.86,1850.29,10264.07,34268.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,7724,113233.6,56890.26,18218.18,188342.04,25053.97,15196.12,3157.76,43407.85,231749.89 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,19771,70840.01,0.0,3000.0,73840.01,14442.23,10990.9,6048.11,31481.24,105321.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,3002,81942.01,20687.14,2734.75,105363.9,17449.6,12424.59,8447.63,38321.82,143685.72 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,33973,66356.73,0.0,0.0,66356.73,13050.01,7355.96,5516.67,25922.64,92279.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,32987,92349.9,24751.05,8499.15,125600.1,19606.76,12472.29,9843.93,41922.98,167523.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9504,Permit And Citation Clerk,21102,65344.52,4101.95,0.0,69446.47,13428.87,11812.41,5647.49,30888.77,100335.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,39750,1184.65,0.0,31.61,1216.26,0.0,513.71,94.2,607.91,1824.17 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7368,Senior Comm Systems Technican,28393,130566.0,2651.47,0.0,133217.47,26276.86,12424.5,10012.83,48714.19,181931.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9447,66054.26,20161.36,2848.18,89063.8,18834.58,13011.04,6921.66,38767.28,127831.08 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,35500,112153.28,6496.5,13522.62,132172.4,24625.31,13023.45,2250.93,39899.69,172072.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,39315,53736.74,3830.84,2829.64,60397.22,11991.33,11277.62,4814.36,28083.31,88480.53 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,46212,22236.0,0.0,520.0,22756.0,5871.0,5734.39,1648.92,13254.31,36010.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,20639,96254.07,0.0,0.0,96254.07,19832.94,12424.5,7906.36,40163.8,136417.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",48785,2346.0,0.0,0.0,2346.0,0.0,140.13,181.86,321.99,2667.99 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,4176,75028.0,0.0,624.0,75652.0,15592.37,12424.5,6209.12,34225.99,109877.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15569,1702.75,0.0,0.0,1702.75,0.0,830.29,132.17,962.46,2665.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,21489,25740.02,522.84,0.0,26262.86,6640.92,5734.39,2140.29,14515.6,40778.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,351.0,Municipal Executive Association - Miscellaneous,0900,Management,3426,Forester,8821,83990.27,0.0,0.0,83990.27,17753.66,10035.18,13093.61,40882.45,124872.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46474,23524.03,2942.44,1836.53,28303.0,7477.59,4678.18,2092.95,14248.72,42551.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15752,761.03,0.0,16.76,777.79,23.9,0.0,587.36,611.26,1389.05 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,12556,54333.72,0.0,0.0,54333.72,11471.59,9318.38,4271.02,25060.99,79394.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,16412,5463.73,0.0,0.0,5463.73,1016.79,1222.92,440.2,2679.91,8143.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,25362,81954.3,1342.6,3711.2,87008.1,17513.7,12424.5,7156.89,37095.09,124103.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17656,27793.0,0.0,0.0,27793.0,5172.28,4061.86,2202.81,11436.95,39229.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2200,Medical & Dental,2204,Dental Hygienist,24841,96504.0,0.0,624.0,97128.0,20018.75,12424.5,7907.26,40350.51,137478.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,42923,106605.0,0.0,0.0,106605.0,21971.81,12424.5,8682.45,43078.76,149683.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43122,65858.89,10618.88,4009.66,80487.43,19152.78,12980.62,5941.55,38074.95,118562.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",7200,Supervisory-Labor & Trade,7243,Parking Meter Repairer Sprv 1,18901,85368.03,1760.16,624.0,87752.19,17723.29,12424.5,6977.27,37125.06,124877.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5302,Traffic Survey Technician,23936,19789.0,0.0,0.0,19789.0,4438.7,3345.06,1629.34,9413.1,29202.1 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,29271,61735.01,0.0,0.0,61735.01,12724.01,12424.5,5055.64,30204.15,91939.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6693,124730.18,3907.32,5864.02,134501.52,25234.0,12424.51,2252.72,39911.23,174412.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1721,61842.74,11895.3,3548.6,77286.64,17753.82,12180.14,6072.08,36006.04,113292.68 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9912,Public Service Aide-Technical,25999,780.0,0.0,11.44,791.44,0.0,358.4,61.43,419.83,1211.27 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,43429,41804.8,0.0,0.0,41804.8,0.0,5352.09,3358.79,8710.88,50515.68 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,3698,117135.35,6772.39,12910.8,136818.54,23184.7,12424.5,2275.29,37884.49,174703.03 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,43140,15393.75,0.0,198.78,15592.53,0.0,5912.07,1208.55,7120.62,22713.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21757,67381.94,15255.76,5169.24,87806.94,19915.22,13282.21,6854.66,40052.09,127859.03 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,17910,20745.0,0.0,250.0,20995.0,3761.07,1433.6,384.8,5579.47,26574.47 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,24089,709.4,0.0,0.0,709.4,0.0,95.58,54.99,150.57,859.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,31730,2507.0,0.0,10540.31,13047.31,567.7,477.86,1004.45,2050.01,15097.32 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,6870,23464.19,0.0,1477.71,24941.9,5898.72,5967.35,2077.05,13943.12,38885.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,44110,20819.87,1955.05,3424.23,26199.15,6366.16,4140.41,2022.45,12529.02,38728.17 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26230,132052.01,0.0,1526.41,133578.42,26673.86,12328.92,9522.0,48524.78,182103.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,39794,842.34,0.0,0.0,842.34,0.0,365.27,80.31,445.58,1287.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25175,82202.12,5494.65,5955.27,93652.04,17124.6,12424.5,1559.67,31108.77,124760.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19732,6312.48,0.0,540.13,6852.61,0.0,537.6,531.01,1068.61,7921.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14413,31799.55,0.0,1175.56,32975.11,7893.87,2786.8,1431.61,12112.28,45087.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,23772,5035.18,0.0,0.0,5035.18,0.0,730.23,390.44,1120.67,6155.85 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36172,101835.33,39319.16,3136.06,144290.55,21037.01,15052.77,2362.48,38452.26,182742.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32477,121249.07,0.0,7900.61,129149.68,22550.32,10731.42,8284.64,41566.38,170716.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,176,4036.91,0.0,5.11,4042.02,0.0,1887.57,313.55,2201.12,6243.14 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8516,215524.34,0.0,825.98,216350.32,43784.39,11946.63,3634.53,59365.55,275715.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2800,Public Health,2830,Public Health Nurse,1613,135355.87,0.0,4853.53,140209.4,28154.07,12358.79,10120.51,50633.37,190842.77 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1636,Health Care Billing Clerk 2,34957,56836.43,600.56,0.0,57436.99,11988.22,9963.38,4567.74,26519.34,83956.33 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,10232,85060.72,0.0,1200.0,86260.72,17740.45,12424.5,6866.28,37031.23,123291.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,44713,65954.74,3692.2,4939.17,74586.11,15804.0,12417.04,6586.07,34807.11,109393.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,51869,32587.0,7413.61,3912.54,43913.15,8007.02,6212.25,3516.12,17735.39,61648.54 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,24806,88296.02,0.0,5322.0,93618.02,18337.86,12424.5,7498.06,38260.42,131878.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,36091,79798.35,0.0,0.0,79798.35,16428.46,12418.53,6492.39,35339.38,115137.73 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,29026,25577.07,0.0,394.2,25971.27,6218.33,7496.52,2021.77,15736.62,41707.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19289,45388.96,9057.44,5717.4,60163.8,10452.42,10081.95,5338.8,25873.17,86036.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,1660,63716.12,0.0,1089.55,64805.67,13353.83,12391.05,5371.23,31116.11,95921.78 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2933,Conservatorship/Case Mgt Sprv,14444,82908.02,0.0,1454.84,84362.86,17489.7,10035.18,6989.49,34514.37,118877.23 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2533,Emergency Med Svcs Agency Spec,23618,60418.69,0.0,18886.48,79305.17,13204.09,6690.11,6468.52,26362.72,105667.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23415,117431.43,216.33,964.75,118612.51,17257.6,11991.97,6819.8,36069.37,154681.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1663,Patient Accounts Supervisor,42757,87409.14,250.95,0.0,87660.09,18013.57,12407.12,7189.12,37609.81,125269.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11494,58770.03,0.0,0.0,58770.03,0.0,0.0,3604.17,3604.17,62374.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10028,14175.4,0.0,1.21,14176.61,0.0,6068.9,1106.09,7174.99,21351.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2525,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2416.62,12869.97,44169.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,2706,75641.0,0.0,455.25,76096.25,15566.69,12424.5,6084.4,34075.59,110171.84 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,15601,105827.53,18123.17,22158.21,146108.91,21877.44,12424.5,10354.12,44656.06,190764.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,3878,22393.0,0.0,0.0,22393.0,5022.78,3345.06,1804.38,10172.22,32565.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9952,43457.81,2740.57,1363.46,47561.84,10715.74,8727.32,3583.72,23026.78,70588.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,51068,75550.31,0.0,825.0,76375.31,15713.75,12424.5,5915.22,34053.47,110428.78 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8414,"Sprv Prob Ofc, Juv Court",47854,106267.5,0.0,4839.91,111107.41,24198.52,11898.85,219.76,36317.13,147424.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50161,9416.89,0.0,4067.57,13484.46,2646.9,1863.67,996.53,5507.1,18991.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30016,66542.55,13797.38,2681.49,83021.42,18948.69,13110.66,6432.66,38492.01,121513.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,10848,23159.2,111.52,514.66,23785.38,0.0,3822.93,1846.13,5669.06,29454.44 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,30474,113672.01,0.0,8437.96,122109.97,24149.74,12424.5,9850.33,46424.57,168534.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,26012,68067.08,0.0,624.0,68691.08,14157.66,12424.5,5649.88,32232.04,100923.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10010,26973.91,0.0,599.29,27573.2,3899.87,0.0,4743.11,8642.98,36216.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37148,5386.77,0.0,258.29,5645.06,1488.85,1061.4,249.65,2799.9,8444.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,22378,4018.0,866.38,804.8,5689.18,1244.28,955.73,464.59,2664.6,8353.78 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,8382,124847.1,2836.21,25527.38,153210.69,28891.38,11053.03,10353.46,50297.87,203508.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5506,Project Manager 3,22153,129350.42,0.0,321.69,129672.11,26967.78,9175.01,9904.28,46047.07,175719.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,32489,80996.91,10002.01,4512.87,95511.79,16841.33,12424.5,1592.61,30858.44,126370.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9520,Trans Safety Specialist,49545,114362.34,8384.35,7810.41,130557.1,23715.49,12424.5,9913.07,46053.06,176610.16 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1767,Media Programming Spec,11071,12725.0,71.58,123.62,12920.2,2391.12,2389.33,1037.93,5818.38,18738.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,22664,12134.88,0.0,400.05,12534.93,0.0,3261.43,970.45,4231.88,16766.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,51324,118066.68,0.0,0.0,118066.68,23572.89,11566.43,9517.62,44656.94,162723.62 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4325,161599.96,0.0,1500.0,163099.96,32794.99,12424.5,10448.65,55668.14,218768.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,30145,9912.0,0.0,441.39,10353.39,1844.64,1911.46,793.33,4549.43,14902.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,8073,3564.75,0.0,0.0,3564.75,0.0,1738.23,276.51,2014.74,5579.49 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,12456,45911.81,14634.7,2831.02,63377.53,11203.85,12424.5,5136.36,28764.71,92142.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,18443,53453.52,0.0,678.9,54132.42,11428.07,8994.75,4480.06,24902.88,79035.3 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,243,403.76,333.09,0.0,736.85,0.0,119.47,57.19,176.66,913.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43391,47829.38,1506.3,820.0,50155.68,13445.63,9448.42,3847.45,26741.5,76897.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,19346,81809.41,587.26,170.0,82566.67,16892.38,12424.51,6759.42,36076.31,118642.98 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,21258,8477.52,0.0,0.0,8477.52,0.0,2677.54,657.04,3334.58,11812.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5620,Regulatory Specialist,17633,74515.21,0.0,9262.55,83777.76,16199.15,9605.1,6714.58,32518.83,116296.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,27989,74165.0,0.0,624.0,74789.0,15414.44,12424.5,6137.71,33976.65,108765.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,43660,81942.0,7191.85,3740.49,92874.34,17665.32,12424.51,7574.66,37664.49,130538.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1417,6645.0,0.0,52.8,6697.8,0.0,2646.18,518.55,3164.73,9862.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,34206,43326.2,0.0,780.0,44106.2,10448.69,11468.78,3467.67,25385.14,69491.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2716,Custodial Assistant Supervisor,42932,62187.01,0.0,2173.95,64360.96,12816.97,12424.5,5227.65,30469.12,94830.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25890,66085.78,5576.52,1029.63,72691.93,15284.01,13022.61,5335.28,33641.9,106333.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2656,Chef,49960,7087.51,0.0,4543.04,11630.55,1609.55,1194.67,935.23,3739.45,15370.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1925,10527.15,0.0,761.9,11289.05,1253.56,4564.92,910.65,6729.13,18018.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16850,6797.53,0.0,27.21,6824.74,0.0,2268.38,529.35,2797.73,9622.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23756,19384.69,0.0,1974.54,21359.23,5776.87,1523.19,4650.51,11950.57,33309.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,17170,17503.89,0.0,57.02,17560.91,0.0,5644.79,1399.69,7044.48,24605.39 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,37903,6468.0,0.0,0.0,6468.0,1203.7,955.73,478.2,2637.63,9105.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,49529,69840.78,660.35,5317.91,75819.04,13995.48,9195.68,6048.76,29239.92,105058.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,25695,38379.41,0.0,0.0,38379.41,7142.42,5638.81,3065.79,15847.02,54226.43 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3389,4196.82,0.0,49.23,4246.05,0.0,1042.33,329.07,1371.4,5617.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,37622,6625.4,0.0,49.05,6674.45,0.0,2401.28,517.32,2918.6,9593.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,11366,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5169.23,30446.35,92805.35 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8217,Comm Pol Svcs Aide Supervisor,41370,78163.21,184.8,9809.1,88157.11,17393.32,12424.5,7129.46,36947.28,125104.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32621,17057.06,2844.2,230.28,20131.54,4213.16,5318.82,1458.03,10990.01,31121.55 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,626,97761.51,840.49,8791.3,107393.3,25902.72,12424.5,601.62,38928.84,146322.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,3453,39467.0,6208.15,565.89,46241.04,8126.1,7645.85,3711.78,19483.73,65724.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30046,113233.6,42823.87,22182.3,178239.77,25075.21,15196.12,2985.06,43256.39,221496.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,12268,116976.06,0.0,0.0,116976.06,23541.49,12424.52,9545.24,45511.25,162487.31 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,34739,108371.72,1019.03,13827.99,123218.74,29088.03,12424.5,312.07,41824.6,165043.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,53009,19743.08,0.0,2751.21,22494.29,1506.26,0.0,2532.66,4038.92,26533.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",1400,"Clerical, Secretarial & Steno",1428,Unit Clerk,47567,23028.0,0.0,200.0,23228.0,5063.85,5256.52,1795.91,12116.28,35344.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9452,0.0,0.0,250.0,250.0,0.0,68.5,0.0,68.5,318.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,20279,118104.04,0.0,0.0,118104.04,23768.42,12424.5,9586.01,45778.93,163882.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7906,61929.0,0.0,2995.95,64924.95,13066.13,10990.9,5160.18,29217.21,94142.16 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,38214,91016.82,0.0,0.0,91016.82,18736.39,12424.5,7335.85,38496.74,129513.56 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,23963,2474.7,0.0,0.0,2474.7,349.09,0.0,620.13,969.22,3443.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,49843,112776.0,5134.24,2255.52,120165.76,23150.48,12424.5,9771.54,45346.52,165512.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,27422,40006.5,445.43,5967.84,46419.77,9666.67,7120.2,3793.54,20580.41,67000.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,23891,72988.45,5042.49,10.0,78040.94,14977.47,11815.19,6349.54,33142.2,111183.14 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,15512,23963.02,0.0,522.74,24485.76,5848.11,6672.21,1980.74,14501.06,38986.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48133,48632.78,0.0,4372.03,53004.81,12482.53,11695.46,3658.63,27836.62,80841.43 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,21104,92708.63,24039.06,12500.2,129247.89,25559.84,11787.51,2190.08,39537.43,168785.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41874,3526.4,0.0,0.0,3526.4,0.0,1529.17,280.48,1809.65,5336.05 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,25054,136466.01,19650.63,23200.16,179316.8,38838.68,12424.5,464.94,51728.12,231044.92 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,25297,97768.39,23348.6,7840.26,128957.25,25687.29,12424.5,2141.43,40253.22,169210.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16956,71512.34,61.42,11617.51,83191.27,0.0,5883.54,6450.91,12334.45,95525.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,14105,10212.0,0.0,0.0,10212.0,2634.72,2867.19,825.9,6327.81,16539.81 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),13522,175776.68,0.0,1500.0,177276.68,35641.36,12367.75,10699.97,58709.08,235985.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,27124,163105.92,0.0,372.62,163478.54,32846.62,11158.16,10518.4,54523.18,218001.72 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,52384,82078.12,0.0,0.0,82078.12,16942.57,12156.72,6652.14,35751.43,117829.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,22742,129604.93,5608.61,15741.61,150955.15,28605.49,15052.76,2630.57,46288.82,197243.97 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,42064,726.42,0.0,2.23,728.65,0.0,233.91,56.56,290.47,1019.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4472,4484.15,0.0,261.54,4745.69,1342.12,891.76,339.88,2573.76,7319.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",10576,1199.9,0.0,0.0,1199.9,0.0,0.0,94.91,94.91,1294.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9744,56029.38,5685.16,1340.53,63055.07,14968.74,12707.64,4799.42,32475.8,95530.87 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4214,Assessor-Recorder Office Spec,17792,64511.07,0.0,624.0,65135.07,13424.78,12424.5,5354.72,31204.0,96339.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,17775,3849.61,0.0,0.0,3849.61,0.0,1381.33,309.41,1690.74,5540.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,12833,136071.0,620.41,38520.52,175211.93,32023.84,12424.5,4156.99,48605.33,223817.26 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,48845,2194.51,1137.07,58.12,3389.7,0.0,657.08,263.15,920.23,4309.93 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1770,Photographer,30140,58726.13,1881.73,0.0,60607.86,12083.8,12424.5,4923.0,29431.3,90039.16 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,33898,125127.12,0.0,0.0,125127.12,25175.56,12389.74,9869.45,47434.75,172561.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,311.0,Municipal Attorneys' Association,8100,Legal & Court,8182,"Head Atty, Civil & Criminal",1192,21144.15,0.0,0.0,21144.15,0.0,1152.85,1641.13,2793.98,23938.13 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,17760,41346.63,0.0,4405.16,45751.79,9347.78,6546.76,3780.82,19675.36,65427.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,13322,98157.0,0.0,0.0,98157.0,20230.58,12424.5,8076.55,40731.63,138888.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,699,24001.68,1571.96,825.7,26399.34,6123.81,7454.7,2017.57,15596.08,41995.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,34984,82435.47,0.0,0.0,82435.47,16984.89,8770.07,6747.78,32502.74,114938.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,37281,6302.38,0.0,45.67,6348.05,0.0,1517.22,491.47,2008.69,8356.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,18161,51405.0,304.52,3145.53,54855.05,12639.23,12424.5,4242.61,29306.34,84161.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,32509,81542.07,0.0,0.0,81542.07,16809.18,12424.5,6652.44,35886.12,117428.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,4136,11619.0,0.0,0.0,11619.0,2606.13,1433.6,974.69,5014.42,16633.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,23389,57501.04,16976.58,5299.09,79776.71,12958.45,10321.9,1324.68,24605.03,104381.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31651,55671.9,3620.7,9958.05,69250.65,0.0,0.0,1184.05,1184.05,70434.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,50933,68067.05,0.0,0.0,68067.05,14029.01,12424.5,5391.12,31844.63,99911.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7279,104593.27,2906.45,25489.74,132989.46,24534.2,9650.31,7334.66,41519.17,174508.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,45048,70245.0,276.17,10502.12,81023.29,15956.3,12424.5,6379.9,34760.7,115783.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,45937,69063.39,30650.64,1904.29,101618.32,19461.67,13609.38,7944.89,41015.94,142634.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50854,66351.13,8341.21,2438.01,77130.35,15693.31,13075.84,5855.66,34624.81,111755.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9126,Transit Traffic Checker,34531,69247.0,1322.37,1625.29,72194.66,14609.48,12424.5,5931.61,32965.59,105160.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,24753,22351.01,1975.67,0.0,24326.68,5013.33,3345.06,1999.0,10357.39,34684.07 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,8655,56276.03,385.2,5124.37,61785.6,13346.9,12424.5,4959.94,30731.34,92516.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11974,71975.55,8434.4,6351.7,86761.65,15806.29,14909.41,1443.86,32159.56,118921.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,23611,83152.69,0.0,0.0,83152.69,17139.97,12424.51,6588.08,36152.56,119305.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",22002,93994.92,4310.73,0.0,98305.65,19367.64,12424.49,8096.73,39888.86,138194.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29656,60133.53,13548.76,6206.2,79888.49,18279.5,11835.05,6086.79,36201.34,116089.83 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,40597,127129.05,0.0,0.0,127129.05,25584.73,12293.09,18284.58,56162.4,183291.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10210,33646.63,0.0,0.0,33646.63,-0.04,0.0,1374.03,1373.99,35020.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,12735,5739.66,0.0,0.0,5739.66,680.56,2488.91,475.37,3644.84,9384.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,2348,21869.7,0.0,0.0,21869.7,1556.23,6576.62,1759.44,9892.29,31761.99 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,6528,70623.85,3543.06,1859.07,76025.98,14694.95,12424.5,6033.28,33152.73,109178.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,26684,138635.9,29753.57,12823.64,181213.11,27392.94,12424.5,2996.46,42813.9,224027.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,979,1730.42,180.22,273.08,2183.72,456.4,344.13,141.72,942.25,3125.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,6664,10475.1,0.0,0.0,10475.1,1949.41,2319.62,883.81,5152.84,15627.94 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,1185,45742.77,5444.5,2961.42,54148.69,11646.97,12377.37,4457.7,28482.04,82630.73 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,8182,208032.0,0.0,1500.0,209532.0,42167.46,12424.5,11396.08,65988.04,275520.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5100,Administrative-DPW/PUC,5120,Architectural Administrator,44624,120538.74,0.0,0.0,120538.74,24293.8,12424.5,9730.38,46448.68,166987.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24156,979.84,0.0,20.71,1000.55,0.0,316.59,77.66,394.25,1394.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",11289,93738.04,148.28,720.79,94607.11,19504.47,12424.5,7809.76,39738.73,134345.84 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),34251,71564.4,0.0,375.0,71939.4,13042.64,5543.24,5727.11,24312.99,96252.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,6521,81528.28,2141.1,18.72,83688.1,17126.46,10330.55,6965.67,34422.68,118110.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,12122,136152.9,26746.44,20000.16,182899.5,26907.62,12424.5,3116.91,42449.03,225348.53 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2548,Occupational Therapist,23912,111918.09,0.0,100.0,112018.09,22523.71,12424.5,9179.95,44128.16,156146.25 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,22712,97424.0,0.0,0.0,97424.0,20079.52,12424.5,8007.15,40511.17,137935.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,24944,85368.02,32879.69,0.0,118247.71,17594.59,12424.5,9631.08,39650.17,157897.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,14536,2587.2,0.0,16428.72,19015.92,0.0,68.5,7.11,75.61,19091.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,44337,83212.62,0.0,1140.0,84352.62,17375.01,12424.51,6589.55,36389.07,120741.69 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8604,Emergency Services Coord IV,35309,114247.29,0.0,2882.62,117129.91,23275.67,12418.53,9574.68,45268.88,162398.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,15365,27286.05,0.0,4547.74,31833.79,351.39,0.0,682.1,1033.49,32867.28 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,32962,97132.28,2440.01,8719.4,108291.69,25740.44,12346.31,1459.87,39546.62,147838.31 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,10736,43707.82,270.0,660.0,44637.82,10567.15,11810.03,3649.3,26026.48,70664.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,17068,72931.61,0.0,0.0,72931.61,15016.67,12424.5,5853.81,33294.98,106226.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,45085,59229.01,86.19,1147.86,60463.06,12444.28,12424.5,5009.51,29878.29,90341.35 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,34683,130464.53,67995.02,7827.87,206287.42,27215.64,12376.71,3464.68,43057.03,249344.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,20658,104176.0,0.0,134057.64,238233.64,23789.53,6498.97,284.22,30572.72,268806.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,12662,87713.1,0.0,0.0,87713.1,18078.18,12424.5,7035.05,37537.73,125250.83 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,42442,77071.06,28.51,1606.9,78706.47,16098.08,12424.5,6378.81,34901.39,113607.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,22138,70319.33,0.0,0.0,70319.33,14591.84,10536.93,5798.15,30926.92,101246.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,27003,1258.97,0.0,216.47,1475.44,0.0,459.95,121.64,581.59,2057.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6333,Senior Building Inspector,48681,124338.06,16182.88,8741.94,149262.88,26274.58,12424.5,10270.87,48969.95,198232.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,5438,82486.01,0.0,528.0,83014.01,17417.19,10513.04,6867.39,34797.62,117811.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7373,"Sr Stationary Eng, Sew Plant",42858,106090.0,19071.63,7586.03,132747.66,22489.12,12424.5,9952.8,44866.42,177614.08 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8980,32088.98,2372.9,2116.09,36577.97,7926.08,8547.82,2937.33,19411.23,55989.2 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3633,Librarian 2 - Asian Arts,26225,93681.0,0.0,624.0,94305.0,19436.77,12424.5,7186.54,39047.81,133352.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26631,7690.9,0.0,239.7,7930.6,0.0,3273.38,639.34,3912.72,11843.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,25746,68131.01,0.0,2588.25,70719.26,14098.01,11946.58,5859.69,31904.28,102623.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1444,Secretary 1,46787,58782.04,0.0,0.0,58782.04,12115.29,12424.5,4829.87,29369.66,88151.7 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,47607,45590.3,69.42,849.88,46509.6,10961.67,10955.07,3702.95,25619.69,72129.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,5539,1111.73,0.0,0.0,1111.73,0.0,107.52,86.07,193.59,1305.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14374,112159.75,54651.73,18532.54,185344.02,24822.8,15052.77,3057.62,42933.19,228277.21 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,15713,1915.24,0.0,0.0,1915.24,0.0,895.52,148.52,1044.04,2959.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46281,119463.8,4732.34,6792.01,130988.15,24103.01,12424.5,2175.55,38703.06,169691.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2800,Public Health,2818,Health Program Planner,34458,79555.8,0.0,0.0,79555.8,16384.82,12424.5,6472.38,35281.7,114837.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,39286,83212.61,0.0,920.0,84132.61,17327.18,12424.5,6974.87,36726.55,120859.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,3535,24447.54,0.0,1411.29,25858.83,0.0,6570.65,2004.54,8575.19,34434.02 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,21341,19695.5,0.0,2130.7,21826.2,4444.2,2628.26,1799.02,8871.48,30697.68 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36296,148529.1,0.0,42811.86,191340.96,36090.18,12376.71,7896.17,56363.06,247704.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38254,59545.94,10330.61,1152.15,71028.7,15756.44,13434.77,5422.77,34613.98,105642.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51657,66422.81,22241.07,1720.69,90384.57,18637.56,13087.9,6850.89,38576.35,128960.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,12242,79722.04,7658.38,2304.5,89684.92,16917.84,12424.5,7161.21,36503.55,126188.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5310,Survey Assistant I,29590,26471.0,0.0,0.0,26471.0,0.0,5256.53,2128.09,7384.62,33855.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,7120,49262.0,0.0,0.0,49262.0,9282.09,6212.24,3564.05,19058.38,68320.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49940,103615.2,771.08,7872.16,112258.44,21901.45,9175.02,9037.68,40114.15,152372.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29665,67775.65,6060.74,4622.59,78458.98,16498.69,13359.32,5782.11,35640.12,114099.1 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,35102,22119.0,0.0,0.0,22119.0,0.0,3345.06,1740.71,5085.77,27204.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6320,112032.14,1761.1,18881.71,132674.95,24778.53,14909.4,2188.12,41876.05,174551.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,3340,68067.02,0.0,624.0,68691.02,14157.65,12424.5,5443.03,32025.18,100716.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,13339,167771.98,1509.41,2415.88,171697.27,34213.03,12192.73,10588.45,56994.21,228691.48 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,35203,0.0,0.0,271.23,271.23,0.0,68.5,20.75,89.25,360.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,5911,26200.81,148.38,2856.13,29205.32,5126.32,4229.89,2295.89,11652.1,40857.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,8585,61165.58,795.93,1649.44,63610.95,12682.85,9844.51,5304.83,27832.19,91443.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,32583,154734.11,2270.42,250.0,157254.53,31134.7,12424.5,10369.03,53928.23,211182.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,25011,68522.1,0.0,8491.49,77013.59,15033.79,5465.58,6169.76,26669.13,103682.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,42908,15588.0,0.0,0.0,15588.0,3427.78,4300.79,1252.6,8981.17,24569.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28488,59952.04,3666.51,771.28,64389.83,15422.27,12139.94,4879.72,32441.93,96831.76 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,770,122817.55,0.0,0.0,122817.55,24606.53,12360.16,18147.82,55114.51,177932.06 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,11285,127129.05,0.0,0.0,127129.05,25584.74,12424.5,17210.35,55219.59,182348.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,27457,7830.01,5981.09,326.12,14137.22,1468.9,955.73,236.9,2661.53,16798.75 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,36411,12667.8,0.0,3886.77,16554.57,2907.47,2054.82,1294.03,6256.32,22810.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26523,55299.69,3251.67,3797.84,62349.2,15337.83,13155.21,4710.46,33203.5,95552.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,15745,8727.59,0.0,61.31,8788.9,2107.49,0.0,695.08,2802.57,11591.47 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,33051,54134.82,0.0,0.0,54134.82,9814.65,4778.65,6804.65,21397.95,75532.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24449,70174.46,14667.34,6536.96,91378.76,20974.62,13830.92,6941.85,41747.39,133126.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5248,6507.6,0.0,0.0,6507.6,0.0,573.08,503.81,1076.89,7584.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,18972,14153.58,424.25,716.0,15293.83,0.0,3739.3,1233.09,4972.39,20266.22 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,6018,85004.01,8290.12,1457.43,94751.56,17519.6,12424.5,7558.17,37502.27,132253.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",50703,1806.4,0.0,0.0,1806.4,0.0,382.3,139.86,522.16,2328.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,8704,15290.1,0.0,180.0,15470.1,3394.14,1433.6,1239.82,6067.56,21537.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1705,Communications Dispatcher 2,29759,20128.48,0.0,5154.53,25283.01,4918.46,3797.36,2078.47,10794.29,36077.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,22696,79340.29,4004.7,250.0,83594.99,15946.51,6820.4,6833.71,29600.62,113195.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9220,Airport Operations Supervisor,31041,99722.1,3931.42,8109.95,111763.47,21568.37,12400.61,8903.91,42872.89,154636.36 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,26594,3062.58,0.0,5.49,3068.07,0.0,0.0,242.63,242.63,3310.7 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1280,Employee Relations Representat,17786,31673.01,0.0,0.0,31673.01,5894.36,3822.92,2512.96,12230.24,43903.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,49385,81942.0,0.0,2700.0,84642.0,17429.2,12424.51,6718.03,36571.74,121213.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,14420,2880.77,0.0,1.02,2881.79,0.0,1346.98,223.63,1570.61,4452.4 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,26958,81542.0,0.0,0.0,81542.0,16806.13,12424.5,6288.28,35518.91,117060.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,11942,94852.66,48179.47,9174.67,152206.8,19789.84,11946.62,2497.0,34233.46,186440.26 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,1316,17539.13,0.0,0.0,17539.13,581.83,7544.3,1420.38,9546.51,27085.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,40353,71612.03,0.0,624.0,72236.03,14888.02,12424.5,5889.95,33202.47,105438.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,14732,46988.2,4865.31,1952.53,53806.04,11660.51,12424.5,4304.9,28389.91,82195.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,5693,158366.93,2622.15,12125.02,173114.1,31259.75,12424.5,2951.25,46635.5,219749.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37012,10134.23,25.42,1093.07,11252.72,0.0,892.53,871.18,1763.71,13016.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,19472,118104.05,0.0,0.0,118104.05,23769.51,12424.5,9382.79,45576.8,163680.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,50874,33435.21,18088.69,4949.47,56473.37,5940.27,3345.06,949.47,10234.8,66708.17 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,41452,16970.89,0.0,0.0,16970.89,0.0,2360.95,1323.62,3684.57,20655.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,36613,56120.0,0.0,770.0,56890.0,12733.93,12424.5,4572.92,29731.35,86621.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17164,43801.91,7789.81,854.39,52446.11,11558.08,13170.81,3766.04,28494.93,80941.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21599,94689.97,8859.77,7199.96,110749.7,19460.59,12424.51,1829.6,33714.7,144464.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7837,67599.94,1122.03,11994.67,80716.64,639.44,0.0,6505.95,7145.39,87862.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17997,39387.75,0.0,4363.11,43750.86,1596.49,0.0,5442.71,7039.2,50790.06 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,45497,24160.12,0.0,457.64,24617.76,5579.83,7239.67,1971.52,14791.02,39408.78 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,53177,21543.7,0.0,0.0,21543.7,5558.29,4635.3,1724.83,11918.42,33462.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,46500,119459.86,69962.86,16475.41,205898.13,23648.15,12424.5,3381.12,39453.77,245351.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4308,Senior Collections Officer,7804,64563.47,44.25,0.0,64607.72,13302.26,12424.5,5014.95,30741.71,95349.43 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",29097,131577.11,98584.66,18448.98,248610.75,29323.6,15196.13,4191.32,48711.05,297321.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11317,55839.85,8331.8,740.32,64911.97,15715.38,11049.92,5007.99,31773.29,96685.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14193,115446.42,661.98,4878.36,120986.76,23844.68,9909.9,6541.42,40296.0,161282.76 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,2542,108378.56,12305.13,11096.45,131780.14,28264.27,12424.52,2243.74,42932.53,174712.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46146,68991.08,14058.26,1322.9,84372.24,19283.74,13594.38,6373.55,39251.67,123623.91 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20248,21991.2,0.0,0.0,21991.2,0.0,1911.46,1706.88,3618.34,25609.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5628,40701.73,6623.23,3178.55,50503.51,11401.1,12281.73,3800.68,27483.51,77987.02 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",16469,650.0,0.0,0.0,650.0,0.0,77.65,50.39,128.04,778.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24741,7021.81,0.0,878.16,7899.97,1811.6,3044.9,648.15,5504.65,13404.62 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),30762,150254.4,0.0,1500.0,151754.4,30513.9,12424.5,10411.28,53349.68,205104.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33586,119461.62,59117.14,7186.56,185765.32,23641.89,12424.5,3121.19,39187.58,224952.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,13013,54303.67,1030.52,1312.07,56646.26,12299.72,12149.72,4516.29,28965.73,85611.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,19827,751.76,0.0,0.0,751.76,0.0,243.4,58.35,301.75,1053.51 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4334,"Investigator, Tax Collector",12167,47210.2,0.0,17678.8,64889.0,10662.98,6546.76,5284.82,22494.56,87383.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,5895,41639.25,0.0,540.0,42179.25,9910.35,8800.66,3456.28,22167.29,64346.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,33748,154204.07,0.0,26758.76,180962.83,31033.65,12424.5,10859.04,54317.19,235280.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,32344,88665.01,0.0,0.0,88665.01,18246.97,12424.49,7093.83,37765.29,126430.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6230,Street Inspector,16233,79951.03,0.0,0.0,79951.03,16478.21,12424.5,6349.02,35251.73,115202.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7340,Maintenance Controller,33482,3859.0,578.85,0.0,4437.85,718.16,477.86,349.88,1545.9,5983.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,33608,119463.8,53119.25,6067.44,178650.49,24103.01,12424.5,3034.97,39562.48,218212.97 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8262,Criminalist III,14076,124734.17,0.0,0.0,124734.17,24734.49,10674.32,9940.02,45348.83,170083.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,16968,6322.21,0.0,186.73,6508.94,0.0,2720.84,527.84,3248.68,9757.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,49954,53029.94,0.0,5207.83,58237.77,11871.3,10535.32,4778.0,27184.62,85422.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,4346,97424.0,6706.57,1851.0,105981.57,20458.89,12424.5,8507.08,41390.47,147372.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43787,14331.2,0.0,1017.05,15348.25,3241.92,3775.14,1223.56,8240.62,23588.87 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,16969,77071.02,0.0,2124.0,79195.02,16319.99,12424.5,6560.99,35305.48,114500.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,44921,119463.88,15075.58,7979.62,142519.08,23633.47,12424.5,1933.46,37991.43,180510.51 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,25325,3368.41,0.0,207.03,3575.44,0.0,594.35,263.73,858.08,4433.52 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,45987,54124.02,0.0,0.0,54124.02,12110.45,12424.5,4443.21,28978.16,83102.18 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10976,56531.0,1635.36,1121.58,59287.94,11883.08,12424.5,4895.17,29202.75,88490.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,16630,69746.02,0.0,624.0,70370.02,14503.67,12424.5,5690.76,32618.93,102988.95 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,28264,31927.7,0.0,2211.63,34139.33,2103.14,8506.0,2621.33,13230.47,47369.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,27999,135421.01,0.0,5147.7,140568.71,28281.86,12424.5,10078.8,50785.16,191353.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,24729,3117.0,0.0,0.0,3117.0,699.14,477.86,241.32,1418.32,4535.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,8093,85368.06,0.0,0.0,85368.06,17594.6,12424.5,7029.83,37048.93,122416.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,16211,5752.46,0.0,0.0,5752.46,1289.42,2494.46,473.67,4257.55,10010.01 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,11758,81912.8,2340.52,3328.11,87581.43,13415.52,12278.16,6813.77,32507.45,120088.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,35865,85603.01,0.0,0.0,85603.01,17441.42,10990.91,6909.46,35341.79,120944.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,28067,2295.51,0.0,0.0,2295.51,416.16,238.93,170.74,825.83,3121.34 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,6637,55821.1,408.01,1592.55,57821.66,11614.81,12267.7,4754.25,28636.76,86458.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17314,68772.58,7637.71,3505.07,79915.36,19828.51,13552.44,5981.32,39362.27,119277.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,20093,90136.71,0.0,0.0,90136.71,18552.99,12260.22,6999.5,37812.71,127949.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41314,98802.73,7382.3,4970.93,111155.96,20530.81,12424.49,1854.55,34809.85,145965.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,7519,20358.3,0.0,0.0,20358.3,3788.71,4253.0,1548.57,9590.28,29948.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,3594,3512.63,0.0,0.0,3512.63,0.0,1523.19,279.42,1802.61,5315.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,46989,101531.0,7678.23,454.21,109663.44,21018.19,12424.48,8774.87,42217.54,151880.98 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,38817,101770.07,0.0,0.0,101770.07,20975.25,12424.5,8201.09,41600.84,143370.91 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",8054,67449.83,812.45,5768.67,74030.95,16696.93,12079.18,1335.33,30111.44,104142.39 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23222,96975.1,0.0,7051.57,104026.67,-7607.63,0.0,6384.74,-1222.89,102803.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2575,Research Psychologist,38693,116145.02,0.0,0.0,116145.02,23374.7,12424.5,9232.6,45031.8,161176.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24725,17389.68,0.0,518.75,17908.43,546.13,7484.57,1371.15,9401.85,27310.28 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,37569,129895.0,0.0,0.0,129895.0,26141.48,12424.5,10006.93,48572.91,178467.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,40726,162199.24,0.0,0.0,162199.24,32634.17,12424.5,18792.66,63851.33,226050.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3227,6433.62,0.0,45.1,6478.72,0.0,2146.92,502.05,2648.97,9127.69 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,36074,107672.32,0.0,0.0,107672.32,21021.1,9467.71,14970.92,45459.73,153132.05 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,8507,74644.64,0.0,2098.64,76743.28,15413.08,12048.19,6171.32,33632.59,110375.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,46247,93395.7,76294.45,10643.32,180333.47,20544.48,12615.64,10733.44,43893.56,224227.03 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,24991,24991.67,0.0,871.03,25862.7,6202.75,6173.31,2139.49,14515.55,40378.25 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26910,144683.18,829.65,22789.08,168301.91,31482.53,12422.54,10202.75,54107.82,222409.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,18912,166375.23,0.0,250.0,166625.23,33425.81,11038.69,10547.21,55011.71,221636.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5289,Transit Planner III,2544,97839.95,0.0,0.0,97839.95,20138.25,12424.48,7887.43,40450.16,138290.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,7542,81942.0,0.0,1774.5,83716.5,17000.25,12424.5,6902.1,36326.85,120043.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,33098,67911.01,28819.84,3462.55,100193.4,14499.71,12424.5,7914.09,34838.3,135031.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,40450,9153.5,0.0,1082.72,10236.22,1735.32,3969.27,821.61,6526.2,16762.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,32572,112881.84,5031.12,12623.99,130536.95,24014.65,15148.69,2168.41,41331.75,171868.7 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,24560,8523.68,0.0,205.96,8729.64,0.0,2816.9,677.56,3494.46,12224.1 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),43190,50123.82,34568.78,5521.56,90214.16,10439.63,7645.84,1512.53,19598.0,109812.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46751,67337.53,4769.99,3316.93,75424.45,19373.63,13266.38,6258.95,38898.96,114323.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25154,20750.46,55.11,718.81,21524.38,1380.99,0.0,1702.81,3083.8,24608.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31334,7040.25,0.0,234.71,7274.96,89.51,0.0,861.59,951.1,8226.06 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),9543,110985.9,0.0,1500.0,112485.9,22913.74,12424.5,9073.97,44412.21,156898.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5290,Transit Planner 4,17090,120470.61,0.0,0.0,120470.61,24148.38,12424.46,9264.05,45836.89,166307.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,34741,56531.0,0.0,7258.31,63789.31,12411.81,12424.5,5010.28,29846.59,93635.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,41233,59827.01,0.0,1210.0,61037.01,12527.69,12424.5,4895.89,29848.08,90885.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,28713,98862.14,14063.48,0.0,112925.62,20641.24,10990.9,9204.85,40836.99,153762.61 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,27777,48607.22,0.0,0.0,48607.22,11656.19,12137.78,3957.86,27751.83,76359.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,23710,130833.53,93959.67,13145.2,237938.4,28405.68,15196.12,3999.11,47600.91,285539.31 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,46808,56736.86,0.0,940.0,57676.86,11883.61,10700.97,4453.91,27038.49,84715.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,18852,8488.95,0.0,0.0,8488.95,0.0,3619.83,682.55,4302.38,12791.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,2606,2835.0,0.0,40.0,2875.0,644.86,477.86,225.16,1347.88,4222.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,51168,109126.06,0.0,0.0,109126.06,22213.24,12424.5,8683.31,43321.05,152447.11 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,36095,186811.32,0.0,321.54,187132.86,37581.98,12400.61,10906.34,60888.93,248021.79 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8600,Emergency Services,8604,Emergency Services Coord IV,22431,125815.05,450.94,2158.49,128424.48,25320.89,12424.51,9880.66,47626.06,176050.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15028,56531.0,0.0,6826.31,63357.31,12404.79,12424.5,4935.06,29764.35,93121.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11240,63841.44,22312.52,3420.27,89574.23,18477.71,12573.9,6786.92,37838.53,127412.76 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),34446,100734.8,0.0,37936.64,138671.44,21828.68,6972.05,9857.94,38658.67,177330.11 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),11411,112233.42,0.0,1500.0,113733.42,22870.39,12424.5,9176.8,44471.69,158205.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0964,Dept Head IV,9132,229272.39,0.0,0.0,229272.39,46229.29,12424.5,29199.09,87852.88,317125.27 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1233,EEO Programs Specialist,9795,18073.0,0.0,9045.45,27118.45,4053.76,2532.69,2174.58,8761.03,35879.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,481,100554.01,0.0,0.0,100554.01,20724.83,12424.52,8180.9,41330.25,141884.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,16840,112577.67,699.4,7145.79,120422.86,22307.63,12412.55,2004.2,36724.38,157147.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,30503,74165.01,0.0,216.0,74381.01,15325.98,12424.5,5646.51,33396.99,107778.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,20525,1226.56,0.0,0.0,1226.56,0.0,663.04,94.97,758.01,1984.57 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,46095,52876.24,18.88,0.0,52895.12,12678.7,12424.5,4302.51,29405.71,82300.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,52001,109953.28,0.0,0.0,109953.28,22173.33,11946.63,8888.64,43008.6,152961.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,41632,7941.0,0.0,0.0,7941.0,1781.16,1433.6,652.16,3866.92,11807.92 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,23637,107842.02,2725.65,349.05,110916.72,22248.5,12424.5,8763.95,43436.95,154353.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,20522,36428.0,0.0,485.38,36913.38,7157.44,7406.9,3172.08,17736.42,54649.8 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,49589,47176.8,146.81,0.0,47323.61,9090.73,7120.19,3810.42,20021.34,67344.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,6026,22493.06,61.37,0.0,22554.43,5045.18,3345.06,1780.12,10170.36,32724.79 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,22218,19155.25,0.0,222.32,19377.57,0.0,4611.4,1502.43,6113.83,25491.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18050,60039.81,16886.56,3637.6,80563.97,17270.82,11816.42,6046.24,35133.48,115697.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27069,35667.26,2328.71,733.39,38729.36,9614.97,11223.63,2925.55,23764.15,62493.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,31650,119006.51,353.36,5173.02,124532.89,24002.24,12376.71,1482.37,37861.32,162394.21 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,16140,69213.99,0.0,0.0,69213.99,14262.22,12418.53,5631.28,32312.03,101526.02 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1094,IT Operations Support Admin IV,35894,106605.0,0.0,0.0,106605.0,21971.81,12424.51,8625.38,43021.7,149626.7 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17975,24061.21,0.0,0.0,24061.21,6114.49,6106.22,1957.07,14177.78,38238.99 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1062,IS Programmer Analyst,31878,83694.01,0.0,624.0,84318.01,17378.29,12424.51,6924.02,36726.82,121044.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,48272,38035.01,0.0,0.0,38035.01,7155.62,6212.26,3016.64,16384.52,54419.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3419,Municipal Stadium Groundskpr,41064,76536.06,11402.27,0.0,87938.33,15774.63,12424.5,6958.65,35157.78,123096.11 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4320,Cashier 1,38837,2653.5,0.0,0.0,2653.5,0.0,716.79,200.06,916.85,3570.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,21302,58101.04,0.0,1100.0,59201.04,12198.89,12424.5,4860.36,29483.75,88684.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,3148,114826.86,504.6,8219.89,123551.35,23995.73,10808.43,9611.71,44415.87,167967.22 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8415,"Sr Sprv Prob Ofc, Juv Prob",30352,122217.0,0.0,0.0,122217.0,27878.41,12424.5,7912.61,48215.52,170432.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,49866,50041.02,0.0,0.0,50041.02,9072.43,4300.78,5862.02,19235.23,69276.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43170,59331.27,2973.82,1223.41,63528.5,16591.73,11698.62,4624.73,32915.08,96443.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,24552,4208.26,0.0,871.68,5079.94,1085.72,1824.85,414.9,3325.47,8405.41 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,39570,113980.01,0.0,6358.3,120338.31,24852.4,9557.31,9715.51,44125.22,164463.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45148,1678.13,0.0,4.3,1682.43,0.0,560.0,130.58,690.58,2373.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5004,18439.01,1796.21,676.6,20911.82,5303.03,5820.51,1571.66,12695.2,33607.02 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,1752,82386.01,0.0,0.0,82386.01,16175.15,9079.44,6720.42,31975.01,114361.02 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,35668,138633.91,34215.29,6913.78,179762.98,27945.01,12424.5,2910.75,43280.26,223043.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,7844,66102.01,13036.86,2584.68,81723.55,13916.36,12424.5,6699.4,33040.26,114763.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51752,67511.41,6151.75,2032.05,75695.21,15853.89,13301.57,5824.37,34979.83,110675.04 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,756,33075.0,0.0,0.0,33075.0,6155.25,3822.92,2643.62,12621.79,45696.79 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,39405,22216.73,0.0,556.82,22773.55,5455.69,6194.33,1883.94,13533.96,36307.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,7382,1956.25,0.0,0.0,1956.25,0.0,149.34,151.84,301.18,2257.43 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,23997,100053.94,5411.59,0.0,105465.53,22819.84,12424.5,1786.33,37030.67,142496.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,42049,16015.0,0.0,0.0,16015.0,2980.39,2717.87,1278.41,6976.67,22991.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7364,Power House Operator,41807,80717.4,25259.07,12027.07,118003.54,18121.26,12424.5,9610.88,40156.64,158160.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,41186,117140.97,1695.51,8851.06,127687.54,23164.17,12424.5,2173.66,37762.33,165449.87 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,20689,63705.0,0.0,0.0,63705.0,13129.83,12424.5,5238.49,30792.82,94497.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,18390,18727.54,74.45,1825.8,20627.79,4313.99,3380.9,1685.18,9380.07,30007.86 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,53162,1000.0,0.0,0.0,1000.0,0.0,59.73,77.5,137.23,1137.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7226,68995.13,28566.27,5763.7,103325.1,20507.45,13599.15,8038.02,42144.62,145469.72 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,31775,61735.0,7572.48,624.0,69931.48,12852.62,12424.5,5716.05,30993.17,100924.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,7752,135421.01,0.0,4903.4,140324.41,28262.7,12424.51,10199.95,50887.16,191211.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,4143,Principal Real Property Ofc,48631,151944.08,0.0,0.0,151944.08,30579.55,12424.5,10313.49,53317.54,205261.62 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,15361,62461.1,4022.09,1540.0,68023.19,13160.08,12424.5,5242.04,30826.62,98849.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22402,9539.44,0.0,38.46,9577.9,0.0,3162.91,742.74,3905.65,13483.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7316,Water Service Inspector,18088,32121.18,0.0,0.0,32121.18,7075.11,3942.99,2647.4,13665.5,45786.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,13594,99602.0,8326.76,0.0,107928.76,20528.27,12424.5,8548.33,41501.1,149429.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,47865,119602.56,49594.53,15839.19,185036.28,23700.77,12388.42,3029.05,39118.24,224154.52 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,18036,67911.0,634.4,11537.66,80083.06,15675.87,12424.5,6550.33,34650.7,114733.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,45296,135421.02,0.0,0.0,135421.02,27253.5,12424.5,10070.64,49748.64,185169.66 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0648,"Court Invstgtor, Superior Crt",7547,103948.11,0.0,7448.0,111396.11,21934.03,12424.5,9198.99,43557.52,154953.63 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,36088,38784.64,0.0,321.62,39106.26,8421.64,6403.28,3317.83,18142.75,57249.01 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,863,1558.0,0.0,18.7,1576.7,406.79,477.86,122.06,1006.71,2583.41 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,29969,156051.15,0.0,5040.0,161091.15,31377.63,9738.0,10288.14,51403.77,212494.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H004,"Insp, Fire Dept",7021,123387.53,10263.5,12338.75,145989.78,27000.78,10990.9,2445.32,40437.0,186426.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,16180,30830.39,6704.87,3130.46,40665.72,5778.62,3345.05,682.67,9806.34,50472.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,46046,2890.0,0.0,0.0,2890.0,537.83,477.86,224.32,1240.01,4130.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,1553,69750.72,6948.9,2184.9,78884.52,14498.41,10564.41,6464.36,31527.18,110411.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,47646,57793.9,2409.63,1160.0,61363.53,11983.62,9466.21,5050.87,26500.7,87864.23 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,474C,Senior Fiscal Technician,39251,7863.88,0.0,0.0,7863.88,0.0,0.0,824.95,824.95,8688.83 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,12805,101186.58,0.0,0.0,101186.58,20839.51,12424.5,7552.29,40816.3,142002.88 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,2961,3992.46,38.89,25.93,4057.28,0.0,919.89,314.91,1234.8,5292.08 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,28439,1005.58,0.0,878.71,1884.29,259.44,436.06,152.54,848.04,2732.33 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,47093,65589.61,0.0,0.0,65589.61,13487.87,12424.51,5335.54,31247.92,96837.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,53065,12101.7,0.0,2394.11,14495.81,1335.72,860.22,287.84,2483.78,16979.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",43589,130341.6,49209.39,18906.62,198457.61,28793.61,15052.76,3340.18,47186.55,245644.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,49051,7179.23,0.0,59.09,7238.32,0.0,585.38,561.81,1147.19,8385.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,45594,15085.0,0.0,0.0,15085.0,0.0,3345.04,1169.53,4514.57,19599.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,34681,16781.08,0.0,2455.09,19236.17,3251.93,3382.39,1622.01,8256.33,27492.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,13540,109761.36,44149.92,17819.79,171731.07,25414.24,15196.12,2868.22,43478.58,215209.65 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,36382,86850.05,0.0,1200.0,88050.05,18146.56,12424.51,6981.2,37552.27,125602.32 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,13437,146835.14,9965.51,8786.19,165586.84,29541.39,12424.5,2821.12,44787.01,210373.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,29506,31300.0,0.0,0.0,31300.0,5674.7,4778.65,2599.13,13052.48,44352.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4211,6956.51,0.0,260.92,7217.43,1919.68,1367.71,459.39,3746.78,10964.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,83,66131.42,1784.11,9374.51,77290.04,14955.25,11698.86,6112.17,32766.28,110056.32 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",9749,50001.01,8679.62,2930.29,61610.92,12235.87,8928.2,1285.62,22449.69,84060.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,199,53440.98,0.0,703.01,54143.99,11123.26,10387.61,4276.31,25787.18,79931.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,21949,81157.0,13320.79,9623.84,104101.63,17469.69,12424.5,8141.22,38035.41,142137.04 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,5073,67261.06,0.0,0.0,67261.06,13870.19,12424.5,5167.11,31461.8,98722.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32173,650.1,0.0,0.0,650.1,999.0,47.79,481.28,1528.07,2178.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23751,64800.52,16163.24,1636.8,82600.56,18147.76,12765.16,6111.25,37024.17,119624.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,42519,81776.08,0.0,624.0,82400.08,16983.28,12424.5,6580.98,35988.76,118388.84 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,44425,930.0,0.0,0.0,930.0,0.0,370.34,72.01,442.35,1372.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,17816,3570.88,0.0,0.0,3570.88,0.0,1741.22,277.01,2018.23,5589.11 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,51820,58386.15,1114.62,7030.26,66531.03,12931.08,10335.09,5467.56,28733.73,95264.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,25558,84644.0,25197.0,8221.58,118062.58,18146.43,12424.48,9225.84,39796.75,157859.33 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",22948,91395.06,0.0,1105.81,92500.87,19055.53,12171.77,7676.81,38904.11,131404.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,33584,98414.38,0.0,0.0,98414.38,20027.05,10835.6,7928.41,38791.06,137205.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,42309,93395.75,2677.33,2433.34,98506.42,19614.55,12615.64,8094.34,40324.53,138830.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7782,5251.12,0.0,48.57,5299.69,0.0,1717.33,411.34,2128.67,7428.36 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",20101,78997.91,21059.05,26540.44,126597.4,18914.64,8028.14,2075.43,29018.21,155615.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,35457,54680.33,0.0,7027.65,61707.98,14274.14,12423.01,4738.91,31436.06,93144.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34604,66722.44,14611.85,2376.66,83710.95,18892.46,13145.18,6322.61,38360.25,122071.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,48709,82867.0,0.0,0.0,82867.0,17052.24,12328.94,6677.36,36058.54,118925.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,49313,26565.9,29.34,0.0,26595.24,6657.23,8111.77,1969.11,16738.11,43333.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,35577,100554.01,0.0,0.0,100554.01,20724.83,12424.5,8051.21,41200.54,141754.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,37081,21856.93,0.0,1175.16,23032.09,25.31,0.0,3622.75,3648.06,26680.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12459,14072.59,0.0,2887.97,16960.56,630.2,0.0,404.22,1034.42,17994.98 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,35576,160115.0,0.0,30421.85,190536.85,35445.62,12424.5,10983.37,58853.49,249390.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,6145,102019.03,0.0,0.0,102019.03,21026.26,12424.5,8382.67,41833.43,143852.46 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22608,80562.5,5098.18,4153.19,89813.87,16497.9,12364.77,3240.47,32103.14,121917.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,29007,93281.05,0.0,2004.0,95285.05,19639.65,12424.5,7406.4,39470.55,134755.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,51667,51404.99,0.0,2435.25,53840.24,12479.31,12424.5,4217.03,29120.84,82961.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,12859,3074.33,0.0,7.16,3081.49,0.0,0.0,243.74,243.74,3325.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,52942,156746.04,0.0,0.0,156746.04,31545.23,12424.5,10427.37,54397.1,211143.14 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,6817,85587.65,10332.35,5532.81,101452.81,22204.54,10935.9,1623.98,34764.42,136217.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,28472,32428.75,475.14,6702.26,39606.15,6267.33,6370.55,2590.9,15228.78,54834.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,21589,117135.35,33136.92,860.39,151132.66,23184.68,12424.5,2430.77,38039.95,189172.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,20344,50199.32,8415.45,0.0,58614.77,8900.54,7872.85,4549.09,21322.48,79937.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,13646,2339.14,0.0,0.0,2339.14,0.0,595.83,181.56,777.39,3116.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,47650,27232.0,2935.67,2648.32,32815.99,5252.79,4396.36,2591.89,12241.04,45057.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,11415,52978.93,5347.93,4939.4,63266.26,11580.64,11646.66,4968.44,28195.74,91462.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,14957,65994.0,920.59,9043.23,75957.82,19769.98,12424.5,5979.83,38174.31,114132.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2718,Custodial Supervisor,5794,68571.02,0.0,6307.44,74878.46,14899.25,12424.5,6186.29,33510.04,108388.5 +Calendar,2015,1,Public Protection,CRT,Superior Court,121.0,"Prof & Tech Engineers - Court Attorneys, Local 21",SCRT,SF Superior Court,312C,Court Staff Attorney II,5431,102632.02,0.0,4922.0,107554.02,21124.01,12424.5,8832.14,42380.65,149934.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,7890,90622.14,0.0,691.39,91313.53,18432.68,9625.94,1520.54,29579.16,120892.69 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,34289,11317.98,674.84,663.4,12656.22,0.0,3140.48,982.32,4122.8,16779.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",47033,60123.0,19613.09,4540.55,84276.64,4991.13,10990.9,6708.87,22690.9,106967.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,8534,52040.02,178.89,0.0,52218.91,11046.38,9557.3,4346.8,24950.48,77169.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,47116,3454.73,0.0,0.0,3454.73,291.53,766.09,267.46,1325.08,4779.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",9751,150.0,0.0,0.0,150.0,0.0,0.0,283.6,283.6,433.6 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,48365,60670.36,0.0,1365.72,62036.08,12765.78,12208.92,4854.02,29828.72,91864.8 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0905,Mayoral Staff XVII,9776,159263.64,0.0,0.0,159263.64,32067.67,12376.71,27991.33,72435.71,231699.35 +Calendar,2015,1,Public Protection,ADP,Adult Probation,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,25599,0.0,0.0,450.06,450.06,0.0,0.0,34.42,34.42,484.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,32189,0.0,0.0,122.38,122.38,0.0,68.5,9.36,77.86,200.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,50622,56531.0,3148.46,2186.24,61865.7,11768.38,12424.5,4858.09,29050.97,90916.67 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,12015,93681.01,64498.74,11250.39,169430.14,20527.03,12424.5,10546.84,43498.37,212928.51 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14399,107574.91,1659.98,10550.8,119785.69,22581.15,9736.7,8542.5,40860.35,160646.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,12120,27761.83,4302.78,1287.97,33352.58,6296.19,6139.01,3021.95,15457.15,48809.73 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12096,112159.76,89213.83,20998.36,222371.95,25264.14,15052.76,3795.32,44112.22,266484.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,40684,40873.89,9171.35,3069.03,53114.27,10000.66,12415.55,4272.36,26688.57,79802.84 +Calendar,2015,1,Public Protection,CRT,Superior Court,23.0,"Prof & Tech Engineers - Court Employees, Local 21",SCRT,SF Superior Court,0655,"Counselor, Family Court Svc",2091,103948.07,0.0,8821.4,112769.47,22637.6,12424.5,9313.69,44375.79,157145.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,36489,70107.47,0.0,0.0,70107.47,14375.66,11740.56,5579.35,31695.57,101803.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,46863,49981.0,0.0,0.0,49981.0,9900.68,8601.58,4038.21,22540.47,72521.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",27381,27394.41,0.0,0.0,27394.41,0.0,6445.2,2125.96,8571.16,35965.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,36842,61829.33,9217.5,80.0,71126.83,13821.37,12424.5,5498.08,31743.95,102870.78 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,51553,56765.14,0.0,6764.0,63529.14,13615.6,12269.19,5094.16,30978.95,94508.09 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,372,57251.01,0.0,0.0,57251.01,10379.62,5734.39,4482.52,20596.53,77847.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,11135,97586.43,0.0,3813.95,101400.38,20764.26,10414.55,8095.67,39274.48,140674.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,40117,68722.03,0.0,0.0,68722.03,14164.03,12424.5,5347.29,31935.82,100657.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,11253,95968.0,0.0,624.0,96592.0,19907.97,12424.51,8010.8,40343.28,136935.28 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,45123,56531.04,1306.2,2287.8,60125.04,11780.12,12424.5,4920.65,29125.27,89250.31 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8321,"Counselor, Log Cabin Ranch",15632,57825.59,0.0,0.0,57825.59,13043.79,9651.39,504.25,23199.43,81025.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42581,43171.07,5230.44,1044.13,49445.64,11800.94,13147.03,3749.61,28697.58,78143.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43762,96286.63,0.0,5836.99,102123.62,20479.36,9824.31,8204.34,38508.01,140631.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,36.0,"Hod Carriers, Local 166",7400,Skilled Labor,7428,Hodcarrier,38200,54003.2,2090.7,600.0,56693.9,11218.23,8703.13,5328.02,25249.38,81943.28 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),29979,134287.21,0.0,1500.0,135787.21,27304.95,12376.71,10085.97,49767.63,185554.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,49515,75927.03,0.0,0.0,75927.03,15648.74,12424.5,6120.36,34193.6,110120.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7488,Power Generation Supervisor,50998,34599.72,0.0,24312.98,58912.7,0.0,3240.52,4544.43,7784.95,66697.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,10427,20804.71,41.33,554.15,21400.19,1397.39,0.0,1692.97,3090.36,24490.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29222,123331.32,207.68,16650.12,140189.12,24098.88,11038.69,4753.72,39891.29,180080.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,32447,75935.23,2040.28,250.0,78225.51,15656.67,12479.1,6406.84,34542.61,112768.12 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8530,Deputy Probation Officer SFERS,2473,68617.1,228.83,0.0,68845.93,14121.48,12424.5,740.14,27286.12,96132.05 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,2993,59873.0,0.0,0.0,59873.0,11902.14,8840.51,4783.44,25526.09,85399.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52370,1493.1,0.0,41.99,1535.09,0.0,809.38,118.84,928.22,2463.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7342,Locksmith,51113,6836.0,0.0,0.0,6836.0,1272.18,955.69,528.98,2756.85,9592.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,39029,5428.5,0.0,0.0,5428.5,1217.61,836.27,447.68,2501.56,7930.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,39623,48858.4,0.0,800.0,49658.4,10108.03,10940.13,3756.86,24805.02,74463.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,46590,93281.01,0.0,0.0,93281.01,19225.76,12424.5,7124.49,38774.75,132055.76 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1814,Benefits Supervisor,38435,109563.2,0.0,624.0,110187.2,22175.43,12424.5,8826.21,43426.14,153613.34 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),4218,184289.01,0.0,5185.78,189474.79,38130.64,12424.5,11000.54,61555.68,251030.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,17059,79374.91,0.0,623.84,79998.75,16488.62,12421.34,6381.73,35291.69,115290.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23487,64160.87,7571.91,619.05,72351.83,17765.88,12646.59,5267.53,35680.0,108031.83 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,15373,40911.06,9206.06,920.51,51037.63,10011.93,12424.5,4066.22,26502.65,77540.28 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,856,54169.0,19915.67,3628.7,77713.37,12095.16,12424.5,6146.28,30665.94,108379.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,13604,2976.76,251.16,40.0,3267.92,676.66,477.86,258.16,1412.68,4680.6 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2200,Medical & Dental,2218,Physician Assistant,29521,106980.17,0.0,0.0,106980.17,21566.22,7775.35,8799.22,38140.79,145120.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,45273,4484.0,756.68,1505.49,6746.17,969.03,477.86,114.69,1561.58,8307.75 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,30621,111559.01,55023.38,16624.25,183206.64,24677.77,14909.41,3061.07,42648.25,225854.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,8713,97424.05,1771.51,11771.25,110966.81,20079.56,12424.49,8890.99,41395.04,152361.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23536,20843.58,4151.21,526.87,25521.66,6290.24,4145.12,1897.59,12332.95,37854.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,3004,62468.8,378.68,1992.87,64840.35,13215.67,12424.5,5335.7,30975.87,95816.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,4010,133087.14,0.0,12761.88,145849.02,26795.88,12424.49,10291.07,49511.44,195360.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,26758,133087.01,0.0,3866.5,136953.51,26783.95,12424.5,10145.11,49353.56,186307.07 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),5269,178694.63,0.0,1500.0,180194.63,36200.76,12424.5,10730.9,59356.16,239550.79 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,13637,97765.12,3049.64,15613.06,116427.82,27573.95,12424.5,1972.24,41970.69,158398.51 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,20784,106397.5,0.0,0.0,106397.5,21915.54,12424.5,8423.15,42763.19,149160.69 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,35524,69981.59,0.0,25376.76,95358.35,15353.96,6451.18,11654.72,33459.86,128818.21 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,41528,92774.22,0.0,2020.59,94794.81,19527.41,12356.58,7858.25,39742.24,134537.05 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,47361,56120.02,0.0,0.0,56120.02,12556.79,12424.5,4520.05,29501.34,85621.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,46986,53531.3,1008.07,4460.45,58999.82,12615.28,12424.5,4778.6,29818.38,88818.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39388,47839.73,0.0,150.0,47989.73,0.0,4079.78,3719.5,7799.28,55789.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6281,Fire Safety Inspector 2,11761,135109.0,68266.9,8106.54,211482.44,28984.45,12424.5,11291.68,52700.63,264183.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,48818,122505.38,3516.64,3275.0,129297.02,24226.76,12424.5,2200.54,38851.8,168148.82 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7386,112685.51,5393.59,4362.13,122441.23,22330.93,12424.5,2038.79,36794.22,159235.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1202,Personnel Clerk,18460,60248.02,0.0,624.0,60872.02,12546.13,12424.5,5000.87,29971.5,90843.52 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,10899,92377.95,2321.12,0.0,94699.07,21008.82,11540.45,1534.57,34083.84,128782.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3224,64576.68,25299.82,1617.77,91494.27,18098.66,12724.66,6818.7,37642.02,129136.29 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,15687,24646.01,18279.95,2885.08,45811.04,6218.39,6158.49,3634.28,16011.16,61822.2 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",7192,5060.0,284.63,225.24,5569.87,898.66,477.86,93.57,1470.09,7039.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,18977,3436.31,0.0,486.11,3922.42,1220.52,0.0,998.0,2218.52,6140.94 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,46706,61735.0,0.0,920.0,62655.0,12910.47,12424.5,4940.84,30275.81,92930.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3725,67667.9,3147.22,802.54,71617.66,18741.04,13332.68,5582.58,37656.3,109273.96 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8562,"Counselor, Juvenile Hall SFERS",14737,5222.18,0.0,112.85,5335.03,0.0,1120.89,414.09,1534.98,6870.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32667,4525.08,0.0,0.0,4525.08,0.0,1962.23,366.15,2328.38,6853.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,38992,18623.95,0.0,791.42,19415.37,1169.15,8044.8,1579.22,10793.17,30208.54 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16600,113233.6,1761.1,19146.52,134141.22,25068.57,15196.12,2238.66,42503.35,176644.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",6934,94388.0,37820.0,12222.26,144430.26,21836.42,12424.5,10175.13,44436.05,188866.31 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4224,Pr Personal Property Auditor,9610,54305.03,0.0,0.0,54305.03,0.0,0.0,4295.7,4295.7,58600.73 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,20996,11712.3,0.0,0.0,11712.3,0.0,4339.61,908.72,5248.33,16960.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,12211,87531.05,0.0,0.0,87531.05,18040.63,12424.5,7126.04,37591.17,125122.22 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,22843,16930.12,0.0,952.7,17882.82,0.0,3787.09,1387.99,5175.08,23057.9 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,14693,79781.82,0.0,0.0,79781.82,16424.76,12418.53,6322.75,35166.04,114947.86 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,47272,37680.38,0.0,24.0,37704.38,7094.17,6194.34,3099.17,16387.68,54092.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,40282,17356.54,0.0,0.0,17356.54,4478.01,4539.72,1229.83,10247.56,27604.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,10711,13084.0,2718.38,1368.82,17171.2,2465.08,1911.46,1350.89,5727.43,22898.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,40072,6398.01,0.0,0.0,6398.01,1190.67,955.73,465.03,2611.43,9009.44 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,21855,73564.45,0.0,0.0,73564.45,15549.1,9778.32,6065.14,31392.56,104957.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,26641,19068.45,0.0,830.31,19898.76,1297.3,8247.9,1616.62,11161.82,31060.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1924,Materials/Supplies Supervisor,6021,56406.01,0.0,624.0,57030.01,11754.15,12424.5,4691.28,28869.93,85899.94 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,23528,0.0,0.0,652.11,652.11,0.0,68.5,49.89,118.39,770.5 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,36351,43971.27,9127.51,500.0,53598.78,10618.96,11892.64,4418.68,26930.28,80529.06 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,20213,19767.69,0.0,7756.95,27524.64,4857.28,2293.76,448.29,7599.33,35123.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,48406,15856.81,1613.03,1389.68,18859.52,3556.67,2867.19,1518.42,7942.28,26801.8 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,22701,97424.03,0.0,664.0,98088.03,20217.19,12424.5,8078.59,40720.28,138808.31 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,37426,5172.5,0.0,0.0,5172.5,962.6,1194.67,401.47,2558.74,7731.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47237,33180.72,3219.36,710.88,37110.96,8782.76,10361.14,2762.09,21905.99,59016.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20903,64724.73,21908.63,550.04,87183.4,17853.47,12752.44,6596.39,37202.3,124385.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,17083,85368.01,0.0,740.0,86108.01,17737.86,12424.5,7140.17,37302.53,123410.54 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,29585,460.97,0.0,81.72,542.69,193.44,0.0,23.77,217.21,759.9 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,37349,32463.51,0.0,0.0,32463.51,4507.66,9049.57,2657.68,16214.91,48678.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52283,68324.16,2602.34,3081.27,74007.77,16247.66,13463.08,5613.81,35324.55,109332.32 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,37677,32363.2,0.0,0.0,32363.2,0.0,0.0,2558.82,2558.82,34922.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35749,3325.94,0.0,262.41,3588.35,0.0,866.14,278.51,1144.65,4733.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,24706,57421.0,0.0,0.0,57421.0,11374.55,8601.57,4546.81,24522.93,81943.93 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,10894,22592.69,0.0,2964.38,25557.07,7231.29,0.0,931.3,8162.59,33719.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,3729,18128.0,0.0,0.0,18128.0,3373.64,3822.92,1421.44,8618.0,26746.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12752,42714.55,4674.54,882.98,48272.07,11289.84,12712.35,3618.8,27620.99,75893.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,9621,63887.0,36813.42,13111.8,113812.22,13794.14,12424.48,9218.05,35436.67,149248.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,10945,107625.21,14384.04,7846.51,129855.76,22173.64,12376.71,9871.34,44421.69,174277.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,34996,80946.01,3269.5,3113.18,87328.69,16593.0,12424.5,3327.32,32344.82,119673.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,27609,68519.09,10713.81,8477.52,87710.42,15208.61,10477.62,7054.73,32740.96,120451.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,3862,138633.9,2226.29,7386.92,148247.11,27400.21,12424.5,2470.31,42295.02,190542.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15958,44870.13,7164.75,1602.88,53637.76,12057.68,13235.14,3872.03,29164.85,82802.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8420,44951.63,17246.76,4535.71,66734.1,14323.15,8928.97,5194.47,28446.59,95180.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47943,1680.55,0.0,55.03,1735.58,0.0,728.75,134.36,863.11,2598.69 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,5836,56276.05,243.79,624.0,57143.84,12731.54,12424.51,4644.96,29801.01,86944.85 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36522,87269.04,61.26,8669.75,96000.05,18661.4,8716.27,7717.74,35095.41,131095.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,39980,29427.7,0.0,651.69,30079.39,6159.95,6473.11,2345.31,14978.37,45057.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,31630,1653.0,0.0,0.0,1653.0,0.0,716.79,127.98,844.77,2497.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30907,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),46402,50716.81,0.0,33462.34,84179.15,11514.35,3440.63,6719.96,21674.94,105854.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,1147,4496.49,0.0,0.0,4496.49,0.0,1500.52,348.7,1849.22,6345.71 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,40931,68991.08,0.0,2798.18,71789.26,14893.46,6212.25,1189.74,22295.45,94084.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,42203,7677.04,0.0,97.68,7774.72,1743.87,1502.3,791.71,4037.88,11812.6 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,9635,54534.75,0.0,0.0,54534.75,0.0,3106.13,4227.47,7333.6,61868.35 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51872,2327.82,0.0,0.0,2327.82,0.0,582.4,180.36,762.76,3090.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16799,40180.03,4807.62,2398.78,47386.43,11136.78,12511.42,3333.88,26982.08,74368.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,11629,109799.65,29565.07,19270.94,158635.66,24318.4,12048.37,2653.33,39020.1,197655.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,41042,48508.2,10297.29,2176.24,60981.73,10288.82,9652.88,4982.21,24923.91,85905.64 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,43991,112696.18,16231.25,22461.31,151388.74,22291.43,12424.51,2533.25,37249.19,188637.93 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",14821,2022.39,0.0,50.42,2072.81,0.0,0.0,163.99,163.99,2236.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,31583,63764.74,320.51,1112.33,65197.58,13357.97,12400.55,5150.49,30909.01,96106.59 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,10273,43436.47,625.93,2635.98,46698.38,9215.0,0.0,3679.27,12894.27,59592.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3490,32818.1,4137.38,1022.22,37977.7,8698.5,10246.4,2896.39,21841.29,59818.99 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,2694,70230.6,0.0,0.0,70230.6,14899.09,9461.74,11477.02,35837.85,106068.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,32799,56120.03,0.0,0.0,56120.03,12556.79,12424.63,4653.78,29635.2,85755.23 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,16718,87713.0,0.0,9571.5,97284.5,19345.26,12424.5,7554.42,39324.18,136608.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2485,Supv Biologist,46814,123015.44,0.0,0.0,123015.44,24824.16,12424.5,9867.0,47115.66,170131.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,47248,84644.0,23606.62,11302.78,119553.4,19118.77,12424.5,9490.63,41033.9,160587.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,19622,67598.68,0.0,619.68,68218.36,14051.63,12338.49,5549.58,31939.7,100158.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,16658,48586.0,472.88,1220.0,50278.88,9678.3,7406.92,4036.16,21121.38,71400.26 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,39995,15636.0,0.0,94.62,15730.62,3375.78,1433.6,67.27,4876.65,20607.27 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,22507,59208.8,18586.55,3825.14,81620.49,13206.54,12424.5,6478.19,32109.23,113729.72 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1091,IT Operations Support Admin I,22006,33100.5,837.1,1940.64,35878.24,6339.54,6660.25,2700.35,15700.14,51578.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,19268,61651.77,0.0,0.0,61651.77,12848.27,11146.82,5015.66,29010.75,90662.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,15877,56384.36,22652.87,1697.8,80735.03,11644.02,11198.9,6386.69,29229.61,109964.64 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,28962,94739.98,0.0,0.0,94739.98,21574.08,11820.54,1609.76,35004.38,129744.36 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,35992,70144.96,0.0,0.0,70144.96,14432.43,11886.92,5503.0,31822.35,101967.31 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,4971,4469.69,0.0,242.25,4711.94,0.0,1343.99,365.73,1709.72,6421.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,33972,81776.06,0.0,1420.0,83196.06,17146.22,12424.5,6528.84,36099.56,119295.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,38065,36849.45,0.0,0.0,36849.45,0.0,3201.7,2860.1,6061.8,42911.25 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2618,Food Service Supervisor,42109,63414.0,1352.68,4704.25,69470.93,13390.38,12424.5,5470.7,31285.58,100756.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,448,90580.0,0.0,0.0,90580.0,19123.81,8362.64,7262.99,34749.44,125329.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,2790,20865.21,0.0,0.0,20865.21,4588.26,5734.37,1564.41,11887.04,32752.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,15464,38016.0,0.0,14968.8,52984.8,8526.96,5734.38,4291.85,18553.19,71537.99 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,48967,85327.24,0.0,0.0,85327.24,17585.45,12418.53,6350.5,36354.48,121681.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,28620,24.5,0.0,0.0,24.5,0.0,11.94,1.9,13.84,38.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,24672,62912.6,2885.31,1007.91,66805.82,13160.5,12424.5,5401.53,30986.53,97792.35 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,18616,75927.02,6054.05,624.0,82605.07,15777.43,12424.5,6826.18,35028.11,117633.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8794,56531.0,0.0,2614.35,59145.35,11780.12,12424.5,4845.31,29049.93,88195.28 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,19155,6784.2,0.0,0.0,6784.2,0.0,2941.86,540.17,3482.03,10266.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16322,67169.82,3556.2,8813.69,79539.71,14855.25,11884.87,6289.72,33029.84,112569.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,27721,61735.09,0.0,0.0,61735.09,12724.02,12424.5,5074.92,30223.44,91958.53 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3283,Recreation Specialist,13024,45159.96,0.0,442.21,45602.17,10182.28,9658.86,3663.8,23504.94,69107.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,34643,60393.4,12508.51,5014.72,77916.63,17865.63,11891.03,5863.54,35620.2,113536.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",28034,125706.11,0.0,0.0,125706.11,25386.9,12424.5,26979.44,64790.84,190496.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,19322,42545.3,0.0,1040.0,43585.3,10433.86,12424.5,3493.8,26352.16,69937.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,18685,87265.06,0.0,0.0,87265.06,17804.46,11177.93,6988.26,35970.65,123235.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,24202,56531.01,0.0,769.79,57300.8,11817.76,12424.5,4713.03,28955.29,86256.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),7683,11556.0,460.08,673.38,12689.46,2091.56,955.73,213.08,3260.37,15949.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,45308,17888.34,0.0,0.0,17888.34,3329.0,3470.49,1423.48,8222.97,26111.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",39760,97989.0,14091.76,6022.28,118103.04,20306.85,12424.5,9632.73,42364.08,160467.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,3778,100761.05,18881.56,10886.03,130528.64,20957.38,12424.52,9949.23,43331.13,173859.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,8787,84126.95,3219.89,14619.05,101965.89,19490.09,12287.3,1698.95,33476.34,135442.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,16772,48936.74,0.0,7541.09,56477.83,683.87,0.0,6755.47,7439.34,63917.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5314,Survey Associate,13267,97669.03,0.0,0.0,97669.03,20130.42,12424.6,7812.85,40367.87,138036.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,1475,2074.0,388.88,0.0,2462.88,385.97,477.86,191.16,1054.99,3517.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,47941,7734.43,0.0,0.0,7734.43,0.0,2559.57,598.8,3158.37,10892.8 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,50417,38613.36,0.0,0.0,38613.36,8660.94,5252.04,3170.71,17083.69,55697.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,36466,80550.76,0.0,623.85,81174.61,16731.04,12421.52,6731.13,35883.69,117058.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,27920,75160.0,2318.35,7351.19,84829.54,16735.81,12424.5,6819.06,35979.37,120808.91 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,216,7497.0,39.05,15.93,7551.98,1398.15,1433.59,555.35,3387.09,10939.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,31567,75314.0,0.0,0.0,75314.0,15022.02,9079.44,6061.01,30162.47,105476.47 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,4486,7724.2,0.0,0.0,7724.2,1511.98,3339.62,643.07,5494.67,13218.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,28042,116976.0,0.0,0.0,116976.0,23541.49,12424.52,9618.36,45584.37,162560.37 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,2.0,Management Unrepresented Employees,1200,Personnel,1282,"Manager,Employee Relations Div",48471,6644.8,0.0,25913.21,32558.01,1457.87,525.65,2820.67,4804.19,37362.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,14327,3263.01,0.0,0.0,3263.01,731.89,477.86,247.48,1457.23,4720.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20374,139878.84,908.62,1622.02,142409.48,0.0,11121.73,9733.14,20854.87,163264.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,44905,22495.21,0.0,1688.22,24183.43,4860.7,0.0,4194.67,9055.37,33238.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",17718,73917.26,0.0,92722.3,166639.56,19299.63,8028.14,2632.19,29959.96,196599.52 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,43685,89413.03,0.0,0.0,89413.03,18428.55,12424.5,7163.02,38016.07,127429.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,52802,66580.01,1313.23,2146.09,70039.33,13840.24,12424.5,5530.62,31795.36,101834.69 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,39647,15204.62,0.0,989.68,16194.3,0.0,1332.05,1255.5,2587.55,18781.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,18776,93738.06,1729.31,2928.3,98395.67,19485.88,12424.51,8057.77,39968.16,138363.83 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,10173,93281.0,0.0,1624.0,94905.0,19558.93,12424.5,7866.92,39850.35,134755.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,22469,8679.6,0.0,61.31,8740.91,0.0,0.0,691.29,691.29,9432.2 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,16836,70941.38,7946.4,8999.38,87887.16,15629.79,12021.78,6638.81,34290.38,122177.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26338,0.0,0.0,1649.95,1649.95,0.0,68.5,126.22,194.72,1844.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,45080,56163.3,397.37,1486.76,58047.43,10885.46,8601.58,3982.85,23469.89,81517.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49455,86034.86,924.71,6648.11,93607.68,14970.54,7387.8,6046.89,28405.23,122012.91 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,8037,48726.3,0.0,4646.06,53372.36,12407.0,12424.5,4278.73,29110.23,82482.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25067,56208.45,14651.82,3797.3,74657.57,16110.47,11053.52,5831.15,32995.14,107652.71 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,36573,5222.5,0.0,4003.05,9225.55,1347.4,1194.67,745.59,3287.66,12513.21 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43485,52760.01,1465.52,0.0,54225.53,12635.04,12424.5,4238.33,29297.87,83523.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25566,3105.38,0.0,6.37,3111.75,0.0,1514.23,241.3,1755.53,4867.28 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,19161,73920.0,0.0,4540.0,78460.0,15133.07,11468.77,6507.02,33108.86,111568.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,236.0,"Carpenters, Local 22",7200,Supervisory-Labor & Trade,7226,Carpenter Supervisor 1,24437,45582.0,0.0,0.0,45582.0,8482.81,5256.52,3750.75,17490.08,63072.08 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,11437,124958.42,1106.11,25733.26,151797.79,28854.51,11060.08,5680.37,45594.96,197392.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45481,146714.31,1394.92,27362.2,175471.43,36008.44,12228.58,6326.83,54563.85,230035.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42412,10888.99,0.0,679.65,11568.64,1060.72,901.97,2327.5,4290.19,15858.83 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14791,82500.25,0.0,14022.49,96522.74,19379.93,7664.96,7832.6,34877.49,131400.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,43414,18018.11,0.0,740.06,18758.17,819.26,7753.37,1388.5,9961.13,28719.3 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,52610,56311.39,0.0,4620.39,60931.78,12555.37,12375.95,4991.12,29922.44,90854.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,24058,56858.56,3427.52,2367.45,62653.53,12216.99,12376.66,4814.78,29408.43,92061.96 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,351.0,Municipal Executive Association - Miscellaneous,0900,Management,4310,Commercial Div Asst Sprv,9862,89551.82,0.0,0.0,89551.82,18390.78,11767.37,16003.47,46161.62,135713.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48664,118399.72,357.67,4051.91,122809.3,24209.35,12144.83,9776.17,46130.35,168939.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,38858,127129.04,0.0,0.0,127129.04,25584.72,12424.5,17200.81,55210.03,182339.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",43288,150233.96,32830.87,35703.33,218768.16,36315.22,15196.12,3685.31,55196.65,273964.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10471,55797.88,5969.51,2634.61,64402.0,11494.81,12263.76,5265.58,29024.15,93426.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",39034,0.0,0.0,8948.54,8948.54,0.0,34.25,687.58,721.83,9670.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,31622,113264.62,53821.74,15142.52,182228.88,24439.84,15148.33,3066.45,42654.62,224883.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,18797,125476.0,0.0,0.0,125476.0,25258.96,12424.47,9925.43,47608.86,173084.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48166,11320.51,0.0,0.0,11320.51,1731.35,997.54,1455.12,4184.01,15504.52 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,18190,18770.63,118.97,220.0,19109.6,146.88,4241.06,1473.15,5861.09,24970.69 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,18052,26265.23,0.0,541.73,26806.96,6415.58,6481.05,2218.87,15115.5,41922.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,31590,56120.0,0.0,0.0,56120.0,12556.79,12424.5,4425.71,29407.0,85527.0 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,3903,11256.0,0.0,0.0,11256.0,2094.75,1433.6,3655.87,7184.22,18440.22 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1227,Testing Technician,19775,7052.46,499.72,0.0,7552.18,0.0,1745.7,585.58,2331.28,9883.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,4293,2300.9,0.0,0.0,2300.9,0.0,966.19,186.3,1152.49,3453.39 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,34470,48937.03,204.24,1478.55,50619.82,11757.52,11934.87,4118.61,27811.0,78430.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,31884,81658.04,0.0,0.0,81658.04,15658.23,8123.66,15922.07,39703.96,121362.0 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,49096,11264.09,32.93,158.35,11455.37,0.0,3066.16,887.42,3953.58,15408.95 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,15016,80570.12,0.0,624.0,81194.12,16734.68,12424.5,6670.02,35829.2,117023.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,3972,113233.63,0.0,20941.11,134174.74,25481.14,15196.11,2230.14,42907.39,177082.13 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1458,Legal Secretary 1,22818,78963.06,0.0,0.0,78963.06,16274.48,12424.5,5861.66,34560.64,113523.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43838,64435.32,18962.39,573.54,83971.25,17822.64,12702.56,6342.31,36867.51,120838.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19306,68366.2,4431.47,1092.19,73889.86,19027.16,13469.29,5645.42,38141.87,112031.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27190,22593.58,0.0,1120.68,23714.26,305.03,0.0,5441.64,5746.67,29460.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,44157,76436.34,0.0,0.0,76436.34,16085.93,10175.07,6242.1,32503.1,108939.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,16784,135421.0,0.0,0.0,135421.0,27253.5,12424.5,10100.63,49778.63,185199.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14121,58813.0,7624.99,9782.43,76220.42,12762.06,5734.39,1267.63,19764.08,95984.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,6027,47636.23,2820.95,4670.89,55128.07,9885.75,8816.61,1461.1,20163.46,75291.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,1459,39795.85,0.0,0.0,39795.85,0.0,4372.47,3087.15,7459.62,47255.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,41032,102019.03,0.0,0.0,102019.03,21026.28,12424.5,7415.35,40866.13,142885.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,27621,119066.06,7773.74,18621.16,145460.96,32414.06,12424.53,2478.5,47317.09,192778.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38851,69265.52,27036.81,4976.95,101279.28,16905.13,13648.74,7728.07,38281.94,139561.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,52141,434.0,0.0,3.72,437.72,0.0,167.24,33.89,201.13,638.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,22467,52246.61,0.0,1408.78,53655.39,11168.14,5450.42,513.46,17132.02,70787.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,14048,68624.0,0.0,0.0,68624.0,14680.31,7645.85,5608.0,27934.16,96558.16 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8129,Victim/Witness Investigator 1,35347,59615.7,0.0,820.0,60435.7,12521.84,11619.6,4819.43,28960.87,89396.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7281,Street Environ Svcs Oprs Supv,13730,97174.01,1728.51,1257.16,100159.68,20301.25,12424.5,8005.06,40730.81,140890.49 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,47023,139015.44,17741.28,43781.11,200537.83,29093.55,12424.5,353.29,41871.34,242409.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,30819,63887.01,11723.05,1193.81,76803.87,13413.37,12424.5,6307.87,32145.74,108949.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7380,"Electrl Trnst Mech, Asst Sprv",6547,26853.0,3361.05,1851.78,32065.83,4997.37,3345.06,2564.62,10907.05,42972.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,1481,112146.19,4408.97,6921.4,123476.56,22214.34,12364.77,2055.71,36634.82,160111.38 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2112,Medical Records Technician,7023,69201.76,0.0,0.0,69201.76,14218.79,12003.68,5594.8,31817.27,101019.03 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2556,Physical Therapist,17472,59874.87,0.0,0.0,59874.87,12332.24,7571.3,4354.52,24258.06,84132.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",14423,225.0,0.0,0.0,225.0,0.0,53.76,17.45,71.21,296.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27591,43700.75,2908.03,1868.1,48476.88,11835.16,13294.23,3458.02,28587.41,77064.29 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",6837,180314.39,84013.12,19143.85,283471.36,38906.22,15196.12,4786.51,58888.85,342360.21 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31181,86.54,0.0,8.65,95.19,0.0,0.0,1.63,1.63,96.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11640,11309.49,0.0,0.0,11309.49,0.0,4850.22,922.81,5773.03,17082.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,9881,1594.15,0.0,0.0,1594.15,0.0,471.89,123.71,595.6,2189.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2487,Chemist III,33070,119321.06,0.0,0.0,119321.06,24013.6,12424.5,9778.29,46216.39,165537.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50120,62461.13,9055.04,0.0,71516.17,12844.47,12424.5,5434.08,30703.05,102219.22 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,43585,7147.8,0.0,0.0,7147.8,0.0,2365.43,553.38,2918.81,10066.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,36080,70245.0,31078.67,4572.55,105896.22,14606.45,12424.5,8577.27,35608.22,141504.44 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,5513,67261.01,3392.07,1933.22,72586.3,14156.54,12424.5,6333.93,32914.97,105501.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,40884,160036.02,0.0,16435.63,176471.65,35239.94,11468.77,9901.01,56609.72,233081.37 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2406,Pharmacy Helper,6620,45199.41,0.0,390.0,45589.41,9396.06,7765.31,3800.78,20962.15,66551.56 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H032,"Capt,Fire Prev Or Fire Invsgtn",33619,168860.29,13998.72,13508.83,196367.84,35914.92,12424.5,2804.4,51143.82,247511.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25924,45055.08,3617.96,3737.15,52410.19,10930.25,13283.29,3958.21,28171.75,80581.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,33145,2629.71,0.0,3.92,2633.63,0.0,1282.29,204.23,1486.52,4120.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14664,122742.91,536.4,15682.62,138961.93,26293.54,10912.3,8779.24,45985.08,184947.01 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,2620,Food Service Mgr Administrator,16361,98356.6,0.0,0.0,98356.6,20174.0,12472.29,15763.87,48410.16,146766.76 +Calendar,2015,4,Community Health,DPH,Public Health,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,23311,70948.04,0.0,0.0,70948.04,14317.78,10035.17,5394.54,29747.49,100695.53 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46996,51477.0,1258.01,2188.16,54923.17,12892.57,12424.5,4201.49,29518.56,84441.73 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,26167,64216.92,8635.28,18525.88,91378.08,14436.49,9433.36,7462.49,31332.34,122710.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,25576,138714.23,19113.21,12522.23,170349.67,27432.18,12424.5,2849.03,42705.71,213055.38 +Calendar,2015,5,Culture & Recreation,ART,Arts Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3549,Arts Program Assistant,38228,48887.08,0.0,0.0,48887.08,3329.34,10399.91,3820.54,17549.79,66436.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,31018,107889.5,1265.24,3196.43,112351.17,22139.3,12424.5,1865.92,36429.72,148780.89 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,9446,50267.2,0.0,0.0,50267.2,8753.33,6355.6,3994.52,19103.45,69370.65 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,39572,97840.41,10135.08,1462.9,109438.39,20289.4,12412.56,9035.1,41737.06,151175.45 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,46771,110041.06,0.0,3618.65,113659.71,22139.91,12424.5,9493.9,44058.31,157718.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,35259,49130.0,0.0,0.0,49130.0,11778.25,12424.5,3950.66,28153.41,77283.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49221,119464.98,29356.3,13994.34,162815.62,23629.31,12424.5,2719.57,38773.38,201589.0 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,26964,85698.23,10557.62,5737.43,101993.28,17679.79,12424.5,8143.39,38247.68,140240.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,38970,67677.46,1780.68,3742.37,73200.51,14400.26,11122.31,6022.47,31545.04,104745.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26147,112159.76,23488.75,17763.55,153412.06,24677.34,15052.76,2559.82,42289.92,195701.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,38151,12520.0,0.0,0.0,12520.0,2269.88,1911.46,971.76,5153.1,17673.1 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,52051,10805.1,0.0,850.2,11655.3,0.0,2849.28,904.64,3753.92,15409.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15904,31375.5,2417.42,653.17,34446.09,9121.43,6221.51,2640.91,17983.85,52429.94 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,18108,121472.0,0.0,3000.0,124472.0,24461.52,12424.5,32190.53,69076.55,193548.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,42832,58101.05,0.0,1404.0,59505.05,12265.91,12424.5,4864.36,29554.77,89059.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46646,67525.03,2344.78,3045.23,72915.04,19351.29,13304.07,5530.79,38186.15,111101.19 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,38515,39708.46,0.0,1662.64,41371.1,9884.0,9629.52,3415.78,22929.3,64300.4 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8274,Police Cadet,41635,6650.81,0.0,0.0,6650.81,0.0,2484.9,515.16,3000.06,9650.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28730,127869.19,0.0,30959.43,158828.62,28397.09,10981.35,10132.23,49510.67,208339.29 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9277,7267.67,0.0,46.75,7314.42,461.53,0.0,2399.46,2860.99,10175.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,9313,37508.01,3202.73,0.0,40710.74,6980.23,4778.65,3319.13,15078.01,55788.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,53212,24212.24,0.0,4656.18,28868.42,1118.24,0.0,969.21,2087.45,30955.87 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,31753,37640.0,367.57,2528.14,40535.71,9418.0,9557.31,3292.29,22267.6,62803.31 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10374,140116.1,0.0,2190.48,142306.58,28292.66,12405.08,8070.62,48768.36,191074.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28583,65777.21,24672.1,2430.19,92879.5,18686.93,12963.42,7258.78,38909.13,131788.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,52806,135421.01,0.0,0.0,135421.01,27253.5,12424.5,9986.98,49664.98,185085.99 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,4770,55015.7,8962.06,8128.76,72106.52,13678.67,12376.71,5732.42,31787.8,103894.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,34861,707.53,0.0,0.0,707.53,7955.83,54.95,0.03,8010.81,8718.34 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",41010,130341.6,4092.78,25047.92,159482.3,29234.95,15052.74,2672.45,46960.14,206442.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,45884,62461.12,0.0,0.0,62461.12,12844.47,12424.5,5016.32,30285.29,92746.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37272,36643.15,10303.58,1255.9,48202.63,9799.98,11443.97,3492.62,24736.57,72939.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10888,36174.81,31.46,386.82,36593.09,8327.29,7128.26,2768.13,18223.68,54816.77 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,5255,82717.03,7023.15,4628.04,94368.22,17204.17,12424.5,7447.35,37076.02,131444.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5501,15840.65,1482.34,775.0,18097.99,3948.12,3044.06,1394.29,8386.47,26484.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42537,56473.13,0.0,11145.71,67618.84,831.38,0.0,5255.69,6087.07,73705.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,4264,17090.0,3012.13,2189.75,22291.88,3392.36,2389.32,1814.24,7595.92,29887.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,8262,133044.32,0.0,6652.23,139696.55,28085.05,12206.84,10201.38,50493.27,190189.82 +Calendar,2015,6,General Administration & Finance,ETH,Ethics Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,12869,97503.75,0.0,0.0,97503.75,20084.38,12424.5,7252.3,39761.18,137264.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,17257,74165.06,0.0,624.0,74789.06,15414.45,12424.5,6201.07,34040.02,108829.08 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1280,Employee Relations Representat,12955,76796.0,0.0,0.0,76796.0,15807.3,12424.5,6206.97,34438.77,111234.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,60,13669.25,0.0,593.98,14263.23,0.0,5865.8,1151.89,7017.69,21280.92 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,19421,29810.47,0.0,0.0,29810.47,0.0,5994.22,2311.19,8305.41,38115.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15935,96644.53,2857.91,22852.6,122355.04,22996.76,8597.4,8662.09,40256.25,162611.29 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,22703,108816.68,0.0,0.0,108816.68,21914.97,9861.95,16704.98,48481.9,157298.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,35574,69746.0,0.0,624.0,70370.0,14503.67,12424.5,5541.44,32469.61,102839.61 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,11355,49599.15,6379.38,2872.13,58850.66,11725.56,10719.71,4755.34,27200.61,86051.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,33330,32904.85,716.98,406.45,34028.28,6409.06,6537.81,2545.61,15492.48,49520.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,28186,63887.0,47.27,0.0,63934.27,13167.4,12424.5,5063.05,30654.95,94589.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,37345,47143.48,0.0,0.0,47143.48,11304.18,12424.5,3834.16,27562.84,74706.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52859,20171.75,0.0,973.89,21145.64,2178.27,0.0,738.01,2916.28,24061.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,45131,141.14,0.0,4.03,145.17,37.45,0.0,0.0,37.45,182.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,10624,58782.03,0.0,0.0,58782.03,12115.29,12424.5,4874.83,29414.62,88196.65 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,28275,85030.45,0.0,8503.07,93533.52,20102.86,6447.01,7402.0,33951.87,127485.39 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,19871,56601.52,1052.03,7096.64,64750.19,13778.2,12263.82,5183.28,31225.3,95975.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,29650,68421.0,0.0,0.0,68421.0,14081.09,12423.01,5468.27,31972.37,100393.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,39275,61987.06,5874.2,1776.25,69637.51,12775.94,12329.3,5724.56,30829.8,100467.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,19497,81410.0,13715.65,4416.04,99541.69,16762.73,11946.64,7953.25,36662.62,136204.31 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3632,Librarian 2,322,94364.61,0.0,971.67,95336.28,19645.71,12406.35,7709.89,39761.95,135098.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34445,3195.8,0.0,0.0,3195.8,0.0,1385.81,247.42,1633.23,4829.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,38916,49679.0,0.0,2523.4,52202.4,12193.99,12424.5,4111.94,28730.43,80932.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20162,2734.5,0.0,0.0,2734.5,0.0,716.79,212.25,929.04,3663.54 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,323.0,Members of Boards and Commissions,0900,Management,0112,"Bdcomm Mbr, Grp3,M=$50/Mtg",53010,650.0,0.0,0.0,650.0,0.0,77.65,50.38,128.03,778.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,8346,22973.0,0.0,0.0,22973.0,4275.25,4300.79,1885.51,10461.55,33434.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,13600,5449.74,0.0,0.0,5449.74,0.0,1642.67,422.99,2065.66,7515.4 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,42901,58217.07,0.0,482.9,58699.97,12056.94,9637.96,4835.57,26530.47,85230.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,44593,117135.33,6902.26,13088.58,137126.17,23184.68,12424.5,2325.49,37934.67,175060.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,6106,113233.6,22537.43,18961.55,154732.58,25036.03,15196.12,2629.33,42861.48,197594.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11144,7602.88,0.0,0.0,7602.88,0.0,2444.57,635.44,3080.01,10682.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,9555,5369.36,0.0,702.73,6072.09,1193.47,414.96,211.49,1819.92,7892.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2846,Nutritionist,31048,79222.12,0.0,100.0,79322.12,16312.34,9987.39,6424.21,32723.94,112046.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,50266,58792.99,12503.21,6193.94,77490.14,13098.82,11427.68,6081.69,30608.19,108098.33 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6447,135388.37,0.0,20137.03,155525.4,28366.56,12361.78,6967.71,47696.05,203221.45 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,39707,99696.86,15448.52,0.0,115145.38,22743.11,12415.54,1949.52,37108.17,152253.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,23393,107978.0,14067.6,4024.5,126070.1,22448.29,12424.5,9794.67,44667.46,170737.56 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,12114,91363.06,1163.53,7966.35,100492.94,18576.8,10990.91,2394.96,31962.67,132455.61 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,41895,78963.08,0.0,912.76,79875.84,16463.08,12424.5,6176.63,35064.21,114940.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,24122,107487.94,983.87,12812.88,121284.69,24358.11,12360.82,9752.77,46471.7,167756.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,590,45304.4,0.0,6743.51,52047.91,11857.47,12424.5,3800.14,28082.11,80130.02 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8262,Criminalist III,6468,145303.0,29538.4,0.0,174841.4,29247.3,12663.44,10734.38,52645.12,227486.52 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,6772,10059.0,487.16,25.13,10571.29,0.0,3345.06,819.93,4164.99,14736.28 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,14954,75187.07,0.0,1172.67,76359.74,15764.37,12125.42,6043.69,33933.48,110293.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,44997,14902.91,0.0,323.86,15226.77,0.0,1140.91,1180.57,2321.48,17548.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,6741,59959.43,4123.74,0.0,64083.17,12328.85,12424.48,5099.04,29852.37,93935.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,39986,34050.0,0.0,0.0,34050.0,6336.71,5734.37,2712.0,14783.08,48833.08 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,26068,102028.59,17793.51,4300.67,124122.77,21184.84,12343.32,2069.85,35598.01,159720.78 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,5119,89028.02,0.0,0.0,89028.02,18349.02,12424.5,7174.44,37947.96,126975.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33905,44199.97,4200.89,931.06,49331.92,11691.03,13032.4,3734.93,28458.36,77790.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,31600,65744.5,13049.22,1688.98,80482.7,18418.52,12952.72,6025.38,37396.62,117879.32 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",44658,93281.03,0.0,624.0,93905.03,19354.57,12424.5,7774.09,39553.16,133458.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,7650,141158.81,26924.89,24087.49,192171.19,28431.13,12370.74,3222.33,44024.2,236195.39 +Calendar,2015,1,Public Protection,SHF,Sheriff,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,10548,98157.01,0.0,0.0,98157.01,20230.58,12424.5,7813.17,40468.25,138625.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,48488,14712.63,0.0,0.0,14712.63,2738.02,2616.32,1135.47,6489.81,21202.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,45176,117828.84,267.21,21597.28,139693.33,26909.99,10427.32,9450.45,46787.76,186481.09 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,30656,65774.02,0.0,0.0,65774.02,13556.27,12424.5,5419.78,31400.55,97174.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,36026,197952.04,0.0,0.0,197952.04,39862.92,12424.52,11097.53,63384.97,261337.01 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,24898,77059.97,0.0,125.0,77184.97,15882.4,12422.71,6194.29,34499.4,111684.37 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,22663,48010.0,2629.92,398.68,51038.6,11611.02,12424.5,4220.22,28255.74,79294.34 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,18936,45268.22,1823.88,3295.73,50387.83,11293.91,10831.42,4083.47,26208.8,76596.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,53040,66795.26,8771.17,2354.32,77920.75,18950.31,13165.97,5712.89,37829.17,115749.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,9541,77071.04,9785.1,1480.0,88336.14,16192.28,12424.5,7238.96,35855.74,124191.88 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,39997,130845.81,39091.31,16015.0,185952.12,28622.09,15196.12,3160.95,46979.16,232931.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,38051,79722.0,20838.39,915.0,101475.39,16639.68,12424.39,7934.55,36998.62,138474.01 +Calendar,2015,6,General Administration & Finance,CON,Controller,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1249,Personnel Trainee,46252,33659.1,0.0,0.0,33659.1,7437.51,7120.2,2676.56,17234.27,50893.37 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17188,31192.04,0.0,0.0,31192.04,6996.4,3822.92,2516.16,13335.48,44527.52 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8147,Sr District Atty Investigator,51560,119046.08,1982.87,7142.76,128171.71,28784.44,12424.5,2127.46,43336.4,171508.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5366,Engineering Associate 2,50248,96254.01,0.0,0.0,96254.01,19838.21,12424.5,7860.57,40123.28,136377.29 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,31084,61280.0,0.0,252.32,61532.32,13204.8,3822.92,1028.16,18055.88,79588.2 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2916,Social Work Specialist,12304,76509.41,0.0,0.0,76509.41,15751.96,12424.5,6224.45,34400.91,110910.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5568,65137.41,8725.98,671.6,74534.99,14958.06,12832.66,5478.15,33268.87,107803.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,46315,112696.2,3044.99,12897.78,128638.97,22291.43,12424.5,2198.81,36914.74,165553.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,20385,106732.08,0.0,250.0,106982.08,21359.45,8351.9,8664.87,38376.22,145358.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",8554,93281.04,0.0,1520.0,94801.04,19537.74,12424.51,7559.72,39521.97,134323.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,39841,112170.34,1707.41,11582.24,125459.99,23347.67,15052.76,2063.66,40464.09,165924.08 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),22849,49090.33,0.0,647.61,49737.94,0.0,3309.22,3855.86,7165.08,56903.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,53136,13362.3,0.0,0.0,13362.3,2486.71,2341.54,997.2,5825.45,19187.75 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45174,155012.5,0.0,1500.0,156512.5,31430.16,12424.5,10492.03,54346.69,210859.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,7263,Maintenance Manager,6127,118196.51,0.0,0.0,118196.51,23814.44,12185.57,26561.89,62561.9,180758.41 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,18971,56531.01,831.9,1013.7,58376.61,11791.96,12424.5,4582.25,28798.71,87175.32 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,18087,102571.65,0.0,0.0,102571.65,21099.62,0.0,8504.67,29604.29,132175.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,38544,94.05,0.0,0.0,94.05,0.0,23.89,7.28,31.17,125.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,25405,21290.5,0.0,0.0,21290.5,3609.94,6439.24,1708.87,11758.05,33048.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,3317,81942.02,18767.1,5598.97,106308.09,17261.52,12424.5,8683.0,38369.02,144677.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2549,56101.93,5296.92,1748.93,63147.78,15040.67,13357.07,4811.97,33209.71,96357.49 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,19434,68067.05,536.67,0.0,68603.72,14029.01,12424.5,5678.84,32132.35,100736.07 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,40065,73957.01,9478.53,624.0,84059.54,15371.59,12424.5,6883.99,34680.08,118739.62 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,41400,81157.05,930.6,600.0,82687.65,16838.39,12424.5,6470.67,35733.56,118421.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,42794,65911.24,30628.85,7920.53,104460.62,14313.91,9323.45,8317.54,31954.9,136415.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,40339,130845.87,37195.5,16355.7,184397.07,28930.04,15196.12,3090.74,47216.9,231613.97 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,45759,2041.59,0.0,13.73,2055.32,0.0,355.41,159.53,514.94,2570.26 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),48064,184289.0,0.0,5185.78,189474.78,38130.64,12424.5,11023.82,61578.96,251053.74 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,31111,139008.81,15005.93,9656.18,163670.92,27476.53,12424.5,2790.5,42691.53,206362.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2266,4819.88,0.0,0.0,4819.88,0.0,0.0,288.23,288.23,5108.11 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,38372,86850.02,0.0,2200.0,89050.02,18332.66,12424.5,6995.85,37753.01,126803.03 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2100,Hospital Administration,2119,Health Care Analyst,24488,8381.0,0.0,0.0,8381.0,0.0,1385.81,647.3,2033.11,10414.11 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,26102,88592.07,317.53,0.0,88909.6,18259.53,12424.5,7222.54,37906.57,126816.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6321,Permit Technician I,29382,27479.53,237.17,0.0,27716.7,6165.8,6690.11,2248.34,15104.25,42820.95 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,409,91836.24,20522.6,6933.21,119292.05,20146.68,12442.42,1980.59,34569.69,153861.74 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",20631,91820.42,7962.61,13808.45,113591.48,22002.46,9318.38,1922.54,33243.38,146834.86 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H033,"Captain, Emergency Med Svcs",8298,130980.83,7093.93,11452.76,149527.52,28176.2,13258.08,2362.66,43796.94,193324.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,11417,69105.02,0.0,0.0,69105.02,14161.44,12424.5,5517.12,32103.06,101208.08 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4222,Sr Personal Property Auditor,33338,100554.03,0.0,1480.0,102034.03,21009.41,12424.5,8378.81,41812.72,143846.75 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,10687,47732.73,298.25,5192.03,53223.01,12109.24,12071.77,4061.13,28242.14,81465.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,6981,72855.92,0.0,581.06,73436.98,15037.56,11569.48,5817.55,32424.59,105861.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3213,Aquatics Facility Asst Supv,834,57056.61,235.58,458.98,57751.17,12936.06,12902.36,4732.46,30570.88,88322.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,52472,70245.0,25634.41,8835.24,104714.65,15674.5,12424.5,8488.37,36587.37,141302.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,25230,61736.0,607.08,0.0,62343.08,13655.07,12424.51,5068.22,31147.8,93490.88 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2305,Psychiatric Technician,33903,21148.33,0.0,8918.26,30066.59,5074.9,3482.45,2454.91,11012.26,41078.85 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,29035,30142.76,582.71,0.0,30725.47,0.0,4411.3,2380.99,6792.29,37517.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26580,143954.5,0.0,250.0,144204.5,28957.29,12424.5,10184.16,51565.95,195770.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5262,Landscape Architect Assoc 1,50684,92537.3,0.0,0.0,92537.3,19055.52,12424.49,7077.56,38557.57,131094.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6319,Senior Const Inspector,40761,26358.0,0.0,0.0,26358.0,4905.24,2867.2,1986.42,9758.86,36116.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,35996,78040.01,0.0,0.0,78040.01,16053.66,12424.5,6332.81,34810.97,112850.98 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,21227,5558.0,0.0,47.25,5605.25,1257.25,955.73,457.93,2670.91,8276.16 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,10291,119461.62,7728.44,6001.28,133191.34,23641.9,12424.5,2152.98,38219.38,171410.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,2828,56531.0,0.0,4138.63,60669.63,12299.41,12424.5,4769.85,29493.76,90163.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17243,37047.56,6785.67,1137.73,44970.96,9871.43,11571.28,3398.16,24840.87,69811.83 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,43050,132420.62,0.0,0.0,132420.62,26637.73,12361.91,9955.52,48955.16,181375.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,49278,5923.56,0.0,0.0,5923.56,0.0,2133.97,480.4,2614.37,8537.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,2157,6213.48,0.0,219.67,6433.15,0.0,1554.55,498.06,2052.61,8485.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,9109,88831.0,20876.12,8792.34,118499.46,19336.26,12424.5,9670.7,41431.46,159930.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,2028,84837.97,0.0,19157.49,103995.46,0.0,0.0,8226.5,8226.5,112221.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,42248,91736.11,912.81,3998.02,96646.94,18758.81,9557.31,1625.02,29941.14,126588.08 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8143,Sr Public Defenders Invstgtor,6814,101531.0,0.0,2064.0,103595.0,21352.49,12424.5,8329.0,42105.99,145700.99 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43658,80225.38,0.0,9378.47,89603.85,16999.87,7260.75,7296.96,31557.58,121161.43 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4220,Personal Property Auditor,31312,86850.0,0.0,480.0,87330.0,18000.35,12424.5,7046.84,37471.69,124801.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,28835,112159.76,2689.11,18970.08,133818.95,25056.23,15052.75,2140.15,42249.13,176068.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18075,27109.61,2929.03,770.47,30809.11,6991.25,8436.18,2305.49,17732.92,48542.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,39384,80357.01,748.8,345.6,81451.41,16637.01,12424.49,6500.29,35561.79,117013.2 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,8563,46171.37,0.0,359.59,46530.96,11214.65,11415.02,3774.31,26403.98,72934.94 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,7719,98157.0,0.0,0.0,98157.0,20230.58,12424.5,8069.59,40724.67,138881.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,24756,24950.5,219.29,2867.01,28036.8,6403.88,6212.25,2266.52,14882.65,42919.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,24578,72337.6,6133.8,0.0,78471.4,14905.38,12424.5,6080.35,33410.23,111881.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5288,Transit Planner 2,15122,40313.0,0.0,0.0,40313.0,9042.15,6212.24,3240.91,18495.3,58808.3 +Calendar,2015,1,Public Protection,FIR,Fire Department,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",50792,1061.45,0.0,0.0,1061.45,0.0,0.0,83.97,83.97,1145.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,45610,97934.01,0.0,1380.0,99314.01,20459.26,12424.5,8188.66,41072.42,140386.43 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1812,Assistant Retirement Analyst,47683,80108.01,0.0,0.0,80108.01,16502.33,12352.82,6520.08,35375.23,115483.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,41703,3566.75,0.0,39.25,3606.0,0.0,1185.71,279.61,1465.32,5071.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17482,16374.6,0.0,2381.44,18756.04,0.0,1433.6,1454.38,2887.98,21644.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,18175,87899.29,4383.15,1315.9,93598.34,18408.66,11207.87,7491.15,37107.68,130706.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,27741,50167.81,0.0,9353.22,59521.03,0.0,3760.14,997.7,4757.84,64278.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,35772,29448.34,0.0,147.04,29595.38,0.0,2153.5,2292.74,4446.24,34041.62 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,51305,101770.0,0.0,0.0,101770.0,20975.25,12424.5,8292.03,41691.78,143461.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14566,117137.51,14556.08,1541.64,133235.23,23176.47,12424.5,2263.86,37864.83,171100.06 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",30624,130341.64,79769.09,13007.53,223118.26,28092.18,15052.75,3797.4,46942.33,270060.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,49792,63887.0,1676.2,9705.52,75268.72,15166.48,12424.5,6180.35,33771.33,109040.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,31406,60991.42,5140.4,0.0,66131.82,12310.18,9987.42,5144.59,27442.19,93574.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,1708,67930.01,101.26,960.0,68991.27,14147.08,11946.63,5677.11,31770.82,100762.09 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,35970,119461.73,14749.18,7877.81,142088.72,23641.97,12424.5,2411.36,38477.83,180566.55 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,272C,Fiscal Services Supervisor,23563,100428.46,0.0,4876.0,105304.46,20674.81,12424.5,31947.88,65047.19,170351.65 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,37803,75745.09,3643.3,3573.57,82961.96,15957.61,12424.5,6602.15,34984.26,117946.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7204,Chief Water Service Inspector,41986,129811.0,6818.44,10046.51,146675.95,28238.73,12424.52,10199.58,50862.83,197538.78 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,27861,282.63,370.95,0.0,653.58,0.0,83.62,50.73,134.35,787.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,30634,92685.34,0.0,0.0,92685.34,19113.63,12424.51,7609.39,39147.53,131832.87 +Calendar,2015,1,Public Protection,POL,Police,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1229,Special Examiner,31735,206.5,0.0,0.0,206.5,0.0,0.0,265.34,265.34,471.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,33392,26082.16,32.32,0.0,26114.48,0.0,3603.88,2027.03,5630.91,31745.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,51491,66102.02,3118.8,2377.98,71598.8,14113.35,12424.5,5624.09,32161.94,103760.74 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,48662,136466.02,5290.31,18309.1,160065.43,35405.66,12424.5,2728.6,50558.76,210624.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,6865,12722.8,0.0,0.0,12722.8,0.0,5512.35,1045.7,6558.05,19280.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,6397,118104.05,0.0,0.0,118104.05,23768.42,12424.5,9717.56,45910.48,164014.53 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,20981,97268.25,30030.15,20246.77,147545.17,28584.65,12362.74,2468.15,43415.54,190960.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,9339,28499.37,164.98,8554.01,37218.36,6585.34,5576.95,3039.63,15201.92,52420.28 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,33428,1506.75,211.97,0.0,1718.72,0.0,453.97,133.4,587.37,2306.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,26213,61289.15,2282.22,9181.89,72753.26,13847.86,11803.27,5944.6,31595.73,104348.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,22028,130833.54,60637.87,15903.74,207375.15,28900.73,15196.12,3074.41,47171.26,254546.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,37852,1365.88,0.0,0.0,1365.88,0.0,666.03,106.0,772.03,2137.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9703,Emp & Training Spec 2,1464,79454.75,0.0,625.18,80079.93,16462.81,12447.98,6512.14,35422.93,115502.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,20936,61453.11,6752.22,8092.08,76297.41,13887.0,12224.33,5958.21,32069.54,108366.95 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,38869,1145.73,0.0,0.0,1145.73,0.0,283.73,88.87,372.6,1518.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,7670,56531.0,0.0,5626.31,62157.31,12311.3,12424.5,4881.15,29616.95,91774.26 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,38054,157786.14,0.0,1411.84,159197.98,32001.28,10468.24,10440.62,52910.14,212108.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,39224,116976.01,0.0,2758.84,119734.85,24082.14,12424.49,9585.19,46091.82,165826.67 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,16169,70904.79,0.0,1356.4,72261.19,14829.14,11874.96,5584.15,32288.25,104549.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,44224,54020.01,5466.88,608.16,60095.05,11197.38,10512.99,4875.14,26585.51,86680.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2622,Dietetic Technician,48259,46696.56,0.0,1181.65,47878.21,10018.63,9557.31,3955.14,23531.08,71409.29 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,46030,73749.0,3513.77,4206.88,81469.65,15630.28,12424.5,6476.42,34531.2,116000.85 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,29166,30506.66,0.0,1240.0,31746.66,6509.61,6170.43,2561.34,15241.38,46988.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,15829,99602.08,5961.84,0.0,105563.92,20528.27,12424.5,8015.89,40968.66,146532.58 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),35538,144441.04,0.0,1500.0,145941.04,29369.51,12424.5,10301.7,52095.71,198036.75 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,47008,140580.09,12254.51,18160.94,170995.54,27778.16,12424.5,2868.95,43071.61,214067.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2819,Assistant Health Educator,36817,81116.02,0.0,400.0,81516.02,16792.97,12424.62,6397.81,35615.4,117131.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,17017,130845.83,54795.16,12403.47,198044.46,28232.42,15196.12,3322.68,46751.22,244795.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47067,5586.3,0.0,172.62,5758.92,0.0,2365.43,462.4,2827.83,8586.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,6166,20540.0,0.0,0.0,20540.0,5299.32,6212.25,1668.35,13179.92,33719.92 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,34197,7277.5,0.0,0.0,7277.5,0.0,1194.67,563.42,1758.09,9035.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,29313,1665.22,454.16,0.0,2119.38,448.18,525.65,162.66,1136.49,3255.87 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50760,886.05,0.0,0.0,886.05,0.0,295.68,142.15,437.83,1323.88 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,15584,36168.75,20.17,4359.57,40548.49,8141.13,8220.78,3315.29,19677.2,60225.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,23230,119455.21,32866.3,6230.96,158552.47,23664.86,12424.5,2647.14,38736.5,197288.97 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,39561,18384.1,181.72,0.0,18565.82,0.0,6045.0,1426.2,7471.2,26037.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,44383,56531.0,0.0,6169.83,62700.83,12363.05,12424.5,4825.06,29612.61,92313.44 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37636,112402.13,4559.78,11102.03,128063.94,22116.48,11686.79,2126.74,35930.01,163993.95 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,28514,21194.14,0.0,0.0,21194.14,3944.24,2622.29,1694.89,8261.42,29455.56 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45531,2845.5,0.0,0.0,2845.5,0.0,1214.08,220.29,1434.37,4279.87 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,50415,68274.27,0.0,0.0,68274.27,14040.86,12424.5,5166.95,31632.31,99906.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27273,29750.4,4.84,406.74,30161.98,6527.23,4587.51,2320.4,13435.14,43597.12 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23679,0.0,0.0,740.49,740.49,0.0,68.5,56.65,125.15,865.64 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,1189,7282.5,0.0,6.0,7288.5,0.0,2900.04,564.28,3464.32,10752.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,19655,24235.43,2873.09,1088.52,28197.04,6240.66,7525.66,2033.24,15799.56,43996.6 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,36424,118104.05,0.0,0.0,118104.05,23768.42,12424.5,9350.46,45543.38,163647.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,3531,27502.26,20594.57,2144.43,50241.26,6698.09,6331.72,4181.79,17211.6,67452.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,7235,55255.99,4298.59,561.07,60115.65,11444.89,11171.24,4815.8,27431.93,87547.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,15908,40092.0,4952.44,1402.81,46447.25,10751.58,12535.96,3425.39,26712.93,73160.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,15183,56531.0,0.0,3772.97,60303.97,12052.95,12424.5,4941.59,29419.04,89723.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,42343,116976.02,0.0,0.0,116976.02,23541.49,12424.5,9572.57,45538.56,162514.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,22140,38516.5,0.0,0.0,38516.5,8980.88,9509.52,3013.11,21503.51,60020.01 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,3650,12057.81,0.0,167.21,12225.02,0.0,3011.03,947.37,3958.4,16183.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,15652,59819.93,0.0,1000.0,60819.93,13564.88,12472.29,4898.02,30935.19,91755.12 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,50984,7929.7,0.0,10.74,7940.44,0.0,2646.18,615.58,3261.76,11202.2 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,2540,97353.57,18961.31,8498.26,124813.14,25728.49,12373.73,2069.95,40172.17,164985.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,21601,35287.0,0.0,0.0,35287.0,6566.9,5256.56,2843.37,14666.83,49953.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,33139,61967.82,17320.09,6641.86,85929.77,13190.37,10961.04,6781.1,30932.51,116862.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,23883,158367.0,7728.37,19911.58,186006.95,31259.76,12424.5,3104.95,46789.21,232796.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,24628,77071.05,0.0,0.0,77071.05,15884.7,12424.5,6347.96,34657.16,111728.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15336,20941.67,0.0,0.0,20941.67,1339.69,9037.57,1698.37,12075.63,33017.3 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50188,14694.0,0.0,7.8,14701.8,0.0,5851.46,1139.68,6991.14,21692.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1827,Administrative Services Mgr,42591,103075.0,0.0,0.0,103075.0,21244.17,12424.51,8475.86,42144.54,145219.54 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,35988,24655.55,0.0,458.77,25114.32,6037.58,6090.27,2028.47,14156.32,39270.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,5684,107226.8,0.0,20.31,107247.11,0.0,7831.43,1797.15,9628.58,116875.69 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,13950,119450.18,3213.79,8958.66,131622.63,23683.74,12424.5,2233.3,38341.54,169964.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,24415,62811.0,8685.25,12571.64,84067.89,14808.7,12424.5,6845.33,34078.53,118146.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,13391,79231.55,0.0,343.51,79575.06,16399.79,12398.76,6600.01,35398.56,114973.62 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,29225,67132.5,0.0,622.8,67755.3,13967.36,12400.61,5617.69,31985.66,99740.96 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2974,30868.55,17070.84,2082.63,50022.02,6987.5,4300.79,827.88,12116.17,62138.19 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,27646,120643.51,11020.66,9617.45,141281.62,23874.6,12424.5,2504.41,38803.51,180085.13 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,252,19995.02,240.0,0.0,20235.02,0.0,4780.15,1568.89,6349.04,26584.06 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,14114,53579.3,1100.54,2647.98,57327.82,11389.56,10775.86,4650.91,26816.33,84144.15 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20030,57301.14,816.91,5615.31,63733.36,11287.86,6245.7,5017.12,22550.68,86284.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,10058,3159.36,0.0,0.0,3159.36,0.0,887.03,244.59,1131.62,4290.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,8853,25627.0,0.0,0.0,25627.0,5748.12,3345.06,2053.21,11146.39,36773.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50003,66280.43,18969.41,613.78,85863.62,18309.34,13061.07,6710.22,38080.63,123944.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,33285,7470.01,2552.73,921.78,10944.52,1798.5,1433.6,888.03,4120.13,15064.65 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7322,Auto Body&Fender Wrk Asst Sprv,14210,48836.01,10929.37,2512.79,62278.17,9728.35,6212.25,4965.68,20906.28,83184.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2469,Diagnostic Imaging Tech III,24366,80030.8,309.55,314.86,80655.21,16133.15,8058.67,6447.56,30639.38,111294.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,36674,61735.0,10012.0,624.0,72371.0,12852.62,12424.5,5961.26,31238.38,103609.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34394,119031.24,173.61,13795.34,133000.19,26652.33,10866.66,8930.95,46449.94,179450.13 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,18730,1417.35,0.0,57.06,1474.41,0.0,358.4,114.15,472.55,1946.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,42704,8712.09,0.0,264.68,8976.77,6625.24,0.0,440.31,7065.55,16042.32 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14697,1341.0,0.0,268.2,1609.2,184.61,0.0,635.55,820.16,2429.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,22242,82717.07,0.0,624.0,83341.07,17177.1,12424.5,6659.13,36260.73,119601.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,4820,166207.04,0.0,0.0,166207.04,33300.15,12424.5,18744.6,64469.25,230676.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,15423,25763.28,0.0,3363.88,29127.16,6072.64,5632.84,2404.81,14110.29,43237.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,24571,9874.99,0.0,0.0,9874.99,0.0,0.0,780.94,780.94,10655.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,13461,56531.0,976.5,3394.11,60901.61,11686.83,12424.5,5033.56,29144.89,90046.5 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,32724,3813.07,0.0,0.0,3813.07,0.0,1261.86,295.2,1557.06,5370.13 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,17707,56531.0,2475.06,1117.61,60123.67,11881.53,12424.5,4967.52,29273.55,89397.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,45419,86143.05,4261.95,19249.81,109654.81,18899.73,5577.89,8687.14,33164.76,142819.57 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,25928,99296.2,0.0,0.0,99296.2,20446.85,12424.51,8010.84,40882.2,140178.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2482,Water Quality Tech III,48661,7146.3,0.0,0.0,7146.3,1602.92,955.73,580.26,3138.91,10285.21 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,36247,56043.0,649.05,312.0,57004.05,12364.3,6212.25,4698.8,23275.35,80279.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,15767,142816.9,2594.58,12680.82,158092.3,27607.47,12376.71,2563.69,42547.87,200640.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,50626,26786.9,0.0,0.0,26786.9,6008.3,5256.52,2196.2,13461.02,40247.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9508,Prpl Permit And Citation Clerk,48348,9059.6,1734.26,0.0,10793.86,1685.99,1430.61,857.02,3973.62,14767.48 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2910,Social Worker,10430,7941.0,0.0,100.0,8041.0,1803.59,1433.6,667.01,3904.2,11945.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,2645,6935.95,512.05,279.35,7727.35,1560.44,890.03,616.91,3067.38,10794.73 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2292,Shelter Veterinarian,31614,45134.81,0.0,4258.0,49392.81,9837.71,5065.37,3974.4,18877.48,68270.29 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,36068,84395.7,0.0,2230.94,86626.64,17853.64,12394.64,7050.51,37298.79,123925.43 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,11005,119465.64,2240.06,7565.01,129270.71,23627.27,12424.5,2145.98,38197.75,167468.46 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,51116,6724.32,0.0,108.11,6832.43,0.0,2241.49,529.27,2770.76,9603.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,9012,94610.17,380.83,0.0,94991.0,19492.25,12424.5,7466.76,39383.51,134374.51 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,27711,2543.2,0.0,0.0,2543.2,0.0,382.3,196.9,579.2,3122.4 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1956,Senior Purchaser,41775,104598.05,0.0,3677.69,108275.74,22325.81,12424.5,8721.22,43471.53,151747.27 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,32955,127129.01,0.0,0.0,127129.01,25584.69,12424.5,18300.58,56309.77,183438.78 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,3321,80955.13,51205.44,18434.33,150594.9,24292.03,10273.99,2570.68,37136.7,187731.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",28718,94388.0,9762.41,685.52,104835.93,19593.76,12424.5,8569.3,40587.56,145423.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",0900,Management,5212,Engineer/Architect Principal,12000,23620.0,0.0,0.0,23620.0,4282.32,1911.45,1841.27,8035.04,31655.04 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8133,Victim/Witness Investigator 3,24979,45145.9,0.0,0.0,45145.9,9734.5,5978.1,3639.43,19352.03,64497.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29263,102019.06,0.0,0.0,102019.06,21026.27,12424.51,8325.73,41776.51,143795.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1934,Storekeeper,7649,59229.01,1169.44,4928.62,65327.07,12207.44,12424.5,4903.64,29535.58,94862.65 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42262,10163.75,0.0,124.47,10288.22,140.37,0.0,3462.74,3603.11,13891.33 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,3713,67846.13,0.0,7185.61,75031.74,14845.31,12412.56,5784.28,33042.15,108073.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,42782,97392.35,6777.69,7366.67,111536.71,25481.3,12376.71,1899.0,39757.01,151293.72 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,39444,4335.19,0.0,6469.06,10804.25,1118.48,1128.96,850.6,3098.04,13902.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5261,Architectural Assistant 2,18525,67563.05,0.0,0.0,67563.05,13634.66,10035.19,5209.81,28879.66,96442.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,40136,73585.0,0.0,0.0,73585.0,15150.15,12382.69,5765.0,33297.84,106882.84 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,43474,49813.8,0.0,8052.64,57866.44,9733.02,0.0,7769.86,17502.88,75369.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,21534,36850.0,0.0,0.0,36850.0,6932.66,6212.25,2951.27,16096.18,52946.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,8021,14963.2,0.0,0.0,14963.2,0.0,4919.03,1160.19,6079.22,21042.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8088,119961.04,20541.58,18608.67,159111.29,23720.98,12424.5,2665.83,38811.31,197922.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,46911,7202.89,45.38,290.4,7538.67,1858.35,1777.89,620.97,4257.21,11795.88 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,30166,82236.01,0.0,4540.0,86776.01,16925.99,12424.5,7201.5,36551.99,123328.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,797,25463.01,0.0,0.0,25463.01,5599.29,5734.39,2035.87,13369.55,38832.56 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,14281,50380.56,3233.5,6531.09,60145.15,12038.78,11205.95,4850.39,28095.12,88240.27 +Calendar,2015,1,Public Protection,ADP,Adult Probation,351.0,Municipal Executive Association - Miscellaneous,8400,Probation & Parole,8592,Chief Dep Adlt Prob Of (SFERS),38335,166640.0,0.0,0.0,166640.0,33536.81,12424.5,20713.55,66674.86,233314.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,20099,70245.06,1945.08,505.8,72695.94,14496.47,12424.5,5905.26,32826.23,105522.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,30506,97344.03,40192.55,20324.55,157861.13,27854.67,12424.5,2634.36,42913.53,200774.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,34400,67261.0,0.0,624.0,67885.0,13991.51,12424.5,5576.19,31992.2,99877.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,33029,9394.86,0.0,9729.06,19123.92,2423.87,2350.48,1586.23,6360.58,25484.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,50318,77071.04,0.0,0.0,77071.04,15884.7,12424.5,6392.91,34702.11,111773.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5266,Architectural Associate 2,23876,170758.15,0.0,0.0,170758.15,34271.47,12413.7,10718.49,57403.66,228161.81 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8149,Asst Chf Dist Atty's Invstgtor,1643,126833.03,0.0,7609.98,134443.01,30667.45,12424.5,2192.33,45284.28,179727.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11546,66198.39,13987.07,870.2,81055.66,18354.28,13044.83,6159.67,37558.78,118614.44 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,29089,9463.59,0.0,0.0,9463.59,0.0,12424.5,137.22,12561.72,22025.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,6423,46008.2,0.0,520.8,46529.0,9939.45,9031.66,3647.7,22618.81,69147.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,51361,82407.54,10194.83,0.0,92602.37,16962.53,12424.5,7575.58,36962.61,129564.98 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),47228,160646.21,0.0,1500.0,162146.21,32601.36,12418.53,10498.39,55518.28,217664.49 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48108,2511.25,0.0,0.98,2512.23,0.0,1224.53,194.88,1419.41,3931.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1480,Principal Water Services Clerk,4961,76728.0,2970.59,0.0,79698.59,15813.98,12424.5,5731.32,33969.8,113668.39 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42624,11189.75,0.0,170.7,11360.45,0.0,4790.6,919.58,5710.18,17070.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,6276,143188.0,0.0,0.0,143188.0,28816.76,12424.51,10163.75,51405.02,194593.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,27473,82467.81,0.0,0.0,82467.81,16974.35,12424.5,6710.16,36109.01,118576.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,37334,39008.01,0.0,0.0,39008.01,7072.16,3345.06,2164.38,12581.6,51589.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,23340,8152.0,231.19,1762.88,10146.07,0.0,1911.46,804.23,2715.69,12861.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9179,"Manager V, MTA",40219,148257.05,0.0,0.0,148257.05,30578.09,12424.5,18585.0,61587.59,209844.64 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48552,14652.6,0.0,1036.15,15688.75,0.0,0.0,1240.99,1240.99,16929.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,41806,26448.14,0.0,449.75,26897.89,6441.54,6528.84,2157.82,15128.2,42026.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,18636,61272.55,20425.4,1508.51,83206.46,12649.28,12185.57,6745.71,31580.56,114787.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,323.0,Members of Boards and Commissions,0900,Management,0114,"Bdcomm Mbr, Grp5,M$100/Mo",24746,1081.0,0.0,0.0,1081.0,0.0,0.0,85.5,85.5,1166.5 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24072,113233.6,11196.32,19032.28,143462.2,25090.15,15196.12,2445.27,42731.54,186193.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,22181,81733.45,773.14,1490.0,83996.59,17193.38,11994.43,6400.31,35588.12,119584.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,10594,66102.01,473.82,830.0,67405.83,13802.22,12424.5,5543.97,31770.69,99176.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",16103,91946.54,15129.04,3918.61,110994.19,19428.39,12185.57,8849.59,40463.55,151457.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,49355,42153.2,76.77,3004.72,45234.69,9775.6,8171.5,4210.07,22157.17,67391.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9100,Street Transit,9144,"Investigator,Taxi & Accesssvcs",24074,78365.0,0.0,0.0,78365.0,16445.32,10513.04,6263.04,33221.4,111586.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,35683,51547.7,0.0,7743.88,59291.58,13430.73,12424.5,4841.66,30696.89,89988.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,42062,128951.19,0.0,2716.99,131668.18,26443.61,12424.5,17301.94,56170.05,187838.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,26100,53538.9,0.0,0.0,53538.9,10667.93,9079.32,4342.63,24089.88,77628.78 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2618,Food Service Supervisor,2794,32409.07,2637.21,2195.87,37242.15,1180.26,7696.62,2888.99,11765.87,49008.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33502,66327.04,1283.74,2953.11,70563.89,18976.33,13072.73,5489.07,37538.13,108102.02 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,10311,69248.08,354.51,7094.8,76697.39,15429.96,12248.77,6276.52,33955.25,110652.64 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7203,Bldg & Grounds Maint Sprv,26148,105799.16,22907.5,1386.47,130093.13,22028.77,12424.5,9945.61,44398.88,174492.01 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,44339,77071.0,0.0,336.0,77407.0,15948.82,12424.5,6340.27,34713.59,112120.59 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,16700,141260.62,3816.28,12954.66,158031.56,27949.97,12424.5,2637.85,43012.32,201043.88 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,48660,98461.08,2796.15,20658.34,121915.57,22542.39,9481.8,9765.63,41789.82,163705.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,3614,119463.82,11782.63,13065.03,144311.48,23633.49,12424.5,1191.86,37249.85,181561.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,49778,15550.08,0.0,0.0,15550.08,1005.89,5146.02,1256.93,7408.84,22958.92 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,41982,81542.6,6448.76,7077.19,95068.55,16971.97,12424.5,1584.64,30981.11,126049.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47202,2261.07,0.0,0.0,2261.07,0.0,949.46,175.49,1124.95,3386.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,25687,64455.0,36761.67,14609.37,115826.04,15320.19,12424.5,9407.9,37152.59,152978.63 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1800,"Budget, Admn & Stats Analysis",1835,Legislative Assistant,7266,52968.51,0.0,0.0,52968.51,10367.45,7884.78,4257.41,22509.64,75478.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,22736,98157.0,0.0,0.0,98157.0,20230.58,12424.5,8018.33,40673.41,138830.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,17806,2888.0,0.0,0.0,2888.0,745.1,955.73,239.35,1940.18,4828.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25413,17952.0,0.0,0.0,17952.0,0.0,4874.23,1392.02,6266.25,24218.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,37059,83699.04,0.0,0.0,83699.04,17250.57,12424.5,7449.49,37124.56,120823.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,27481,23764.78,2673.43,272.91,26711.12,6046.8,7385.89,2010.96,15443.65,42154.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1092,IT Operations Support Admin II,14659,56915.25,95.32,0.0,57010.57,11600.76,10797.25,4531.27,26929.28,83939.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,20529,67099.61,5445.0,2708.83,75253.44,19128.91,13223.13,5869.64,38221.68,113475.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41395,66016.39,9111.42,6644.94,81772.75,19920.94,13007.08,6328.63,39256.65,121029.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6323,Permit Technician III,1569,39734.93,0.0,0.0,39734.93,8186.98,7074.2,2982.29,18243.47,57978.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25371,148.26,0.0,7.89,156.15,0.0,36.32,12.12,48.44,204.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,40187,124003.4,0.0,0.0,124003.4,24253.89,8458.22,9677.93,42390.04,166393.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,49406,54946.32,90.04,952.11,55988.47,11462.19,10876.64,4557.27,26896.1,82884.57 +Calendar,2015,3,Human Welfare & Neighborhood Development,CHF,"Children, Youth & Their Families",790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,37763,55284.21,0.0,0.0,55284.21,11701.41,9705.51,4475.46,25882.38,81166.59 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,5872,38354.66,0.0,520.0,38874.66,7855.62,6449.69,3266.21,17571.52,56446.18 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,21928,61856.76,11317.39,900.0,74074.15,12933.21,12424.5,6059.89,31417.6,105491.75 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1222,Sr Payroll & Personnel Clerk,51348,75927.04,2358.28,2374.93,80660.25,15776.04,12424.5,6420.36,34620.9,115281.15 +Calendar,2015,4,Community Health,DPH,Public Health,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,9938,30776.02,2769.32,5.15,33550.49,6904.19,3822.92,2750.98,13478.09,47028.58 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,14107,837.43,0.0,0.0,837.43,0.0,201.6,64.83,266.43,1103.86 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,22247,17092.72,0.0,0.0,17092.72,3435.29,3249.49,1398.46,8083.24,25175.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,19021,2456.13,0.0,0.0,2456.13,0.0,1197.65,190.45,1388.1,3844.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,12433,139204.21,8732.53,16183.13,164119.87,27507.19,12424.5,1672.74,41604.43,205724.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,9306,17002.4,0.0,0.0,17002.4,3813.62,2532.69,1339.58,7685.89,24688.29 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,21212,19772.19,0.0,111.61,19883.8,4409.46,4254.13,1664.06,10327.65,30211.45 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,14059,7512.0,0.0,0.0,7512.0,1361.93,1146.88,583.06,3091.87,10603.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,10800,7784.96,0.0,0.0,7784.96,0.0,1726.28,602.7,2328.98,10113.94 +Calendar,2015,1,Public Protection,DAT,District Attorney,419.0,District Attorney Investigators' Association,8100,Legal & Court,8550,Dist Atty Investigator (SFERS),47088,107626.05,4673.33,6457.56,118756.94,23229.35,12203.49,1989.92,37422.76,156179.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,11430,73957.02,5970.87,0.0,79927.89,15242.91,12424.5,6554.97,34222.38,114150.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6281,Fire Safety Inspector 2,16386,135109.0,59998.0,8106.54,203213.54,28837.04,12424.5,11189.52,52451.06,255664.6 +Calendar,2015,1,Public Protection,PDR,Public Defender,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8106,Legal Process Clerk,34392,58219.66,0.0,1618.18,59837.84,12344.24,12308.62,4906.52,29559.38,89397.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,14208,12565.7,0.0,226.64,12792.34,3086.48,3787.07,1042.39,7915.94,20708.28 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,17859,3952.85,0.0,179.26,4132.11,662.73,0.0,661.76,1324.49,5456.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,15057,7271.6,34.78,667.8,7974.18,1599.02,2341.54,630.76,4571.32,12545.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,1101,67114.96,12570.26,4841.53,84526.75,19748.21,13222.3,6388.07,39358.58,123885.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7306,Automotive Body & Fender Wrk,37380,60018.0,6347.92,12587.05,78952.97,13766.52,9079.44,6268.64,29114.6,108067.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47484,15691.98,791.5,369.57,16853.05,4019.12,4885.75,1294.64,10199.51,27052.56 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2579,Med Examiner's Investigatoriii,45200,56656.8,9075.15,18255.07,83987.02,12883.13,6558.7,6704.62,26146.45,110133.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14083,65079.42,4723.63,804.07,70607.12,18033.06,12825.73,5285.38,36144.17,106751.29 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3310,Stable Attendant,1886,56066.5,0.0,4743.92,60810.42,13114.82,12412.56,5024.83,30552.21,91362.63 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,46426,74412.04,0.0,6095.0,80507.04,15687.95,12424.5,6674.71,34787.16,115294.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",638,131564.77,74478.11,12820.36,218863.24,28145.71,15196.12,3721.77,47063.6,265926.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9705,Emp & Training Spec 4,1697,92282.02,0.0,624.0,92906.02,19148.19,12424.5,7704.87,39277.56,132183.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,628,86974.29,0.0,0.0,86974.29,17925.4,12424.51,6997.29,37347.2,124321.49 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,28673,101531.11,0.0,0.0,101531.11,20926.03,12424.5,8308.48,41659.01,143190.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,45219,0.0,0.0,1661.22,1661.22,0.0,68.5,127.09,195.59,1856.81 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,16964,25702.5,1486.86,2814.76,30004.12,6605.83,6212.25,2414.98,15233.06,45237.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,49696,129308.04,0.0,0.0,129308.04,26023.63,12424.5,9886.84,48334.97,177643.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,17050,5422.0,0.0,0.0,5422.0,1009.04,955.74,419.23,2384.01,7806.01 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,43107,47222.21,2718.03,6371.15,56311.39,9390.61,12424.5,4544.73,26359.84,82671.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,52247,12840.92,0.0,0.0,12840.92,0.0,0.0,1015.77,1015.77,13856.69 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,23373,15309.97,0.0,0.0,15309.97,307.9,4188.79,1188.44,5685.13,20995.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16384,67458.07,13439.59,1156.7,82054.36,15634.98,13293.74,6061.19,34989.91,117044.27 +Calendar,2015,1,Public Protection,DAT,District Attorney,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8131,Victim/Witness Investigator 2,12748,51306.04,0.0,680.0,51986.04,11273.91,8123.71,4310.98,23708.6,75694.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,47731,89892.0,0.0,0.0,89892.0,18231.81,10513.02,6952.71,35697.54,125589.54 +Calendar,2015,1,Public Protection,ADP,Adult Probation,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,25085,11227.1,0.0,0.0,11227.1,0.0,3715.41,869.79,4585.2,15812.3 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,27530,5537.5,0.0,0.0,5537.5,1030.53,1194.66,417.49,2642.68,8180.18 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,8029,157021.14,0.0,0.0,157021.14,31580.88,0.0,17645.16,49226.04,206247.18 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,42520,75605.01,11399.05,4207.3,91211.36,15593.65,12424.5,7441.01,35459.16,126670.52 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,31338,208032.0,0.0,5723.14,213755.14,43018.44,12424.5,11405.62,66848.56,280603.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q062,Lieutenant 3,17448,158247.94,2432.98,4627.23,165308.15,31254.62,12415.54,2807.48,46477.64,211785.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35385,28804.36,3902.0,458.63,33164.99,7685.71,5604.29,2464.46,15754.46,48919.45 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,39957,73452.2,15586.91,3278.2,92317.31,15120.18,12424.5,7167.2,34711.88,127029.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,33267,108038.02,3117.3,2291.7,113447.02,22374.58,12424.49,9351.21,44150.28,157597.3 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,51117,11924.86,0.0,0.0,11924.86,0.0,1046.77,923.78,1970.55,13895.41 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),45437,5310.75,0.0,76.71,5387.46,0.0,545.06,417.57,962.63,6350.09 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,1947,78180.76,0.0,40.0,78220.76,16021.75,11600.19,6453.97,34075.91,112296.67 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,25248,794.38,0.0,6.2,800.58,0.0,306.13,62.02,368.15,1168.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,358,8594.08,0.0,170.7,8764.78,0.0,3664.63,704.54,4369.17,13133.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",31774,7074.68,0.0,0.0,7074.68,0.0,1684.52,548.79,2233.31,9307.99 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35940,113357.65,19849.51,19900.31,153107.47,25451.86,15004.98,388.25,40845.09,193952.56 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,4399,106116.01,0.0,0.0,106116.01,21866.98,12424.5,8495.63,42787.11,148903.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,2716,59733.06,0.0,0.0,59733.06,12299.12,12424.51,4799.94,29523.57,89256.63 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,9007,80135.24,0.0,0.0,80135.24,16481.24,12007.46,6319.97,34808.67,114943.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,18232,131147.5,0.0,0.0,131147.5,26513.28,11468.76,9970.32,47952.36,179099.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,12784,79395.01,0.0,1420.0,80815.01,16649.65,12424.51,6405.28,35479.44,116294.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,5955,32596.92,116.88,0.0,32713.8,8168.82,8123.71,2579.08,18871.61,51585.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3494,3601.5,0.0,31.85,3633.35,0.0,1756.16,281.88,2038.04,5671.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,18194,112209.03,20.1,0.0,112229.13,22870.16,12424.49,9176.63,44471.28,156700.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,34977,100761.0,0.0,880.0,101641.0,20946.82,12424.52,8133.43,41504.77,143145.77 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34350,68870.96,0.0,0.0,68870.96,14159.99,12424.51,5550.91,32135.41,101006.37 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49253,112403.9,43685.39,20227.81,176317.1,25081.14,15052.76,3006.82,43140.72,219457.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7341,Statnry Eng Water Treat Plant,1482,93738.13,0.0,6380.11,100118.24,20692.57,12424.49,8201.08,41318.14,141436.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,15699,61445.01,12239.38,8192.09,81876.48,14334.8,11946.65,7022.14,33303.59,115180.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,30740,118427.02,0.0,0.0,118427.02,23833.75,12424.5,26533.31,62791.56,181218.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,44975,70194.66,36029.35,9183.7,115407.71,15591.42,12415.54,9379.82,37386.78,152794.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,36625,36072.0,25.05,267.87,36364.92,8090.95,6451.18,3028.27,17570.4,53935.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,42799,70225.53,1519.32,3735.98,75480.83,14622.74,12421.03,5968.78,33012.55,108493.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40148,80969.58,2921.28,5419.11,89309.97,16866.13,12424.5,1487.29,30777.92,120087.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,40799,43581.82,0.0,1606.6,45188.42,10523.06,11461.19,3663.23,25647.48,70835.9 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,51537,84922.4,0.0,3780.44,88702.84,18287.53,12472.29,7090.58,37850.4,126553.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,51771,6535.06,0.0,0.0,6535.06,1686.05,1834.82,534.78,4055.65,10590.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,9437,79833.83,9901.99,3125.26,92861.08,17072.24,12424.5,7561.22,37057.96,129919.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,22465,80953.77,2261.44,5930.65,89145.86,16570.71,12424.5,3354.44,32349.65,121495.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,22806,71426.68,1654.85,6533.35,79614.88,14571.5,6183.88,6431.75,27187.13,106802.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,21814,68586.0,0.0,0.0,68586.0,13841.0,10035.18,5402.88,29279.06,97865.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,25648,66813.29,5525.36,3722.19,76060.84,19322.44,13166.21,5881.34,38369.99,114430.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3435,Urban Forestry Inspector,14734,68139.8,0.0,0.0,68139.8,11208.32,11612.13,5441.66,28262.11,96401.91 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,11084,47680.12,7587.58,2846.81,58114.51,9946.34,8838.3,1461.88,20246.52,78361.03 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,24032,93230.53,41793.99,12793.52,147818.04,21251.64,12364.77,10239.73,43856.14,191674.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40790,89.05,0.0,1175.46,1264.51,1359.45,0.0,1225.61,2585.06,3849.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32569,139013.41,6884.89,820.04,146718.34,27473.96,12424.5,2359.37,42257.83,188976.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,39755,64951.88,43.52,9866.37,74861.77,17612.47,6820.1,1240.4,25672.97,100534.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,17725,66102.0,3516.72,0.0,69618.72,13624.06,12424.5,5741.79,31790.35,101409.07 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3300,Park & Zoo,3302,Admission Attendant,6672,48010.06,0.0,0.0,48010.06,11515.24,12424.5,3971.55,27911.29,75921.35 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,3867,61735.09,0.0,624.0,62359.09,12852.62,12424.5,4963.7,30240.82,92599.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3215,Aquatics Facility Supervisor,50066,71462.88,0.0,755.34,72218.22,14826.3,11803.27,6202.9,32832.47,105050.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,30340,67303.93,13314.39,3142.79,83761.11,19258.65,13260.29,6487.15,39006.09,122767.2 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",36735,147174.06,2308.04,22413.07,171895.17,32141.92,14813.83,2918.72,49874.47,221769.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,6647,30452.0,0.0,0.0,30452.0,0.0,6212.24,2279.72,8491.96,38943.96 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,1439,18840.0,0.0,0.0,18840.0,3506.1,2389.33,1445.3,7340.73,26180.73 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,31441,87002.32,0.0,0.0,87002.32,17942.24,12351.32,6926.49,37220.05,124222.37 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,12252,40170.65,0.0,0.0,40170.65,0.0,3572.04,3110.53,6682.57,46853.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,43829,78204.01,0.0,624.0,78828.01,16246.79,12424.5,6491.32,35162.61,113990.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,38137,74563.39,0.0,0.0,74563.39,14960.79,9539.69,6083.02,30583.5,105146.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,4423,3327.8,0.0,247.21,3575.01,0.0,669.02,276.78,945.8,4520.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,39037,17917.87,0.0,0.0,17917.87,0.0,5352.09,1335.27,6687.36,24605.23 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,52933,91004.01,0.0,1000.0,92004.01,18962.52,12424.5,7376.69,38763.71,130767.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2489,Lab Svcs Mgr,19460,139289.13,0.0,0.0,139289.13,28035.17,12410.52,10186.87,50632.56,189921.69 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,7569,63047.25,303.15,2284.84,65635.24,13298.65,11152.19,5369.48,29820.32,95455.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,48178,56531.0,0.0,3604.35,60135.35,12397.12,12424.5,4928.08,29749.7,89885.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,39950,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43973,69177.97,35474.32,4780.76,109433.05,20266.79,13633.09,8566.82,42466.7,151899.75 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,44150,89578.78,3319.42,8312.3,101210.5,23874.22,11373.2,1714.29,36961.71,138172.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,21136,55935.35,1019.37,1519.8,58474.52,4221.21,7783.24,4572.17,16576.62,75051.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24380,103825.46,2850.51,14587.5,121263.47,23155.74,9682.02,9602.18,42439.94,163703.41 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,148C,Court Manager,32961,115986.2,0.0,3000.0,118986.2,23350.5,12424.5,32211.2,67986.2,186972.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,51615,6187.76,0.0,89.83,6277.59,0.0,2051.84,487.17,2539.01,8816.6 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,32444,980.01,0.0,40.18,1020.19,0.0,477.86,79.19,557.05,1577.24 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,47570,20258.75,0.0,906.7,21165.45,1771.07,8758.68,1714.73,12244.48,33409.93 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,25637,45081.01,1109.71,6.81,46197.53,10803.53,12424.5,3725.16,26953.19,73150.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q060,Lieutenant (Police Department),11605,11556.0,0.0,826.44,12382.44,2173.14,955.72,32.62,3161.48,15543.92 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,2482,83890.66,0.0,0.0,83890.66,16380.48,9246.7,6628.5,32255.68,116146.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17564,66108.2,7663.78,660.49,74432.47,15167.8,13021.25,5483.92,33672.97,108105.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,352.0,Municipal Executive Association - Fire,0900,Management,H051,Assistant Deputy Chief 2,40313,222619.72,0.0,14019.68,236639.4,46194.75,11946.64,12686.35,70827.74,307467.14 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,16395,97756.57,1311.92,8501.54,107570.03,25812.6,12424.5,1829.84,40066.94,147636.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32658,56531.0,0.0,6921.41,63452.41,12425.63,12424.5,4983.61,29833.74,93286.15 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1070,IS Project Director,4508,150409.03,0.0,0.0,150409.03,30261.73,12424.5,10384.35,53070.58,203479.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,51083,1535.87,0.0,0.0,1535.87,363.34,462.93,119.2,945.47,2481.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,38797,3203.0,0.0,36.0,3239.0,602.78,477.86,251.4,1332.04,4571.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0953,Dep Dir III,32070,171835.0,0.0,0.0,171835.0,34551.63,12424.5,28206.53,75182.66,247017.66 +Calendar,2015,1,Public Protection,ADP,Adult Probation,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,9084,114814.55,0.0,0.0,114814.55,23348.47,12424.5,9026.23,44799.2,159613.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,41744,37284.0,0.0,0.0,37284.0,8362.77,6212.27,2934.1,17509.14,54793.14 +Calendar,2015,1,Public Protection,ADP,Adult Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,4505,98689.42,1324.07,0.0,100013.49,22519.4,12424.5,1667.67,36611.57,136625.06 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48446,881.6,0.0,0.0,881.6,0.0,382.3,83.37,465.67,1347.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,30872,49084.21,0.0,6196.58,55280.79,10706.2,8658.39,4623.6,23988.19,79268.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,15476,84479.39,16893.52,6323.61,107696.52,17451.98,12424.5,1785.15,31661.63,139358.15 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16582,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1863.09,10276.86,34280.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,17801,62228.25,0.0,0.0,62228.25,12821.84,12424.51,5061.81,30308.16,92536.41 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7205,Chief Stationary Engineer,43331,107842.02,7612.81,386.44,115841.27,22226.53,12424.5,9170.22,43821.25,159662.52 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,2086,63709.4,10770.6,4155.02,78635.02,13821.7,12269.62,6175.29,32266.61,110901.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,48599,91169.35,541.7,4056.43,95767.48,19436.95,11913.67,7630.78,38981.4,134748.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,51524,22898.0,0.0,200.0,23098.0,4261.35,3822.92,1848.48,9932.75,33030.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,50489,11583.7,0.0,0.0,11583.7,599.03,4960.84,944.39,6504.26,18087.96 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,18127,66102.01,0.0,0.0,66102.01,13624.06,12424.5,5469.85,31518.41,97620.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7284,Utility Plumber Supervisor 2,8850,125004.03,32805.19,22127.05,179936.27,26531.26,12424.5,10815.42,49771.18,229707.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,9997,142192.06,0.0,0.0,142192.06,28616.29,12424.5,10107.29,51148.08,193340.14 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,34527,127034.35,0.0,11642.51,138676.86,22420.01,11349.3,6060.77,39830.08,178506.94 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),40342,109452.81,0.0,1500.0,110952.81,22591.48,12424.5,8953.62,43969.6,154922.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5602,Utility Specialist,24164,126994.05,0.0,0.0,126994.05,25674.63,12424.5,9963.82,48062.95,175057.0 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,16227,46519.45,0.0,0.0,46519.45,4047.47,10987.92,3456.51,18491.9,65011.35 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,37620,86850.02,0.0,2200.0,89050.02,18327.91,12424.5,6656.59,37409.0,126459.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,44691,1169.43,0.0,0.0,1169.43,0.0,346.45,165.64,512.09,1681.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,31072,62468.81,17834.7,2808.17,83111.68,13000.22,12424.5,6738.97,32163.69,115275.37 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1204,Senior Personnel Clerk,12299,41435.55,0.0,677.25,42112.8,8663.36,8111.77,3236.97,20012.1,62124.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,33819,26879.29,8535.76,4297.81,39712.86,6882.85,6280.94,2926.23,16090.02,55802.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36373,94685.31,19961.36,8585.21,123231.88,19646.7,12424.5,2058.61,34129.81,157361.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,4353,114012.29,0.0,0.0,114012.29,22916.29,11992.51,8741.03,43649.83,157662.12 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,47016,108383.23,48665.29,19105.95,176154.47,30186.18,12424.5,341.7,42952.38,219106.85 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),16650,183489.8,0.0,1500.0,184989.8,37213.49,12424.5,10970.14,60608.13,245597.93 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,129,25871.31,2474.45,0.0,28345.76,0.0,6188.35,2197.4,8385.75,36731.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2913,Program Specialist,42386,85368.01,0.0,0.0,85368.01,17594.59,12424.5,7036.62,37055.71,122423.72 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,14829,117135.33,13685.4,30502.67,161323.4,23184.68,12424.5,2677.4,38286.58,199609.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36144,57886.76,0.0,13697.87,71584.63,1173.85,0.0,6717.97,7891.82,79476.45 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,17382,97771.84,18311.63,10823.48,126906.95,26413.04,12424.5,1749.62,40587.16,167494.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,37132,18965.28,261.53,218.12,19444.93,4885.11,7020.02,1590.9,13496.03,32940.96 +Calendar,2015,1,Public Protection,CRT,Superior Court,933.0,Court Unrepresented Bench Officers,SCRT,SF Superior Court,990C,Superior Court Judge,35773,9463.59,0.0,1135.32,10598.91,0.0,0.0,153.68,153.68,10752.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",30058,93738.03,0.0,1152.51,94890.54,19449.32,12424.5,7675.9,39549.72,134440.26 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5215,Fire Protection Engineer,1495,110082.51,0.0,0.0,110082.51,22831.97,9557.31,9039.65,41428.93,151511.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5953,149099.0,0.0,9448.28,158547.28,31851.51,12424.5,10159.62,54435.63,212982.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,27351,117124.07,14522.76,16157.1,147803.93,23225.7,12424.5,2518.92,38169.12,185973.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,25658,106274.18,69312.0,6624.87,182211.05,21717.65,12328.92,3066.48,37113.05,219324.1 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,22665,111127.51,32748.75,17875.13,161751.39,24573.58,14861.62,2711.74,42146.94,203898.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,6700,51405.0,0.0,4158.78,55563.78,12662.1,12424.5,4596.02,29682.62,85246.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7193,68137.72,8308.42,3258.76,79704.9,19613.44,13428.8,5886.25,38928.49,118633.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,25878,119404.54,26419.05,11112.27,156935.86,23629.57,12418.52,2673.27,38721.36,195657.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,11883,15935.11,1459.93,0.0,17395.04,1273.82,2547.61,1346.72,5168.15,22563.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1452,Executive Secretary 2,12757,81542.05,0.0,0.0,81542.05,16806.17,12424.5,6640.51,35871.18,117413.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,21366,79395.04,0.0,2044.0,81439.04,16779.84,12376.73,6495.68,35652.25,117091.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,51373,21550.0,0.0,0.0,21550.0,5559.9,4778.66,1703.84,12042.4,33592.4 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,6784,25236.91,0.0,253.35,25490.26,-0.34,2150.39,97.56,2247.61,27737.87 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2932,Sr Psychiatric Social Worker,39098,58454.4,0.0,1631.51,60085.91,12394.05,7454.7,4486.07,24334.82,84420.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,47594,97094.54,0.0,4854.73,101949.27,21041.44,12320.63,8190.14,41552.21,143501.48 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,43507,2919.0,1068.7,600.68,4588.38,683.95,477.86,355.23,1517.04,6105.42 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,12930,5132.67,0.0,0.0,5132.67,0.0,1433.11,397.77,1830.88,6963.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",33413,19317.38,0.0,0.0,19317.38,0.0,4599.46,1495.55,6095.01,25412.39 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,30628,61101.14,447.21,2555.26,64103.61,12998.77,12357.95,5290.18,30646.9,94750.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,1063,75550.3,0.0,1450.0,77000.3,15840.98,12424.5,6380.89,34646.37,111646.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,36768,17399.2,0.0,0.0,17399.2,3902.64,2484.9,1372.84,7760.38,25159.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,8599,66758.11,9376.69,6027.68,82162.48,19964.49,13155.52,6246.28,39366.29,121528.77 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,8931,140988.13,0.0,0.0,140988.13,28605.25,12424.5,17446.94,58476.69,199464.82 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2996,"Rep, Human Rights Comm",44442,40159.01,0.0,0.0,40159.01,549.56,6690.11,3253.33,10493.0,50652.01 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,11933,62236.99,0.0,1040.0,63276.99,13031.56,12380.78,5144.07,30556.41,93833.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7287,Sprv Electronic Main Tech,29268,125004.01,18858.28,10170.0,154032.29,25297.31,12424.5,10371.45,48093.26,202125.55 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,21103,1721.88,0.0,0.0,1721.88,0.0,746.66,133.31,879.97,2601.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,17259,78245.04,0.0,0.0,78245.04,15702.99,9557.31,6427.89,31688.19,109933.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,39739,98793.32,11208.52,1463.48,111465.32,20468.04,12424.5,8902.07,41794.61,153259.93 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,42357,79753.35,7976.9,0.0,87730.25,16426.74,12330.6,7075.44,35832.78,123563.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,48691,80461.51,425.03,0.0,80886.54,12100.68,6929.05,6353.0,25382.73,106269.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32245,39875.89,3327.86,1062.9,44266.65,10637.82,12427.66,3122.9,26188.38,70455.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1652,Accountant II,28687,14761.68,0.0,0.0,14761.68,3311.05,2388.79,1198.88,6898.72,21660.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,29280,79722.01,1419.86,968.0,82109.87,16625.84,12424.52,6742.59,35792.95,117902.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,8756,74672.77,32924.92,8871.72,116469.41,16201.57,10951.13,9467.03,36619.73,153089.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,5661,46610.87,0.0,680.0,47290.87,8910.38,11247.76,3591.78,23749.92,71040.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24922,68156.95,24955.4,7181.89,100294.24,20626.33,13429.81,7646.91,41703.05,141997.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,17961,70308.0,50090.9,7685.47,128084.37,14917.83,8601.58,9683.19,33202.6,161286.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,48162,7320.61,0.0,0.0,7320.61,1362.36,955.73,544.03,2862.12,10182.73 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,10528,140101.0,0.0,0.0,140101.0,28135.99,12424.5,18404.7,58965.19,199066.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",2501,17158.54,0.0,0.0,17158.54,0.0,3631.29,1329.52,4960.81,22119.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,9568,84644.0,34874.28,12727.83,132246.11,19278.82,12424.51,9830.56,41533.89,173780.0 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,22593,4133.72,0.0,55.88,4189.6,0.0,1031.89,325.02,1356.91,5546.51 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,11721,126.35,0.0,10.11,136.46,0.0,41.82,10.56,52.38,188.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,7445,42047.15,4705.37,1295.49,48048.01,11254.94,12930.5,3438.58,27624.02,75672.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,46606,54831.5,0.0,5714.84,60546.34,13949.54,12424.5,4857.93,31231.97,91778.31 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,46838,84791.09,0.0,0.0,84791.09,17475.8,12424.5,6636.58,36536.88,121327.97 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,29628,56531.0,0.0,3594.0,60125.0,11788.47,12424.5,4920.46,29133.43,89258.43 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,27428,77071.08,0.0,1953.0,79024.08,16255.93,12424.5,6485.78,35166.21,114190.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,22462,93395.7,45801.85,10409.19,149606.74,20842.69,12615.64,10201.42,43659.75,193266.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,51286,6996.0,0.0,0.0,6996.0,1538.43,1433.59,546.77,3518.79,10514.79 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,52633,51933.57,41.81,0.0,51975.38,10573.42,10910.26,4197.54,25681.22,77656.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,26907,100761.02,20179.76,2611.9,123552.68,20800.28,12424.47,9841.41,43066.16,166618.84 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,51234,139601.0,0.0,0.0,139601.0,28045.34,12424.5,27638.82,68108.66,207709.66 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2992,Contract Compliance Officer 1,4173,5067.0,0.0,0.0,5067.0,0.0,716.79,390.09,1106.88,6173.88 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,7675,0.0,0.0,5617.58,5617.58,0.0,0.0,429.74,429.74,6047.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,17434,56822.02,5469.95,8916.6,71208.57,13445.77,11242.32,5828.15,30516.24,101724.81 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31789,49083.1,1160.24,0.0,50243.34,9998.81,10990.9,4066.13,25055.84,75299.18 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,40876,9976.7,380.33,276.6,10633.63,0.0,2628.26,825.34,3453.6,14087.23 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,29447,97764.87,38543.16,15758.33,152066.36,26895.03,12424.5,2541.56,41861.09,193927.45 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,48117,57524.01,0.0,0.0,57524.01,11856.06,12424.5,4679.36,28959.92,86483.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,32648,6986.79,1702.55,682.87,9372.21,0.0,1389.46,718.3,2107.76,11479.97 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,32824,42939.65,0.0,1000.0,43939.65,9376.79,8695.78,3648.5,21721.07,65660.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1478,Senior Water Services Clerk,26861,68709.07,150.3,0.0,68859.37,14149.83,12211.92,5906.04,32267.79,101127.16 +Calendar,2015,6,General Administration & Finance,HSS,Health Service System,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,20109,12964.02,0.0,0.0,12964.02,2850.81,3106.13,1024.76,6981.7,19945.72 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,35870,97760.94,9917.3,8147.68,115825.92,25713.79,12424.5,1915.64,40053.93,155879.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,13486,31738.02,4523.54,661.53,36923.09,8254.5,9894.03,2815.51,20964.04,57887.13 +Calendar,2015,6,General Administration & Finance,RET,Retirement System,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,49071,124645.04,0.0,0.0,124645.04,25025.34,12424.5,27316.96,64766.8,189411.84 +Calendar,2015,3,Human Welfare & Neighborhood Development,RNT,Rent Arbitration Board,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2975,Citizens Complaint Officer,41014,69101.3,0.0,1080.0,70181.3,14451.94,12394.64,5443.17,32289.75,102471.05 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,37412,102019.01,0.0,0.0,102019.01,21026.27,12424.5,8290.11,41740.88,143759.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9234,Airport Security ID Technician,20781,25077.0,221.19,0.0,25298.19,4666.87,5256.52,1938.25,11861.64,37159.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,31397,14800.0,314.5,195.73,15310.23,2790.72,2389.31,1254.72,6434.75,21744.98 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,46344,75581.88,29551.86,9932.51,115066.25,16807.6,12420.8,9375.67,38604.07,153670.32 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,52184,119066.01,20418.55,15473.99,154958.55,31848.44,12424.49,2587.13,46860.06,201818.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4301,66969.9,21778.27,1687.3,90435.47,18797.63,13195.61,7070.22,39063.46,129498.93 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,5411,106548.0,0.0,21279.12,127827.12,25551.64,7167.99,9697.18,42416.81,170243.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,40954,67512.05,33238.1,5009.64,105759.79,19912.31,13307.29,8242.51,41462.11,147221.9 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,45369,11892.63,0.0,852.95,12745.58,0.0,4557.65,988.05,5545.7,18291.28 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,24231,532.88,0.0,17.64,550.52,0.0,259.84,42.73,302.57,853.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,24148,78986.18,4366.38,2100.05,85452.61,16603.03,11973.52,6983.56,35560.11,121012.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,21910,73360.11,17213.0,6861.25,97434.36,16108.72,15196.11,1577.75,32882.58,130316.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,7190,92001.3,18519.92,10327.47,120848.69,20162.34,12424.5,9651.44,42238.28,163086.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7470,Watershed Keeper,51760,69439.53,2051.83,9795.0,81286.36,14440.32,12281.15,6013.54,32735.01,114021.37 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,651.0,Deputy Probation Officers' Association,8400,Probation & Parole,8444,Deputy Probation Officer,47340,89475.97,321.38,0.0,89797.35,20318.47,11187.85,1514.72,33021.04,122818.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26871,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.23,5147.57,17667.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,34868,27593.74,0.0,0.0,27593.74,0.0,3709.44,2138.71,5848.15,33441.89 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,12533,75605.0,7464.22,9653.1,92722.32,16644.86,12424.5,7354.42,36423.78,129146.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,48415,63887.03,1913.07,8087.98,73888.08,14837.35,12424.5,5820.24,33082.09,106970.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,24904,7573.73,0.0,250.0,7823.73,2068.69,1488.97,502.41,4060.07,11883.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,30576,85368.02,21759.37,2044.0,109171.39,18016.63,12424.5,8671.34,39112.47,148283.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,21036,41461.76,5301.91,460.65,47224.32,11358.45,8163.56,3525.62,23047.63,70271.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,5826,2303.0,0.0,0.0,2303.0,0.0,1122.99,178.7,1301.69,3604.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,18051,15384.57,0.0,0.0,15384.57,2789.22,1433.6,1517.18,5740.0,21124.57 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,13655,31561.58,0.0,0.0,31561.58,0.0,4441.16,2468.81,6909.97,38471.55 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),23530,143917.0,0.0,1500.0,145417.0,29254.54,12424.5,10251.94,51930.98,197347.98 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,46891,121879.53,34904.12,8195.51,164979.16,24094.47,12424.51,2766.18,39285.16,204264.32 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2822,Health Educator,39885,79061.68,0.0,0.0,79061.68,16290.06,10462.33,6237.23,32989.62,112051.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",2885,114731.85,0.0,0.0,114731.85,23335.2,12424.5,17433.55,53193.25,167925.1 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1200,Personnel,1230,Instructional Designer,1156,75253.14,0.0,0.0,75253.14,15310.08,10990.9,5594.01,31894.99,107148.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7337,Main Machinist Asst Sprv,39629,49990.51,0.0,18538.14,68528.65,11212.84,6451.18,5531.18,23195.2,91723.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8158,Child Support Officer II,29409,78204.01,0.0,624.0,78828.01,16246.79,12424.5,6479.33,35150.62,113978.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,27281,101852.52,655.38,21917.46,124425.36,23905.64,11067.36,9819.08,44792.08,169217.44 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,42352,8720.47,207.98,0.0,8928.45,0.0,0.0,706.59,706.59,9635.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,36606,32804.24,510.02,738.3,34052.56,0.0,5444.67,2641.2,8085.87,42138.43 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2740,Porter Supervisor 1,21169,68308.92,4938.87,6486.84,79734.63,14347.83,12376.71,6277.4,33001.94,112736.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1314,Public Relations Officer,22638,96254.02,0.0,900.0,97154.02,20020.25,12424.5,7767.12,40211.87,137365.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,3451,71626.02,9420.28,6007.74,87054.04,15992.35,12424.5,7131.31,35548.16,122602.2 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,918,66102.0,0.0,270.0,66372.0,13680.79,12424.5,5485.22,31590.51,97962.51 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,29836,61156.31,0.0,621.22,61777.53,12735.16,12369.19,4786.5,29890.85,91668.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,35004,200107.15,1684.72,9609.68,211401.55,40264.74,12424.5,546.07,53235.31,264636.86 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,11189,4956.71,0.0,44.97,5001.68,0.0,2317.62,387.94,2705.56,7707.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,22708,27357.0,693.0,1262.8,29312.8,6136.2,3713.91,2173.36,12023.47,41336.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22878,3784.8,0.0,126.16,3910.96,0.0,286.72,242.57,529.29,4440.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,886,1708.88,0.0,6.37,1715.25,0.0,833.27,133.12,966.39,2681.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35344,64873.18,20817.72,5041.5,90732.4,19112.92,12780.34,7053.91,38947.17,129679.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,47009,51405.0,506.97,2977.82,54889.79,12337.62,12424.5,4486.3,29248.42,84138.21 +Calendar,2015,1,Public Protection,POL,Police,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1300,Pub Relations & Spec Assts,1369,Special Assistant 10,46670,42927.31,0.0,0.0,42927.31,0.0,5591.02,3327.92,8918.94,51846.25 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2654,Cook,11237,65592.0,5463.43,2919.3,73974.73,13647.34,0.0,6107.89,19755.23,93729.96 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,47026,50308.01,0.0,624.0,50932.01,12216.31,12424.5,4143.12,28783.93,79715.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",38607,82535.15,4232.97,9108.46,95876.58,17715.93,12424.5,7819.37,37959.8,133836.38 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1460,Legal Secretary 2,41238,84973.01,0.0,624.0,85597.01,17641.99,12424.5,6940.03,37006.52,122603.53 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,36055,136844.81,7239.04,10275.9,154359.75,27006.29,12263.23,2584.49,41854.01,196213.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14660,68887.78,10082.45,4619.26,83589.49,20161.13,13572.46,6271.21,40004.8,123594.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,16926,149286.04,0.0,0.0,149286.04,30043.98,12424.51,10365.15,52833.64,202119.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,25585,2835.0,106.31,0.0,2941.31,635.89,477.86,230.85,1344.6,4285.91 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,47778,150710.0,1333.8,16280.08,168323.88,33038.06,12424.5,10615.04,56077.6,224401.48 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,38511,6357.0,0.0,0.0,6357.0,1152.52,716.79,820.24,2689.55,9046.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,51408,55073.49,0.0,2130.48,57203.97,11871.95,11001.24,4740.03,27613.22,84817.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3653,34672.37,1755.87,1264.26,37692.5,10409.25,6881.93,2843.9,20135.08,57827.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",27942,0.0,0.0,271.86,271.86,0.0,68.5,20.8,89.3,361.16 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,28617,148529.1,0.0,7385.58,155914.68,31284.54,12376.71,7656.0,51317.25,207231.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7317,Senior Water Service Inspector,39337,117750.01,0.0,0.0,117750.01,23696.97,12424.5,9838.94,45960.41,163710.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,31716,49679.0,0.0,6436.36,56115.36,13022.23,12424.5,4376.48,29823.21,85938.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,26561,119455.91,51224.04,9537.56,180217.51,23662.81,12424.5,3061.92,39149.23,219366.74 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,32601,12278.0,993.51,350.8,13622.31,0.0,0.0,1077.09,1077.09,14699.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5272,Landscape Architect Assoc 2,47911,22674.01,0.0,0.0,22674.01,4219.62,2867.2,1579.19,8666.01,31340.02 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1209,Benefits Technician,13524,53033.98,0.0,0.0,53033.98,12706.24,12412.56,4248.4,29367.2,82401.18 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,5019,18578.06,0.0,0.0,18578.06,0.0,1638.18,1473.58,3111.76,21689.82 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27602,642.25,0.0,23.86,666.11,0.0,167.25,51.7,218.95,885.06 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0952,Dep Dir II,31292,138076.28,0.0,0.0,138076.28,27768.91,12424.5,18430.81,58624.22,196700.5 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,11952,0.0,0.0,0.0,0.0,0.0,68.5,24.96,93.46,93.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49605,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1850.29,10264.06,34268.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,29431,74165.01,26605.48,1480.99,102251.48,15406.37,12424.5,8372.46,36203.33,138454.81 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1241,Personnel Analyst,20999,91331.01,0.0,0.0,91331.01,18823.67,12424.5,7256.86,38505.03,129836.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,32787,18191.93,5441.66,1670.87,25304.46,3492.07,3508.24,1995.81,8996.12,34300.58 +Calendar,2015,1,Public Protection,FIR,Fire Department,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,23163,1628.0,0.0,97.7,1725.7,370.3,238.93,28.7,637.93,2363.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,36999,24004.0,0.0,0.0,24004.0,4351.92,4061.85,1850.29,10264.06,34268.06 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,2755,118427.01,0.0,0.0,118427.01,23833.74,12424.5,17896.61,54154.85,172581.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46414,126258.37,0.0,9340.57,135598.94,19602.3,12376.71,10006.28,41985.29,177584.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31731,140334.0,0.0,250.0,140584.0,28242.36,12424.5,10124.98,50791.84,191375.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8302,Deputy Sheriff 1,40764,29184.18,2970.55,875.7,33030.43,6546.0,4770.53,2542.85,13859.38,46889.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,22961,135421.02,0.0,0.0,135421.02,27248.57,12424.5,10113.41,49786.48,185207.5 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2467,Diagnostic Imaging Tech I,35498,27478.16,14264.59,5200.93,46943.68,5678.59,4073.32,3701.43,13453.34,60397.02 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,16695,59191.94,3230.56,2207.6,64630.1,13202.4,12420.92,5328.75,30952.07,95582.17 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,16439,112718.9,0.0,12120.98,124839.88,24514.7,12424.5,2079.47,39018.67,163858.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,33169,65177.72,13664.0,5989.86,84831.58,19446.86,12837.86,6287.68,38572.4,123403.98 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7313,Automotive Machinist,41211,82566.2,6117.46,1374.46,90058.12,17290.1,12376.71,6702.81,36369.62,126427.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3264,Camp Assistant,49168,6061.75,38.33,38.82,6138.9,0.0,2834.34,476.08,3310.42,9449.32 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,42325,67911.03,10796.09,5867.74,84574.86,14859.6,12424.5,6899.51,34183.61,118758.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37243,65963.94,11662.69,3786.32,81412.95,19132.3,12997.34,6299.8,38429.44,119842.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,14932,101984.29,4920.15,7388.53,114292.97,20917.08,9079.44,292.05,30288.57,144581.54 +Calendar,2015,1,Public Protection,CRT,Superior Court,197.0,"Prof & Tech Engineers - Court Reporters, Local 21",SCRT,SF Superior Court,500C,Court Reporter,31017,103509.6,0.0,6725.04,110234.64,22211.56,11982.48,9134.86,43328.9,153563.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,8987,108038.0,19570.72,11907.76,139516.48,24153.36,12424.5,10113.91,46691.77,186208.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1900,Purchasing & Storekeeping,1950,Assistant Purchaser,27077,40809.74,0.0,0.0,40809.74,8126.09,8948.03,3231.84,20305.96,61115.7 +Calendar,2015,1,Public Protection,POL,Police,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),18362,184289.09,0.0,1500.0,185789.09,37388.86,12424.5,10852.41,60665.77,246454.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,195,24516.93,0.0,0.0,24516.93,0.0,5480.51,1902.34,7382.85,31899.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,33872,52505.04,2513.21,1707.72,56725.97,12859.01,12376.73,4874.97,30110.71,86836.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,2201,0.0,0.0,250.0,250.0,0.0,0.0,21.3,21.3,271.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,24229,116638.0,4600.06,7072.75,128310.81,23473.53,12424.5,9868.29,45766.32,174077.13 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2588,Health Worker 4,11099,65033.6,0.0,1360.0,66393.6,13735.89,11946.64,5376.51,31059.04,97452.64 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,51617,111539.52,0.0,12558.04,124097.56,24156.83,10207.21,8813.77,43177.81,167275.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,32230,2689.45,0.0,0.0,2689.45,0.0,890.02,208.22,1098.24,3787.69 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8202,Security Guard,44314,1732.32,0.0,0.0,1732.32,0.0,397.23,134.11,531.34,2263.66 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5277,Planner 1,8913,41420.62,0.0,0.0,41420.62,1722.56,8553.79,3333.06,13609.41,55030.03 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,28336,46034.75,0.0,0.0,46034.75,9841.26,8967.98,3750.29,22559.53,68594.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5218,Structural Engineer,41735,149312.03,0.0,0.0,149312.03,30049.2,12424.5,10365.59,52839.29,202151.32 +Calendar,2015,6,General Administration & Finance,MYR,Mayor,2.0,Management Unrepresented Employees,0900,Management,0903,Mayoral Staff XV,39558,106450.0,0.0,0.0,106450.0,20848.36,9557.31,13432.96,43838.63,150288.63 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5278,Planner 2,30934,50106.0,0.0,0.0,50106.0,4554.03,6929.05,3546.32,15029.4,65135.4 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,17547,97764.29,16862.08,14998.89,129625.26,26696.35,12424.51,2157.95,41278.81,170904.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,14168,42525.05,0.0,12087.62,54612.67,9473.02,7167.99,4449.26,21090.27,75702.94 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,16363,67756.47,0.0,0.0,67756.47,12284.26,5638.81,8824.19,26747.26,94503.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,19617,36758.12,0.0,9246.24,46004.36,3925.61,2835.36,3280.38,10041.35,56045.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,1764,115327.31,0.0,0.0,115327.31,23387.01,12424.5,24241.46,60052.97,175380.28 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,47235,23611.59,0.0,270.37,23881.96,0.0,0.0,1889.14,1889.14,25771.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,642,67578.48,4467.94,2929.86,74976.28,19310.04,13314.89,5722.6,38347.53,113323.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7300,Journeyman Trade,7336,Electr Instrmntn Tech Wtr Poll,19837,106563.31,1449.49,0.0,108012.8,21923.74,12424.5,8661.69,43009.93,151022.73 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,7820,114660.84,1887.49,24328.9,140877.23,26111.2,10467.28,8966.42,45544.9,186422.13 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,44386,106116.02,0.0,0.0,106116.02,21870.85,12424.5,8484.93,42780.28,148896.3 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8228,Museum Sec Supv,29991,66401.83,19191.26,868.43,86461.52,13616.46,11740.56,7110.32,32467.34,118928.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9150,Train Controller,30764,89007.93,49050.28,12269.15,150327.36,20910.47,11023.28,10215.47,42149.22,192476.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2406,Pharmacy Helper,22521,61308.7,115.67,0.0,61424.37,12623.76,12375.22,4925.24,29924.22,91348.59 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8250,Fingerprint Technician 2,46883,67261.0,4230.66,7870.94,79362.6,14987.75,12424.5,6535.51,33947.76,113310.36 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,46938,166623.76,12005.67,16009.0,194638.43,35035.91,11401.87,10942.12,57379.9,252018.33 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,20214,81157.02,20142.08,20174.77,121473.87,19939.41,12424.5,9642.2,42006.11,163479.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5364,Engineering Associate 1,42053,83148.02,2900.17,0.0,86048.19,17137.11,12424.5,6475.56,36037.17,122085.36 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1218,Payroll Supervisor,9999,57966.04,0.0,0.0,57966.04,11393.99,8123.71,4660.28,24177.98,82144.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,27261,56531.0,0.0,733.05,57264.05,11664.71,12424.5,4696.44,28785.65,86049.7 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,24736,112159.74,34561.51,18422.98,165144.23,24822.8,15052.76,2760.62,42636.18,207780.41 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",19296,13647.61,0.0,0.0,13647.61,0.0,3249.49,1008.09,4257.58,17905.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1195,86529.96,2551.52,5783.7,94865.18,17734.01,8642.79,7014.33,33391.13,128256.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,40138,88365.3,9493.84,8645.45,106504.59,20100.25,10864.15,8811.05,39775.45,146280.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,33591,4399.54,0.0,94.54,4494.08,0.0,1349.97,405.31,1755.28,6249.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,35106,3498.85,0.0,0.0,3498.85,0.0,1517.22,278.35,1795.57,5294.42 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12964,113233.6,34062.87,22276.55,169573.02,25348.82,15196.11,2880.73,43425.66,212998.68 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,45167,36112.0,0.0,0.0,36112.0,7922.96,3822.92,2801.97,14547.85,50659.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",5806,11926.69,0.0,7500.92,19427.61,2675.16,1806.45,1528.09,6009.7,25437.31 +Calendar,2015,1,Public Protection,POL,Police,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,12609,42563.5,617.93,157.7,43339.13,8490.63,8840.51,3440.36,20771.5,64110.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10303,66681.14,24899.79,2167.55,93748.48,18850.48,13141.06,7116.3,39107.84,132856.32 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,12530,2369.81,0.0,0.0,2369.81,0.0,328.54,183.93,512.47,2882.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,2175,68100.21,11797.83,3300.65,83198.69,14466.14,11951.12,6834.41,33251.67,116450.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,10474,42349.09,0.0,4916.9,47265.99,10777.33,11307.49,3751.49,25836.31,73102.3 +Calendar,2015,1,Public Protection,DAT,District Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8181,Assistant Chief Attorney 1,34386,128512.0,0.0,750.0,129262.0,24561.66,7645.85,5084.88,37292.39,166554.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",7400,Skilled Labor,7457,Sign Worker,29067,61021.87,0.0,0.0,61021.87,12544.5,11186.49,4969.05,28700.04,89721.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,24012,44241.0,0.0,0.0,44241.0,9345.54,9079.44,3588.84,22013.82,66254.82 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,1007,118854.89,504.6,21799.74,141159.23,27732.8,10994.97,9134.81,47862.58,189021.81 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14520,113233.61,30136.17,18166.71,161536.49,25036.04,15196.12,2746.02,42978.18,204514.67 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,42925,53885.81,0.0,6013.32,59899.13,13169.41,12369.48,4935.89,30474.78,90373.91 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,15647,46192.68,0.0,3387.4,49580.08,9202.56,7712.75,4758.03,21673.34,71253.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,5727,9578.87,737.89,332.57,10649.33,2711.33,3023.69,736.89,6471.91,17121.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",21773,85351.39,0.0,0.0,85351.39,17598.2,11301.52,6861.1,35760.82,121112.21 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,1765,84599.01,0.0,920.44,85519.45,17625.02,12424.5,6998.07,37047.59,122567.04 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,17958,67261.02,0.0,0.0,67261.02,13862.82,12424.5,5336.37,31623.69,98884.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,48070,3939.65,0.0,988.5,4928.15,1045.44,1708.37,403.14,3156.95,8085.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22260,68027.27,34340.54,7405.84,109773.65,20660.72,13402.51,8383.54,42446.77,152220.42 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2900,Human Services,2978,Contract Compliance Officer 2,51812,129811.04,0.0,0.0,129811.04,26124.21,12424.5,9872.93,48421.64,178232.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,3864,62350.71,1607.04,3703.33,67661.08,18023.47,12238.31,5262.84,35524.62,103185.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,38.0,"Plumbers and Pipefitters, Local 38",1400,"Clerical, Secretarial & Steno",1466,Meter Reader,20358,23666.42,0.0,383.62,24050.04,5308.39,4579.51,1971.88,11859.78,35909.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,45218,105340.02,0.0,0.0,105340.02,21696.81,12424.51,8456.31,42577.63,147917.65 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,36650,80957.63,4592.35,4323.55,89873.53,16550.76,12424.49,3367.27,32342.52,122216.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36506,66703.51,8177.99,2180.3,77061.8,18849.87,13139.75,6012.44,38002.06,115063.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",13823,78121.5,6021.51,3660.95,87803.96,16278.49,11776.76,7222.93,35278.18,123082.14 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1220,Payroll Clerk,10587,4356.0,439.0,0.0,4795.0,977.06,955.73,389.63,2322.42,7117.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,330.0,Members of Boards and Commissions - No Benefits,0900,Management,0109,Commissioner No Benefits,30912,100.0,0.0,0.0,100.0,0.0,0.0,7.9,7.9,107.9 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,20766,100977.33,0.0,17397.29,118374.62,19292.01,8415.21,5476.9,33184.12,151558.74 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,52387,9524.02,0.0,0.0,9524.02,0.0,4070.82,769.58,4840.4,14364.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,47557,50982.02,0.0,180.17,51162.19,12262.7,12424.5,4115.74,28802.94,79965.13 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8108,Senior Legal Process Clerk,6845,55555.46,9409.16,4338.04,69302.66,12166.27,10695.89,5684.08,28546.24,97848.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,50715,12520.0,0.0,0.0,12520.0,2269.88,1911.46,957.79,5139.13,17659.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16747,66356.37,5973.28,4086.03,76415.68,19309.0,13074.22,5697.76,38080.98,114496.66 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,25589,833.0,0.0,16.66,849.66,0.0,406.19,65.95,472.14,1321.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,42992,17913.95,0.0,3510.73,21424.68,3299.48,0.0,4223.6,7523.08,28947.76 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,37884,54882.28,0.0,10157.21,65039.49,12310.13,6546.76,5293.16,24150.05,89189.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,13727,88831.02,15360.64,4499.57,108691.23,18653.61,12424.5,8638.03,39716.14,148407.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,48985,81157.0,24218.23,23961.5,129336.73,20836.86,12424.5,9858.97,43120.33,172457.06 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,21576,33465.39,0.0,4478.52,37943.91,6989.95,5881.21,3015.67,15886.83,53830.74 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1300,Pub Relations & Spec Assts,1324,Customer Service Agent,40781,74758.49,5290.44,7243.34,87292.27,16138.21,12424.5,7118.17,35680.88,122973.15 +Calendar,2015,1,Public Protection,PDR,Public Defender,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),35812,159424.24,0.0,1500.0,160924.24,32386.38,12424.5,10460.04,55270.92,216195.16 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,45216,97772.73,5650.08,15759.51,119182.32,27629.76,12424.5,2029.64,42083.9,161266.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,31501,77071.09,0.0,2064.0,79135.09,16310.37,12424.5,6504.42,35239.29,114374.38 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32009,145232.99,602.39,35239.92,181075.3,34101.95,12103.44,5809.14,52014.53,233089.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,37240,64039.03,3901.22,820.0,68760.25,13308.05,10994.0,5314.93,29616.98,98377.23 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",45684,130181.64,45085.79,16272.78,191540.21,28814.81,15035.8,3212.01,47062.62,238602.83 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,12139,70850.0,1209.6,0.0,72059.6,14792.9,10990.9,5954.52,31738.32,103797.92 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0922,Manager I,22573,120687.63,0.0,0.0,120687.63,24288.51,12424.5,18130.05,54843.06,175530.69 +Calendar,2015,7,General City Responsibilities,UNA,General Fund Unallocated,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3284,Recreation Director,42710,0.0,0.0,3631.28,3631.28,0.0,0.0,530.95,530.95,4162.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",5683,43908.81,1026.42,0.0,44935.23,9848.76,5256.52,3615.42,18720.7,63655.93 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,30647,20499.0,3046.42,2617.96,26163.38,4845.73,6212.25,2095.14,13153.12,39316.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,1640,115938.05,7170.8,9118.79,132227.64,23384.37,12352.81,2213.84,37951.02,170178.66 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,6657,68542.74,0.0,2816.64,71359.38,14671.92,12014.31,5551.63,32237.86,103597.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,53075,108038.0,31853.53,7688.0,147579.53,22675.72,12424.5,10188.65,45288.87,192868.4 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,52532,77071.05,0.0,240.0,77311.05,15929.4,12424.5,6246.27,34600.17,111911.22 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,23718,97764.48,12359.92,15378.36,125502.76,26782.1,12424.5,2136.17,41342.77,166845.53 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2909,Hospital Elig Wrk Supervisor,3341,94107.03,16378.62,2642.62,113128.27,19610.37,12424.5,9050.02,41084.89,154213.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23285,69353.91,18257.11,2371.98,89983.0,19638.22,13662.41,6817.67,40118.3,130101.3 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,36741,46985.71,25816.03,2014.86,74816.6,9849.03,9289.65,5834.9,24973.58,99790.18 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,41496,58659.0,0.0,1777.82,60436.82,12257.84,10513.04,4963.73,27734.61,88171.43 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,41950,6706.0,0.0,0.0,6706.0,1504.16,955.73,542.92,3002.81,9708.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,17572,119463.82,7929.37,1855.04,129248.23,23633.48,12424.5,2145.8,38203.78,167452.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,34136,21681.11,0.0,0.0,21681.11,5593.7,5686.6,1769.25,13049.55,34730.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,20081,62811.0,17308.99,15665.34,95785.33,15240.43,12424.5,7565.73,35230.66,131015.99 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,21457,67844.04,7015.46,12181.34,87040.84,15567.74,12412.56,6852.88,34833.18,121874.02 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,43383,50106.02,0.0,0.0,50106.02,9611.97,6929.04,3931.09,20472.1,70578.12 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1450,Executive Secretary 1,2355,10658.5,0.0,0.0,10658.5,1983.54,2116.04,846.93,4946.51,15605.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,1186,78245.02,0.0,0.0,78245.02,15702.98,9557.31,6299.28,31559.57,109804.59 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,35926,102074.1,11570.28,11919.59,125563.97,23168.71,14324.92,2047.53,39541.16,165105.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17315,57804.19,3622.37,1612.56,63039.12,15406.88,13038.98,4803.43,33249.29,96288.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,51246,71443.32,450.84,5748.95,77643.11,15549.62,11748.97,6244.44,33543.03,111186.14 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,29206,5225.3,0.0,58.03,5283.33,1185.07,1155.48,643.07,2983.62,8266.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,4066,125553.13,22429.84,5711.24,153694.21,24813.46,12424.51,2574.11,39812.08,193506.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,914,101248.05,0.0,1360.0,102608.05,21133.06,12424.51,8174.24,41731.81,144339.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1900,Purchasing & Storekeeping,1929,Parts Storekeeper,23609,60401.32,10908.16,130.0,71439.48,12336.47,12424.5,5645.3,30406.27,101845.75 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8200,Protection & Apprehension,8240,Pub Safety Communication Coord,17223,17123.8,883.46,2885.96,20893.22,3259.81,1875.63,777.81,5913.25,26806.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,43091,93755.4,196.09,10388.67,104340.16,20928.04,12663.43,8345.47,41936.94,146277.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,6349,18703.25,0.0,0.0,18703.25,4468.76,5656.73,1501.55,11627.04,30330.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,45017,127129.04,0.0,0.0,127129.04,25584.73,12424.5,17209.36,55218.59,182347.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26534,65020.85,3063.3,3775.75,71859.9,18811.08,12811.04,5664.02,37286.14,109146.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,21781,61735.0,0.0,1624.0,63359.0,13058.58,12424.5,5143.19,30626.27,93985.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,533,7490.3,0.0,69.8,7560.1,0.0,1971.19,586.78,2557.97,10118.07 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,37446,43838.8,10434.61,1932.97,56206.38,10312.22,11850.95,4398.12,26561.29,82767.67 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),39427,184289.07,0.0,1853.42,186142.49,37455.36,12424.5,10810.03,60689.89,246832.38 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,22134,136192.05,0.0,0.0,136192.05,27392.68,12424.5,17271.0,57088.18,193280.23 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,5553,22453.12,268.05,480.0,23201.17,5212.92,5787.91,1893.46,12894.29,36095.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,36633,77071.08,0.0,624.0,77695.08,16009.13,12424.5,6293.97,34727.6,112422.68 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1825,Prnpl Admin Analyst II,1210,129308.02,0.0,0.0,129308.02,26023.61,12424.5,9965.55,48413.66,177721.68 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,6328,110361.34,0.0,0.0,110361.34,22035.57,11420.99,15876.85,49333.41,159694.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40166,94099.75,120.83,20790.12,115010.7,18071.72,8576.43,9480.62,36128.77,151139.47 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2323,Clinical Nurse Specialist,27098,199095.0,0.0,250.0,199345.0,40068.02,12424.5,10958.66,63451.18,262796.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43945,3755.09,297.01,403.66,4455.76,1096.39,1185.35,346.11,2627.85,7083.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,6168,61283.35,29626.47,2645.87,93555.69,12738.72,12185.57,7324.7,32248.99,125804.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,2734,16738.02,0.0,317.77,17055.79,4223.89,3225.77,1252.37,8702.03,25757.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22544,70420.55,26340.53,2664.57,99425.65,19972.66,13871.66,7741.55,41585.87,141011.52 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37181,119455.95,90381.43,10292.43,220129.81,24132.87,12424.5,3744.66,40302.03,260431.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,32687,112209.02,241.26,0.0,112450.28,22870.16,12424.51,9206.02,44500.69,156950.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,53195,101323.04,2542.85,1595.0,105460.89,21210.43,12424.5,8268.95,41903.88,147364.77 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26408,112832.66,73287.81,13797.72,199918.19,24224.38,15100.54,3333.52,42658.44,242576.63 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9924,PS Aide Health Services,18117,1315.8,0.0,35.09,1350.89,0.0,430.07,104.59,534.66,1885.55 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,21991,20674.4,0.0,0.0,20674.4,3847.5,4205.22,1643.89,9696.61,30371.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,45069,81410.0,29139.22,10288.16,120837.38,18283.44,11946.64,9603.53,39833.61,160670.99 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3286,Recreation Coordinator,14939,63102.0,0.0,555.34,63657.34,13119.87,12424.5,5151.73,30696.1,94353.44 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,37995,19647.61,0.0,0.0,19647.61,5069.07,5066.87,1557.01,11692.95,31340.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1632,Senior Account Clerk,9455,66150.81,0.0,0.0,66150.81,13613.75,12424.5,5433.97,31472.22,97623.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7408,Assistant Power House Operator,35653,2442.0,0.0,0.0,2442.0,454.46,477.86,189.54,1121.86,3563.86 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,21185,97764.04,29134.88,20021.73,146920.65,28592.05,12424.5,2483.02,43499.57,190420.22 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,3.0,"Operating Engineers - Miscellaneous, Local 3",7200,Supervisory-Labor & Trade,9331,Piledriver Engine Operator,14517,95766.01,278.58,2258.2,98302.79,20205.65,12424.5,7915.64,40545.79,138848.58 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q082,Captain 3,26240,200107.16,3511.81,14553.62,218172.59,40920.18,12424.5,564.68,53909.36,272081.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31398,6733.5,0.0,54.37,6787.87,980.13,0.0,1970.41,2950.54,9738.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,42069,86751.71,15474.82,3259.6,105486.13,18529.75,12377.14,8505.54,39412.43,144898.56 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2944,Protective Services Supervisor,28092,110041.03,7652.07,6098.25,123791.35,22271.49,12424.5,9832.57,44528.56,168319.91 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,7498,119465.0,15718.42,823.61,136007.03,23629.3,12424.51,2284.35,38338.16,174345.19 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,8880,6483.0,163.28,72.0,6718.28,1470.3,1433.6,548.72,3452.62,10170.9 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8300,Sheriff's Cadet,18285,40808.33,822.0,4078.89,45709.22,10410.34,12424.5,3697.88,26532.72,72241.94 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,29691,3624.76,0.0,52.98,3677.74,0.0,1209.59,285.06,1494.65,5172.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",5100,Administrative-DPW/PUC,5148,Water Operations Analyst,16445,128640.91,0.0,0.0,128640.91,25901.68,12365.49,9919.5,48186.67,176827.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,48197,31540.8,4098.71,82.0,35721.51,6953.88,5256.52,2869.9,15080.3,50801.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,23673,94112.48,3044.56,2814.88,99971.92,19500.09,12424.5,749.05,32673.64,132645.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8308,Sheriff's Sergeant,11525,119066.02,0.0,13928.37,132994.39,32304.73,12424.5,1140.81,45870.04,178864.43 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29933,147584.52,419.23,17184.13,165187.88,18426.3,12299.06,4715.27,35440.63,200628.51 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",12548,130376.11,0.0,17791.9,148168.01,29086.97,15056.76,2427.11,46570.84,194738.85 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,39860,1503.97,439.07,242.25,2185.29,0.0,445.01,169.75,614.76,2800.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",9700,Community Development,9704,Employment & Training Spec 3,34337,83699.0,0.0,624.0,84323.0,17379.24,12424.5,6693.95,36497.69,120820.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,23231,68501.38,7644.93,5466.78,81613.09,20259.9,13495.4,6372.28,40127.58,121740.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,50092,101705.04,2893.02,29167.5,133765.56,19588.47,9867.93,9945.28,39401.68,173167.24 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,40909,67261.02,0.0,1864.0,69125.02,14244.41,12424.5,5474.22,32143.13,101268.15 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,11083,7458.63,0.0,0.0,7458.63,0.0,3183.77,601.81,3785.58,11244.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6317,Assistant Const Inspector,37699,64268.6,1654.79,0.0,65923.39,13403.75,10990.91,5308.36,29703.02,95626.41 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,51218,136153.55,48624.72,18794.86,203573.13,26905.24,12424.49,3471.77,42801.5,246374.63 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52521,11133.6,0.0,1855.61,12989.21,0.0,860.16,801.19,1661.35,14650.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,40514,84644.0,26578.92,5024.7,116247.62,17568.81,12424.5,9296.37,39289.68,155537.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",4200,Appraisal & Taxation,4213,Asr-Office Assistant,19624,6755.33,0.0,0.0,6755.33,0.0,1766.9,539.45,2306.35,9061.68 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,50461,55355.34,0.0,504.79,55860.13,12416.17,6491.4,4432.36,23339.93,79200.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,47752,94399.29,0.0,0.0,94399.29,17739.1,7167.98,9764.09,34671.17,129070.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2486,Chemist I/II,4435,98157.01,0.0,0.0,98157.01,20230.58,12424.5,8063.63,40718.71,138875.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26516,4257.69,868.7,278.63,5405.02,1209.77,1343.99,462.1,3015.86,8420.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,104.0,"Sheet Metal Workers, Local 104",7300,Journeyman Trade,7376,Sheet Metal Worker,44534,82016.13,4285.68,1067.0,87368.81,16765.06,10042.34,6868.2,33675.6,121044.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,16417,1994.0,0.0,0.0,1994.0,0.0,477.86,154.77,632.63,2626.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,11977,0.0,0.0,0.0,0.0,0.0,68.5,0.0,68.5,68.5 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,43058,144152.9,0.0,13225.81,157378.71,30200.07,12376.71,6377.28,48954.06,206332.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,38848,3486.0,364.94,8326.69,12177.63,898.25,477.86,946.1,2322.21,14499.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9350,64448.59,2662.74,2247.84,69359.17,15610.3,12709.13,5363.83,33683.26,103042.43 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,44050,73886.21,0.0,603.16,74489.37,15330.5,11909.3,6193.41,33433.21,107922.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,16632,55292.56,345.87,2923.65,58562.08,12400.1,12298.76,4846.0,29544.86,88106.94 +Calendar,2015,6,General Administration & Finance,CON,Controller,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1684,Auditor II,22923,103507.04,0.0,2030.0,105537.04,21744.6,12424.5,8177.48,42346.58,147883.62 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,52147,100618.26,0.0,15749.41,116367.67,22459.5,10665.06,8181.58,41306.14,157673.81 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,2155,74412.0,0.0,3000.0,77412.0,15345.94,12424.5,6433.18,34203.62,111615.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5211,Eng/Arch/Landscape Arch Sr,12858,152547.35,0.0,4576.2,157123.55,31620.72,12089.99,10201.1,53911.81,211035.36 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,32847,80762.01,0.0,506.18,81268.19,16748.98,12424.5,7190.42,36363.9,117632.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,20142,1249.3,0.0,0.0,1249.3,232.49,155.31,99.72,487.52,1736.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,38253,23833.6,1605.98,40.0,25479.58,0.0,3058.34,1936.69,4995.03,30474.61 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,605,110413.83,0.0,6573.2,116987.03,23475.17,9880.88,9033.66,42389.71,159376.74 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1634,Principal Account Clerk,32875,45706.54,0.0,0.0,45706.54,10100.67,7167.99,3759.18,21027.84,66734.38 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,2020,4484.0,0.0,31.54,4515.54,990.71,477.86,0.0,1468.57,5984.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",18284,123550.42,0.0,0.0,123550.42,24908.26,11188.97,24318.21,60415.44,183965.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,52960,3337.88,0.0,363.46,3701.34,0.0,0.0,62.92,62.92,3764.26 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,16302,18360.87,0.0,248.83,18609.7,4121.39,3472.11,1547.48,9140.98,27750.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,48819,520.32,0.0,13.33,533.65,0.0,149.34,41.42,190.76,724.41 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7338,Electrical Line Worker,46167,95627.6,31856.63,7049.31,134533.54,20646.41,12424.5,10011.91,43082.82,177616.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,32860,43639.14,0.0,4071.17,47710.31,10434.49,9575.23,3886.52,23896.24,71606.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,30974,81.26,0.0,6.09,87.35,0.0,0.0,6.57,6.57,93.92 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1766,Media Production Tech,17011,55616.87,1465.04,1695.05,58776.96,12754.87,12131.21,4709.82,29595.9,88372.86 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,44205,100761.08,11368.96,900.0,113030.04,20955.1,12424.5,9034.69,42414.29,155444.33 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,30255,58920.25,7086.65,6959.17,72966.07,14040.98,12389.26,5872.45,32302.69,105268.76 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,7909,26841.5,0.0,4226.31,31067.81,0.0,2090.19,2405.81,4496.0,35563.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,14280,11508.0,392.96,0.0,11900.96,2141.64,1433.6,969.54,4544.78,16445.74 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,34431,60520.06,0.0,614.95,61135.01,12611.2,12244.29,5026.23,29881.72,91016.73 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,35718,28986.37,0.0,0.0,28986.37,0.0,4005.11,2305.19,6310.3,35296.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1052,IS Business Analyst,15703,24094.04,0.0,0.0,24094.04,5404.28,3345.06,1931.12,10680.46,34774.5 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,13589,97887.22,0.0,960.0,98847.22,20367.53,12418.53,7350.17,40136.23,138983.45 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,12426,58101.03,0.0,624.0,58725.03,12103.59,12424.5,4858.54,29386.63,88111.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7213,Plumber Supervisor 1,48175,114649.35,0.0,9171.95,123821.3,24891.97,12424.5,9808.33,47124.8,170946.1 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,32591,56652.72,0.0,472.97,57125.69,11607.42,9192.94,4650.04,25450.4,82576.09 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,51566,74165.03,0.0,624.0,74789.03,15414.44,12424.5,5892.42,33731.36,108520.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",29649,94388.0,12970.22,242.99,107601.21,19498.99,12424.49,8453.2,40376.68,147977.89 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1657,Accountant IV,43630,113623.02,0.0,0.0,113623.02,22866.76,12424.5,9347.28,44638.54,158261.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26294,63048.82,2470.84,771.32,66290.98,17472.61,12427.61,5160.24,35060.46,101351.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,43599,131137.12,48445.42,16730.09,196312.63,29112.28,15196.12,3338.57,47646.97,243959.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,18783,74789.66,0.0,3123.5,77913.16,15966.57,11650.96,6465.77,34083.3,111996.46 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,51279,4545.75,0.0,1032.16,5577.91,1212.07,1971.19,453.45,3636.71,9214.62 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9775,Sr Community Dev Spec 2,45427,44220.02,0.0,0.0,44220.02,8229.35,4778.65,3616.28,16624.28,60844.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,44518,108038.0,25290.6,5861.79,139190.39,22315.56,12424.5,10062.77,44802.83,183993.22 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,42939,60988.96,0.0,1076.49,62065.45,12788.75,12275.05,4853.22,29917.02,91982.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,11959,55304.05,0.0,0.0,55304.05,12346.26,12424.5,4453.43,29224.19,84528.24 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,20034,91741.85,27348.93,11912.91,131003.69,18737.89,9557.3,2194.24,30489.43,161493.12 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4261,Real Property Appraiser,2862,77075.25,0.0,1200.0,78275.25,16100.62,12409.57,6179.71,34689.9,112965.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,8499,19936.68,0.0,0.0,19936.68,3076.91,5453.65,1619.13,10149.69,30086.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9104,Transit Car Cleaner Asst Sprv,36931,39915.01,6954.03,6895.17,53764.21,8759.07,7167.97,4246.43,20173.47,73937.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,35845,2381.25,1894.56,6791.62,11067.43,0.0,34.25,0.0,34.25,11101.68 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9202,Airport Communications Disp,7422,84157.02,5745.82,7361.94,97264.78,18408.29,12424.5,7864.05,38696.84,135961.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,24185,24233.16,1586.62,572.97,26392.75,1297.42,2771.62,2042.67,6111.71,32504.46 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,31044,120111.03,0.0,0.0,120111.03,24172.55,12424.5,9547.08,46144.13,166255.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,8323,75075.34,2647.25,592.0,78314.59,11915.47,11695.71,6094.74,29705.92,108020.51 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,40245,102019.0,0.0,0.0,102019.0,21026.26,12424.5,8388.64,41839.4,143858.4 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2390,Central Processing & Dist Tech,10193,72894.25,1485.1,7828.48,82207.83,16293.64,12337.35,6517.34,35148.33,117356.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,42557,65801.71,5916.05,2490.33,74208.09,18641.92,12962.46,5669.58,37273.96,111482.05 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,2075,28390.22,0.0,3000.0,31390.22,5283.42,5017.58,2601.54,12902.54,44292.76 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,6070,3609.79,0.0,73.04,3682.83,0.0,1178.23,285.6,1463.83,5146.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,3338,36428.21,290.72,1340.56,38059.49,9206.22,7863.57,3087.41,20157.2,58216.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7200,Supervisory-Labor & Trade,7215,General Laborer Supervisor 1,31205,43731.0,14220.48,516.22,58467.7,8631.44,7645.83,4978.89,21256.16,79723.86 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,48017,117991.5,25263.06,6734.66,149989.22,23836.17,12272.18,2544.78,38653.13,188642.35 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,8325,157376.2,0.0,4725.0,162101.2,31598.44,10286.06,10369.35,52253.85,214355.05 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,13697,4146.28,0.0,0.0,4146.28,0.0,1797.97,335.95,2133.92,6280.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,6750,89682.37,0.0,836.71,90519.08,14407.25,6334.11,7881.17,28622.53,119141.61 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,49123,101531.0,0.0,0.0,101531.0,20926.02,12424.51,8090.87,41441.4,142972.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,10142,25424.5,0.0,117.45,25541.95,0.0,5973.32,2052.25,8025.57,33567.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,41953,8568.42,0.0,61.31,8629.73,0.0,3106.13,668.86,3774.99,12404.72 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,24237,121156.83,0.0,4961.76,126118.59,24566.94,10081.53,9149.18,43797.65,169916.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7388,Utility Plumber,39368,84971.9,7498.39,7798.0,100268.29,17274.34,10465.27,8020.95,35760.56,136028.85 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2324,Nursing Supervisor,32575,116767.1,0.0,19484.37,136251.47,28487.53,8075.92,9041.33,45604.78,181856.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,30429,83888.77,0.0,4394.44,88283.21,18179.51,12436.45,7165.71,37781.67,126064.88 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,15819,10803.15,27.55,326.12,11156.82,0.0,4623.34,903.78,5527.12,16683.94 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,48492,130845.83,45252.66,16355.7,192454.19,28930.05,15196.12,3228.42,47354.59,239808.78 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",4300,Revenue,4321,Cashier 2,48907,53787.64,0.0,0.0,53787.64,11953.12,11639.01,4277.31,27869.44,81657.08 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,941,79818.45,5752.19,6373.88,91944.52,17015.43,12364.77,7389.6,36769.8,128714.32 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,40611,129895.04,0.0,0.0,129895.04,26141.5,12424.51,10007.91,48573.92,178468.96 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,3857,51405.0,708.62,3394.39,55508.01,12503.69,12424.5,4587.01,29515.2,85023.21 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,38998,0.0,0.0,1708.1,1708.1,0.0,34.25,130.67,164.92,1873.02 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,37209,79395.05,0.0,2024.0,81419.05,16773.07,12424.51,6494.09,35691.67,117110.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,45128,102575.25,1607.2,8206.03,112388.48,22867.8,12424.52,9200.81,44493.13,156881.61 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,43909,75149.6,1499.06,7375.75,84024.41,16562.21,12424.5,6530.32,35517.03,119541.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,12177,1976.43,0.0,0.0,1976.43,0.0,0.0,34.0,34.0,2010.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14861,52379.53,2478.51,644.8,55502.84,11917.47,10317.71,4262.7,26497.88,82000.72 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),34727,150420.0,0.0,1562.5,151982.5,30563.93,12424.5,10360.9,53349.33,205331.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38565,29696.05,5016.02,308.57,35020.64,7634.17,9255.54,2701.44,19591.15,54611.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49521,121133.81,403.84,4933.13,126470.78,15840.17,11770.61,9106.73,36717.51,163188.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,1070,79395.04,0.0,1500.0,80895.04,16666.83,12424.51,6652.69,35744.03,116639.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,33830,2890.0,0.0,0.0,2890.0,537.83,477.86,222.73,1238.42,4128.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,26387,4489.45,0.0,312.94,4802.39,0.0,1206.61,371.8,1578.41,6380.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,31560,78047.09,235.08,40362.84,118645.01,19445.62,6544.31,3526.29,29516.22,148161.23 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2330,Anesthetist,51138,195649.74,3143.64,4984.68,203778.06,40298.0,9866.13,11182.47,61346.6,265124.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,41897,87713.02,0.0,4806.03,92519.05,18078.18,12424.5,7326.02,37828.7,130347.75 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,20726,78059.4,0.0,3000.0,81059.4,16168.85,12059.47,6700.36,34928.68,115988.08 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,252.0,"Transport Workers - Auto Svc Workers, Local 250-A",7400,Skilled Labor,7410,Automotive Service Worker,18784,3202.5,20.02,0.0,3222.52,0.0,716.79,250.12,966.91,4189.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,52177,8848.26,0.0,61.31,8909.57,0.0,0.0,704.62,704.62,9614.19 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,46807,113233.61,69788.2,23540.48,206562.29,25948.59,15196.12,3486.8,44631.51,251193.8 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,43606,15911.58,0.0,695.32,16606.9,4136.35,3936.54,1341.31,9414.2,26021.1 +Calendar,2015,4,Community Health,DPH,Public Health,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,49043,79722.01,2354.38,1432.25,83508.64,16737.62,12424.5,6771.14,35933.26,119441.9 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16963,1585.42,0.0,0.0,1585.42,375.06,477.86,123.06,975.98,2561.4 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,34030,48849.01,0.0,13431.0,62280.01,10533.75,9079.44,4939.1,24552.29,86832.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14766,2750.09,439.87,275.3,3465.26,778.9,868.11,268.4,1915.41,5380.67 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,52670,11395.84,0.0,0.0,11395.84,0.0,1523.19,884.28,2407.47,13803.31 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",SFRA,SF Redevelopment Agency,O590,Project Mgr (OCII),7063,38386.96,0.0,0.0,38386.96,8422.12,3818.44,2881.94,15122.5,53509.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6200,Public Safety Inspection,6272,Senior Housing Inspector,757,124338.05,0.0,1040.0,125378.05,25231.76,12424.5,9864.06,47520.32,172898.37 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6697,119455.89,11103.57,5170.74,135730.2,23662.83,12424.5,2312.06,38399.39,174129.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,3483,14701.87,1952.65,4824.98,21479.5,0.0,1291.55,1665.31,2956.86,24436.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,49537,15645.97,0.0,3.13,15649.1,0.0,4227.79,1213.16,5440.95,21090.05 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7308,Cable Splicer,12875,85897.6,9761.21,0.0,95658.81,7646.04,12376.71,7657.87,27680.62,123339.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,8389,61519.86,2574.61,398.85,64493.32,12702.47,12167.53,5070.93,29940.93,94434.25 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,24486,54575.49,0.0,200.0,54775.49,12118.97,11866.24,4227.49,28212.7,82988.19 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,47389,121413.34,2541.4,17581.52,141536.26,25485.05,10943.36,9660.05,46088.46,187624.72 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,8395,21998.56,0.0,0.0,21998.56,0.0,5232.63,1704.41,6937.04,28935.6 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32270,72028.16,117.23,14953.57,87098.96,15645.7,6752.24,6414.39,28812.33,115911.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,19554,93281.05,0.0,1764.0,95045.05,19590.36,12424.5,7877.98,39892.84,134937.89 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,52596,48348.9,616.61,0.0,48965.51,11585.63,12424.5,3479.72,27489.85,76455.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,41115,6345.0,0.0,0.0,6345.0,1423.17,1433.6,522.58,3379.35,9724.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7318,Electronic Maintenance Tech,4616,108038.01,34194.81,17646.77,159879.59,24721.37,12424.5,10452.48,47598.35,207477.94 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,26470,43767.3,0.0,0.0,43767.3,8135.74,6690.11,3562.84,18388.69,62155.99 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,51492,74412.08,0.0,5055.0,79467.08,15474.53,12424.5,6592.18,34491.21,113958.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,19098,64238.55,105.75,1200.0,65544.3,13424.5,12166.51,5375.6,30966.61,96510.91 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,18273,104430.23,0.0,0.0,104430.23,21567.01,12424.5,8500.68,42492.19,146922.42 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,29753,1738.18,0.0,0.0,1738.18,0.0,349.44,134.57,484.01,2222.19 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3208,Pool Lifeguard,30858,8779.16,0.0,102.73,8881.89,0.0,2919.46,688.65,3608.11,12490.0 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,1717,14676.4,0.0,3193.71,17870.11,357.04,0.0,4229.04,4586.08,22456.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,25253,781.73,0.0,757.21,1538.94,201.69,338.99,118.46,659.14,2198.08 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,30430,47231.1,0.0,3924.2,51155.3,11849.29,12424.5,4100.09,28373.88,79529.18 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,52884,70557.34,9879.48,6292.62,86729.44,13575.42,7767.94,1480.75,22824.11,109553.55 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,26426,110531.78,559.88,24976.19,136067.85,24263.06,10635.01,9557.64,44455.71,180523.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,38.0,"Plumbers and Pipefitters, Local 38",7200,Supervisory-Labor & Trade,7284,Utility Plumber Supervisor 2,40713,124765.1,26582.51,18211.97,169559.58,26370.15,12400.61,10572.57,49343.33,218902.91 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,45928,76400.3,0.0,0.0,76400.3,15998.98,10513.04,5508.51,32020.53,108420.83 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,43196,6218.7,0.0,170.24,6388.94,0.0,1242.45,495.89,1738.34,8127.28 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,39105,81518.54,0.0,0.0,81518.54,16782.49,12424.5,7318.14,36525.13,118043.67 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9174,"Manager IV, MTA",3597,147720.34,0.0,0.0,147720.34,29783.02,12424.5,17576.12,59783.64,207503.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,52053,40239.01,0.0,0.0,40239.01,8828.46,4300.77,3159.33,16288.56,56527.57 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2500,Med Therapy & Auxiliary,2593,Health Program Coordinator 3,19727,106452.52,0.0,0.0,106452.52,21937.55,12424.49,8584.09,42946.13,149398.65 +Calendar,2015,4,Community Health,DPH,Public Health,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,50083,62421.5,2731.03,2360.0,67512.53,13342.24,12424.5,5443.62,31210.36,98722.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,50127,81157.0,9799.71,6919.98,97876.69,17520.31,12424.5,7607.36,37552.17,135428.86 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,29081,96517.72,4255.5,6750.67,107523.89,18718.11,9266.0,8640.88,36624.99,144148.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43693,2763.4,0.0,5682.12,8445.52,688.91,549.55,623.64,1862.1,10307.62 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,12001,96893.35,21066.63,10965.45,128925.43,20030.29,12424.5,2100.0,34554.79,163480.22 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1635,Health Care Billing Clerk 1,25549,20060.6,0.0,0.0,20060.6,0.0,4730.87,1610.87,6341.74,26402.34 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,34281,5401.75,0.0,30.38,5432.13,0.0,2081.7,420.56,2502.26,7934.39 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,1045,58765.24,2221.11,1807.1,62793.45,13364.74,12417.63,5083.16,30865.53,93658.98 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",8100,Legal & Court,8141,Worker's Compensation Adjuster,6976,76661.07,0.0,548.26,77209.33,16132.31,10916.12,6398.7,33447.13,110656.46 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,40806,134841.93,975.15,18672.95,154490.03,0.0,9845.77,2546.72,12392.49,166882.52 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,32769,56277.81,0.0,7702.02,63979.83,13824.17,12424.5,5164.97,31413.64,95393.47 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,52415,10467.5,0.0,0.0,10467.5,0.0,2532.69,810.4,3343.09,13810.59 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,50848,4545.94,0.0,0.0,4545.94,325.65,0.0,3173.66,3499.31,8045.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,24005,63258.0,0.0,0.0,63258.0,13037.81,12424.5,5086.18,30548.49,93806.49 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,25982,4609.85,0.0,0.0,4609.85,0.0,540.58,356.89,897.47,5507.32 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,12091,15854.79,1206.45,2452.2,19513.44,0.0,3126.38,1546.44,4672.82,24186.26 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,52580,23015.48,87.92,0.0,23103.4,0.0,0.0,1827.78,1827.78,24931.18 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,47256,65149.24,9193.23,7175.59,81518.06,14491.63,12032.0,6444.23,32967.86,114485.92 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,14613,113233.59,55158.86,12452.32,180844.77,23752.41,15196.12,3028.87,41977.4,222822.17 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5291,Planner 3,22973,68952.0,0.0,5816.3,74768.3,14954.62,8123.71,5952.64,29030.97,103799.27 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,39262,42002.25,199.4,3335.02,45536.67,10308.24,11062.58,3675.92,25046.74,70583.41 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7502,Asphalt Worker,51464,65145.02,466.88,1910.75,67522.65,13708.51,12424.5,5572.42,31705.43,99228.08 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,41570,2397.25,0.0,12264.64,14661.89,717.44,476.73,1073.44,2267.61,16929.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22644,32127.71,4334.14,1074.23,37536.08,8538.23,10035.71,2843.76,21417.7,58953.78 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,38995,138633.96,207.14,3592.72,142433.82,27945.01,12424.5,2006.09,42375.6,184809.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,10267,122734.71,0.0,0.0,122734.71,24700.46,12424.5,17149.92,54274.88,177009.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,34518,81157.09,29.08,2035.3,83221.47,17129.66,12424.5,6820.22,36374.38,119595.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,49490,64596.86,3918.67,875.04,69390.57,17899.73,12729.56,5361.15,35990.44,105381.01 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,7349,129895.04,0.0,0.0,129895.04,26141.51,12424.5,9989.62,48555.63,178450.67 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31565,8123.96,0.0,155.58,8279.54,1879.48,0.0,3813.04,5692.52,13972.06 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,52182,66102.0,2400.66,0.0,68502.66,13624.06,12424.5,5659.61,31708.17,100210.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,WOM,Department of the Status of Women,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,26992,82524.01,0.0,0.0,82524.01,16653.51,10035.18,6639.55,33328.24,115852.25 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,16073,14548.63,0.0,555.84,15104.47,0.0,5565.62,1171.18,6736.8,21841.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,36605,126203.51,454.37,8662.77,135320.65,27098.64,11173.09,5509.77,43781.5,179102.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,6.0,"Electrical Workers, Local 6",6200,Public Safety Inspection,6249,Senior Electrical Inpsector,8218,67302.05,3431.55,1346.04,72079.64,12759.89,6690.11,4998.54,24448.54,96528.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,744,62811.0,0.0,5241.81,68052.81,14030.57,12424.5,5574.31,32029.38,100082.19 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,38242,62461.1,0.0,0.0,62461.1,12844.46,12424.5,5080.86,30349.82,92810.92 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46960,114731.91,2034.06,10953.01,127718.98,22057.98,10926.39,9656.09,42640.46,170359.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,12690,57271.5,2128.9,3647.88,63048.28,13097.36,8386.54,1053.52,22537.42,85585.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7335,Senior Stationary Engineer,39602,96332.0,4701.42,14258.82,115292.24,21541.87,12424.5,9404.52,43370.89,158663.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,1915,129895.04,0.0,0.0,129895.04,26141.49,12424.5,9988.24,48554.23,178449.27 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32349,62108.4,608.11,4169.29,66885.8,12017.09,6768.37,5349.53,24134.99,91020.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q051,Sergeant 2,32202,31989.9,1936.99,6162.07,40088.96,5679.63,2867.19,676.15,9222.97,49311.93 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,23369,6104.48,342.92,1784.05,8231.45,1585.23,1791.99,591.29,3968.51,12199.96 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,23203,10333.9,0.0,1646.64,11980.54,2583.76,770.55,362.18,3716.49,15697.03 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37640,65727.26,4421.34,789.53,70938.13,15590.54,12947.47,5375.92,33913.93,104852.06 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6122,Sr Environmental Hlth Insp,6071,29863.2,0.0,12588.36,42451.56,6676.96,3231.57,3266.51,13175.04,55626.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7332,Maintenance Machinist,28141,3337.0,0.0,0.0,3337.0,621.02,477.86,260.61,1359.49,4696.49 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49981,113233.6,3531.07,19779.14,136543.81,25068.57,15196.12,2306.57,42571.26,179115.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H030,"Captain, Fire Suppression",21324,148823.34,26724.67,20303.94,195851.95,32929.7,15052.76,3242.18,51224.64,247076.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,45119,68067.08,1787.94,619.2,70474.22,14156.59,12424.5,5790.83,32371.92,102846.14 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2454,Clinical Pharmacist,19095,159820.0,2774.13,4224.45,166818.58,32048.46,11946.64,10527.41,54522.51,221341.09 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15128,1721.13,0.0,22.54,1743.67,0.0,839.26,135.19,974.45,2718.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,37730,112685.46,35859.4,10255.09,158799.95,22330.92,12424.5,2850.91,37606.33,196406.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1044,IS Engineer-Principal,5802,146698.14,0.0,0.0,146698.14,29453.14,12424.5,10266.88,52144.52,198842.66 +Calendar,2015,6,General Administration & Finance,CON,Controller,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0932,Manager IV,50791,79859.53,0.0,0.0,79859.53,14640.31,6212.25,11596.07,32448.63,112308.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,34979,47792.96,0.0,0.0,47792.96,3738.38,6863.32,3784.94,14386.64,62179.6 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,32478,6037.1,0.0,0.0,6037.1,0.0,0.0,476.93,476.93,6514.03 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1402,Junior Clerk,17914,282.63,333.09,0.0,615.72,0.0,83.62,47.79,131.41,747.13 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48151,39.43,0.0,3.94,43.37,1126.47,2.99,391.6,1521.06,1564.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,44055,117201.25,0.0,0.0,117201.25,23570.35,12328.93,9080.34,44979.62,162180.87 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,27660,12520.0,0.0,0.0,12520.0,2269.88,1911.46,966.95,5148.29,17668.29 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,250.0,"SEIU - Health Workers, Local 1021",7500,Semi-Skilled & General Labor,7524,Institution Utility Worker,36858,53973.01,668.89,24.0,54665.9,12950.71,12424.5,4530.49,29905.7,84571.6 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,2326,77856.3,2082.14,3022.43,82960.87,15750.04,11946.64,4383.24,32079.92,115040.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,44968,81942.01,660.98,2863.71,85466.7,17404.07,12424.52,6824.17,36652.76,122119.46 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2606,Senior Food Service Worker,27334,53973.01,0.0,624.0,54597.01,13095.26,12424.5,4524.97,30044.73,84641.74 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,32271,54247.36,0.0,3242.1,57489.46,11358.77,11919.52,4711.71,27990.0,85479.46 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,20157,24431.01,0.0,0.0,24431.01,6303.22,5256.52,1864.68,13424.42,37855.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,35551,55837.92,60.05,2202.55,58100.52,12493.2,12420.68,4652.9,29566.78,87667.3 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9172,"Manager II, MTA",16430,99561.65,0.0,0.0,99561.65,20500.74,12424.5,16394.29,49319.53,148881.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,17561,58857.32,1002.82,416.95,60277.09,13256.3,12615.64,4881.27,30753.21,91030.3 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,8592,8276.0,0.0,0.0,8276.0,2135.2,1911.46,659.44,4706.1,12982.1 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,10166,96809.49,365.61,19828.17,117003.27,22730.36,10507.13,9567.2,42804.69,159807.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,37665,37291.66,0.0,780.0,38071.66,4590.73,12263.22,2958.08,19812.03,57883.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,39113,49531.94,175.88,0.0,49707.82,11871.31,12424.5,3943.66,28239.47,77947.29 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,15642,54124.04,0.0,1584.0,55708.04,12460.55,12424.5,4561.7,29446.75,85154.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,19476,102440.38,0.0,9001.08,111441.46,12803.22,9064.15,8434.34,30301.71,141743.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",6100,Health & Sanitation Inspection,6108,Environmental Hlth Tech 1,39978,44464.03,0.0,0.0,44464.03,9729.11,7645.84,3634.85,21009.8,65473.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",9248,7999.04,0.0,5100.94,13099.98,1799.74,1066.84,1105.92,3972.5,17072.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,33950,112209.0,0.0,0.0,112209.0,22582.31,12424.5,9230.47,44237.28,156446.28 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,24531,173274.05,0.0,24593.13,197867.18,38319.99,12424.5,11082.75,61827.24,259694.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2600,Dietary & Food,2624,Dietitian,1353,19498.24,0.0,0.0,19498.24,0.0,3458.55,1512.17,4970.72,24468.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,23029,63887.0,7503.84,1200.33,72591.17,13415.0,12424.5,5877.08,31716.58,104307.75 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,47465,93916.38,6871.87,4295.5,105083.75,19548.16,6047.03,7970.63,33565.82,138649.57 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,23302,31488.44,113.42,2178.44,33780.3,8105.09,8013.21,2839.03,18957.33,52737.63 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,36510,70747.09,0.0,0.0,70747.09,14491.67,9885.84,5540.76,29918.27,100665.36 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,48865,47707.2,6958.58,2749.0,57414.78,11446.96,12424.5,4360.8,28232.26,85647.04 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,3229,787.07,0.0,12.25,799.32,0.0,383.79,32.87,416.66,1215.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7514,General Laborer,854,53134.3,60.15,3888.39,57082.84,12575.69,10321.87,4643.61,27541.17,84624.01 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,12838,61474.31,35383.86,6551.99,103410.16,18933.69,12159.47,7314.48,38407.64,141817.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43478,0.0,0.0,250.0,250.0,0.0,68.5,0.0,68.5,318.5 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,7989,4484.0,175.16,1961.76,6620.92,969.03,477.86,112.55,1559.44,8180.36 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,930.0,Building Inspectors' Association - Inspectors,6300,Construction Inspection,6331,Building Inspector,6966,112776.01,0.0,3569.52,116345.53,23388.64,12424.51,9554.12,45367.27,161712.8 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7203,Bldg & Grounds Maint Sprv,5229,105841.8,14847.31,303.23,120992.34,21812.94,12424.5,9798.25,44035.69,165028.03 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32021,52907.4,137.18,8811.44,61856.02,11392.93,5758.28,4932.85,22084.06,83940.08 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,23008,53310.73,250.79,1590.0,55151.52,12253.2,11954.28,4271.25,28478.73,83630.25 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,41159,1776.98,0.0,0.0,1776.98,0.0,770.55,137.57,908.12,2685.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9110,Fare Collections Receiver,40027,62811.0,855.37,743.4,64409.77,12964.0,12424.5,5290.78,30679.28,95089.05 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,6974,24224.01,0.0,3000.0,27224.01,5326.89,5734.39,2242.25,13303.53,40527.54 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,25190,49097.26,0.0,2296.2,51393.46,11778.17,12421.03,4171.07,28370.27,79763.73 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2232,Senior Physician Specialist,724,14281.58,0.0,0.0,14281.58,2589.25,919.89,1072.75,4581.89,18863.47 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,33128,6739.3,0.0,0.0,6739.3,0.0,0.0,532.41,532.41,7271.71 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,21651,8558.5,0.0,0.0,8558.5,0.0,2771.62,677.1,3448.72,12007.22 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,48918,82587.79,2002.73,8233.08,92823.6,0.0,6621.31,3071.39,9692.7,102516.3 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,45503,19429.85,0.0,0.0,19429.85,4272.63,4775.67,1557.48,10605.78,30035.63 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,40140,16017.79,0.0,0.0,16017.79,0.0,2220.58,1243.23,3463.81,19481.6 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8306,Senior Deputy Sheriff,35135,106983.84,3234.34,13689.95,123908.13,29350.11,12265.85,2102.12,43718.08,167626.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,17221,68471.15,1730.64,510.0,70711.79,14202.2,12354.32,5493.49,32050.01,102761.8 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1654,Accountant III,24825,9567.0,0.0,0.0,9567.0,1780.41,1433.59,757.15,3971.15,13538.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,22867,38758.8,2778.35,977.57,42514.72,7624.47,7645.85,3527.74,18798.06,61312.78 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0941,Manager VI,35768,121510.2,0.0,0.0,121510.2,23567.55,8840.5,14923.98,47332.03,168842.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7244,Power Plant Supervisor 1,27501,25577.0,10986.27,1175.87,37739.14,4759.86,3345.06,3066.21,11171.13,48910.27 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,6718,1852.76,0.0,0.0,1852.76,0.0,256.85,143.8,400.65,2253.41 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,1.0,Miscellaneous Unrepresented Employees,1200,Personnel,1280,Employee Relations Representat,19874,16393.0,0.0,0.0,16393.0,3050.72,2628.26,1275.33,6954.31,23347.31 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,40087,62964.01,0.0,4539.0,67503.01,13235.53,10513.04,5622.13,29370.7,96873.71 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,46069,7331.54,0.0,66.4,7397.94,0.0,2440.1,573.85,3013.95,10411.89 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8239,Public Safetycomm Supv,27539,51860.5,1246.15,19506.46,72613.11,12743.54,6152.52,5903.71,24799.77,97412.88 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,508,52200.77,0.0,0.0,52200.77,10703.67,10149.74,3963.48,24816.89,77017.66 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,32462,54909.02,0.0,1684.0,56593.02,12660.51,12424.51,4634.71,29719.73,86312.75 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7350,Trans And Dist Line Worker,11738,112176.77,18891.63,45248.33,176316.73,23279.06,12424.48,10683.41,46386.95,222703.68 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,420C,Deputy Court Clerk II,33309,68969.95,3112.42,3920.0,76002.37,14524.18,11515.84,6321.7,32361.72,108364.09 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5362,Engineering Assistant,50953,33040.0,1692.56,0.0,34732.56,8473.42,6690.12,2794.7,17958.24,52690.8 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,41244,60600.04,0.0,0.0,60600.04,12471.7,12346.85,4377.91,29196.46,89796.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,19801,112140.45,0.0,0.0,112140.45,22463.67,11793.18,8786.99,43043.84,155184.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,945,9398.47,0.0,24.53,9423.0,0.0,3409.27,730.23,4139.5,13562.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",9100,Street Transit,9145,Traffic Signal Electrician,8513,106953.0,2740.24,613.2,110306.44,12799.91,12424.51,8833.53,34057.95,144364.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,16611,36009.93,3541.37,971.45,40522.75,9721.7,10826.76,2839.21,23387.67,63910.42 +Calendar,2015,3,Human Welfare & Neighborhood Development,CSS,Child Support Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,23777,61735.02,0.0,624.0,62359.02,12852.62,12424.5,5007.2,30284.32,92643.34 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,39.0,"Stationary Engineers, Local 39",7400,Skilled Labor,7472,Wire Rope Cable Maint Mechanic,41505,59035.09,35280.62,8695.97,103011.68,13857.22,8362.64,8027.85,30247.71,133259.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",6300,Construction Inspection,6322,Permit Technician II,18337,68713.41,5613.97,0.0,74327.38,14231.76,10978.96,5997.43,31208.15,105535.53 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,20754,31922.02,0.0,0.0,31922.02,0.0,5256.52,2572.45,7828.97,39750.99 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,8273,119460.38,54409.94,24600.13,198470.45,23646.04,12424.5,3330.11,39400.65,237871.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,21139,112209.04,3533.42,0.0,115742.46,22870.16,12424.5,8902.36,44197.02,159939.48 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,29577,32160.0,4346.63,6735.15,43241.78,5709.66,2867.19,714.2,9291.05,52532.83 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3618,Library Technical Assistant 2,25702,51801.03,0.0,1624.06,53425.09,10512.38,8123.71,4406.33,23042.42,76467.51 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,47830,49855.54,4237.23,7998.08,62090.85,13048.68,12366.68,4984.58,30399.94,92490.79 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,15832,73245.22,0.0,0.0,73245.22,15071.14,12424.5,5721.28,33216.92,106462.14 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,10252,15547.69,0.0,71.26,15618.95,0.0,5169.98,1210.76,6380.74,21999.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38628,65619.47,6303.72,746.71,72669.9,15071.7,12926.68,5344.12,33342.5,106012.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,33648,118104.0,0.0,0.0,118104.0,23768.42,12424.52,9439.57,45632.51,163736.51 +Calendar,2015,4,Community Health,DPH,Public Health,164.0,Physicians and Dentists - Miscellaneous,2200,Medical & Dental,2230,Physician Specialist,28156,25306.78,0.0,300.0,25606.78,4642.52,1636.68,2012.07,8291.27,33898.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,19419,68414.5,5445.09,10581.32,84440.91,15475.66,12098.72,6884.15,34458.53,118899.44 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,26081,97762.3,2309.08,13424.17,113495.55,27023.73,12424.5,1937.93,41386.16,154881.71 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,37356,97763.75,4910.23,8233.85,110907.83,25778.99,12424.5,1526.27,39729.76,150637.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4200,Appraisal & Taxation,4230,Estate Investigator,30489,77011.58,0.0,0.0,77011.58,16037.32,11313.47,5890.69,33241.48,110253.06 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,1422,81157.04,7953.53,6413.6,95524.17,17403.39,12424.5,7617.48,37445.37,132969.54 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,20232,111650.64,2067.05,11169.17,124886.86,22689.57,12311.01,2053.49,37054.07,161940.93 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,26777,112159.76,65877.66,21019.54,199056.96,24643.66,15052.75,3349.9,43046.31,242103.27 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7348,Steamfitter,34156,100761.01,21031.91,5162.83,126955.75,21828.78,12424.5,9843.6,44096.88,171052.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5601,Utility Analyst,3377,43576.54,0.0,0.0,43576.54,9441.32,7884.78,3463.24,20789.34,64365.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,19676,62468.81,22125.98,1748.34,86343.13,18066.4,12424.5,7001.33,37492.23,123835.36 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1093,IT Operations Support Admn III,9092,87713.0,0.0,0.0,87713.0,18078.17,12424.5,6307.94,36810.61,124523.61 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,5861,13199.31,0.0,422.04,13621.35,530.46,3276.35,1055.69,4862.5,18483.85 +Calendar,2015,6,General Administration & Finance,REG,Elections,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,16465,78473.01,0.0,0.0,78473.01,16194.54,12424.5,6326.24,34945.28,113418.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2481,Water Qualitytech I/II,35446,82717.08,948.6,474.3,84139.98,17048.48,12424.5,6649.07,36122.05,120262.03 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,53028,45856.2,2535.45,6446.8,54838.45,11680.38,11098.43,4410.78,27189.59,82028.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8216,Senior Parking Control Officer,27977,71440.42,8869.49,1694.52,82004.43,14886.99,12424.5,6688.05,33999.54,116003.97 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,14570,125607.59,502.88,11634.52,137744.99,26280.28,11001.66,10073.77,47355.71,185100.7 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,5717,52668.75,0.0,0.0,52668.75,9548.82,5375.97,4029.27,18954.06,71622.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,7894,58958.53,2031.29,1630.88,62620.7,13463.98,12421.58,5011.56,30897.12,93517.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,4867,13410.52,792.41,374.69,14577.62,3628.18,2656.7,1048.78,7333.66,21911.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,46809,54301.03,9268.94,1175.0,64744.97,11480.08,11946.64,5095.71,28522.43,93267.4 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7329,Electr Maint Tech Asst Sprv,21116,116638.02,679.65,0.0,117317.67,23473.53,12424.49,9690.57,45588.59,162906.26 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,27926,11501.64,0.0,690.1,12191.74,2867.49,1513.28,196.51,4577.28,16769.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7482,Power Generation Technician 2,9935,3743.0,1264.01,0.0,5007.01,696.57,453.97,388.26,1538.8,6545.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,40003,180152.0,97.62,250.0,180499.62,36229.01,12424.5,10738.12,59391.63,239891.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,7268,66102.08,2339.1,2526.02,70967.2,14145.71,12424.5,5825.51,32395.72,103362.92 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,19897,77071.05,6344.0,1500.0,84915.05,16198.25,12424.5,7004.74,35627.49,120542.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0933,Manager V,29893,60670.01,0.0,0.0,60670.01,13311.0,4778.65,7733.92,25823.57,86493.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1824,Pr Administrative Analyst,13023,103550.71,0.0,0.0,103550.71,21311.34,12328.92,8152.72,41792.98,145343.69 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,34069,64915.51,5587.54,1540.0,72043.05,13682.07,12421.51,5581.73,31685.31,103728.36 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,35042,88144.0,0.0,0.0,88144.0,18166.76,12424.51,7068.35,37659.62,125803.62 +Calendar,2015,1,Public Protection,DAT,District Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8132,Da Investigative Assist,11375,77071.0,0.0,1040.0,78111.0,16098.03,12424.5,6152.32,34674.85,112785.85 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,6498,77071.06,0.0,2144.0,79215.06,16326.77,12424.5,6506.21,35257.48,114472.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,18613,100554.0,0.0,775.51,101329.51,20869.16,12424.5,8111.12,41404.78,142734.29 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,47800,74238.81,0.0,0.0,74238.81,15276.09,12424.5,5793.76,33494.35,107733.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,34433,905.71,0.0,728.56,1634.27,233.67,392.75,133.32,759.74,2394.01 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,4321,138251.09,12488.71,8794.26,159534.06,27327.47,12364.77,2710.68,42402.92,201936.98 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46710,118596.16,1002.59,10864.44,130463.19,25995.11,11161.38,9930.09,47086.58,177549.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1042,IS Engineer-Journey,31267,56166.02,0.0,3515.61,59681.63,10311.36,6212.25,4882.61,21406.22,81087.85 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,52258,67438.75,26880.79,2884.09,97203.63,19248.95,13289.2,7348.88,39887.03,137090.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,43900,8117.62,1668.56,101.41,9887.59,1636.45,2562.43,757.6,4956.48,14844.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,4273,117139.25,4750.11,7115.82,129005.18,23170.34,12424.51,2141.41,37736.26,166741.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2328,Nurse Practitioner,48890,12130.6,0.0,236.92,12367.52,4827.21,887.16,3751.06,9465.43,21832.95 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,7031,112680.08,24769.64,27784.7,165234.42,22350.66,12424.5,2745.44,37520.6,202755.02 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,40089,1030.75,0.0,9.3,1040.05,0.0,397.23,80.52,477.75,1517.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,39851,73590.86,0.0,0.0,73590.86,15140.95,12366.92,5932.26,33440.13,107030.99 +Calendar,2015,4,Community Health,DPH,Public Health,163.0,Physicians and Dentists - Spv Physician Specialist,2200,Medical & Dental,2233,Supervising Physician Spec,40536,237658.4,0.0,79777.5,317435.9,47811.19,12054.16,13084.2,72949.55,390385.45 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8238,Public Safetycomm Disp,27478,77712.81,9535.02,7022.08,94269.91,18409.33,12376.71,7609.06,38395.1,132665.01 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,35662,18007.96,0.0,2288.91,20296.87,0.0,1548.94,1574.37,3123.31,23420.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3520,Museum Preparator,36551,20408.95,136.35,0.0,20545.3,0.0,5340.15,1592.59,6932.74,27478.04 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,2583,101292.73,11331.62,10967.2,123591.55,20808.64,9079.44,2062.51,31950.59,155542.14 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5276,City Planning Intern,28005,19052.88,0.0,0.0,19052.88,0.0,4742.81,1478.24,6221.05,25273.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,11958,14465.56,0.0,1059.14,15524.7,253.25,6272.76,1240.23,7766.24,23290.94 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,43684,56531.0,0.0,1130.57,57661.57,11884.6,12424.5,4484.55,28793.65,86455.22 +Calendar,2015,4,Community Health,DPH,Public Health,1.0,Miscellaneous Unrepresented Employees,1900,Purchasing & Storekeeping,1942,Asst Materials Coordinator,45294,50622.0,4278.89,144.0,55044.89,9893.63,7645.83,4517.34,22056.8,77101.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,6882,57660.73,5553.63,551.96,63766.32,15106.38,13200.5,4643.67,32950.55,96716.87 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,20862,7836.4,0.0,53.43,7889.83,802.11,0.0,2853.57,3655.68,11545.51 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,43678,6345.0,0.0,0.0,6345.0,1423.17,1433.6,522.58,3379.35,9724.35 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,8778,24110.2,658.87,1049.77,25818.84,4396.32,6403.4,1964.14,12763.86,38582.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,32255,25487.0,0.0,8997.45,34484.45,5700.54,3954.34,2882.59,12537.47,47021.92 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2930,Psychiatric Social Worker,3919,46640.52,0.0,1352.0,47992.52,9883.79,6212.25,3842.97,19939.01,67931.53 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22461,2179.13,0.0,440.02,2619.15,471.64,0.0,1186.22,1657.86,4277.01 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",8300,Correction & Detention,8320,"Counselor, Juvenile Hall",14836,69401.9,26771.86,5233.65,101407.41,17025.37,12421.52,1950.98,31397.87,132805.28 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,49023,130421.94,25073.89,16378.03,171873.86,28694.73,14335.97,2908.97,45939.67,217813.53 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",7400,Skilled Labor,7416,Book Repairer,18062,58922.02,0.0,624.0,59546.02,12272.68,12424.5,4548.03,29245.21,88791.23 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,51149,91749.81,21832.45,710.81,114293.07,18708.55,9557.31,1902.73,30168.59,144461.66 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,33754,81307.95,10385.62,9129.3,100822.87,18627.89,12328.92,8203.35,39160.16,139983.03 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2469,Diagnostic Imaging Tech III,10515,123402.07,150.63,3205.17,126757.87,25416.38,12424.5,9803.49,47644.37,174402.24 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,790.0,"SEIU - Miscellaneous, Local 1021",1700,Computer Operatns & Repro Svcs,1704,Communications Dispatcher 1,30451,59827.03,5043.41,584.4,65454.84,12451.16,12424.5,5361.17,30236.83,95691.67 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,26032,145579.92,11580.35,13367.03,170527.3,29790.64,12424.5,434.01,42649.15,213176.45 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,28177,77900.11,616.49,5509.72,84026.32,0.0,5670.05,6518.04,12188.09,96214.41 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2907,Eligibility Worker Supervisor,7603,85368.03,37961.55,624.0,123953.58,17723.3,12424.5,9797.2,39945.0,163898.58 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2918,HSA Social Worker,21251,42310.81,0.0,760.0,43070.81,8376.38,7645.85,3516.38,19538.61,62609.42 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1637,Patient Accounts Clerk,603,60580.35,3167.7,0.0,63748.05,12480.73,12303.0,5028.82,29812.55,93560.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,15191,92506.61,14789.17,1054.19,108349.97,19249.23,12424.48,8662.54,40336.25,148686.22 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,18944,49297.02,0.0,1466.61,50763.63,11367.98,10883.38,4230.71,26482.07,77245.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47532,98666.34,4376.27,6285.31,109327.92,20487.49,12424.5,1752.61,34664.6,143992.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11107,68561.58,27742.2,8751.73,105055.51,21210.6,13510.39,8226.49,42947.48,148002.99 +Calendar,2015,6,General Administration & Finance,ASR,Assessor/Recorder,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1054,IS Business Analyst-Principal,52037,85090.52,0.0,0.0,85090.52,16605.57,9324.35,6559.33,32489.25,117579.77 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,44305,93058.21,31535.11,8277.83,132871.15,19663.47,12567.87,9966.49,42197.83,175068.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,37191,59516.62,12324.85,1708.08,73549.55,12342.73,11829.51,5783.39,29955.63,103505.18 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,695,47299.33,10127.92,5340.86,62768.11,14788.99,9398.9,4680.39,28868.28,91636.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,27991,77620.0,873.23,10721.26,89214.49,16476.17,9557.29,7252.89,33286.35,122500.84 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,33036,138103.2,2135.63,10228.16,150466.99,27285.64,12376.71,1647.17,41309.52,191776.51 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,15587,101300.24,20967.05,9276.34,131543.63,20938.56,12161.67,2151.7,35251.93,166795.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3289,Recreation Supervisor,21712,86663.03,0.0,804.48,87467.51,18027.37,12424.5,7252.79,37704.66,125172.17 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9212,Airport Safety Officer,14244,82578.54,11946.21,3082.67,97607.42,17242.32,11544.7,7749.77,36536.79,134144.21 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,4709,76728.0,9376.46,2080.0,88184.46,16246.97,12424.52,7018.64,35690.13,123874.59 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,35784,135421.0,0.0,5327.82,140748.82,28315.76,12424.5,10171.74,50912.0,191660.82 +Calendar,2015,5,Culture & Recreation,AAM,Asian Art Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8228,Museum Sec Supv,9161,70236.63,1302.46,1447.28,72986.37,14615.24,12423.01,5899.08,32937.33,105923.7 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,37397,121432.48,13250.48,13888.6,148571.56,24037.25,12424.5,2521.21,38982.96,187554.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,20737,33510.26,0.0,3190.47,36700.73,6979.58,0.0,3017.02,9996.6,46697.33 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,11137,97775.67,50930.19,11094.35,159800.21,26480.65,12424.5,2724.56,41629.71,201429.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,222,31533.89,30.04,484.79,32048.72,7495.17,6217.21,2420.32,16132.7,48181.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,38020,41509.69,251.78,3309.59,45071.06,7937.06,4362.91,3192.65,15492.62,60563.68 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,49571,56531.0,232.89,2648.05,59411.94,12176.61,12424.5,4870.9,29472.01,88883.95 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11180,62770.55,0.0,10432.1,73202.65,9298.72,0.0,7255.21,16553.93,89756.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,41594,131641.92,0.0,0.0,131641.92,26439.45,12424.5,9970.23,48834.18,180476.1 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5207,Assoc Engineer,18446,116976.07,0.0,4134.27,121110.34,24371.78,12424.49,9679.59,46475.86,167586.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1844,Senior Management Assistant,34136,20789.0,0.0,0.0,20789.0,3868.82,3345.06,1687.64,8901.52,29690.52 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,11349,113233.6,69369.68,11470.35,194073.63,23589.53,15196.12,3280.94,42066.59,236140.22 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3417,Gardener,48401,66102.0,0.0,1584.34,67686.34,13919.33,12424.49,5482.27,31826.09,99512.43 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,16.0,"Theatrical and Stage Employees, Local 16",7300,Journeyman Trade,7377,Stage Electrician,17399,15022.8,0.0,0.0,15022.8,0.0,2007.04,1164.97,3172.01,18194.81 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q050,"Sergeant, (Police Department)",18509,5131.1,0.0,290.47,5421.57,911.21,477.86,89.87,1478.94,6900.51 +Calendar,2015,1,Public Protection,PDR,Public Defender,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",8100,Legal & Court,8173,Legal Assistant,23575,34963.36,0.0,2442.65,37406.01,7842.28,5232.63,3060.88,16135.79,53541.8 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1600,"Payroll, Billing & Accounting",1649,Accountant Intern,39691,18013.35,0.0,0.0,18013.35,3352.3,3799.03,1428.54,8579.87,26593.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,34424,23069.45,989.3,1853.06,25911.81,3731.62,5245.76,2066.39,11043.77,36955.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,16844,12583.21,3.27,1388.1,13974.58,0.0,0.0,1105.26,1105.26,15079.84 +Calendar,2015,1,Public Protection,SHF,Sheriff,499.0,Sheriff's Managers and Supervisors Association,8300,Correction & Detention,8310,Sheriff's Lieutenant,25665,136466.02,26675.61,15274.9,178416.53,35882.59,12424.5,2784.55,51091.64,229508.17 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,41342,97770.1,29647.54,10627.3,138044.94,26364.1,12424.5,2352.26,41140.86,179185.8 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,4547,130845.85,90949.71,15772.04,237567.6,28803.45,15196.11,4009.53,48009.09,285576.69 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",9200,Airport Operation,9209,Community Police Services Aide,4702,57541.93,0.0,5963.43,63505.36,14229.16,12424.5,5098.87,31752.53,95257.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,17042,68079.7,3873.71,3399.9,75353.31,16273.77,13413.98,5757.92,35445.67,110798.98 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,43294,45131.58,0.0,0.0,45131.58,10123.02,5728.42,3736.27,19587.71,64719.29 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7368,Senior Comm Systems Technican,22250,24525.0,0.0,0.0,24525.0,4446.4,2389.32,1946.89,8782.61,33307.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5382,"Stdntdsgntrain3, Arch/Eng/Plng",44192,6519.98,0.0,0.0,6519.98,1462.42,1379.83,551.27,3393.52,9913.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7345,Electrician,20166,95934.42,279.3,0.0,96213.72,19773.85,12233.37,7911.23,39918.45,136132.17 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,23282,75292.07,441.17,10641.98,86375.22,16752.31,12372.95,6871.37,35996.63,122371.85 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,47222,94680.72,18169.4,9922.84,122772.96,19663.77,12424.5,2048.03,34136.3,156909.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,28828,98149.55,0.0,0.0,98149.55,20211.92,12093.1,7954.0,40259.02,138408.57 +Calendar,2015,4,Community Health,DPH,Public Health,858.0,"Teamsters - Supervising Nurses, Local 856",2300,Nursing,2322,Nurse Manager,39359,139816.62,0.0,13981.66,153798.28,32095.7,9031.66,10255.23,51382.59,205180.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1043,IS Engineer-Senior,44303,119575.23,0.0,0.0,119575.23,24037.96,12424.5,9606.02,46068.48,165643.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9772,Community Development Spec,25745,14370.01,0.0,0.0,14370.01,3223.2,2389.33,1163.01,6775.54,21145.55 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,984,15173.03,0.0,55.7,15228.73,3553.45,4539.72,1650.93,9744.1,24972.83 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,4146,122947.74,0.0,0.0,122947.74,24953.5,11468.77,16536.14,52958.41,175906.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7235,Transit Power Line Sprv1,25151,111403.0,56048.35,18393.77,185845.12,24976.33,12424.5,11004.36,48405.19,234250.31 +Calendar,2015,6,General Administration & Finance,TTX,Treasurer/Tax Collector,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,50493,48095.09,479.59,0.0,48574.68,11527.2,12406.58,3696.61,27630.39,76205.07 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9920,Publ Svc Aide-Asst To Prof,20602,11793.92,0.0,0.0,11793.92,0.0,3870.71,988.65,4859.36,16653.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",3500,Museum & Cultural Affairs,3556,Museum Registrar,42292,68867.0,50.98,0.0,68917.98,14193.66,12424.5,5715.94,32334.1,101252.08 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1600,"Payroll, Billing & Accounting",1630,Account Clerk,28887,39593.0,0.0,0.0,39593.0,8780.55,9557.3,3178.95,21516.8,61109.8 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,38819,100727.91,0.0,0.0,100727.91,20787.32,11802.5,23546.47,56136.29,156864.2 +Calendar,2015,5,Culture & Recreation,FAM,Fine Arts Museum,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8226,Museum Guard,4937,20332.54,161.32,0.0,20493.86,0.0,0.0,1621.71,1621.71,22115.57 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,38208,67261.02,0.0,749.0,68010.02,13991.51,12424.5,5632.5,32048.51,100058.53 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,790.0,"SEIU - Miscellaneous, Local 1021",7300,Journeyman Trade,7362,Communications Systems Tech,48355,12540.26,266.03,628.7,13434.99,0.0,1684.47,224.36,1908.83,15343.82 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7262,Maintenance Planner,19847,114258.43,0.0,0.0,114258.43,23327.47,12424.5,9348.87,45100.84,159359.27 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,29821,4628.4,0.0,890.0,5518.4,1194.11,2007.04,448.82,3649.97,9168.37 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,50715,54422.63,4032.32,721.81,59176.76,12903.19,10806.92,4472.97,28183.08,87359.84 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1820,Junior Administrative Analyst,34795,19791.01,0.0,0.0,19791.01,5106.06,4300.79,1582.43,10989.28,30780.29 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,7426,9266.96,0.0,61.31,9328.27,0.0,3354.01,723.04,4077.05,13405.32 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2940,Protective Services Worker,30062,97934.01,0.0,624.0,98558.01,20308.11,12424.5,7921.98,40654.59,139212.6 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),14158,180093.21,0.0,1562.5,181655.71,36482.01,12424.5,10750.62,59657.13,241312.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,799.0,"Firefighters - Chiefs/Fire Boat Workers, Local 798",H000,Fire Services,H040,"Battlion Chief, Fire Suppressi",24515,180314.37,67781.01,29842.07,277937.45,41128.81,15196.12,4647.47,60972.4,338909.85 +Calendar,2015,1,Public Protection,CRT,Superior Court,356.0,Municipal Executive Association - Court,SCRT,SF Superior Court,202C,Court Supervisor II,1977,107562.0,0.0,5083.5,112645.5,21660.43,12424.5,31998.13,66083.06,178728.56 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",3300,Park & Zoo,3374,Volunteer/Outreach Coord,41025,64851.01,0.0,0.0,64851.01,13337.5,12424.5,5215.41,30977.41,95828.42 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,47512,19830.0,0.0,0.0,19830.0,3690.35,2389.33,1590.43,7670.11,27500.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",ECN,Economic and Workforce Development,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,51803,14672.0,0.0,0.0,14672.0,3290.92,1911.46,1167.32,6369.7,21041.7 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2931,"Marriage, Family & Child Cnslr",3700,93281.02,0.0,624.0,93905.02,19354.57,12424.5,7464.96,39244.03,133149.05 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,28286,22513.94,0.0,0.0,22513.94,0.0,6050.97,1743.41,7794.38,30308.32 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,35630,54750.9,0.0,1798.17,56549.07,12263.0,8090.14,4373.02,24726.16,81275.23 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0954,Dep Dir IV,38363,193809.53,0.0,0.0,193809.53,39004.57,12424.5,26018.86,77447.93,271257.46 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2585,Health Worker 1,2458,41927.66,0.0,0.0,41927.66,9874.05,9545.36,3491.52,22910.93,64838.59 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,47108,2597.01,0.0,6.86,2603.87,0.0,1266.34,202.07,1468.41,4072.28 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,18878,21219.24,2969.9,741.12,24930.26,5313.76,6573.63,1809.22,13696.61,38626.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,34133,81157.03,23169.84,21877.88,126204.75,19915.29,12424.5,9766.84,42106.63,168311.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,24743,84644.0,28788.94,11567.01,124999.95,18809.82,12424.51,9718.14,40952.47,165952.42 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,4129,59485.26,0.0,125.0,59610.26,12611.39,9602.77,4948.37,27162.53,86772.79 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,18254,62734.32,6979.2,6091.48,75805.0,13373.35,11098.43,5966.72,30438.5,106243.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,28688,42142.1,12558.93,2006.18,56707.21,11447.12,12948.26,4260.85,28656.23,85363.44 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36995,12204.61,0.0,12.42,12217.03,0.0,3037.87,946.86,3984.73,16201.76 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9131,"Station Agent, Muni Railway",33121,60675.62,3609.94,6791.4,71076.96,13198.06,9117.43,5653.18,27968.67,99045.63 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8504,Deputy Sheriff (SFERS),16780,50136.47,29398.3,5237.87,84772.64,10482.14,7645.85,1420.26,19548.25,104320.89 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,838,13603.28,0.0,1496.65,15099.93,1172.14,0.0,2017.63,3189.77,18289.7 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,45975,74976.35,0.0,0.0,74976.35,15436.73,12332.94,6117.73,33887.4,108863.75 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5500,Construction Project Mgmt,5502,Project Manager 1,49751,121060.1,0.0,0.0,121060.1,24451.52,11998.37,9821.49,46271.38,167331.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9180,"Manager VI, MTA",16742,158707.02,0.0,0.0,158707.02,31940.4,12424.5,17656.05,62020.95,220727.97 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47408,68125.65,11343.57,4147.67,83616.89,19806.23,13423.73,6181.85,39411.81,123028.7 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,32909,97770.85,17001.57,11811.65,126584.07,25940.58,12424.52,2110.59,40475.69,167059.76 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,24176,61735.0,0.0,639.0,62374.0,12855.6,12424.5,4957.24,30237.34,92611.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3610,Library Assistant,8618,61735.0,0.0,624.0,62359.0,12852.62,12424.5,5018.11,30295.23,92654.23 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,216.0,"Teamsters, Local 853",7300,Journeyman Trade,7355,Truck Driver,49314,2934.0,56.89,62.51,3053.4,607.6,477.86,235.38,1320.84,4374.24 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3291,Principal Recreation Sprv,5088,45150.54,0.0,1690.15,46840.69,0.0,5620.89,3631.06,9251.95,56092.64 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,47066,62811.06,5443.28,15113.45,83367.79,15033.99,12424.51,6835.57,34294.07,117661.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,13813,150691.42,0.0,7100.54,157791.96,31726.16,12423.01,10381.03,54530.2,212322.16 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,14501,3485.08,0.0,152.15,3637.23,0.0,1511.25,289.06,1800.31,5437.54 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,46006,2724.93,525.12,261.54,3511.59,771.16,860.16,251.02,1882.34,5393.93 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,6806,110645.48,10426.77,6567.04,127639.29,21854.46,12197.51,2269.81,36321.78,163961.07 +Calendar,2015,5,Culture & Recreation,WAR,War Memorial,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8207,Bldg & Grounds Patrol Officer,14885,13800.4,201.6,2173.94,16175.94,3292.37,3249.49,1288.94,7830.8,24006.74 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3209,Swimming Instructor,5295,5492.0,0.0,11.45,5503.45,0.0,1621.75,427.02,2048.77,7552.22 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3630,Librarian 1,49099,7325.84,0.0,146.58,7472.42,0.0,0.0,553.51,553.51,8025.93 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,323.0,Members of Boards and Commissions,0900,Management,0111,"Bdcomm Mbr, Grp2,M=$25/Mtg",10552,150.0,0.0,0.0,150.0,0.0,35.84,11.64,47.48,197.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,22588,63051.23,721.15,2096.15,65868.53,17845.22,12433.1,5117.77,35396.09,101264.62 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7200,Supervisory-Labor & Trade,7216,Electrical Trnst Shop Sprv 1,11642,119111.02,74011.56,23331.49,216454.07,26155.37,12424.5,11422.45,50002.32,266456.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9922,PS Aide To Prof,12322,8749.25,44.44,0.0,8793.69,0.0,2646.18,691.51,3337.69,12131.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,48156,7490.89,355.08,31.39,7877.36,1777.64,2257.86,604.37,4639.87,12517.23 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,47648,0.0,0.0,88.14,88.14,0.0,0.0,6.74,6.74,94.88 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,11600,9545.15,688.58,43.39,10277.12,2289.78,2920.18,784.59,5994.55,16271.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,47031,67626.88,28765.67,5391.86,101784.41,14356.55,12373.73,8175.02,34905.3,136689.71 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2100,Hospital Administration,2110,Medical Records Clerk,25481,44322.11,2109.45,0.0,46431.56,3605.69,10465.25,3750.35,17821.29,64252.85 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7200,Supervisory-Labor & Trade,7203,Bldg & Grounds Maint Sprv,47533,105773.0,189.52,899.0,106861.52,21800.13,12424.5,8546.28,42770.91,149632.43 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2312,Licensed Vocational Nurse,3923,53456.0,2247.15,1378.17,57081.32,10966.21,10439.57,4613.46,26019.24,83100.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,46144,77794.62,6521.65,750.0,85066.27,16047.05,11343.33,6670.69,34061.07,119127.34 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,22.0,"Prof & Tech Engineers - Personnel, Local 21",1200,Personnel,1244,Senior Personnel Analyst,19798,22412.5,0.0,19548.28,41960.78,5027.11,2628.26,3299.87,10955.24,52916.02 +Calendar,2015,4,Community Health,DPH,Public Health,251.0,"Transport Workers - Miscellaneous, Local 250-A",6100,Health & Sanitation Inspection,6120,Environmental Health Inspector,48225,56655.72,0.0,360.0,57015.72,12053.95,6536.0,4387.24,22977.19,79992.91 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2905,Senior Eligibility Worker,42095,72248.09,0.0,1500.0,73748.09,15164.76,12412.54,5623.73,33201.03,106949.12 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,32781,138630.0,26824.77,838.71,166293.48,27414.76,12424.5,2779.04,42618.3,208911.78 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7309,Car And Auto Painter,24056,81942.03,16025.98,20575.52,118543.53,20340.35,12424.5,9201.75,41966.6,160510.13 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,15677,96094.27,10231.08,8722.27,115047.62,19807.9,12382.68,1911.68,34102.26,149149.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,21010,112684.94,28982.88,10591.89,152259.71,22776.37,12424.51,394.34,35595.22,187854.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,37899,9858.87,0.0,0.0,9858.87,0.0,2663.21,829.4,3492.61,13351.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5216,Chief Surveyor,46232,126490.0,0.0,0.0,126490.0,25456.42,12424.5,9924.42,47805.34,174295.34 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,33781,712.4,0.0,0.0,712.4,129.16,0.0,56.42,185.58,897.98 +Calendar,2015,1,Public Protection,FIR,Fire Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1063,IS Programmer Analyst-Senior,28463,97605.03,0.0,0.0,97605.03,20090.95,12409.57,7652.34,40152.86,137757.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,3.0,"Operating Engineers - Miscellaneous, Local 3",7300,Journeyman Trade,7328,"Operating Engineer, Universal",255,93554.76,27916.25,2096.6,123567.61,19731.4,12317.62,9777.95,41826.97,165394.58 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,32552,43460.7,661.89,2710.32,46832.91,10855.51,12305.04,3725.73,26886.28,73719.19 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2903,Eligibility Worker,28734,61613.99,13177.09,10034.88,84825.96,13740.53,11644.56,6766.29,32151.38,116977.34 +Calendar,2015,1,Public Protection,ADP,Adult Probation,965.0,"Operating Engineers - Sup Probation Ofcrs, Local 3",8400,Probation & Parole,8534,Sprv Adult Prob Ofc (SFERS),24393,143429.05,0.0,0.0,143429.05,28901.14,12385.25,2344.98,43631.37,187060.42 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,20034,32160.0,6834.0,5261.47,44255.47,5709.66,2867.19,743.6,9320.45,53575.92 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,49758,70069.89,0.0,1672.92,71742.81,14393.88,10031.18,5727.79,30152.85,101895.66 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,28902,97273.63,11731.45,7868.49,116873.57,24860.73,12360.84,1943.44,39165.01,156038.58 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36632,48991.89,2471.35,557.36,52020.6,10988.26,9634.49,3934.22,24556.97,76577.57 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2600,Dietary & Food,2604,Food Service Worker,19999,51208.51,107.65,3477.96,54794.12,12675.85,12376.71,4530.58,29583.14,84377.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5305,Materials Testing Technician,39620,74326.0,8647.3,3869.0,86842.3,15318.92,12424.5,7125.27,34868.69,121710.99 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2586,Health Worker 2,42690,61283.43,390.22,1550.0,63223.65,12894.7,12395.17,4880.37,30170.24,93393.89 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,17491,1852.76,0.0,0.0,1852.76,0.0,256.85,143.8,400.65,2253.41 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,9560,36589.49,175.6,4423.58,41188.67,9419.79,9628.03,3082.46,22130.28,63318.95 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,51080,67261.02,0.0,1035.44,68296.46,14075.88,12424.5,5651.36,32151.74,100448.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,38944,56531.01,0.0,648.3,57179.31,11651.3,12424.5,4694.22,28770.02,85949.33 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2303,Patient Care Assistant,6949,9013.72,0.0,670.39,9684.11,0.0,2402.77,751.64,3154.41,12838.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,790.0,"SEIU - Miscellaneous, Local 1021",2700,Housekeeping & Laundry,2708,Custodian,22393,56531.0,0.0,6729.12,63260.12,13752.55,12424.5,4827.35,31004.4,94264.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,22897,0.0,0.0,250.0,250.0,0.0,68.5,160.46,228.96,478.96 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,1.0,Miscellaneous Unrepresented Employees,8100,Legal & Court,8168,Parking Hearing Supervisor,25260,108913.01,0.0,0.0,108913.01,22197.88,12421.52,8708.66,43328.06,152241.07 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,47788,112159.75,5324.46,10751.93,128236.14,23388.63,15052.76,2173.69,40615.08,168851.22 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,29174,22041.9,188.17,1199.38,23429.45,5287.95,6033.05,1927.8,13248.8,36678.25 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40969,82252.98,6954.89,6356.06,95563.93,16973.07,12424.49,1593.18,30990.74,126554.67 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,10558,66320.88,23184.13,9373.49,98878.5,14814.8,11726.11,8069.61,34610.52,133489.02 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5260,Architectural Assistant 1,7101,68197.01,2848.49,0.0,71045.5,14046.25,12424.5,5553.54,32024.29,103069.79 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,9847,34835.84,2973.5,2675.85,40485.19,10494.34,6927.73,3018.13,20440.2,60925.39 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,38.0,"Plumbers and Pipefitters, Local 38",7300,Journeyman Trade,7347,Plumber,51790,96859.21,13119.63,14058.98,124037.82,20989.73,11946.63,9802.89,42739.25,166777.07 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,36859,119459.84,24488.39,15851.62,159799.85,23648.11,12424.5,2677.4,38750.01,198549.86 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2920,Medical Social Worker,51044,26515.32,0.0,0.0,26515.32,0.0,4043.93,2137.94,6181.87,32697.19 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,10808,43142.14,9437.05,2605.97,55185.16,13222.18,8579.59,4297.7,26099.47,81284.63 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,17371,24134.33,0.0,299.28,24433.61,5834.29,5958.86,1974.81,13767.96,38201.57 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,10341,0.0,0.0,0.0,0.0,0.0,22.84,182.37,205.21,205.21 +Calendar,2015,3,Human Welfare & Neighborhood Development,ENV,Environment,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5600,Energy & Environment,5640,Environmental Spec,9880,65086.46,0.0,0.0,65086.46,3734.68,9157.09,5133.97,18025.74,83112.2 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,49851,60941.89,0.0,3898.1,64839.99,12840.57,5363.21,5320.29,23524.07,88364.06 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2587,Health Worker 3,41645,67186.78,0.0,1320.0,68506.78,14119.83,12410.71,5599.83,32130.37,100637.15 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,11486,91652.7,60462.97,12944.61,165060.28,20388.74,12376.73,10517.95,43283.42,208343.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",PUC,PUC Public Utilities Commission,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,42037,68067.03,0.0,987.39,69054.42,14206.93,12424.5,5671.87,32303.3,101357.72 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,29340,24004.0,0.0,0.0,24004.0,4351.92,4061.84,1767.81,10181.57,34185.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5201,Junior Engineer,14170,14700.0,0.0,0.0,14700.0,3297.2,2389.33,1179.16,6865.69,21565.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,38091,2086.04,0.97,349.98,2436.99,539.22,414.85,166.55,1120.62,3557.61 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,6.0,"Electrical Workers, Local 6",7400,Skilled Labor,7488,Power Generation Supervisor,51073,127917.37,16026.22,9862.46,153806.05,26738.81,12030.26,10303.53,49072.6,202878.65 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,1223,39300.79,0.0,446.25,39747.04,8190.53,6875.29,3163.1,18228.92,57975.96 +Calendar,2015,6,General Administration & Finance,BOS,Board of Supervisors,22.0,"Prof & Tech Engineers - Personnel, Local 21",1400,"Clerical, Secretarial & Steno",1454,Executive Secretary 3,2479,78709.14,0.0,0.0,78709.14,16179.04,12424.5,6305.84,34909.38,113618.52 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,26438,30971.96,301.87,401.15,31674.98,9215.18,6159.32,2224.54,17599.04,49274.02 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),1233,184289.07,0.0,5248.28,189537.35,38144.37,12424.5,11013.22,61582.09,251119.44 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,48149,220.4,0.0,10.54,230.94,0.0,95.58,25.36,120.94,351.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q052,Sergeant 3,28187,138629.27,31871.58,14313.14,184813.99,27417.19,12424.5,3181.45,43023.14,227837.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7540,Track Maintenance Worker,27245,0.0,0.0,4376.54,4376.54,0.0,0.0,334.81,334.81,4711.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,46547,90745.68,1056.93,18362.38,110164.99,17526.81,9619.43,7900.12,35046.36,145211.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,26595,85081.45,20088.63,1580.0,106750.08,17853.98,12424.5,8735.13,39013.61,145763.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,34276,60614.4,0.0,905.52,61519.92,12633.75,12055.35,4830.23,29519.33,91039.25 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5380,"Stdntdsgntrain1, Arch/Eng/Plng",34909,1806.3,0.0,0.0,1806.3,0.0,430.09,139.85,569.94,2376.24 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,32877,109548.08,4243.75,26860.29,140652.12,25134.3,9689.31,9952.84,44776.45,185428.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7366,Transit Power Line Worker,36725,91505.6,12874.9,13153.57,117534.07,20598.4,11218.37,9644.07,41460.84,158994.91 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1842,Management Assistant,42396,63223.4,0.0,0.0,63223.4,12975.39,11851.06,4956.95,29783.4,93006.8 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,430C,Deputy Court Clerk III,35093,88296.01,0.0,3624.0,91920.01,18337.86,12424.5,7638.64,38401.0,130321.01 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,11859,47627.13,1356.15,2558.82,51542.1,9562.19,8816.61,1406.65,19785.45,71327.55 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,2690,113233.6,47814.7,13516.8,174565.1,24034.59,15196.12,2968.6,42199.31,216764.41 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H003,EMT/Paramedic/Firefighter,23819,112962.69,9368.47,12665.24,134996.4,23676.65,12395.24,2206.35,38278.24,173274.64 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2400,"Lab, Pharmacy & Med Techs",2450,Pharmacist,12587,149433.39,12143.03,33591.35,195167.77,35265.47,12319.97,10978.05,58563.49,253731.26 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,14346,55916.23,15410.07,5155.0,76481.3,15487.29,11034.16,5969.69,32491.14,108972.44 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,40522,122594.81,0.0,1562.6,124157.41,24907.82,12424.5,9801.77,47134.09,171291.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,24143,62468.81,8653.43,1369.26,72491.5,13084.08,12424.5,5950.5,31459.08,103950.58 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,42381,9909.84,0.0,0.0,9909.84,0.0,3652.69,789.19,4441.88,14351.72 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",3200,Recreation,3279,Recreation Leader,36002,62.0,0.0,2.48,64.48,0.0,0.0,5.09,5.09,69.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",PRT,Port,4.0,"Painters, Local 1176",7300,Journeyman Trade,7346,Painter,3001,81713.22,4654.61,2429.69,88797.52,17364.0,12424.51,7333.72,37122.23,125919.75 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,47935,73935.21,0.0,0.0,73935.21,15207.99,12424.5,5970.32,33602.81,107538.02 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,18450,127698.18,5150.69,6715.36,139564.23,25197.5,11182.06,5934.36,42313.92,181878.15 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,22.0,"Prof & Tech Engineers - Personnel, Local 21",8100,Legal & Court,8151,"Claims Investigator, Ca",16792,105082.05,0.0,0.0,105082.05,21657.98,12424.5,8589.96,42672.44,147754.49 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,6.0,"Electrical Workers, Local 6",7300,Journeyman Trade,7371,Electrical Transit System Mech,3248,82481.27,1173.19,8848.14,92502.6,18794.4,12104.94,7350.73,38250.07,130752.67 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0923,Manager II,50759,128129.06,0.0,0.0,128129.06,25766.02,12424.5,17224.59,55415.11,183544.17 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1404,Clerk,31751,54124.04,0.0,96.0,54220.04,12128.33,12424.5,4121.71,28674.54,82894.58 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,261.0,"Laborers, Local 261",3400,Agriculture & Horticulture,3422,Park Section Supervisor,30199,80357.0,10084.24,0.0,90441.24,16562.14,12424.5,7450.75,36437.39,126878.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,38782,119455.93,13513.99,8332.42,141302.34,23662.82,12424.5,2361.47,38448.79,179751.13 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,37710,66353.0,12979.3,595.7,79928.0,18332.42,13073.98,6114.2,37520.6,117448.6 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5268,Architect,9629,135421.01,0.0,0.0,135421.01,27253.5,12424.51,10072.48,49750.49,185171.5 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1446,Secretary 2,52982,68067.03,392.7,624.0,69083.73,14157.65,12424.5,5489.01,32071.16,101154.89 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,21118,91004.01,0.0,0.0,91004.01,18756.52,12424.5,7297.6,38478.62,129482.63 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7100,Administrative-Labor & Trades,7126,Mech Shop & Equip Supt,5130,107978.01,6969.05,999.19,115946.25,22366.7,12424.5,9516.75,44307.95,160254.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,45801,580.43,0.0,0.0,580.43,0.0,212.06,45.06,257.12,837.55 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,6748,50507.3,27681.46,2471.29,80660.05,9783.75,5256.51,1258.53,16298.79,96958.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,25059,112170.35,108989.28,19172.15,240331.78,24698.7,15052.76,4055.11,43806.57,284138.35 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,45370,19781.13,0.0,553.99,20335.12,10009.75,1320.28,4760.77,16090.8,36425.92 +Calendar,2015,2,"Public Works, Transportation & Commerce",WTR,PUC Water Department,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2400,"Lab, Pharmacy & Med Techs",2483,Biologist I/II,43766,87642.93,0.0,6982.15,94625.08,18048.14,12424.5,7346.14,37818.78,132443.86 +Calendar,2015,3,Human Welfare & Neighborhood Development,HRC,Human Rights Commission,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2991,"Coord, Human Rights Comm",29491,113252.5,0.0,610.0,113862.5,22873.94,12424.5,9114.3,44412.74,158275.24 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",4100,Property Administration,4142,Senior Real Property Officer,5154,101036.39,0.0,0.0,101036.39,20565.13,10284.98,8175.88,39025.99,140062.38 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",2900,Human Services,2919,Child Care Specialist,8267,49679.0,0.0,0.0,49679.0,11915.59,12424.5,3995.62,28335.71,78014.71 +Calendar,2015,1,Public Protection,CRT,Superior Court,792.0,"SEIU - Court Employees, Local 1021",SCRT,SF Superior Court,472C,Fiscal Technician,4344,53653.6,0.0,4016.5,57670.1,12859.58,12424.5,4716.05,30000.13,87670.23 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3616,Library Technical Assistant 1,34076,2484.77,0.0,233.97,2718.74,566.51,427.27,211.53,1205.31,3924.05 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H020,"Lieutenant, Fire Suppression",22468,131577.07,11477.11,12472.95,155527.13,28390.45,15196.12,2550.99,46137.56,201664.69 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,34291,72562.13,895.71,17395.78,90853.62,17814.08,11100.45,7207.45,36121.98,126975.6 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2424,X-Ray Laboratory Aide,15777,67596.58,4183.74,1229.78,73010.1,14045.94,12366.62,5723.63,32136.19,105146.29 +Calendar,2015,1,Public Protection,SHF,Sheriff,498.0,Deputy Sheriffs' Association,8300,Correction & Detention,8304,Deputy Sheriff,23044,97759.88,4802.37,17613.17,120175.42,28023.95,12424.5,1990.41,42438.86,162614.28 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,0382,Inspector 3,4313,138635.95,30485.41,6015.87,175137.23,27563.22,12424.5,2510.86,42498.58,217635.81 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,11382,30503.21,1127.37,1664.01,33294.59,6636.3,4969.83,2737.71,14343.84,47638.43 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,5390,86663.01,2927.08,748.75,90338.84,17978.9,12424.51,7266.65,37670.06,128008.9 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,40931,59282.59,4587.46,2618.52,66488.57,10623.99,6212.25,1109.98,17946.22,84434.79 +Calendar,2015,4,Community Health,DPH,Public Health,535.0,"SEIU - Human Services, Local 1021",2900,Human Services,2908,Hospital Eligiblity Worker,6539,77071.05,0.0,2064.0,79135.05,16308.06,12424.5,6504.43,35236.99,114372.04 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",8400,Probation & Parole,8420,Rehabilitation Svcs Coord,29177,91004.06,0.0,1751.92,92755.98,19120.34,12424.5,7687.97,39232.81,131988.79 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,45467,48389.85,1163.82,59445.29,108998.96,10662.1,4939.94,55.83,15657.87,124656.83 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,39917,65953.02,10172.26,2754.02,78879.3,18776.13,12992.32,5815.29,37583.74,116463.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,6.0,"Electrical Workers, Local 6",7500,Semi-Skilled & General Labor,7510,Lighting Fixture Maint Worker,13919,56406.01,7078.78,854.0,64338.79,11785.62,12424.5,5229.66,29439.78,93778.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DBI,Department of Building Inspection,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1408,Principal Clerk,10897,68476.71,402.93,960.0,69839.64,14206.03,11465.78,5739.6,31411.41,101251.05 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,254.0,"Transport Workers - Fare Inspectors, Local 250-A",9100,Street Transit,9132,Transit Fare Inspector,42221,14091.3,0.0,538.5,14629.8,3952.96,2652.15,1280.66,7885.77,22515.57 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,22317,101531.01,13203.16,0.0,114734.17,20926.02,12424.49,9301.32,42651.83,157386.0 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,261.0,"Laborers, Local 261",7500,Semi-Skilled & General Labor,7501,Environmental Service Worker,9700,51150.0,1249.99,1101.48,53501.47,12515.76,12424.51,4330.22,29270.49,82771.96 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",2500,Med Therapy & Auxiliary,2574,Clinical Psychologist,1701,19799.15,0.0,0.0,19799.15,0.0,0.0,1566.2,1566.2,21365.35 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,38.0,"Plumbers and Pipefitters, Local 38",7400,Skilled Labor,7449,Sewer Service Worker,17946,94890.47,10048.91,3866.71,108806.09,20352.39,12403.12,8679.84,41435.35,150241.44 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters Unit 1, Local 798",H000,Fire Services,H008,EMT Paramedic,18965,3576.26,0.0,0.0,3576.26,0.0,495.79,277.57,773.36,4349.62 +Calendar,2015,1,Public Protection,ECD,Department of Emergency Management,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,17188,70827.01,0.0,0.0,70827.01,14029.86,8601.57,5686.27,28317.7,99144.71 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,22614,44144.2,0.0,4549.39,48693.59,6952.08,0.0,1193.49,8145.57,56839.16 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2409,Pharmacy Technician,39977,81607.01,443.25,3334.99,85385.25,17393.83,12424.5,6932.59,36750.92,122136.17 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1406,Senior Clerk,51714,45045.29,227.36,40.0,45312.65,10785.74,11798.51,3611.43,26195.68,71508.33 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,9896,1552.69,0.0,12.62,1565.31,0.0,191.14,122.86,314.0,1879.31 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5241,Engineer,50196,176257.0,0.0,0.0,176257.0,35471.94,12424.51,10759.01,58655.46,234912.46 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,679,56754.98,12550.44,3531.23,72836.65,16205.48,11161.63,5652.93,33020.04,105856.69 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,19000,102490.77,38969.96,9518.18,150978.91,21447.01,15196.12,2526.64,39169.77,190148.68 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,790.0,"SEIU - Miscellaneous, Local 1021",1200,Personnel,1218,Payroll Supervisor,8610,50228.03,0.0,0.0,50228.03,9579.48,6690.11,3974.78,20244.37,70472.4 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,13909,1794.21,0.0,0.0,1794.21,0.0,970.67,138.92,1109.59,2903.8 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2320,Registered Nurse,21488,124016.4,605.63,18554.88,143176.91,26305.92,10981.35,4632.5,41919.77,185096.68 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1424,Clerk Typist,16323,56276.04,0.0,1624.0,57900.04,12955.01,12424.5,4543.39,29922.9,87822.94 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,8658,17166.43,0.0,0.0,17166.43,0.0,3784.09,1348.41,5132.5,22298.93 +Calendar,2015,2,"Public Works, Transportation & Commerce",CWP,PUC Wastewater Enterprise,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7372,"Stationary Eng, Sewage Plant",11,93738.02,6498.32,0.0,100236.34,19319.82,12424.5,7880.5,39624.82,139861.16 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,580.0,"Cement Masons, Local 300",7300,Journeyman Trade,7311,Cement Mason,42435,73744.42,7926.35,340.0,82010.77,15202.71,11913.76,6707.29,33823.76,115834.53 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,7454,1673.25,0.0,0.0,1673.25,0.0,725.58,129.55,855.13,2528.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",HHP,PUC Hetch Hetchy,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2706,Housekeeper/Food Service Clnr,29518,19972.27,205.41,70.86,20248.54,980.58,0.0,1676.55,2657.13,22905.67 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,12399,104524.04,16745.5,13022.72,134292.26,22450.02,14027.44,2277.85,38755.31,173047.57 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q004,Police Officer 3,49874,119455.96,82722.14,7127.26,209305.36,23662.86,12424.5,3514.76,39602.12,248907.48 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,30105,100554.07,0.0,0.0,100554.07,20719.32,12424.55,8227.79,41371.66,141925.73 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1095,IT Operations Support Admin V,18430,115398.01,0.0,0.0,115398.01,23210.52,12424.5,9044.41,44679.43,160077.44 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2400,"Lab, Pharmacy & Med Techs",2430,Medical Evaluations Assistant,52199,58763.22,420.83,1937.76,61121.81,12468.39,11072.02,4790.4,28330.81,89452.62 +Calendar,2015,6,General Administration & Finance,CAT,City Attorney,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),253,70440.01,0.0,27991.67,98431.68,15941.88,4778.65,7907.54,28628.07,127059.75 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,15995,101921.56,0.0,0.0,101921.56,21004.4,12412.55,8164.53,41581.48,143503.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8201,School Crossing Guard,18092,8548.73,0.0,61.31,8610.04,0.0,3097.17,667.35,3764.52,12374.56 +Calendar,2015,1,Public Protection,SHF,Sheriff,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,22155,60297.47,89.1,609.39,60995.96,12533.97,12133.43,4841.34,29508.74,90504.7 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,351.0,Municipal Executive Association - Miscellaneous,9100,Street Transit,9181,"Manager VII, MTA",45947,170335.1,0.0,0.0,170335.1,34279.73,12424.5,28180.74,74884.97,245220.07 +Calendar,2015,4,Community Health,DPH,Public Health,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",2800,Public Health,2819,Assistant Health Educator,2981,48629.66,1039.68,0.0,49669.34,10021.31,7448.73,3817.0,21287.04,70956.38 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,36184,64747.73,1353.99,731.36,66833.08,17930.08,12761.04,5052.94,35744.06,102577.14 +Calendar,2015,6,General Administration & Finance,CON,Controller,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1840,Junior Management Assistant,49902,51655.01,0.0,0.0,51655.01,10524.48,10990.9,4047.45,25562.83,77217.84 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,38480,113233.6,36639.86,24699.67,174573.13,26636.51,15196.11,2921.37,44753.99,219327.12 +Calendar,2015,1,Public Protection,POL,Police,311.0,Municipal Attorneys' Association,8100,Legal & Court,8177,Attorney (Civil/Criminal),17779,120150.01,0.0,1500.0,121650.01,24450.74,12418.53,9561.59,46430.86,168080.87 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1800,"Budget, Admn & Stats Analysis",1823,Senior Administrative Analyst,29223,88318.0,0.0,0.0,88318.0,18199.14,12424.5,7170.95,37794.59,126112.59 +Calendar,2015,3,Human Welfare & Neighborhood Development,DSS,Human Services,1.0,Miscellaneous Unrepresented Employees,9900,Public Service Aide,9916,Public Svc Aide-Public Works,52715,440.8,0.0,14.05,454.85,0.0,191.14,35.21,226.35,681.2 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",8200,Protection & Apprehension,8214,Parking Control Officer,44491,29199.82,0.0,115.4,29315.22,6479.77,4663.54,1940.94,13084.25,42399.47 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,790.0,"SEIU - Miscellaneous, Local 1021",9100,Street Transit,9102,Transit Car Cleaner,29597,58813.92,156.22,11078.18,70048.32,13785.52,11650.89,5736.13,31172.54,101220.86 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2700,Housekeeping & Laundry,2736,Porter,23381,56531.0,81.64,3604.35,60216.99,11780.12,12424.5,4974.97,29179.59,89396.58 +Calendar,2015,4,Community Health,DPH,Public Health,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1430,Transcriber Typist,37904,61735.02,0.0,624.0,62359.02,12852.62,12424.5,4917.42,30194.54,92553.56 +Calendar,2015,6,General Administration & Finance,TIS,General Services Agency - Technology,16.0,"Theatrical and Stage Employees, Local 16",1700,Computer Operatns & Repro Svcs,1769,Media Production Supv,22440,87882.88,0.0,182.24,88065.12,18062.27,11914.92,6647.57,36624.76,124689.88 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,37709,116634.74,18094.54,12885.17,147614.45,23061.32,12370.74,2064.44,37496.5,185110.95 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,236.0,"Carpenters, Local 22",7300,Journeyman Trade,7344,Carpenter,10284,10254.0,0.0,784.52,11038.52,1958.86,1433.6,853.57,4246.03,15284.55 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,6999,92349.9,36736.74,13539.54,142626.18,20630.67,12472.29,10136.85,43239.81,185865.99 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2300,Nursing,2302,Nursing Assistant,45178,70245.0,27088.05,10377.76,107710.81,15652.42,12424.5,8308.76,36385.68,144096.49 +Calendar,2015,6,General Administration & Finance,HRD,Human Resources,790.0,"SEIU - Miscellaneous, Local 1021",1800,"Budget, Admn & Stats Analysis",1822,Administrative Analyst,46093,77626.03,0.0,0.0,77626.03,15967.0,12424.5,6254.86,34646.36,112272.39 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q003,Police Officer 2,49837,80450.5,4870.52,7018.72,92339.74,15728.31,8601.58,1511.86,25841.75,118181.49 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,2325,Nurse Midwife,47479,94478.76,0.0,607.7,95086.46,19084.61,6271.98,7807.99,33164.58,128251.04 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,253.0,"Transport Workers - Transit Operators, Local 250-A",9100,Street Transit,9163,Transit Operator,47839,54918.31,11299.6,1524.72,67742.63,15309.77,10806.2,5141.3,31257.27,98999.9 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2583,Home Health Aide,14689,45624.0,10676.01,6071.69,62371.7,11722.56,12424.5,4932.22,29079.28,91450.98 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",6300,Construction Inspection,6318,Construction Inspector,22767,101531.0,0.0,0.0,101531.0,20926.02,12424.5,8177.14,41527.66,143058.66 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,11817,16730.1,0.0,28.85,16758.95,0.0,1385.69,1297.47,2683.16,19442.11 +Calendar,2015,2,"Public Works, Transportation & Commerce",DPW,General Services Agency - Public Works,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5200,Professional Engineering,5203,Asst Engr,13765,69752.88,0.0,0.0,69752.88,14140.61,10465.25,5377.17,29983.03,99735.91 +Calendar,2015,5,Culture & Recreation,REC,Recreation and Park Commission,790.0,"SEIU - Miscellaneous, Local 1021",9900,Public Service Aide,9910,Public Service Trainee,15732,3607.63,0.0,3.43,3611.06,0.0,1759.15,280.15,2039.3,5650.36 +Calendar,2015,4,Community Health,DPH,Public Health,351.0,Municipal Executive Association - Miscellaneous,0900,Management,0931,Manager III,45868,73512.02,0.0,0.0,73512.02,14157.11,8314.85,13923.17,36395.13,109907.15 +Calendar,2015,1,Public Protection,CRT,Superior Court,195.0,Court Unrepresented Professionals,SCRT,SF Superior Court,377C,Principal Mgmt Analyst,13865,10619.95,0.0,0.0,10619.95,0.0,1263.36,840.04,2103.4,12723.35 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,33376,14218.0,0.0,164.51,14382.51,3634.54,4223.14,1167.37,9025.05,23407.56 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,130.0,"Automotive Machinists, Local 1414",7300,Journeyman Trade,7381,Automotive Mechanic,52477,81157.0,12085.6,17232.08,110474.68,23406.71,12424.5,8975.53,44806.74,155281.42 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,31995,19580.8,0.0,611.94,20192.74,0.0,1528.81,1564.19,3093.0,23285.74 +Calendar,2015,5,Culture & Recreation,LIB,Public Library,790.0,"SEIU - Miscellaneous, Local 1021",3600,Library,3602,Library Page,42702,21986.37,0.0,799.41,22785.78,5466.88,6367.56,1845.71,13680.15,36465.93 +Calendar,2015,1,Public Protection,POL,Police,790.0,"SEIU - Miscellaneous, Local 1021",1400,"Clerical, Secretarial & Steno",1426,Senior Clerk Typist,35642,61735.0,11011.3,3319.82,76066.12,13027.85,12424.5,6002.1,31454.45,107520.57 +Calendar,2015,1,Public Protection,FIR,Fire Department,798.0,"Firefighters - Miscellaneous, Local 798",H000,Fire Services,H002,Firefighter,49310,112170.35,39719.53,18400.7,170290.58,24779.33,15052.76,2892.12,42724.21,213014.79 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,36170,14619.33,0.0,308.23,14927.56,2721.3,0.0,965.03,3686.33,18613.89 +Calendar,2015,2,"Public Works, Transportation & Commerce",AIR,Airport Commission,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",5300,Sub-Professional Engineering,5381,Stdntdsgn Train2/Arch/Eng/Plng,33413,29380.44,0.0,780.0,30160.44,4491.01,6424.31,2350.62,13265.94,43426.38 +Calendar,2015,4,Community Health,DPH,Public Health,250.0,"SEIU - Health Workers, Local 1021",2500,Med Therapy & Auxiliary,2554,Therapy Aide,13052,76728.01,0.0,824.0,77552.01,15942.8,12424.5,6368.85,34736.15,112288.16 +Calendar,2015,6,General Administration & Finance,CPC,City Planning,21.0,"Prof & Tech Engineers - Miscellaneous, Local 21",1000,Information Systems,1053,IS Business Analyst-Senior,18961,0.0,0.0,0.0,0.0,0.0,0.0,-26.53,-26.53,-26.53 +Calendar,2015,1,Public Protection,JUV,Juvenile Probation,790.0,"SEIU - Miscellaneous, Local 1021",9700,Community Development,9774,Sr Community Devl Spc 1,49719,42793.3,0.0,0.0,42793.3,8506.93,6731.93,3317.55,18556.41,61349.71 +Calendar,2015,2,"Public Works, Transportation & Commerce",MTA,Municipal Transportation Agency,200.0,"Transportation Workers, Local 200",9100,Street Transit,9139,Transit Supervisor,13250,80691.52,11865.91,3290.29,95847.72,16909.07,12244.02,7788.0,36941.09,132788.81 +Calendar,2015,4,Community Health,DPH,Public Health,791.0,"SEIU - Staff and Per Diem Nurses, Local 1021",2300,Nursing,P103,Special Nurse,14845,7559.66,0.0,0.0,7559.66,153.74,0.0,2132.23,2285.97,9845.63 +Calendar,2015,1,Public Protection,POL,Police,911.0,Police Officers' Association,Q000,Police Services,Q002,Police Officer,40128,48843.58,2965.85,3316.21,55125.64,11047.55,6212.24,910.16,18169.95,73295.59 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,39.0,"Stationary Engineers, Local 39",7300,Journeyman Trade,7334,Stationary Engineer,48315,16319.2,0.0,0.0,16319.2,0.0,2389.32,1264.85,3654.17,19973.37 +Calendar,2015,6,General Administration & Finance,ADM,General Services Agency - City Admin,856.0,"Teamsters - Miscellaneous, Local 856",3300,Park & Zoo,3370,Animal Care Attendant,17657,34267.2,344.85,1256.89,35868.94,8643.54,8458.22,2842.2,19943.96,55812.9 diff --git a/lectures/ydata_slides_22.pdf b/lectures/ydata_slides_22.pdf new file mode 100644 index 0000000..78e566c Binary files /dev/null and b/lectures/ydata_slides_22.pdf differ